/* ============================================================
   TAUFAH — site v2
   Signature: deep indigo · diamond lattice · trilingual foil
   ============================================================ */

@font-face {
  font-family: "Karlie Condensed";
  src: url("karlie-condensed.otf") format("opentype");
  font-weight: 400 700;
  font-display: swap;
}

/* ── Tokens ────────────────────────────────────────────────── */
:root {
  --night:        #0b0920;
  --indigo-950:   #0e0c24;
  --indigo-900:   #12102c;
  --indigo-850:   #161334;
  --indigo-800:   #1a173c;
  --indigo-700:   #221f4a;
  --indigo-600:   #2b2758;
  --indigo-veil:  rgba(11,9,32,.78);

  --silver:        #c2c7de;
  --silver-bright: #eceffa;
  --silver-dim:    #848aae;
  --silver-faint:  #535879;

  --ink:           #eae6ff;
  --ink-soft:      #b2b5d5;
  --ink-mute:      #787b9c;

  /* Foil gold */
  --gold:          #c8a44a;
  --gold-bright:   #efd888;
  --gold-deep:     #896a1e;
  --gold-pale:     #fff1bc;
  --gold-glow:     rgba(200,164,74,.54);
  --gold-rgb:      200,164,74;

  /* Season accent — defaults to Diwali gold */
  --accent:        var(--gold);
  --accent-bright: var(--gold-bright);
  --accent-deep:   var(--gold-deep);
  --accent-glow:   var(--gold-glow);
  --accent-rgb:    200,164,74;

  /* Fonts */
  --f-title:  "Karlie Condensed", "Cinzel", "Palatino Linotype", serif;
  --f-deco:   "Cinzel", "Palatino Linotype", serif;
  --f-text:   "Cormorant Garamond", Georgia, serif;
  --f-body:   "Sora", "Mulish", system-ui, sans-serif;
  --f-deva:   "Noto Serif Devanagari", serif;
  --f-arab:   "Noto Naskh Arabic", serif;

  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  --maxw:    1300px;
  --gutter:  clamp(22px, 5.5vw, 90px);
  --pad:     clamp(56px, 8vh, 100px);
  --motion:  1;
}

/* Season overrides */
[data-drop="diwali"] {
  --accent: #c8a44a; --accent-bright: #efd888; --accent-deep: #896a1e;
  --accent-glow: rgba(200,164,74,.54); --accent-rgb: 200,164,74;
}
[data-drop="christmas"] {
  --accent: #c55240; --accent-bright: #e88470; --accent-deep: #943728;
  --accent-glow: rgba(197,82,64,.5); --accent-rgb: 197,82,64;
}
[data-drop="eid"] {
  --accent: #87b2a0; --accent-bright: #b6d6ca; --accent-deep: #477866;
  --accent-glow: rgba(135,178,160,.45); --accent-rgb: 135,178,160;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--f-body);
  background: var(--indigo-950);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
@media (pointer: coarse) { body { cursor: auto; } }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent-glow); color: #fff; }

/* ── Background system ─────────────────────────────────────── */
/* Layer 1 — colour base */
#bg-base {
  position: fixed; inset: 0; z-index: -4;
  background: radial-gradient(140% 100% at 50% -8%,
    var(--indigo-700) 0%, var(--indigo-900) 40%, var(--indigo-950) 100%);
}
/* Layer 2 — reserved (canvas lattice.js handles the pattern) */
#bg-lattice { display: none; }
/* Layer 3 — animated canvas (lattice.js adds a light sweep) */
#lattice { position: fixed; inset: 0; z-index: -2; pointer-events: none; }
/* Layer 4 — ambient glow wash */
#bg-wash {
  position: fixed; inset: -20%; z-index: -1; pointer-events: none;
  opacity: .42;
  background: radial-gradient(40% 40% at 32% 18%, var(--accent-glow), transparent 68%);
  filter: blur(52px);
  transition: background 1.4s var(--ease);
}

/* ── Cursor ────────────────────────────────────────────────── */
.cursor, .cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
  border-radius: 50%; mix-blend-mode: screen; will-change: transform;
}
.cursor {
  width: 34px; height: 34px;
  border: 1px solid rgba(var(--accent-rgb), .75);
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease), height .35s var(--ease), border-color .35s, background .35s;
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--accent-bright);
  transform: translate(-50%, -50%);
}
.cursor.is-hover {
  width: 60px; height: 60px;
  background: rgba(var(--accent-rgb), .09);
  border-color: transparent;
}
@media (pointer: coarse) { .cursor, .cursor-dot { display: none; } }

