/* ============================================================
   GĀTHA — A Tale of Events
   Shared design system. All styles scoped under .gatha
   White editorial luxury · pearl white · midnight navy · champagne gold
   Type:  STIX Two Text (display) + Pinyon Script (accents) + DM Sans (body)
   Designed for the extreme-luxury wedding & event market
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=STIX+Two+Text:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Pinyon+Script&family=La+Belle+Aurore&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

:root {
  /* palette — white editorial, drawn from the Gatha logo */
  --bg:       #ffffff;   /* pure white */
  --bg-2:     #faf7f1;   /* warm ivory */
  --bg-3:     #f3efe6;   /* soft sand */
  --ink:      #14182b;   /* midnight navy (logo) */
  --ink-2:    #414761;   /* slate navy */
  --muted:    #82869a;   /* muted slate */
  --line:     #ece7dc;   /* hairline */
  --line-2:   #f2eee5;   /* faint hairline */
  --gold:     #b18a4c;   /* champagne gold */
  --gold-2:   #cba36a;   /* light champagne */
  --gold-3:   #8a6b31;   /* deep gold (text-legible) */
  --clay:     #96784a;   /* bronze accent */
  --dark:     #14182b;   /* midnight (mobile menu / scrims) */
  --dark-2:   #0f1224;
  --cream:    #fbf9f4;

  --serif:  'STIX Two Text', Georgia, 'Times New Roman', serif;
  --sans:   'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --script: 'Pinyon Script', 'Snell Roundhand', cursive;

  --wrap: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 3px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --shadow:    0 30px 70px -28px rgba(20,24,43,.16);
  --shadow-sm: 0 14px 40px -18px rgba(20,24,43,.12);
}

/* reset within namespace */
.gatha *, .gatha *::before, .gatha *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.gatha {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
.gatha img { max-width: 100%; display: block; }
.gatha a { color: inherit; text-decoration: none; }
.gatha ul { list-style: none; margin: 0; padding: 0; }
.gatha button { font-family: inherit; cursor: pointer; border: none; background: none; }
.gatha a, .gatha .btn, .gatha .gal-item, .gatha .svc-card, .gatha .faq-q, .gatha .filter-bar button, .gatha .testi-dots button { cursor: pointer; }
.gatha :focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
.gatha ::selection { background: rgba(177,138,76,.18); color: var(--ink); }

/* scroll progress (storytelling pattern) */
.gatha .scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 300; background: linear-gradient(90deg, var(--gold-3), var(--gold-2)); transition: width .1s linear; }
.gatha h1, .gatha h2, .gatha h3, .gatha h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.012em;
  margin: 0;
  color: var(--ink);
}

/* ---------- layout helpers ---------- */
.gatha .wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--gutter); }
.gatha .section { padding: clamp(72px, 10vw, 148px) 0; position: relative; }
.gatha .center { text-align: center; }
.gatha .eyebrow {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold-3);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.gatha .eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); opacity: .8; }
.gatha .eyebrow.no-line::before { display: none; }
.gatha .eyebrow.center-line::after { content: ""; width: 34px; height: 1px; background: var(--gold); opacity: .8; }

.gatha .display {
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  font-weight: 400;
  line-height: 1.02;
}
.gatha .it { font-family: var(--script); font-style: normal; font-weight: 400; font-size: 1.42em; line-height: 1; }
.gatha .display .it { color: var(--gold-3); }
.gatha .lead { font-size: clamp(.98rem, 1.25vw, 1.1rem); color: var(--ink-2); font-weight: 400; max-width: 60ch; }
.gatha .muted { color: var(--muted); }
.gatha .serif-accent { font-family: var(--serif); font-style: italic; }

