/* =====================================================
   JEET RATHORE — FOUNDER CLARITY STRATEGIST
   STYLESHEET
   ===================================================== */

:root {
  /* Dark palette */
  --bg:      #0C0B09;
  --surface: #131210;
  --card:    #1A1916;
  --border:  rgba(201,168,108,.12);
  --border2: rgba(255,255,255,.06);

  /* Accent: warm gold + soft teal */
  --gold:    #C9A86C;
  --gold2:   #E8C98A;
  --teal:    #6B9E9A;

  /* Typography */
  --text:    #F5EFE3;
  --muted:   #8A8070;
  --dimmed:  #5A5448;

  /* Light section */
  --cream:   #F2EDE4;
  --cream2:  #E8E0D2;
  --dark-text: #1A1710;

  --font-serif: 'Cormorant Garant', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius:  14px;
  --ease:    cubic-bezier(.4, 0, .2, 1);
  --trans:   .4s var(--ease);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── PRELOADER ── */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-text {
  display: flex; gap: 3px;
  font-family: var(--font-serif);
  font-size: 2.2rem; letter-spacing: .3em;
  color: var(--gold);
}
.preloader-text span {
  opacity: 0;
  transform: translateY(20px);
  animation: letterIn .5s var(--ease) forwards;
}
.preloader-text span:nth-child(1) { animation-delay: .05s; }
.preloader-text span:nth-child(2) { animation-delay: .10s; }
.preloader-text span:nth-child(3) { animation-delay: .15s; }
.preloader-text span:nth-child(4) { animation-delay: .20s; }
.preloader-text span:nth-child(5) { animation-delay: .25s; }
.preloader-text span:nth-child(6) { animation-delay: .30s; }
.preloader-text span:nth-child(7) { animation-delay: .35s; }
@keyframes letterIn {
  to { opacity: 1; transform: none; }
}

/* ── CONTAINER ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

/* ── UTILITY ── */
.section-eyebrow {
  font-size: .72rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-eyebrow.light { color: var(--gold); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 300; line-height: 1.1;
  color: var(--text);
}
.section-title.light { color: var(--text); }
.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold);
  color: #0C0B09;
  font-family: var(--font-sans); font-size: .85rem; font-weight: 600;
  letter-spacing: .06em;
  padding: 14px 28px; border-radius: 50px;
  border: none; cursor: pointer;
  transition: var(--trans);
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(201,168,108,.25); }
.btn-gold.full { width: 100%; justify-content: center; }
.btn-gold svg { width: 16px; height: 16px; transition: transform .2s; }
.btn-gold:hover svg { transform: translateX(4px); }

.btn-gold-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(201,168,108,.5);
  color: var(--gold);
  font-size: .85rem; font-weight: 500; letter-spacing: .06em;
  padding: 13px 26px; border-radius: 50px;
  cursor: pointer;
  transition: var(--trans);
}
.btn-gold-outline:hover { border-color: var(--gold); background: rgba(201,168,108,.06); }

.btn-text {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); font-size: .88rem;
  transition: color .2s;
}
.btn-text svg { width: 16px; height: 16px; }
.btn-text:hover { color: var(--gold); }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center;
  padding: 24px 48px;
  transition: background .4s, padding .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(12,11,9,.88);
  backdrop-filter: blur(20px);
  padding: 16px 48px;
  border-bottom-color: var(--border);
}
.nav-brand {
  display: flex; flex-direction: column;
  gap: 2px; margin-right: auto;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.15rem; font-weight: 600;
  color: var(--text); letter-spacing: .04em;
}
.brand-title {
  font-size: .67rem; color: var(--muted);
  letter-spacing: .14em; text-transform: uppercase;
}
.nav-links {
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  font-size: .82rem; color: var(--muted);
  letter-spacing: .06em; transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  margin-left: 32px;
  border: 1.5px solid rgba(201,168,108,.4);
  color: var(--gold);
  font-size: .8rem; letter-spacing: .08em;
  padding: 9px 22px; border-radius: 50px;
  transition: var(--trans);
}
.nav-cta:hover { background: rgba(201,168,108,.08); border-color: var(--gold); }

.burger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer;
  margin-left: 20px; padding: 4px;
}
.burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text);
  transition: var(--trans);
}