/* ── Typography ────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--f-deco);
  font-size: clamp(10px, 1vw, 11.5px);
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.eyebrow .muted { color: var(--silver-dim); }

h1, h2, h3 { font-family: var(--f-title); font-weight: 500; line-height: 1; letter-spacing: .01em; }

.statement {
  font-family: var(--f-text);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--silver-bright);
}
.statement em { font-style: italic; color: var(--accent-bright); }

/* Foil treatments — animated shimmer */
.gold-foil {
  background: linear-gradient(108deg,
    var(--gold-deep) 0%, var(--gold) 18%, var(--gold-bright) 34%,
    var(--gold-pale) 44%, var(--gold-bright) 56%, var(--gold) 70%,
    var(--gold-bright) 82%, var(--gold-deep) 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: foilShimmer 7s ease-in-out infinite;
}
.silver-foil {
  background: linear-gradient(108deg,
    var(--silver-faint) 0%, var(--silver) 18%, var(--silver-bright) 34%,
    #fff 44%, var(--silver-bright) 56%, var(--silver-dim) 70%,
    var(--silver-bright) 82%, var(--silver-faint) 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: foilShimmer 9s ease-in-out infinite 2s;
}
@keyframes foilShimmer {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

.deva { font-family: var(--f-deva); }
.arab { font-family: var(--f-arab); direction: rtl; }

/* ── Layout ────────────────────────────────────────────────── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); width: 100%; }
section { position: relative; }
.pad  { padding-block: var(--pad); }

/* Ornamental rule  ——◇—— */
.ornaline {
  display: flex; align-items: center; gap: 18px;
  margin-block: clamp(28px, 4vh, 52px);
  pointer-events: none;
}
.ornaline::before, .ornaline::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), .28) 30%, rgba(var(--accent-rgb), .28) 70%, transparent);
}
.ornaline .dia {
  width: 7px; height: 7px;
  background: rgba(var(--accent-rgb), .55);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-deco); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; font-weight: 600;
  color: var(--indigo-950);
  background: linear-gradient(120deg, var(--gold-bright), var(--gold));
  padding: 13px 28px; border-radius: 100px; border: none;
  cursor: none; position: relative; overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  box-shadow: 0 8px 28px -6px var(--accent-glow);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -8px var(--accent-glow); }
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.55) 50%, transparent 70%);
  transform: translateX(-130%); transition: transform .85s var(--ease);
}
.btn:hover::after { transform: translateX(130%); }
.btn.ghost {
  background: transparent; color: var(--ink);
  border: 1px solid rgba(194,199,222,.26); box-shadow: none;
}
.btn.ghost:hover { border-color: var(--accent); color: var(--accent-bright); }
.arr { transition: transform .4s var(--ease); display: inline-block; }
.btn:hover .arr { transform: translateX(4px); }

/* ── Reveal animations ─────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms * var(--motion));
}
.reveal.in { opacity: 1; transform: none; }
.reveal-mask { overflow: hidden; }
.reveal-mask > * {
  display: block; transform: translateY(108%);
  transition: transform 1.1s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms * var(--motion));
}
.reveal-mask.in > * { transform: none; }
.h-rise {
  opacity: 0;
  animation: hRise 1s var(--ease) forwards;
  animation-delay: calc(0.4s + var(--i, 0) * 0.13s);
}
@keyframes hRise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-mask > *, .h-rise {
    opacity: 1 !important; transform: none !important; animation: none !important;
  }
}

/* ── NAV ───────────────────────────────────────────────────── */
header.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 20px var(--gutter);
  transition: background .5s var(--ease), padding .5s var(--ease), border-color .5s;
  border-bottom: 1px solid transparent;
}
header.nav.scrolled {
  background: rgba(11,9,32,.78);
  backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid rgba(194,199,222,.08);
  padding-block: 14px;
}
.nav-logo { height: 22px; width: auto; display: block; }