/* ---------- buttons ---------- */
.gatha .btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 17px 34px;
  border-radius: 100px;
  position: relative;
  transition: .5s var(--ease);
  white-space: nowrap;
}
.gatha .btn .arrow { transition: transform .4s var(--ease); }
.gatha .btn:hover .arrow { transform: translateX(5px); }
.gatha .btn-solid { background: var(--ink); color: var(--cream); }
.gatha .btn-solid:hover { background: var(--gold-3); transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(138,107,49,.6); }
.gatha .btn-gold { background: var(--gold); color: #fff; }
.gatha .btn-gold:hover { background: var(--gold-3); transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(138,107,49,.55); }
.gatha .btn-outline { border: 1px solid var(--ink); color: var(--ink); }
.gatha .btn-outline:hover { background: var(--ink); color: var(--cream); }
.gatha .btn-ghost-light { border: 1px solid var(--line); color: var(--ink); background: var(--bg); }
.gatha .btn-ghost-light:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* text link */
.gatha .tlink {
  font-family: var(--sans); font-size: 12.5px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold-3);
  display: inline-flex; align-items: center; gap: 10px; position: relative;
}
.gatha .tlink::after { content: ""; position: absolute; left: 0; bottom: -5px; height: 1px; width: 100%; background: var(--gold); transform: scaleX(.3); transform-origin: left; opacity: .5; transition: .4s var(--ease); }
.gatha .tlink:hover::after { transform: scaleX(1); opacity: 1; }

/* ============================================================
   NAV
   ============================================================ */
.gatha .nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px var(--gutter);
  transition: .5s var(--ease);
}
.gatha .nav.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  padding-top: 15px; padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 30px -20px rgba(20,24,43,.2);
}
.gatha .brand { display: flex; align-items: center; }
.gatha .brand .mark { display: none; }
.gatha .brand .txt { line-height: 1; display: flex; flex-direction: column; align-items: center; }
.gatha .brand .name { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; letter-spacing: .42em; text-indent: .14em; text-transform: uppercase; color: var(--ink); transition: color .4s var(--ease); display: inline-flex; align-items: center; line-height: 1; }
.gatha .brand .name .g-mark { width: 1.28em; height: 1.28em; margin-right: .1em; flex: 0 0 auto; }
.gatha .brand .tag { font-family: 'La Belle Aurore', var(--script); font-size: .92rem; letter-spacing: .14em; align-self: stretch; text-align: center; letter-spacing: .02em; color: var(--ink-2); display: block; margin-top: 3px; transition: color .4s var(--ease); }

.gatha .nav-links { display: flex; align-items: center; gap: 34px; }
.gatha .nav-links a {
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2);
  position: relative; padding: 4px 0; transition: color .3s;
}
.gatha .nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.gatha .nav-links a:hover, .gatha .nav-links a.active { color: var(--ink); }
.gatha .nav-links a:hover::after, .gatha .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.gatha .nav-cta { margin-left: 6px; }

.gatha .burger { display: none; width: 30px; height: 20px; position: relative; z-index: 210; }
.gatha .burger span { position: absolute; left: 0; width: 100%; height: 1.6px; background: var(--ink); transition: .4s var(--ease); }
.gatha .burger.open span { background: var(--cream); }
.gatha .burger span:nth-child(1) { top: 2px; }
.gatha .burger span:nth-child(2) { top: 9px; }
.gatha .burger span:nth-child(3) { top: 16px; }
.gatha .burger.open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.gatha .burger.open span:nth-child(2) { opacity: 0; }
.gatha .burger.open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

.gatha .mobile-menu {
  position: fixed; inset: 0; z-index: 205;
  background: var(--dark); color: var(--cream);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px;
  opacity: 0; pointer-events: none; transform: translateY(-8px);
  transition: .5s var(--ease);
}
.gatha .mobile-menu.open { opacity: 1; pointer-events: auto; transform: none; }
.gatha .mobile-menu a { font-family: var(--serif); font-size: 2.1rem; color: var(--cream); padding: 8px 0; opacity: .85; transition: .3s; }
.gatha .mobile-menu a:hover { color: var(--gold-2); }
.gatha .mobile-menu .mm-foot { margin-top: 34px; display: flex; gap: 22px; font-family: var(--sans); font-size: 13px; letter-spacing: .1em; color: var(--gold-2); }

/* ============================================================
   HERO (home) — editorial split, white theme
   ============================================================ */