/* Mobile overlay */
.mob-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transform: translateX(100%);
  transition: transform .5s var(--ease);
}
.mob-overlay.open { transform: none; }
.mob-close {
  position: absolute; top: 28px; right: 36px;
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 1.2rem;
  transition: color .2s;
}
.mob-close:hover { color: var(--gold); }
.mob-nav {
  display: flex; flex-direction: column;
  align-items: center; gap: 32px; text-align: center;
}
.mob-link {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 300;
  color: var(--muted);
  transition: color .2s;
}
.mob-link:hover { color: var(--text); }
.mob-cta { color: var(--gold) !important; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  overflow: hidden;
}

/* RIGHT column: full-height portrait (2nd in DOM = right) */
.hero-img-col {
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
}
.hero-img-wrap {
  position: absolute; inset: 0;
}

/* Real photo with atmospheric background */
.hero-photo-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 30%,
    #2A3F32 0%,
    #1A2B22 35%,
    #0E1910 65%,
    #060C08 100%);
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
}
.hero-photo-glow {
  position: absolute;
  top: 5%; left: 50%; transform: translateX(-50%);
  width: 70%; height: 55%;
  background: radial-gradient(ellipse,
    rgba(201,168,108,.22) 0%,
    rgba(201,168,108,.08) 45%,
    transparent 70%);
  pointer-events: none;
  border-radius: 50%;
  filter: blur(30px);
}
.hero-photo {
  position: relative; z-index: 1;
  height: 92%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  mix-blend-mode: luminosity;
  filter: contrast(1.05) brightness(1.08);
}
.hero-photo-fade-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 180px; z-index: 2;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  pointer-events: none;
}

.hero-img-label {
  position: absolute; bottom: 48px; right: 28px; z-index: 3;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); opacity: .65;
  writing-mode: vertical-rl;
}

