/* =========================================================
   COPTIC SPIRIT — styles.css
   Mobile-first. Palette: black · gold · cream/white.
   Fonts: Cinzel (display) + Cormorant Garamond (serif).
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --black:      #0b0b0d;
  --black-2:    #111114;
  --black-3:    #17171b;
  --gold:       #c9a227;
  --gold-light: #e6c463;
  --gold-deep:  #9a7b1a;
  --cream:      #f5efe1;
  --cream-2:    #efe7d3;
  --ink-soft:   rgba(245, 239, 225, 0.74);
  --ink-faint:  rgba(245, 239, 225, 0.52);
  --line:       rgba(201, 162, 39, 0.22);
  --line-soft:  rgba(245, 239, 225, 0.12);

  --gold-grad:  linear-gradient(135deg, #f0d680 0%, #c9a227 46%, #9a7b1a 100%);

  /* Coptic cross pattée (vector) — used for accents & dividers */
  --cross: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20fill='%23c9a227'%20d='M7.8%202.5%2016.2%202.5%2013.7%208.5%2015.5%2010.3%2021.5%207.8%2021.5%2016.2%2015.5%2013.7%2013.7%2015.5%2016.2%2021.5%207.8%2021.5%2010.3%2015.5%208.5%2013.7%202.5%2016.2%202.5%207.8%208.5%2010.3%2010.3%208.5Z'/%3E%3C/svg%3E");
  /* Faint repeating cross — illuminated-manuscript texture for dark sections */
  --cross-pattern: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='88'%20height='88'%20viewBox='0%200%2088%2088'%3E%3Cpath%20fill='%23c9a227'%20fill-opacity='0.04'%20transform='translate(32%2032)'%20d='M7.8%202.5%2016.2%202.5%2013.7%208.5%2015.5%2010.3%2021.5%207.8%2021.5%2016.2%2015.5%2013.7%2013.7%2015.5%2016.2%2021.5%207.8%2021.5%2010.3%2015.5%208.5%2013.7%202.5%2016.2%202.5%207.8%208.5%2010.3%2010.3%208.5Z'/%3E%3C/svg%3E");

  --font-display: "Cinzel", "Times New Roman", serif;
  --font-serif:   "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-ui:      ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --maxw: 1180px;
  --pad: clamp(1.15rem, 5vw, 3rem);
  --radius: 14px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-serif);
  background: var(--black);
  color: var(--cream);
  line-height: 1.6;
  font-size: 1.08rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.ico { width: 1em; height: 1em; fill: none; stroke: none; }
.ico use { color: inherit; }

::selection { background: var(--gold); color: var(--black); }

/* Custom scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 20px; border: 3px solid var(--black); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

.section { padding-block: clamp(3.75rem, 9vw, 7rem); position: relative; }
.section.about  { background-color: var(--black);   background-image: var(--cross-pattern); }
.section.media  { background: linear-gradient(180deg, var(--black) 0%, var(--black-2) 100%); }
.section.shop   { background-color: var(--black-2); background-image: var(--cross-pattern); }
.section.connect{ background: linear-gradient(180deg, var(--black-2) 0%, var(--black) 100%); }
.section.follow { background-color: var(--black);   background-image: var(--cross-pattern); }

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.eyebrow::before {
  content: ""; display: inline-block; vertical-align: -0.12em;
  width: 0.92em; height: 0.92em; margin-right: 0.5em;
  background: var(--cross) no-repeat center / contain;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 6.2vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--cream);
}

.section-head { text-align: center; margin-bottom: clamp(2.25rem, 6vw, 3.75rem); }
.section-sub {
  max-width: 46ch;
  margin: 1.1rem auto 0;
  color: var(--ink-soft);
  font-size: 1.18rem;
}
.section-sub strong { color: var(--gold-light); font-weight: 600; }

/* Ornamental divider echoing the wheat-border medallion */
.divider {
  display: flex; align-items: center; justify-content: center; gap: 0.85rem;
  width: 240px; max-width: 72%;
  margin: 1.25rem auto 0;
}
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; }
.divider::before { background: linear-gradient(90deg, transparent, var(--gold)); }
.divider::after  { background: linear-gradient(90deg, var(--gold), transparent); }
.divider .ico {
  flex: 0 0 auto;
  width: 1.35rem; height: 1.35rem;
  color: var(--gold);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.95em 1.8em;
  border-radius: 999px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s, color 0.3s;
  will-change: transform;
}
.btn--gold {
  background: var(--gold-grad);
  color: #1a1407;
  box-shadow: 0 10px 28px rgba(201, 162, 39, 0.28);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(201, 162, 39, 0.42); }
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--cream);
}
.btn--ghost:hover { border-color: var(--gold); background: rgba(201, 162, 39, 0.08); transform: translateY(-3px); }