.gatha .hero { position: relative; background: var(--bg); min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding: 130px 0 70px; }
.gatha .hero::before { content: ""; position: absolute; top: 0; right: 0; width: 46%; height: 100%; background: var(--bg-2); z-index: 0; }
.gatha .hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--wrap); margin: 0 auto; padding-inline: var(--gutter); }
.gatha .hero-grid { display: grid; grid-template-columns: 1.02fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.gatha .hero-copy .eyebrow { color: var(--gold-3); }
.gatha .hero h1 { color: var(--ink); font-size: clamp(2rem, 3.8vw, 3.1rem); font-weight: 400; line-height: 1.08; margin: 26px 0 28px; }
.gatha .hero h1 .it { color: var(--gold-3); }
.gatha .hero-sub { max-width: 46ch; font-size: clamp(.95rem, 1.2vw, 1.06rem); color: var(--ink-2); font-weight: 400; }
.gatha .hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
.gatha .hero-facts { display: flex; gap: clamp(24px, 4vw, 48px); margin-top: 52px; padding-top: 30px; border-top: 1px solid var(--line); }
.gatha .hero-fact .hf-num { font-family: var(--serif); font-size: clamp(1.4rem, 2.2vw, 1.9rem); font-weight: 400; color: var(--ink); line-height: 1; }
.gatha .hero-fact .hf-num .plus { color: var(--gold-3); }
.gatha .hero-fact .hf-label { font-family: var(--sans); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 9px; }
.gatha .hero-media { position: relative; }
.gatha .hero-media img { width: auto; max-width: 100%; max-height: min(62vh, 540px); display: block; margin: 0 auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.gatha .hero-media::after { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--gold); border-radius: var(--radius); z-index: -1; opacity: .55; }
.gatha .hero-badge { position: absolute; left: -26px; bottom: 40px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 18px 24px; display: flex; align-items: center; gap: 14px; }
.gatha .hero-badge .hb-star { font-family: var(--serif); font-size: 1.4rem; color: var(--gold); line-height: 1; }
.gatha .hero-badge .hb-t { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); line-height: 1.1; }
.gatha .hero-badge .hb-s { font-family: var(--sans); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.gatha .hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--muted); font-family: var(--sans); font-size: 10px; letter-spacing: .28em; text-transform: uppercase; }
.gatha .hero-scroll .bar { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.gatha .hero-scroll .bar::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--gold-3); animation: scrollDot 2s infinite; }
@keyframes scrollDot { 0% { top: -50%; } 100% { top: 100%; } }

/* page hero (inner pages) — light editorial */
.gatha .page-hero { position: relative; padding: clamp(160px, 20vw, 230px) 0 clamp(56px, 8vw, 92px); background: var(--bg-2); color: var(--ink); overflow: hidden; }
.gatha .page-hero .hero-bg { position: absolute; inset: 0; z-index: 0; }
.gatha .page-hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .14; }
.gatha .page-hero .hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.7) 0%, rgba(250,247,241,.72) 45%, rgba(250,247,241,.92) 100%); }
.gatha .page-hero-inner { position: relative; z-index: 2; }
.gatha .page-hero h1 { color: var(--ink); font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 400; margin: 18px 0 20px; }
.gatha .page-hero h1 .it { color: var(--gold-3); }
.gatha .page-hero .eyebrow { color: var(--gold-3); }
.gatha .page-hero p { color: var(--ink-2); max-width: 58ch; }
.gatha .crumbs { font-family: var(--sans); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 26px; }
.gatha .crumbs a:hover { color: var(--gold-3); }

/* ============================================================
   INTRO / SPLIT
   ============================================================ */
.gatha .split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.gatha .split.reverse .split-media { order: 2; }
.gatha .split-media { position: relative; }
.gatha .split-media img { border-radius: var(--radius); width: auto; max-width: 100%; max-height: 440px; display: block; margin: 0 auto; box-shadow: var(--shadow); }
.gatha .frame-img { position: relative; }
.gatha .frame-img::after { content: ""; position: absolute; inset: 16px -16px -16px 16px; border: 1px solid var(--gold); border-radius: var(--radius); z-index: -1; opacity: .55; }
.gatha .section-head { max-width: 620px; }
.gatha .section-head.center { margin-inline: auto; }
.gatha .section-head h2 { font-size: clamp(1.45rem, 2.35vw, 1.95rem); font-weight: 400; margin: 20px 0 22px; }
.gatha .section-head h2 .it { color: var(--gold-3); }