/* LEFT column: content (1st in DOM) */
.hero-content-col {
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 60px 60px 64px;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 32px;
}
.eyebrow-line {
  width: 36px; height: 1px; background: var(--gold); opacity: .6;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300; line-height: 1.05;
  margin-bottom: 28px;
  display: flex; flex-direction: column;
}
.hl-line { display: block; overflow: hidden; }
.hl-line.hl-italic { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1rem; line-height: 1.75;
  color: var(--muted); max-width: 380px;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-social-proof {
  display: flex; align-items: center; gap: 0;
  padding-top: 36px;
  border-top: 1px solid var(--border2);
}
.sp-item {
  flex: 1; padding: 0 20px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.sp-item:first-child { padding-left: 0; }
.sp-stat {
  display: flex; align-items: baseline; gap: 2px;
  line-height: 1; justify-content: center;
}
.sp-num {
  font-family: var(--font-serif);
  font-size: 2.4rem; font-weight: 600;
  color: var(--gold);
}
.sp-suffix {
  font-family: var(--font-serif);
  font-size: 1.8rem; font-weight: 600;
  color: var(--gold);
}
.sp-item span { font-size: .75rem; color: var(--muted); margin-top: 4px; display: block; text-align: center; }
.sp-div { width: 1px; height: 36px; background: var(--border2); flex-shrink: 0; }

/* Bottom wordmark (Evolut style) */
.hero-wordmark {
  grid-column: 1 / 3;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-weight: 300; letter-spacing: .12em;
  color: rgba(201,168,108,.08);
  white-space: nowrap; overflow: hidden;
  padding: 0 0 20px 32px;
  line-height: 1;
  user-select: none;
  border-top: 1px solid var(--border2);
}

/* ── PROBLEM SECTION (CREAM) ── */
.problem {
  background: var(--cream);
  padding: 0;
  overflow: hidden;
}
.problem-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.problem-left {
  background: var(--cream2);
  padding: 100px 60px 100px 80px;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid rgba(0,0,0,.08);
}
.problem-left .section-eyebrow { color: var(--teal); margin-bottom: 24px; }
.problem-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300; line-height: 1.3;
  color: var(--dark-text);
  margin-bottom: 32px;
}
.problem-quote em { font-style: italic; }
.problem-note {
  font-size: .9rem; line-height: 1.8;
  color: #6A6055;
}
.problem-right {
  padding: 100px 80px 100px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.problem-right .section-eyebrow { color: var(--teal); }
.problem-list {
  display: flex; flex-direction: column; gap: 32px;
  margin-top: 28px;
}
.problem-item {
  display: flex; gap: 20px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.problem-item:last-child { border-bottom: none; padding-bottom: 0; }
.pi-num {
  font-family: var(--font-serif);
  font-size: 1.5rem; font-weight: 300;
  color: rgba(107,158,154,.5);
  min-width: 32px; padding-top: 2px;
}
.pi-text strong {
  display: block; color: var(--dark-text);
  font-size: .95rem; font-weight: 600; margin-bottom: 6px;
}
.pi-text p { font-size: .85rem; color: #7A7060; line-height: 1.7; }

/* ── ABOUT ── */
.about {
  padding: 140px 0 60px;
  position: relative; overflow: hidden;
}
.about-bg-text {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-serif);
  font-size: clamp(10rem, 22vw, 22rem);
  font-weight: 700; letter-spacing: .1em;
  color: rgba(201,168,108,.03);
  white-space: nowrap;
  pointer-events: none; user-select: none;
}
.about-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 80px; align-items: start;
  position: relative; z-index: 1;
}
.about-desc {
  font-size: .95rem; line-height: 1.85;
  color: var(--muted); margin-bottom: 18px;
}
.about-desc--first { margin-top: 28px; }
.about-desc strong { color: var(--text); font-weight: 500; }

.about-badges-bar {
  margin-top: 36px;
  display: flex; justify-content: center;
}
.about-badges {
  display: flex; flex-direction: column; gap: 12px;
  align-items: center;
}
.badges-row {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.badges-row--center {
  justify-content: center;
}
.ab-badge {
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: .75rem; letter-spacing: .06em;
  color: var(--muted);
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}
.ab-badge:hover { border-color: var(--gold); color: var(--gold); }

.about-photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  line-height: 0;
}
.about-photo {
  width: 100%; height: auto;
  display: block;
  border-radius: var(--radius);
}
.about-caption {
  padding: 20px 24px;
  border-left: 2px solid rgba(201,168,108,.25);
  margin-top: 20px;
}
.about-caption em {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1rem; line-height: 1.7; color: var(--muted);
}

/* ── METHOD ── */
.method {
  background: var(--surface);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  padding: 120px 0;
}
.method-header { text-align: center; margin-bottom: 80px; }
.method-header-row {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 20px;
}
.method-rule {
  flex: 1; max-width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,108,.35));
}
.method-rule:last-child {
  background: linear-gradient(90deg, rgba(201,168,108,.35), transparent);
}
.method-eyebrow {
  margin-bottom: 0 !important;
}
.method-intro {
  font-size: .95rem; line-height: 1.75; color: var(--muted);
  max-width: 480px; margin: 24px auto 0;
}
.method-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px;
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  overflow: hidden;
}
.method-card {
  background: var(--card);
  padding: 48px 36px;
  position: relative;
  transition: background .3s;
}
.method-card:hover { background: rgba(26,25,22,1); }
.method-card:not(:last-child) { border-right: 1px solid var(--border2); }
.mc-icon {
  width: 64px; height: 64px; margin-bottom: 24px;
}
.mc-icon svg { width: 100%; height: 100%; }
.mc-num {
  position: absolute; top: 36px; right: 36px;
  font-family: var(--font-serif);
  font-size: 3rem; font-weight: 300;
  color: rgba(201,168,108,.07); line-height: 1;
}
.method-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem; font-weight: 400;
  margin-bottom: 14px;
}
.method-card p {
  font-size: .88rem; line-height: 1.8; color: var(--muted);
}

/* ── THE CLARITY CIRCLE ── */
.circle-section {
  padding: 140px 0;
  background: var(--bg);
}
.circle-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 80px; align-items: start;
}
.circle-desc {
  font-size: .95rem; line-height: 1.8; color: var(--muted);
  margin-bottom: 20px;
}
.circle-left { padding-top: 20px; }
.circle-left .section-title { margin: 16px 0 24px; }
.circle-left .btn-gold-outline { margin-top: 16px; }