/* Triscript lockup with silver foil — taufah-lockup.png aspect 4269×2400 ≈ 1.779:1 */
.nav-logo-triscript {
  height: 66px; width: 117px; flex-shrink: 0; display: block;
  background: linear-gradient(108deg,
    var(--silver-faint) 0%, var(--silver) 14%, var(--silver-bright) 28%,
    #ffffff 40%, var(--silver-bright) 52%, var(--silver) 64%,
    var(--silver-bright) 76%, var(--silver-faint) 88%, #ffffff 100%);
  background-size: 280% 100%;
  animation: foilShimmer 9s ease-in-out infinite 2s;
  -webkit-mask-image: url('taufah-lockup.png');
          mask-image: url('taufah-lockup.png');
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center center; mask-position: center center;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 11.5px; letter-spacing: .1em; color: var(--ink-soft);
  position: relative; padding: 6px 0; text-transform: uppercase; font-weight: 500;
  transition: color .4s var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  height: 1px; width: 0; background: var(--accent);
  transition: width .45s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 16px; }

/* Drop badge */
.drop-badge { position: relative; }
.drop-badge .badge {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--f-deco); font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent-bright);
  background: rgba(var(--accent-rgb), .08);
  border: 1px solid rgba(var(--accent-rgb), .3);
  padding: 8px 14px; border-radius: 100px; cursor: none;
  transition: border-color .4s, background .4s, box-shadow .4s;
}
.drop-badge .badge:hover {
  background: rgba(var(--accent-rgb), .15);
  box-shadow: 0 0 22px rgba(var(--accent-rgb), .22);
}
.drop-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-bright);
  animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 var(--accent-glow); }
  70%  { box-shadow: 0 0 0 8px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
.drop-menu {
  position: absolute; top: calc(100% + 12px); right: 0; width: 248px;
  background: rgba(16,14,38,.95); backdrop-filter: blur(20px);
  border: 1px solid rgba(194,199,222,.14); border-radius: 16px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
  box-shadow: 0 28px 60px -16px rgba(0,0,0,.78);
}
.drop-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.drop-menu .mlabel {
  font-family: var(--f-deco); font-size: 9px; letter-spacing: .3em;
  color: var(--silver-faint); padding: 10px 12px 6px; text-transform: uppercase;
}
.drop-opt {
  display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 10px;
  cursor: none; transition: background .3s; width: 100%; text-align: left;
  background: none; border: none; color: var(--ink); font-family: var(--f-body);
}
.drop-opt:hover { background: rgba(194,199,222,.07); }
.drop-opt .sw { width: 12px; height: 12px; border-radius: 3px; flex: none; border: 1px solid rgba(255,255,255,.18); }
.drop-opt .nm { font-size: 13px; font-weight: 600; }
.drop-opt .st { font-size: 10px; color: var(--ink-mute); letter-spacing: .05em; margin-left: auto; text-transform: uppercase; }
.drop-opt[disabled] { opacity: .4; cursor: not-allowed; }
.drop-opt.active .nm { color: var(--accent-bright); }
.nav-burger { display: none; }

/* ── HERO (full-bleed bg · left text overlay) ─────────────── */
.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  background: var(--indigo-950);
}
/* Full-bleed background image */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  position: absolute;
  right: -8%;
  bottom: -5%;
  width: 82%;
  height: auto;
  object-fit: contain;
  display: block;
}
/* Gradient: dark left for text readability, fades to transparent right */
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    var(--indigo-950) 0%,
    var(--indigo-950) 32%,
    rgba(14,12,36,0.7) 46%,
    rgba(14,12,36,0.1) 60%,
    transparent 72%
  );
}
/* Dark blue overlay — in front of box, behind text */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to right,
      rgba(8,9,28,0.96) 0%,
      rgba(8,9,28,0.82) 30%,
      rgba(8,9,28,0.48) 54%,
      rgba(8,9,28,0.18) 72%,
      transparent 88%),
    radial-gradient(ellipse 85% 75% at 72% 58%, rgba(14,18,70,0.38) 0%, transparent 65%);
}
/* Left text block */
.hero-left {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; justify-content: flex-start;
  min-height: 100svh;
  max-width: 58%;
  min-width: 0;
  padding: clamp(90px, 10vw, 130px) clamp(40px, 5.5vw, 90px) clamp(60px, 8vh, 100px);
}
/* TAUFAH trilingual lockup image */
.hero-lockup {
  width: clamp(260px, 46vw, 640px);
  height: auto;
  display: block;
  margin-left: -1.8%;
  margin-bottom: clamp(24px, 3vw, 44px);
  mix-blend-mode: normal;
  opacity: 0; animation: hRise 1s var(--ease) 0.1s forwards;
}
/* TAUFAH — giant display wordmark */
.hero-wordmark {
  font-family: var(--f-title);
  font-size: clamp(80px, 16.5vw, 238px);
  line-height: 0.88;
  letter-spacing: 0.025em;
  color: #fff;
  font-weight: 400;
  margin-bottom: clamp(18px, 2.5vw, 38px);
  white-space: nowrap;
  opacity: 0; animation: hRise 1s var(--ease) 0.1s forwards;
}
/* Trilingual row */
.hero-tri-row {
  display: flex; align-items: center;
  gap: clamp(18px, 3vw, 48px);
  margin-bottom: clamp(28px, 4.5vw, 56px);
  opacity: 0; animation: hRise 1s var(--ease) 0.28s forwards;
}
.hero-tri-deva {
  font-family: var(--f-deva);
  font-size: clamp(22px, 3.2vw, 46px);
  color: #fff; font-weight: 400; line-height: 1;
}
.hero-tri-dia {
  width: clamp(18px, 2.2vw, 30px); height: clamp(18px, 2.2vw, 30px);
  background: #1a1e58;
  transform: rotate(45deg); flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}