/* signature */
.gatha .signature { font-family: var(--script); font-style: normal; font-size: 2.8rem; line-height: 1; color: var(--gold-3); }
.gatha .sig-role { font-family: var(--sans); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* ============================================================
   STATS — light editorial with hairline dividers
   ============================================================ */
.gatha .stats { background: var(--bg-2); border-block: 1px solid var(--line); }
.gatha .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.gatha .stat { text-align: center; padding: 14px clamp(12px, 3vw, 34px); position: relative; }
.gatha .stat + .stat::before { content: ""; position: absolute; left: 0; top: 12%; height: 76%; width: 1px; background: var(--line); }
.gatha .stat .num { font-family: var(--serif); font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 400; color: var(--ink); line-height: 1; }
.gatha .stat .num .plus { color: var(--gold-3); }
.gatha .stat .label { font-family: var(--sans); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 14px; }

/* ============================================================
   SERVICES
   ============================================================ */
.gatha .svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.gatha .svc-card { background: var(--bg); padding: 46px 36px; transition: .5s var(--ease); position: relative; }
.gatha .svc-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.gatha .svc-card:hover { background: var(--bg-2); }
.gatha .svc-card:hover::before { transform: scaleX(1); }
.gatha .svc-card .ic { width: 40px; height: 40px; color: var(--gold-3); margin-bottom: 24px; transition: .5s var(--ease); }
.gatha .svc-card:hover .ic { color: var(--gold); transform: translateY(-4px); }
.gatha .svc-card h3 { font-size: 1.55rem; font-weight: 500; margin-bottom: 12px; transition: color .5s; }
.gatha .svc-card p { font-size: .96rem; color: var(--muted); transition: color .5s; }
.gatha .svc-card .no { position: absolute; top: 28px; right: 32px; font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--gold); opacity: .55; }

/* ============================================================
   PROCESS
   ============================================================ */
.gatha .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; margin-top: 60px; counter-reset: step; }
.gatha .step { position: relative; }
.gatha .step .step-no { font-family: var(--serif); font-size: 3.2rem; font-weight: 400; color: var(--gold); line-height: 1; opacity: .85; }
.gatha .step h3 { font-size: 1.4rem; font-weight: 500; margin: 16px 0 10px; }
.gatha .step p { font-size: .95rem; color: var(--muted); }
.gatha .step::before { content: ""; position: absolute; top: 22px; left: 62px; right: -18px; height: 1px; background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 12px); opacity: .55; }
.gatha .step:last-child::before { display: none; }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.gatha .filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 40px 0 46px; }
.gatha .filter-bar button {
  font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  padding: 10px 22px; border-radius: 100px; border: 1px solid var(--line); color: var(--muted); transition: .35s var(--ease);
}
.gatha .filter-bar button:hover { border-color: var(--gold); color: var(--ink); }
.gatha .filter-bar button.active { background: var(--ink); border-color: var(--ink); color: var(--cream); }

.gatha .gallery { columns: 4; column-gap: 14px; }
.gatha .gallery .gal-item { margin-bottom: 14px; break-inside: avoid; }
.gatha .gallery .gal-item img { width: 100%; height: auto; display: block; }
.gatha .gallery.grid-mode { columns: 3; }
.gatha .gal-item { break-inside: avoid; margin-bottom: 18px; position: relative; overflow: hidden; border-radius: var(--radius); cursor: zoom-in; box-shadow: var(--shadow-sm); }
.gatha .gal-item img { width: 100%; }
.gatha .gal-item.hide { display: none; }
.gatha .pb-track img, .gatha .frame-img img { cursor: zoom-in; }

/* lightbox */
.gatha .lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(10,13,26,.95); display: none; align-items: center; justify-content: center; padding: 40px; }
.gatha .lightbox.open { display: flex; }
.gatha .lightbox img { max-width: 90vw; max-height: 86vh; border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.gatha .lightbox .lb-close { position: absolute; top: 26px; right: 30px; color: var(--cream); font-size: 30px; font-family: var(--serif); }
.gatha .lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); color: var(--cream); font-size: 40px; padding: 20px; opacity: .7; transition: .3s; }
.gatha .lightbox .lb-nav:hover { opacity: 1; }
.gatha .lightbox .lb-prev { left: 10px; } .gatha .lightbox .lb-next { right: 10px; }