.services-list { display: flex; flex-direction: column; gap: 0; }
.svc-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--border2);
  transition: padding .3s;
  cursor: default;
}
.svc-item:first-child { border-top: 1px solid var(--border2); }
.svc-item:hover { padding-left: 16px; }
.svc-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 12px;
}
.svc-num {
  font-family: var(--font-serif);
  font-size: 1rem; font-weight: 300;
  color: var(--gold); opacity: .6; min-width: 28px;
}
.svc-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem; font-weight: 400; flex: 1;
}
.svc-arrow {
  color: var(--gold); opacity: 0;
  font-size: 1.1rem;
  transition: opacity .2s, transform .2s;
  transform: translateX(-8px);
}
.svc-item:hover .svc-arrow { opacity: 1; transform: none; }
.svc-item p {
  font-size: .88rem; line-height: 1.8; color: var(--muted);
  margin-bottom: 14px;
}
.svc-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.svc-tags span {
  font-size: .7rem; letter-spacing: .08em;
  padding: 4px 12px; border-radius: 50px;
  border: 1px solid var(--border);
  color: var(--dimmed);
}

/* ── THEMES ── */
.themes {
  padding: 120px 0;
  background: var(--cream);
}
.themes .section-eyebrow { color: var(--teal); }
.themes .section-title { color: var(--dark-text); }
.themes-header { margin-bottom: 64px; }
.themes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1.5px solid rgba(61,107,94,.2);
  border-radius: var(--radius);
  overflow: hidden;
}
.theme-card {
  background: var(--cream2);
  padding: 36px 22px;
  transition: background .25s;
  text-align: center;
  position: relative;
}
.theme-card:not(:last-child) {
  border-right: 1.5px solid rgba(61,107,94,.18);
}
.theme-card:hover { background: white; }
.tc-visual {
  width: 64px; height: 64px; margin: 0 auto 20px;
  transition: transform .25s;
}
.theme-card:hover .tc-visual { transform: translateY(-3px); }
.tc-visual svg { width: 100%; height: 100%; }
.theme-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem; font-weight: 600;
  color: var(--dark-text); margin-bottom: 10px;
}
.theme-card p {
  font-size: .78rem; line-height: 1.7;
  color: #6A5F52;
}

/* ── TESTIMONIALS ── */
.testimonials {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.testi-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.testi-ambient {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.testi-container { position: relative; z-index: 1; }
.testi-header {
  width: 100%;
  text-align: center;
  margin-bottom: 80px;
}
.testi-header .section-eyebrow { justify-content: center; }
.testi-cards {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-bottom: 80px;
}
.testi-card {
  background: rgba(26,25,22,.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: border-color .3s, transform .3s;
}
.testi-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}
.tc-quote {
  font-family: var(--font-serif);
  font-size: 4rem; line-height: .6;
  color: var(--gold); opacity: .3;
  margin-bottom: 16px;
}
.testi-card > p {
  font-size: .9rem; line-height: 1.8;
  color: rgba(245,239,227,.75);
  margin-bottom: 28px;
}
.tc-person { display: flex; align-items: center; gap: 14px; }
.tcp-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), rgba(107,158,154,.5));
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 600; color: #0C0B09;
  flex-shrink: 0;
}
.tc-person strong { display: block; font-size: .9rem; font-weight: 500; }
.tc-person span { font-size: .75rem; color: var(--muted); }

/* Pull quote */
.pull-quote {
  display: flex; align-items: center; gap: 32px;
  padding: 40px 0;
}
.pq-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,108,.2));
}
.pq-line:last-child {
  background: linear-gradient(90deg, rgba(201,168,108,.2), transparent);
}
.pull-quote p {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 300;
  color: rgba(201,168,108,.65);
  text-align: center; max-width: 680px; line-height: 1.5;
}
.pull-quote cite {
  display: block; font-style: normal;
  font-size: .78rem; color: var(--dimmed);
  margin-top: 10px; text-align: center;
}

/* ── CONTACT ── */
.contact {
  padding: 140px 0;
  background: var(--surface);
  border-top: 1px solid var(--border2);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}
.contact-desc {
  font-size: .95rem; line-height: 1.8; color: var(--muted);
  margin: 24px 0 36px;
}
.contact-trust {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 40px;
}
.ct-row {
  display: flex; align-items: center; gap: 12px;
  font-size: .85rem; color: var(--muted);
}
.ct-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* Form */
.contact-form-col {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 44px;
}
.form-group {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: .75rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1.5px solid var(--border2);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: .9rem; padding: 13px 16px;
  outline: none; resize: none;
  transition: border-color .2s;
}
.form-group select option { background: var(--surface); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(201,168,108,.4); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--dimmed); }
.form-privacy {
  text-align: center; font-size: .75rem; color: var(--dimmed);
  margin-top: 14px;
}