.hero-tri-arab {
  font-family: var(--f-arab);
  font-size: clamp(24px, 3.4vw, 50px);
  color: #fff; direction: rtl; line-height: 1;
}
/* Body copy */
.hero-body-copy {
  width: clamp(260px, 46vw, 640px);
  max-width: 100%;
  padding-left: 0;
  opacity: 0; animation: hRise 1s var(--ease) 0.46s forwards;
}
.hero-body-copy p {
  font-family: var(--f-body);
  font-size: clamp(13px, 1.12vw, 15px);
  color: rgba(255,255,255,0.82);
  font-weight: 300; line-height: 1.78;
  margin-bottom: 1.3em;
}
.hero-body-copy p:last-child { margin-bottom: 0; }

/* ── ABOUT ─────────────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(36px, 7vw, 96px); align-items: center;
}
.subko-p {
  font-size: clamp(15.5px, 1.4vw, 17.5px);
  color: var(--ink-soft); font-weight: 300; line-height: 1.72;
  margin-bottom: 18px; max-width: 48ch; text-wrap: pretty;
}
.subko-marks { display: flex; gap: 10px; flex-wrap: wrap; margin: 34px 0 28px; }
.smark {
  display: flex; flex-direction: column; gap: 2px;
  padding: 13px 20px; border: 1px solid rgba(194,199,222,.12);
  border-radius: 12px; background: rgba(22,19,52,.45);
  transition: border-color .5s var(--ease), transform .5s var(--ease);
}
.smark:hover { border-color: rgba(var(--accent-rgb), .4); transform: translateY(-3px); }
.smark .k { font-family: var(--f-deco); font-size: 9px; letter-spacing: .26em; text-transform: uppercase; color: var(--accent); }
.smark .v { font-family: var(--f-text); font-size: 24px; color: var(--silver-bright); font-weight: 500; }
.subko-link {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-deco); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--silver); transition: color .4s, gap .4s;
}
.subko-link:hover { color: var(--accent-bright); gap: 14px; }

/* About slideshow */
.subko-slideshow {
  position: relative; border-radius: 16px;
  border: 1px solid rgba(194,199,222,.1);
  box-shadow: 0 40px 90px -36px rgba(0,0,0,.76);
  /* No overflow:hidden — avoids GPU rasterisation that degrades quality */
}
/* Corner masking via clip-path so image renders at full source quality */
.subko-slideshow .slide-track {
  clip-path: inset(0 round 16px);
}
.slide-track { position: relative; aspect-ratio: 4/3; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.3s var(--ease); }
.slide.is-active { opacity: 1; }
.slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 36%;
  display: block;
  image-rendering: high-quality;
  image-rendering: -webkit-optimize-contrast;
}
.slide .ph { width: 100%; height: 100%; }
.slide-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(11,9,32,.86), transparent);
}
.slide-loc { font-family: var(--f-deco); font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--silver-bright); }
.slide-dots { display: flex; gap: 7px; }
.sdot { width: 7px; height: 7px; border-radius: 50%; border: none; background: rgba(194,199,222,.3); cursor: none; transition: background .4s, transform .4s; }
.sdot.is-active { background: var(--accent-bright); transform: scale(1.3); }