/* ============================================================
   WHY / FEATURES
   ============================================================ */
.gatha .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.gatha .why-card { padding: 40px 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg); transition: .5s var(--ease); }
.gatha .why-card:hover { border-color: var(--gold-2); transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.gatha .why-card .ic { width: 34px; height: 34px; color: var(--gold-3); margin-bottom: 22px; }
.gatha .why-card h3 { font-size: 1.4rem; font-weight: 500; margin-bottom: 10px; }
.gatha .why-card p { font-size: .96rem; color: var(--muted); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.gatha .testi { background: var(--bg-2); }
.gatha .testi-track { position: relative; max-width: 820px; margin: 0 auto; text-align: center; min-height: 260px; }
.gatha .testi-slide { position: absolute; inset: 0; opacity: 0; transform: translateY(16px); transition: .7s var(--ease); pointer-events: none; }
.gatha .testi-slide.active { position: relative; opacity: 1; transform: none; pointer-events: auto; }
.gatha .testi-quote { font-family: var(--serif); font-weight: 400; font-size: clamp(1.2rem, 2.1vw, 1.65rem); line-height: 1.36; color: var(--ink); }
.gatha .testi-quote .it { color: var(--gold-3); }
.gatha .testi-meta { margin-top: 30px; }
.gatha .testi-name { font-family: var(--serif); font-size: 1.3rem; }
.gatha .testi-role { font-family: var(--sans); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.gatha .testi-stars { color: var(--gold); letter-spacing: 4px; margin-bottom: 26px; font-size: 14px; }
.gatha .testi-dots { display: flex; gap: 10px; justify-content: center; margin-top: 42px; }
.gatha .testi-dots button { width: 9px; height: 9px; border-radius: 50%; background: var(--line); transition: .3s; }
.gatha .testi-dots button.active { background: var(--gold); transform: scale(1.25); }
.gatha .quote-mark { font-family: var(--serif); font-size: 5rem; color: var(--gold); opacity: .3; line-height: .5; }

/* ============================================================
   FAQ
   ============================================================ */
.gatha .faq-list { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--line); }
.gatha .faq-item { border-bottom: 1px solid var(--line); }
.gatha .faq-q { display: flex; justify-content: space-between; align-items: center; gap: 20px; width: 100%; text-align: left; padding: 28px 4px; font-family: var(--serif); font-size: clamp(1.05rem, 1.6vw, 1.3rem); font-weight: 400; color: var(--ink); }
.gatha .faq-q .pm { flex: none; width: 26px; height: 26px; position: relative; }
.gatha .faq-q .pm::before, .gatha .faq-q .pm::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--gold-3); transition: .35s var(--ease); }
.gatha .faq-q .pm::before { width: 16px; height: 1.5px; }
.gatha .faq-q .pm::after { width: 1.5px; height: 16px; }
.gatha .faq-item.open .pm::after { transform: translate(-50%,-50%) scaleY(0); }
.gatha .faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.gatha .faq-a-inner { padding: 0 4px 28px; color: var(--muted); max-width: 68ch; }
.gatha .faq-item.open .faq-a { max-height: 320px; }

/* ============================================================
   CTA BAND — light editorial with framed inner panel
   ============================================================ */
.gatha .cta-band { position: relative; background: var(--bg-2); color: var(--ink); overflow: hidden; text-align: center; }
.gatha .cta-band .hero-bg { position: absolute; inset: 0; z-index: 0; }
.gatha .cta-band .hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .12; }
.gatha .cta-band .hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(250,247,241,.78), rgba(250,247,241,.9)); }
.gatha .cta-band-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; padding: clamp(40px, 6vw, 76px) clamp(24px, 5vw, 60px); background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.gatha .cta-band h2 { color: var(--ink); font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 400; margin: 18px 0 22px; }
.gatha .cta-band h2 .it { color: var(--gold-3); }
.gatha .cta-band p { color: var(--ink-2); max-width: 52ch; margin: 0 auto 36px; }
.gatha .cta-band .eyebrow { color: var(--gold-3); }

/* ============================================================
   MARQUEE
   ============================================================ */