/* Success state */
.form-success {
  display: none; text-align: center; padding: 48px 24px;
}
.form-success.show { display: block; }
.fs-icon {
  width: 60px; height: 60px; margin: 0 auto 20px;
}
.fs-icon svg { width: 100%; height: 100%; }
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem; font-weight: 400; margin-bottom: 10px;
}
.form-success p { font-size: .9rem; color: var(--muted); }

/* ── FOOTER ── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border2);
  padding: 60px 0 32px;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px; padding-bottom: 48px;
  border-bottom: 1px solid var(--border2);
  margin-bottom: 28px;
}
.ft-name {
  font-family: var(--font-serif);
  font-size: 1.5rem; font-weight: 400;
  color: var(--text); margin-bottom: 6px;
}
.ft-tagline {
  font-size: .78rem; color: var(--muted);
  letter-spacing: .08em;
}
.ft-col-head {
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.ft-links-col {
  display: flex; flex-direction: column; gap: 12px;
}
.ft-links-col a {
  font-size: .85rem; color: var(--muted);
  transition: color .2s;
}
.ft-links-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: .78rem; color: var(--dimmed); }
.fb-right { display: flex; gap: 20px; }
.fb-right a { font-size: .78rem; color: var(--dimmed); transition: color .2s; }
.fb-right a:hover { color: var(--muted); }

/* ── RESPONSIVE ── */
/* ═══════════════════════════════════════
   RESPONSIVE — TABLET  ≤ 1100px
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .themes-grid { grid-template-columns: repeat(3, 1fr); }
  .theme-card:nth-child(3) { border-right: none; }
  .theme-card:nth-child(4),
  .theme-card:nth-child(5) { border-top: 1.5px solid rgba(61,107,94,.18); }

  .circle-grid { grid-template-columns: 1fr; gap: 48px; }
  .circle-left { max-width: 600px; }

  .testi-cards { grid-template-columns: 1fr 1fr; gap: 20px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ft-brand { grid-column: 1 / 3; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — LARGE MOBILE  ≤ 900px
═══════════════════════════════════════ */
@media (max-width: 900px) {
  /* ── Hero ── */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .hero-content-col {
    order: 2;
    padding: 40px 28px 36px;
  }
  .hero-img-col {
    order: 1;
    grid-row: auto;
    height: 70vw;
    min-height: 280px;
    max-height: 480px;
    position: relative;
  }
  .hero-wordmark {
    grid-column: 1;
    order: 3;
    font-size: clamp(2rem, 7vw, 4rem);
    padding: 0 0 16px 20px;
  }
  .hero-headline { font-size: clamp(2.4rem, 7vw, 4rem); }
  .hero-social-proof { padding-top: 28px; }

  /* ── Problem ── */
  .problem-inner { grid-template-columns: 1fr; }
  .problem-left {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,.08);
    padding: 56px 28px;
  }
  .problem-right { padding: 48px 28px 56px; }

  /* ── About ── */
  .about { padding: 80px 0 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-bg-text { font-size: clamp(6rem, 22vw, 14rem); }

  /* ── Method ── */
  .method { padding: 80px 0; }
  .method-grid { grid-template-columns: 1fr; }
  .method-card:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--border2);
  }
  .method-card { padding: 36px 28px; }

  /* ── Services ── */
  .circle-section { padding: 80px 0; }

  /* ── Themes ── */
  .themes { padding: 80px 0; }
  .themes-grid { grid-template-columns: repeat(2, 1fr); }
  .theme-card:nth-child(2) { border-right: none; }
  .theme-card:nth-child(3) { border-right: 1.5px solid rgba(61,107,94,.18); }
  .theme-card:nth-child(4) { border-right: none; }
  .theme-card:nth-child(odd) { border-right: 1.5px solid rgba(61,107,94,.18); }
  .theme-card:nth-child(even) { border-right: none; }
  .theme-card:nth-child(n+3) { border-top: 1.5px solid rgba(61,107,94,.18); }

  /* ── Testimonials ── */
  .testimonials { padding: 80px 0; }
  .testi-cards { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto 60px; }
  .testi-card { padding: 32px 24px; }
  .pull-quote { flex-direction: column; text-align: center; gap: 16px; }
  .pq-line { display: none; }
  .pull-quote p { font-size: 1.1rem; }

  /* ── Contact ── */
  .contact { padding: 80px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* ── Footer ── */
  .footer-top { padding-bottom: 36px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE  ≤ 700px
═══════════════════════════════════════ */
@media (max-width: 700px) {
  /* ── Navbar: always solid on mobile ── */
  #navbar {
    padding: 14px 20px;
    background: rgba(12,11,9,.96);
    backdrop-filter: blur(16px);
    border-bottom-color: var(--border);
  }
  #navbar.scrolled { padding: 12px 20px; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }

  .container { padding: 0 18px; }

  /* ── Hero ── */
  .hero-img-col { height: 75vw; min-height: 240px; }
  .hero-content-col { padding: 32px 18px 28px; }
  .hero-eyebrow { font-size: .65rem; margin-bottom: 20px; }
  .hero-sub { font-size: .9rem; }
  .hero-social-proof {
    gap: 0;
    padding-top: 24px;
  }
  .sp-item { padding: 0 12px; }
  .sp-num { font-size: 1.8rem; }
  .sp-suffix { font-size: 1.4rem; }

  /* ── Problem ── */
  .problem-left { padding: 44px 18px; }
  .problem-right { padding: 36px 18px 44px; }
  .problem-quote { font-size: clamp(1.4rem, 5vw, 2rem); }

  /* ── About ── */
  .about { padding: 60px 0 36px; }
  .about-caption { padding: 14px 16px; }
  .about-badges-bar { margin-top: 28px; }

  /* ── Method ── */
  .method { padding: 60px 0; }
  .method-header { margin-bottom: 48px; }
  .mc-icon { width: 52px; height: 52px; }

  /* ── Services ── */
  .circle-section { padding: 60px 0; }
  .svc-item { padding: 24px 0; }
  .svc-item:hover { padding-left: 0; }

  /* ── Themes ── */
  .themes { padding: 60px 0; }
  .themes-grid { grid-template-columns: 1fr 1fr; }
  .theme-card { padding: 28px 16px; }

  /* ── Testimonials ── */
  .testimonials { padding: 60px 0; }
  .testi-header { margin-bottom: 48px; }

  /* ── Contact ── */
  .contact { padding: 60px 0; }
  .contact-form-col { padding: 24px 18px; }
  .contact-desc { font-size: .88rem; }

  /* ── Footer ── */
  .footer { padding: 44px 0 24px; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 28px;
  }
  .ft-brand { grid-column: 1; }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  ≤ 480px
═══════════════════════════════════════ */
@media (max-width: 480px) {
  /* ── Hero ── */
  .hero-img-col { height: 88vw; min-height: 200px; }
  .hero-content-col { padding: 28px 16px 24px; }
  .hero-headline { font-size: clamp(2rem, 8.5vw, 3rem); }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-gold, .btn-text { justify-content: center; }
  .hero-social-proof { flex-direction: row; flex-wrap: wrap; gap: 0; }
  .sp-item { min-width: 80px; }
  .sp-div { height: 28px; }
  .hero-wordmark { font-size: clamp(1.6rem, 6.5vw, 3rem); }

  /* ── Problem ── */
  .problem-left, .problem-right { padding: 36px 16px; }
  .problem-item { gap: 14px; }

  /* ── About ── */
  .badges-row { gap: 8px; }
  .ab-badge { font-size: .7rem; padding: 6px 13px; }

  /* ── Themes ── */
  .themes-grid { grid-template-columns: 1fr; }
  .theme-card:nth-child(odd) { border-right: none; }
  .theme-card:not(:last-child) {
    border-right: none;
    border-bottom: 1.5px solid rgba(61,107,94,.18);
  }
  .theme-card { padding: 28px 20px; }

  /* ── Testimonials ── */
  .testi-card { padding: 28px 18px; }
  .testi-card > p { font-size: .85rem; }

  /* ── Contact ── */
  .contact-form-col { padding: 20px 14px; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: .85rem; padding: 11px 14px; }

  /* ── Preloader ── */
  .preloader-text { font-size: 1.6rem; }
}