/* ── THIS SEASON ───────────────────────────────────────────── */
.season-head { max-width: 800px; margin-bottom: 52px; }
.season-title {
  font-family: var(--f-text); font-weight: 400;
  font-size: clamp(32px, 5vw, 68px); line-height: 1.08; letter-spacing: -.01em;
  color: var(--silver-bright);
  margin: 14px 0 24px;
}
.season-title em { font-style: italic; color: var(--accent-bright); font-weight: 400; }
.season-lede {
  max-width: 52ch;
  font-size: clamp(15.5px, 1.45vw, 19px);
  color: var(--ink-soft); font-weight: 300; line-height: 1.58; text-wrap: pretty;
}
.season-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 20px; }
.season-sub-grid { display: flex; flex-direction: column; gap: 20px; height: 100%; }
.season-card {
  position: relative; display: block; border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(194,199,222,.1);
  transition: transform .7s var(--ease), box-shadow .7s var(--ease), border-color .7s;
}
.season-card img {
  width: 100%; object-fit: cover; display: block;
  transition: transform 1s var(--ease), filter .7s; filter: saturate(.94);
}
.season-card.main-card img { aspect-ratio: 4/5; width: 100%; }
.season-card.sub-card { flex: 1; min-height: 160px; }
.season-card.sub-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.season-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,9,32,.9) 0%, transparent 54%);
}
.season-card:hover { transform: translateY(-8px); box-shadow: 0 40px 80px -28px rgba(0,0,0,.76); border-color: rgba(var(--accent-rgb), .42); }
.season-card:hover img { transform: scale(1.05); filter: saturate(1.06); }
.season-card-info { position: absolute; left: 22px; bottom: 20px; z-index: 2; }
.season-card-info .ctag { font-family: var(--f-deco); font-size: 9.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--accent); }
.season-card-info h3 { font-family: var(--f-text); font-size: clamp(22px, 2.3vw, 32px); font-weight: 500; margin-top: 6px; }
.season-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; margin-top: 46px; }
.season-note { font-size: 13px; color: var(--ink-mute); font-weight: 300; }

/* ── ARCHIVE ───────────────────────────────────────────────── */
.archive-head { margin-bottom: 50px; }
.masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-content: center;
}
.masonry .tile {
  aspect-ratio: 1;
  position: relative; border-radius: 12px; overflow: hidden;
  cursor: none; border: 1px solid rgba(194,199,222,.08);
  transition: border-color .5s;
}
.masonry .tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.1s var(--ease); }
.masonry .tile:hover { border-color: rgba(var(--accent-rgb), .28); }
.masonry .tile:hover img { transform: scale(1.05); }
.masonry .tile .ov {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 20px;
  background: linear-gradient(to top, rgba(11,9,32,.88), transparent 56%);
  opacity: 0; transition: opacity .6s var(--ease);
}
.masonry .tile:hover .ov { opacity: 1; }
.masonry .tile .ov .t { font-family: var(--f-text); font-size: 22px; font-weight: 500; color: var(--silver-bright); }
.masonry .tile .ov .s { font-family: var(--f-deco); font-size: 9px; letter-spacing: .24em; text-transform: uppercase; color: var(--accent); }

/* Placeholder */
.ph {
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: repeating-linear-gradient(135deg, rgba(194,199,222,.04) 0 10px, transparent 10px 20px), var(--indigo-800);
}
.ph span { font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: .1em; color: var(--silver-faint); padding: 16px; }
.ph.tall { min-height: 360px; }