.gatha .marquee { overflow: hidden; border-block: 1px solid var(--line); padding: 26px 0; background: var(--bg); }
.gatha .marquee-track { display: flex; gap: 60px; width: max-content; animation: marq 34s linear infinite; }
.gatha .marquee:hover .marquee-track { animation-play-state: paused; }
.gatha .marquee-track span { font-family: var(--serif); font-style: italic; font-size: 1.7rem; color: var(--ink-2); display: inline-flex; align-items: center; gap: 60px; white-space: nowrap; }
.gatha .marquee-track span::after { content: "✦"; color: var(--gold); font-style: normal; font-size: 1rem; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ============================================================
   CONTACT
   ============================================================ */
.gatha .contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 80px); }
.gatha .contact-info .ci-item { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.gatha .contact-info .ci-item:first-of-type { border-top: 1px solid var(--line); }
.gatha .ci-item .ic { width: 26px; height: 26px; color: var(--gold-3); flex: none; margin-top: 3px; }
.gatha .ci-item .ci-label { font-family: var(--sans); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.gatha .ci-item .ci-val { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); }
.gatha .ci-item a.ci-val:hover { color: var(--gold-3); }

.gatha .form-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(30px, 4vw, 48px); box-shadow: var(--shadow-sm); }
.gatha .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.gatha .field { margin-bottom: 22px; }
.gatha .field label { display: block; font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 9px; }
.gatha .field input, .gatha .field select, .gatha .field textarea {
  width: 100%; font-family: var(--sans); font-size: 15px; font-weight: 400; color: var(--ink);
  background: transparent; border: none; border-bottom: 1px solid var(--line); padding: 10px 2px; transition: border-color .3s;
}
.gatha .field textarea { resize: vertical; min-height: 90px; }
.gatha .field input:focus, .gatha .field select:focus, .gatha .field textarea:focus { outline: none; border-color: var(--gold); }
.gatha .field select { appearance: none; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238f6f3f' stroke-width='1.4' fill='none'/%3E%3C/svg%3E") no-repeat right 4px center; }
.gatha .form-note { font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.gatha .form-ok { display: none; background: rgba(177,138,76,.1); border: 1px solid var(--gold); border-radius: var(--radius); padding: 16px 20px; color: var(--gold-3); font-size: 14px; margin-bottom: 20px; }
.gatha .form-ok.show { display: block; }

/* ============================================================
   FOOTER — light editorial
   ============================================================ */
.gatha .footer { background: var(--bg-2); color: var(--ink-2); padding: clamp(60px, 8vw, 100px) 0 34px; border-top: 1px solid var(--line); }
.gatha .footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 54px; border-bottom: 1px solid var(--line); }

.gatha .brand { display: flex; align-items: center; }
.gatha .brand-logo { height: 42px; width: auto; display: block; }
.gatha .footer .brand-logo { height: 46px; }
@media (max-width: 767px) { .gatha .brand-logo { height: 34px; } }
.gatha .footer .brand .name { color: var(--ink); }
.gatha .footer .brand .tag { color: var(--gold-3); }
.gatha .footer .brand .mark { color: var(--gold); }
.gatha .footer .f-about { margin-top: 22px; max-width: 34ch; font-size: .95rem; color: var(--muted); }
.gatha .footer h4 { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-3); margin-bottom: 22px; }
.gatha .footer .f-col a, .gatha .footer .f-col li { display: block; font-size: .96rem; color: var(--ink-2); padding: 7px 0; transition: color .3s; }
.gatha .footer .f-col a:hover { color: var(--gold-3); }
.gatha .footer .f-social { display: flex; gap: 14px; margin-top: 20px; }
.gatha .footer .f-social a { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--ink-2); transition: .35s var(--ease); }
.gatha .footer .f-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.gatha .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; padding-top: 28px; font-size: 12.5px; letter-spacing: .04em; color: var(--muted); }
.gatha .footer-bottom a:hover { color: var(--gold-3); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.gatha .wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 150; width: 56px; height: 56px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.4); transition: transform .35s var(--ease); }
.gatha .wa-float:hover { transform: scale(1.08); }
.gatha .wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* custom cursor */
.gatha .cursor-dot, .gatha .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 500; border-radius: 50%; }
.gatha .cursor-dot { width: 6px; height: 6px; background: var(--gold-3); transform: translate(-50%,-50%); }
.gatha .cursor-ring { width: 34px; height: 34px; border: 1px solid var(--gold); transform: translate(-50%,-50%); transition: width .3s, height .3s, opacity .3s; }
.gatha .cursor-ring.grow { width: 56px; height: 56px; opacity: .5; }