/* ===================== HEADER / NAV ===================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.4s, box-shadow 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11, 11, 13, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--maxw); margin-inline: auto;
  padding: 0.75rem var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand-mark { width: 42px; height: 42px; filter: drop-shadow(0 2px 10px rgba(201,162,39,0.35)); }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.06em;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav { display: none; }
.nav a {
  font-family: var(--font-ui);
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.25s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--cream); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav .nav-cta {
  color: #1a1407;
  background: var(--gold-grad);
  border-radius: 999px;
  padding: 0.55rem 1.3rem;
  box-shadow: 0 6px 18px rgba(201, 162, 39, 0.28);
}
.nav .nav-cta::after { display: none; }
.nav .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(201, 162, 39, 0.45); color: #1a1407; }

/* Hamburger */
.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  border: 1px solid var(--line); border-radius: 10px;
}
.nav-toggle span { display: block; height: 2px; background: var(--gold); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 95;
  background: rgba(8, 8, 10, 0.97);
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2.25rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 600; letter-spacing: 0.03em;
  color: var(--cream);
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.25s;
}
.mobile-menu.open a { opacity: 1; transform: none; }
.mobile-menu.open a:nth-child(1) { transition-delay: 0.06s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.12s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.18s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.24s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.30s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.36s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu__socials { display: flex; gap: 1.5rem; }
.mobile-menu__socials a { font-size: 1.7rem; color: var(--gold); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 6.5rem var(--pad) 5rem;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; background: #000; }
.hero__video {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.55;
  transform: scale(1.05);
  filter: saturate(0.9) contrast(1.05);
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 38%, rgba(11,11,13,0.25) 0%, rgba(11,11,13,0.72) 62%, rgba(11,11,13,0.96) 100%),
    linear-gradient(180deg, rgba(11,11,13,0.55) 0%, rgba(11,11,13,0.15) 35%, rgba(11,11,13,0.9) 100%);
}
.hero__content { position: relative; z-index: 2; max-width: 760px; }
.hero__logo-wrap {
  position: relative;
  display: grid; place-items: center;
  width: clamp(160px, 36vw, 236px); aspect-ratio: 1;
  margin: 0 auto 1.2rem;
}
.hero__logo {
  position: relative; z-index: 1;
  width: clamp(108px, 26vw, 166px); height: auto;
  filter: drop-shadow(0 6px 26px rgba(201, 162, 39, 0.5));
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Radiant nimbus / halo behind the emblem */
.hero__nimbus {
  position: absolute; left: 50%; top: 50%;
  width: 124%; aspect-ratio: 1; transform: translate(-50%, -50%);
  z-index: 0; pointer-events: none;
  background: radial-gradient(circle, rgba(201,162,39,0.22) 0%, rgba(201,162,39,0.06) 42%, transparent 64%);
}
.hero__nimbus::before { /* radiating rays + ring (pre-rendered, painted once) */
  content: ""; position: absolute; inset: 0;
  background: url("../assets/img/nimbus.svg") center / contain no-repeat;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 12vw, 5.6rem);
  line-height: 1;
  letter-spacing: 0.04em;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 30px rgba(201, 162, 39, 0.15);
}
.hero__tagline {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: clamp(0.72rem, 3vw, 0.9rem);
  color: var(--cream);
  margin-top: 0.9rem;
  padding-left: 0.42em;
}
.hero__pillars {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 1.6rem;
  margin-top: 1.6rem;
  color: var(--ink-soft);
  font-size: 1.12rem;
}
.hero__pillars li { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__pillars .ico { font-size: 1.25rem; color: var(--gold); stroke: var(--gold); }

.hero__verse {
  font-style: italic;
  font-size: clamp(1.2rem, 4.5vw, 1.7rem);
  color: var(--cream);
  margin: 2rem auto 0;
  max-width: 30ch;
  position: relative;
}
.hero__verse cite {
  display: block;
  font-style: normal;
  font-family: var(--font-ui);
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.8rem;
}
.hero__cta {
  margin-top: 2.25rem;
  display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center;
}
.hero__scroll {
  position: absolute; left: 50%; bottom: 1.5rem; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  font-family: var(--font-ui); font-size: 0.62rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--ink-faint);
}
.hero__scroll .ico { font-size: 1.1rem; stroke: var(--gold); animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ===================== ABOUT ===================== */
.lede {
  max-width: 60ch; margin: 0 auto;
  text-align: center;
  font-size: clamp(1.2rem, 3.4vw, 1.5rem);
  color: var(--ink-soft);
}
.lede strong { color: var(--gold-light); font-weight: 600; }

.pillars {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  display: grid; gap: 1.1rem;
  grid-template-columns: 1fr;
}
.pillar {
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.pillar:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow); }
.pillar__icon {
  display: inline-grid; place-items: center;
  width: 76px; height: 88px; margin-bottom: 1.2rem;
  border-radius: 50% 50% 14px 14px / 62% 62% 14px 14px; /* icon-niche arch */
  border: 1.5px solid var(--gold);
  box-shadow: inset 0 0 0 4px var(--black-3), inset 0 0 0 5.5px rgba(201,162,39,0.45), 0 0 26px rgba(201,162,39,0.1);
  color: var(--gold); stroke: var(--gold);
  font-size: 1.75rem;
  background: radial-gradient(circle at 50% 40%, rgba(201,162,39,0.2), transparent 72%);
}
.pillar h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.4rem; letter-spacing: 0.02em; margin-bottom: 0.5rem;
}
.pillar p { color: var(--ink-soft); font-size: 1.08rem; }