/* ── EID SLIDER TILE ───────────────────────────────────────── */
.eid-slider { position: relative; aspect-ratio: 1; overflow: hidden; }
.eid-slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity .5s var(--ease);
}
.eid-slide.active { opacity: 1; }
.eid-arr {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(11,9,32,.55); backdrop-filter: blur(8px);
  border: 1px solid rgba(194,199,222,.18); color: #fff;
  width: 32px; height: 32px; border-radius: 50%;
  font-size: 18px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
  z-index: 10;
}
.eid-arr-prev { left: 10px; }
.eid-arr-next { right: 10px; }
.tile:hover .eid-arr { opacity: 1; }
.eid-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 10;
}
.eid-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.35); border: none; cursor: pointer;
  padding: 0; transition: background .3s, transform .3s;
}
.eid-dot.active { background: #fff; transform: scale(1.3); }

/* ── HOW IT WORKS ──────────────────────────────────────────── */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  position: relative; margin-top: 28px;
}
.steps .line { position: absolute; top: 30px; left: 8%; right: 8%; height: 1px; background: rgba(194,199,222,.14); z-index: 0; }
.steps .line i { position: absolute; inset: 0; width: 0; background: linear-gradient(90deg, var(--accent), var(--accent-bright)); transition: width 1.8s var(--ease); }
.steps.in .line i { width: 100%; }
.step { position: relative; z-index: 1; padding: 0 12px; text-align: center; }
.step .dot {
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--indigo-900); border: 1px solid var(--accent);
  margin: 24px auto 0; transition: transform .5s var(--ease), box-shadow .5s;
}
.step.in .dot { box-shadow: 0 0 0 5px rgba(var(--accent-rgb), .12); }
.step .sn { font-family: var(--f-deco); font-size: 10px; letter-spacing: .3em; color: var(--silver-faint); margin-top: 20px; }
.step h4 { font-family: var(--f-text); font-size: clamp(20px, 2vw, 28px); font-weight: 500; margin: 8px 0 9px; color: var(--silver-bright); }
.step p { font-size: 14.5px; color: var(--ink-soft); font-weight: 300; max-width: 22ch; margin: 0 auto; line-height: 1.55; }

/* ── ENQUIRE ───────────────────────────────────────────────── */
.enquire-inner { max-width: 860px; }
.enquire-inner h2 { font-family: var(--f-text); font-size: clamp(28px, 4.2vw, 54px); font-weight: 400; line-height: 1.08; letter-spacing: -.01em; }
.enquire-inner .lede { margin: 24px 0 0; max-width: 50ch; font-size: clamp(15.5px, 1.5vw, 19px); color: var(--ink-soft); font-weight: 300; line-height: 1.56; text-wrap: pretty; }
.embed-slot {
  margin-top: 46px; border: 1px dashed rgba(194,199,222,.24); border-radius: 16px;
  background: rgba(22,19,52,.45); backdrop-filter: blur(8px); padding: 40px 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-family: var(--f-deco); font-size: 9px; letter-spacing: .24em; text-transform: uppercase; color: var(--silver-dim); }
.field input, .field textarea {
  background: rgba(11,9,32,.55); border: 1px solid rgba(194,199,222,.15);
  border-radius: 9px; padding: 13px 15px; color: var(--ink);
  font-family: var(--f-body); font-size: 14.5px;
  transition: border-color .4s, box-shadow .4s; cursor: none;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 2px rgba(var(--accent-rgb), .14);
}
.field.full { grid-column: 1 / -1; }
.embed-actions { margin-top: 24px; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.embed-note { font-size: 11px; color: var(--silver-faint); font-family: ui-monospace, monospace; }

/* Two-col form + contact layout */
.embed-two-col {
  display: flex; gap: 0; align-items: stretch;
}
.embed-form { flex: 1 1 0; min-width: 0; }
.embed-divider {
  width: 1px; flex-shrink: 0;
  margin: 0 40px;
  background: rgba(194,199,222,.15);
  align-self: stretch;
}
.embed-contact {
  flex: 0 0 220px; display: flex; flex-direction: column; justify-content: center; gap: 28px;
}
.embed-contact-title {
  font-family: var(--f-deco); font-size: 9px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--accent);
}
.embed-contact-list { display: flex; flex-direction: column; gap: 0; }
.embed-contact-item {
  display: flex; align-items: center; gap: 13px;
  padding: 13px 16px; border-radius: 10px;
  font-size: 13.5px; color: var(--ink-soft); font-weight: 300;
  transition: background .3s, color .3s; text-decoration: none;
  border: 1px solid transparent;
}
a.embed-contact-item:hover {
  background: rgba(var(--accent-rgb), .07);
  border-color: rgba(var(--accent-rgb), .18);
  color: var(--ink);
}