/* reveal */
.gatha .reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.gatha .reveal.in { opacity: 1; transform: none; }
.gatha .reveal-d1 { transition-delay: .1s; } .gatha .reveal-d2 { transition-delay: .2s; }
.gatha .reveal-d3 { transition-delay: .3s; } .gatha .reveal-d4 { transition-delay: .4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .gatha .svc-grid, .gatha .why-grid, .gatha .gallery.grid-mode { grid-template-columns: repeat(2, 1fr); }
  .gatha .gallery { columns: 3; }
  .gatha .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 34px; }
  .gatha .step::before { display: none; }
  .gatha .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gatha .stat:nth-child(3)::before { display: none; }
  .gatha .stat { padding-block: 26px; }
  .gatha .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gatha .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .gatha .hero::before { display: none; }
  .gatha .hero-media img { height: 52vh; }
}
@media (max-width: 760px) {
  body.gatha { font-size: 16px; }
  .gatha .nav-links, .gatha .nav-cta { display: none; }
  .gatha .burger { display: block; }
  .gatha .cursor-dot, .gatha .cursor-ring { display: none; }
  .gatha .split, .gatha .contact-grid { grid-template-columns: 1fr; }
  .gatha .split.reverse .split-media { order: 0; }
  .gatha .svc-grid, .gatha .why-grid, .gatha .gallery.grid-mode { grid-template-columns: repeat(2, 1fr); }
  .gatha .gallery { columns: 2; column-gap: 10px; }
  .gatha .process-grid { grid-template-columns: 1fr; }
  .gatha .form-row { grid-template-columns: 1fr; }
  .gatha .frame-img::after, .gatha .hero-media::after { display: none; }
  .gatha .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .gatha .stats-grid { grid-template-columns: 1fr 1fr; }
  .gatha .hero-scroll { display: none; }
  .gatha .hero-badge { left: 12px; }
  .gatha .hero-cta .btn, .gatha .hero-cta { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .gatha * { animation: none !important; transition: none !important; }
  .gatha .reveal { opacity: 1; transform: none; }
}

/* ---- premium refinements ---- */
.gatha ::selection { background: rgba(177,138,76,.22); color: var(--ink); }
.gatha h1, .gatha h2, .gatha h3 { text-wrap: balance; }
.gatha :focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.gatha .btn { min-height: 48px; }
.gatha .svc-card, .gatha .why-card { transition: border-color .45s var(--ease), background .45s var(--ease), transform .45s var(--ease), box-shadow .45s var(--ease); }
.gatha .svc-card:hover, .gatha .why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
@media (prefers-reduced-motion: reduce) { .gatha .svc-card, .gatha .why-card { transition: none; } }

/* ---- photo band (full-bleed image strip) ---- */
.gatha .photo-band { padding: 0 0 clamp(60px, 8vw, 110px); overflow: hidden; }
.gatha .pb-track { display: flex; gap: 10px; padding: 0 10px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.gatha .pb-track::-webkit-scrollbar { display: none; }
.gatha .pb-track img { height: clamp(180px, 20vw, 260px); width: auto; flex: 0 0 auto; border-radius: var(--radius); }



/* founder photo w/ graceful placeholder */
.gatha .founder-photo { position: relative; }
.gatha .founder-photo .photo-ph { flex-direction: column; align-items: center; justify-content: center; gap: 8px; aspect-ratio: 4/5; background: linear-gradient(160deg, var(--bg-2), var(--bg-3)); border-radius: var(--radius); color: var(--gold-3); }
.gatha .founder-photo .photo-ph span { font-family: var(--serif); font-size: 3.4rem; letter-spacing: .1em; }
.gatha .founder-photo .photo-ph small { font-family: var(--sans); font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.gatha .media-cap { text-align: center; font-family: var(--sans); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: 14px; }