.pullquote {
  margin: clamp(3rem, 8vw, 5rem) auto 0;
  max-width: 46ch;
  text-align: center;
  position: relative;
  padding: clamp(2.4rem, 6vw, 3.6rem) clamp(1.4rem, 5vw, 3rem) clamp(2rem, 5vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 170px 170px 16px 16px / 120px 120px 16px 16px; /* arched icon frame */
  background: radial-gradient(ellipse at 50% 0%, rgba(201,162,39,0.07), transparent 60%);
  box-shadow: inset 0 0 0 4px rgba(201,162,39,0.05);
}
.pullquote .cross { display: flex; justify-content: center; color: var(--gold); margin: 0 0 1rem; }
.pullquote .cross .ico { width: 2rem; height: 2rem; }
.pullquote blockquote {
  font-style: italic;
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  line-height: 1.3;
  color: var(--cream);
}
.pullquote figcaption {
  font-family: var(--font-ui); font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-top: 1.1rem;
}

/* ===================== MEDIA ===================== */
.platforms {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
.platform {
  display: flex; align-items: center; gap: 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s;
}
.platform:not(.platform--soon):hover { transform: translateY(-4px); border-color: var(--gold); background: rgba(201,162,39,0.06); }
.platform__icon {
  flex: 0 0 auto;
  display: grid; place-items: center;
  width: 50px; height: 50px; border-radius: 12px;
  font-size: 1.55rem;
  color: var(--gold); stroke: var(--gold);
  background: rgba(201,162,39,0.1);
}
.platform__icon--ig { color: #e76aa3; stroke: #e76aa3; background: rgba(225,86,143,0.14); }
.platform__icon--yt { color: #ff3b3b; stroke: #ff3b3b; background: rgba(255,59,59,0.12); }
.platform__icon--sc { color: #ff7a3b; stroke: #ff7a3b; background: rgba(255,122,59,0.12); }
.platform__icon--tt { color: #f5efe1; stroke: #f5efe1; background: rgba(245,239,225,0.1); }
.platform__icon--sp { color: #1ed760; stroke: #1ed760; background: rgba(30,215,96,0.12); }
.platform__text { flex: 1; min-width: 0; }
.platform__text strong { display: block; font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; }
.platform__text em { font-style: normal; color: var(--ink-soft); font-size: 0.98rem; }
.platform__go {
  flex: 0 0 auto;
  font-family: var(--font-ui); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.platform__go .ico--rot { transform: rotate(-90deg); font-size: 1rem; stroke: var(--gold); }
.platform--soon { opacity: 0.6; }
.platform__go--soon { color: var(--ink-faint); }

.featured { margin-top: clamp(2rem, 5vw, 3rem); }
.featured__label {
  display: flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.25rem;
  margin-bottom: 1rem; color: var(--cream);
}
.featured__label .ico { font-size: 1.3rem; color: var(--gold); stroke: var(--gold); }
.featured__player {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--black-3);
}
.featured__player iframe { width: 100%; display: block; }
.featured__player--video { position: relative; aspect-ratio: 16 / 9; }
.featured__player--video iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* When no video ID is set, hide the empty player and show the channel card */
.featured--video.is-empty .featured__player--video { display: none; }
.featured--video:not(.is-empty) .featured__channel-card { display: none; }
.featured__channel-card {
  display: flex; align-items: center; gap: 1rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  background: linear-gradient(120deg, rgba(201,162,39,0.08), rgba(255,255,255,0));
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.featured__channel-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.featured__play {
  flex: 0 0 auto; display: grid; place-items: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold-grad); color: var(--black); font-size: 1.4rem;
}
.featured__channel-card strong { display: block; font-family: var(--font-display); font-size: 1.15rem; }
.featured__channel-card em { font-style: normal; color: var(--ink-soft); }

/* ===================== SHOP ===================== */
.products {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 580px; margin-inline: auto;
}
.product {
  border: 1.5px solid var(--gold-deep);
  border-radius: 130px 130px 14px 14px / 80px 80px 14px 14px; /* domed icon niche */
  overflow: hidden;
  background: var(--black-3);
  text-align: center;
  box-shadow: inset 0 0 0 4px var(--black-3), inset 0 0 0 5px rgba(201,162,39,0.28);
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.product[data-buy] { cursor: default; }
.product:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: inset 0 0 0 4px var(--black-3), inset 0 0 0 5px rgba(201,162,39,0.55), var(--shadow);
}
.product__img {
  aspect-ratio: 1 / 1;
  display: grid; place-items: center;
  font-size: clamp(2.5rem, 9vw, 3.6rem);
  color: var(--gold); stroke: var(--gold);
  background:
    repeating-linear-gradient(45deg, rgba(201,162,39,0.04) 0 12px, transparent 12px 24px),
    radial-gradient(circle at 50% 45%, rgba(201,162,39,0.12), transparent 65%);
  position: relative;
}
.product__img .ico { width: 1em; height: 1em; }
.product__photo {
  grid-area: 1 / 1;
  width: 100%; height: 100%;
  object-fit: contain;
  background: var(--cream);
  display: none; /* shown by JS only once the file actually loads */
}
.product__fallback {
  grid-area: 1 / 1;
  display: grid; place-items: center;
  width: 100%; height: 100%;
  color: var(--gold); stroke: var(--gold);
}
/* Recreated hoodie back-print artwork (gold on the dark "garment") */
.product__img--design {
  background:
    radial-gradient(circle at 50% 46%, rgba(201,162,39,0.14), transparent 64%),
    var(--black-3);
}
.hoodie-design { width: 100%; height: 100%; padding: 5% 4%; }
.product-cross { width: 100%; height: 100%; padding: 9% 7%; }
.hoodie-design__text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 2.5px;
  fill: #e0b948;
}
.product__name { font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; padding: 1rem 0.8rem 0.2rem; }
.product__price {
  font-family: var(--font-ui); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); padding-bottom: 1.2rem;
}
.shop__note { text-align: center; margin-top: clamp(2rem, 5vw, 3rem); }
.shop__note p { color: var(--ink-soft); font-size: 1.18rem; margin-bottom: 1rem; }

/* ===================== CONNECT ===================== */
.connect__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.connect__intro p { font-size: 1.18rem; color: var(--ink-soft); }
.connect__list { margin-top: 1.4rem; display: grid; gap: 0.85rem; }
.connect__list li { display: flex; align-items: flex-start; gap: 0.7rem; color: var(--ink-soft); }
.connect__list .ico { font-size: 1.25rem; color: var(--gold); stroke: var(--gold); flex: 0 0 auto; margin-top: 0.15rem; }
.connect__socials { display: flex; gap: 1.1rem; margin-top: 1.8rem; }
.connect__socials a {
  display: grid; place-items: center; width: 46px; height: 46px;
  border: 1px solid var(--line); border-radius: 50%;
  font-size: 1.3rem; color: var(--gold); stroke: var(--gold);
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s;
}
.connect__socials a:hover { transform: translateY(-4px); background: rgba(201,162,39,0.1); border-color: var(--gold); }

.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.45rem; }
.field label {
  font-family: var(--font-ui); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
}
.field input, .field select, .field textarea {
  font-family: var(--font-serif); font-size: 1.1rem;
  color: var(--cream);
  background: var(--black-3);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 0.8rem 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c9a227' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}
.field input.invalid, .field textarea.invalid { border-color: #d66; box-shadow: 0 0 0 3px rgba(214,102,102,0.15); }
.form__submit { justify-self: start; margin-top: 0.4rem; }
.form__status { font-size: 1rem; color: var(--gold-light); min-height: 1.2em; }
.form__status.error { color: #e58a8a; }

/* ===================== FOLLOW / SOCIALS ===================== */
.socials { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.social {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.7rem;
  padding: 1.7rem 1rem 1.45rem;
  border: 1.5px solid var(--gold-deep);
  border-radius: 120px 120px 14px 14px / 78px 78px 14px 14px; /* domed icon niche */
  background: var(--black-3);
  box-shadow: inset 0 0 0 4px var(--black-3), inset 0 0 0 5px rgba(201,162,39,0.25);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.social:not(.social--soon):hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: inset 0 0 0 4px var(--black-3), inset 0 0 0 5px rgba(201,162,39,0.5), var(--shadow);
}
.social__icon {
  flex: 0 0 auto; display: grid; place-items: center;
  width: 60px; height: 60px; border-radius: 50%;
  font-size: 1.8rem; color: var(--gold); stroke: var(--gold);
  border: 1px solid var(--gold-deep);
  background: radial-gradient(circle at 50% 35%, rgba(201,162,39,0.18), transparent 70%);
}
.social__name { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; }
.social__handle { font-family: var(--font-ui); font-size: 0.78rem; letter-spacing: 0.06em; color: var(--ink-soft); }
.social--soon { opacity: 0.55; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--black); border-top: 1px solid var(--line); padding-top: clamp(2.5rem, 6vw, 4rem); }
.footer__inner {
  display: grid; gap: 2rem; text-align: center;
  padding-bottom: 2.5rem;
}
.footer__brand { display: grid; justify-items: center; gap: 0.5rem; }
.footer__mark { width: 60px; filter: drop-shadow(0 4px 16px rgba(201,162,39,0.4)); }
.footer__name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; letter-spacing: 0.05em;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.footer__tag { color: var(--ink-faint); font-size: 1.02rem; }
.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 1.6rem; }
.footer__nav a {
  font-family: var(--font-ui); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); transition: color 0.25s;
}
.footer__nav a:hover { color: var(--gold); }
.footer__socials { display: flex; justify-content: center; gap: 1.2rem; }
.footer__socials a {
  display: grid; place-items: center; width: 46px; height: 46px;
  border: 1px solid var(--line); border-radius: 50%;
  font-size: 1.3rem; color: var(--gold); stroke: var(--gold);
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s;
}
.footer__socials a:hover { transform: translateY(-4px); background: rgba(201,162,39,0.1); border-color: var(--gold); }
.footer__base {
  border-top: 1px solid var(--line-soft);
  padding: 1.5rem var(--pad);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: var(--ink-faint); font-size: 0.92rem;
}
.footer__base .cross { color: var(--gold); display: inline-flex; }
.footer__base .cross .ico { width: 1.2rem; height: 1.2rem; color: var(--gold); }

/* ===================== BACK TO TOP ===================== */
.to-top {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 90;
  display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold-grad); color: var(--black);
  font-size: 1.2rem;
  box-shadow: 0 10px 26px rgba(0,0,0,0.5);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity 0.35s, visibility 0.35s, transform 0.35s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top .ico--up { transform: rotate(180deg); stroke: var(--black); }

/* ===================== SCROLL REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

/* ===================== RESPONSIVE ===================== */
@media (min-width: 600px) {
  .products { grid-template-columns: repeat(2, 1fr); }
  .platforms { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 880px) {
  html { scroll-padding-top: 88px; }
  .nav { display: flex; align-items: center; gap: 1.5rem; }
  .nav-toggle { display: none; }
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .connect__grid { grid-template-columns: 0.9fr 1.1fr; gap: 3rem; align-items: start; }
  .footer__inner {
    grid-template-columns: 1.4fr 1fr auto;
    text-align: left; align-items: center;
  }
  .footer__brand { justify-items: start; }
  .footer__nav { justify-content: center; flex-direction: column; gap: 0.7rem; align-items: flex-start; }
}

@media (min-width: 1024px) {
  .featured-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
}

/* ===================== REDUCED MOTION ===================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .hero__logo, .hero__scroll .ico { animation: none; }
  .hero__video { display: none; }
  * { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
}