/* Contact icons via inline SVG bg */
.ec-icon {
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 8px;
  background: rgba(var(--accent-rgb), .12);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.ec-icon::after {
  content: ''; display: block;
  background-size: contain; background-repeat: no-repeat; background-position: center;
  width: 13px; height: 13px;
}
.ec-icon--mail::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23c8a44a' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1' y='3' width='14' height='10' rx='2'/%3E%3Cpath d='M1 5l7 5 7-5'/%3E%3C/svg%3E");
}
.ec-icon--phone::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23c8a44a' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 2.5A1.5 1.5 0 013.5 1h1A1.5 1.5 0 016 2.5v1A1.5 1.5 0 014.5 5h-.25C4.1 7.2 5.8 10.4 8.5 11.75V11.5A1.5 1.5 0 0110 10h1a1.5 1.5 0 011.5 1.5v1A1.5 1.5 0 0111 14C5.5 14 2 8.5 2 3.5v-1z'/%3E%3C/svg%3E");
}
.ec-icon--clock::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23c8a44a' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='8' r='6.5'/%3E%3Cpath d='M8 4.5V8l2.5 2.5'/%3E%3C/svg%3E");
}

/* Requirement pill toggles */
.req-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 2px; }
.req-pill {
  font-family: var(--f-deco); font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  padding: 9px 18px; border-radius: 100px; cursor: none;
  background: transparent; color: var(--ink-soft);
  border: 1px solid rgba(194,199,222,.2);
  transition: border-color .3s, color .3s, background .3s;
}
.req-pill:hover { border-color: rgba(var(--accent-rgb), .45); color: var(--ink); }
.req-pill.active {
  border-color: var(--accent); color: var(--accent-bright);
  background: rgba(var(--accent-rgb), .08);
}

/* Required asterisk */
.req { color: var(--accent); font-style: normal; }

@media (max-width: 780px) {
  .embed-two-col { flex-direction: column; }
  .embed-divider { width: auto; height: 1px; margin: 28px 0; align-self: auto; }
  .embed-contact { flex: none; }
}

/* ── FOOTER ────────────────────────────────────────────────── */
footer {
  position: relative; padding: 72px var(--gutter) 44px;
  border-top: 1px solid rgba(194,199,222,.1); background: var(--indigo-950);
}
.foot-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
}
.foot-logo { height: 30px; width: auto; display: block; }
.foot-by { margin-top: 13px; font-size: 13px; color: var(--ink-mute); }
.foot-by a { color: var(--silver); border-bottom: 1px solid rgba(194,199,222,.22); transition: color .3s, border-color .3s; }
.foot-by a:hover { color: var(--accent-bright); border-color: var(--accent); }
.foot-scripts { margin-top: 18px; display: flex; align-items: center; gap: 10px; color: var(--silver-faint); }
.foot-scripts .deva { font-size: 19px; color: var(--silver-dim); }
.foot-scripts .arab { font-size: 21px; color: var(--silver-dim); }
.foot-col h5 { font-family: var(--f-deco); font-size: 9px; letter-spacing: .28em; text-transform: uppercase; color: var(--silver-faint); margin-bottom: 16px; }
.foot-col a, .foot-col p { display: block; font-size: 14px; color: var(--ink-soft); margin-bottom: 9px; font-weight: 300; transition: color .3s; }
.foot-col a:hover { color: var(--accent-bright); }
.foot-bottom {
  max-width: var(--maxw); margin: 46px auto 0; padding-top: 22px;
  border-top: 1px solid rgba(194,199,222,.07);
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 11px; color: var(--ink-mute);
}
.foot-bottom .drip { color: var(--accent); }

/* ── Tweaks host hook ──────────────────────────────────────── */
#tweaks-root { position: fixed; z-index: 500; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .masonry { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  body { cursor: auto; }
  .nav-links { display: none; }
  .nav-burger {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
  }
  .nav-burger span { width: 24px; height: 1.5px; background: var(--ink); display: block; }
  .hero-left { max-width: 100%; padding-top: 80px; }
  .hero-bg::after { background: linear-gradient(to bottom, var(--indigo-950) 55%, rgba(14,12,36,0.6) 75%, transparent 100%), linear-gradient(to right, var(--indigo-950) 0%, var(--indigo-950) 50%, rgba(14,12,36,0.5) 75%, transparent 100%); }
  .about-grid { grid-template-columns: 1fr; }
  .season-grid { grid-template-columns: 1fr; }
  .season-sub-grid { flex-direction: row; }
  .steps { grid-template-columns: 1fr 1fr; gap: 30px 0; }
  .steps .line { display: none; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .masonry { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .season-sub-grid { flex-direction: column; }
  .steps { grid-template-columns: 1fr; }
}
