/* ── TOKENS ── */
:root {
  --ink:     #080806;
  --ink2:    #0E0E0B;
  --gold:    #B8975A;
  --gold-lt: #CFA96A;
  --white:   #F4F1EB;
  --muted:   #6E6A5E;
  --rule:    rgba(184,151,90,0.13);
  --sans:    'Inter', sans-serif;
  --serif:   'Cormorant Garamond', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transition: opacity 0.9s ease;
}
.reveal.visible { opacity: 1; }

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 4rem;
  background: rgba(8,8,6,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule);
}

.nav-logo {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2.8rem;
}
.nav-links a {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-cta {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,151,90,0.3);
  padding: 0.5rem 1.4rem;
  text-decoration: none;
  transition: all 0.25s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold); color: var(--ink); }

.nav-burger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 65px; left: 0; right: 0;
  background: var(--ink2);
  padding: 2rem;
  gap: 1.4rem;
  z-index: 99;
  border-bottom: 1px solid var(--rule);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}
.mobile-cta {
  color: var(--gold) !important;
  border: 1px solid rgba(184,151,90,0.3);
  padding: 0.7rem 1rem;
  text-align: center;
}

/* ── SHARED ── */
.eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: block;
}

.text-link {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}
.text-link:hover { opacity: 0.6; }

.btn-primary {
  display: inline-block;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 0.9rem 2.4rem;
  text-decoration: none;
  transition: background 0.25s;
}
.btn-primary:hover { background: var(--gold-lt); }

.btn-ghost {
  display: inline-block;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.9rem 2.4rem;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 9rem 4rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(184,151,90,0.03) 100%);
  pointer-events: none;
}

.hero-inner { max-width: 680px; position: relative; z-index: 1; }

.hero-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2.5rem;
  transform-origin: left;
  transition: transform 1.2s ease, opacity 0.4s;
  transform: scaleX(0);
  opacity: 0;
}
.hero-line.visible { transform: scaleX(1); opacity: 1; }

.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 2rem;
}
.hero h1 em { font-style: italic; color: var(--gold-lt); }

.hero-sub-wrap p {
  font-size: 0.88rem;
  color: rgba(244,241,235,0.45);
  line-height: 1.8;
  margin-bottom: 2.8rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 1rem 2rem;
  transition: all 0.3s;
  margin-bottom: 3.5rem;
}
.hero-cta span { color: var(--gold); transition: transform 0.3s; }
.hero-cta:hover { border-color: var(--gold); color: var(--gold); }
.hero-cta:hover span { transform: translate(3px, -3px); }

.hero-geo {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-ornament {
  position: absolute;
  right: 8rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.ho-line {
  width: 1px;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--rule) 50%, var(--rule));
}
.ho-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.5;
}

/* ── STATEMENT ── */
.statement {
  padding: 8rem 4rem;
  border-top: 1px solid var(--rule);
  background: var(--ink2);
}
.statement-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.statement-text {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  line-height: 1.55;
  color: rgba(244,241,235,0.75);
  font-style: italic;
  margin-bottom: 2rem;
}
.statement-attr {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

/* ── PILLARS ── */
.pillars {
  padding: 7rem 4rem;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.pillar {
  flex: 1;
  padding: 0 3.5rem;
}
.pillar:first-child { padding-left: 0; }
.pillar:last-child { padding-right: 0; }

.pillar-divider {
  width: 1px;
  height: 180px;
  background: var(--rule);
  align-self: center;
  flex-shrink: 0;
}

.pillar-num {
  font-family: var(--serif);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 1.5rem;
}

.pillar h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1rem;
}

.pillar p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.85;
}

/* ── ABOUT TEASER ── */
.about-teaser {
  padding: 7rem 4rem;
  border-top: 1px solid var(--rule);
  background: var(--ink2);
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 7rem;
  align-items: center;
}

.at-photo { position: relative; }
.at-photo img {
  width: 100%;
  display: block;
  filter: grayscale(20%) contrast(1.02);
}
.at-photo-line {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  right: 1.5rem;
  top: 1.5rem;
  border: 1px solid var(--rule);
  pointer-events: none;
  z-index: -1;
}

.at-content h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 2.5rem;
}

.at-creds {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--rule);
  margin-bottom: 2.5rem;
}
.at-cred {
  font-size: 0.75rem;
  color: var(--muted);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rule);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.at-cred:hover { color: var(--white); }

/* ── SERVICES TEASER ── */
.svc-teaser {
  padding: 7rem 4rem;
  border-top: 1px solid var(--rule);
}

.svc-teaser-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.svc-teaser-header h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  color: var(--white);
}

.svc-teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-bottom: 3rem;
}

.stg-card {
  background: var(--ink);
  padding: 2.5rem 2rem 2rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
  min-height: 220px;
}
.stg-card:hover { background: var(--ink2); }
.stg-card:hover .stg-arrow { opacity: 1; transform: translate(3px, -3px); }

.stg-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: auto;
}

.stg-label {
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

.stg-arrow {
  color: var(--gold);
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}

.stg-name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.45rem;
  color: var(--white);
  line-height: 1.2;
  margin-top: 3rem;
  margin-bottom: 0.8rem;
}

.stg-profile {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.svc-teaser-cta { text-align: right; }

/* ── FINAL CTA ── */
.final-cta {
  padding: 10rem 4rem;
  border-top: 1px solid var(--rule);
  background: var(--ink2);
}
.fca-inner { max-width: 600px; }

.final-cta h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.final-cta h2 em { font-style: italic; color: var(--gold-lt); }

.final-cta p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--rule);
  padding: 3rem 4rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--rule);
}
.footer-links {
  display: flex;
  gap: 2.5rem;
}
.footer-links a {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-email {
  font-size: 0.75rem;
  color: var(--gold);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.footer-email:hover { opacity: 1; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.62rem;
  color: rgba(110,106,94,0.5);
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 11rem 4rem 5rem;
  border-bottom: 1px solid var(--rule);
  max-width: 900px;
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.page-hero-sub {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.85;
}

/* ── ABOUT PAGE ── */
.about-main {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 7rem;
  padding: 7rem 4rem;
  align-items: start;
  border-bottom: 1px solid var(--rule);
}
.about-photo-wrap { position: relative; }
.about-photo-wrap img { width: 100%; display: block; filter: grayscale(15%); }
.about-photo-frame {
  position: absolute;
  bottom: -1.2rem; left: -1.2rem; right: 1.2rem; top: 1.2rem;
  border: 1px solid var(--rule);
  pointer-events: none; z-index: -1;
}
.about-caption {
  padding: 1.2rem 0;
  border-top: 1px solid var(--rule);
  margin-top: 1.5rem;
}
.about-caption strong {
  display: block;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.about-caption span {
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.6;
}

.about-lead {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 2rem;
}
.about-block { margin-bottom: 1.6rem; }
.about-block p {
  font-size: 0.8rem;
  color: rgba(244,241,235,0.5);
  line-height: 1.95;
}
.about-block p strong { color: var(--white); font-weight: 400; }
.about-divider { width: 40px; height: 1px; background: rgba(184,151,90,0.35); margin: 2.5rem 0; }
.about-block h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}

/* ── CREDS STRIP ── */
.creds-strip {
  background: var(--ink2);
  border-top: 1px solid var(--rule);
  padding: 5rem 4rem;
}
.creds-strip h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 3rem;
}
.creds-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--rule);
}
.cs-item {
  padding: 1.6rem 2rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.cs-item:nth-child(3n) { border-right: none; }
.cs-item:nth-last-child(-n+3) { border-bottom: none; }
.cs-org { font-family: var(--serif); font-size: 0.95rem; font-weight: 400; color: var(--white); margin-bottom: 0.3rem; }
.cs-role { font-size: 0.68rem; color: var(--muted); }

/* ── SERVICES PAGE ── */
.svc-list { padding: 0 4rem 6rem; }
.svc-card { padding: 5rem 0; border-bottom: 1px solid var(--rule); }
.svc-card--principal { background: linear-gradient(to bottom, rgba(184,151,90,0.025), transparent); }

.svc-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3.5rem;
}
.svc-tier { font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.svc-name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.1;
}
.svc-price { font-family: var(--serif); font-size: 1rem; font-style: italic; color: var(--gold-lt); }

.svc-profile-box {
  border: 1px solid var(--rule);
  padding: 1.4rem 1.6rem;
  align-self: start;
}
.spb-label { font-size: 0.57rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.spb-text { font-size: 0.76rem; color: var(--muted); line-height: 1.7; }

.svc-badge {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,151,90,0.25);
  padding: 0.28rem 0.85rem;
  margin-bottom: 2rem;
}

.svc-divider { width: 100%; height: 1px; background: var(--rule); margin-bottom: 3rem; }

.svc-body { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.svc-col h4 { font-family: var(--serif); font-weight: 400; font-size: 1rem; color: var(--white); margin-bottom: 1rem; }
.svc-col p { font-size: 0.78rem; color: var(--muted); line-height: 1.88; }
.svc-list-items { list-style: none; }
.svc-list-items li {
  font-size: 0.76rem;
  color: var(--muted);
  padding: 0.45rem 0 0.45rem 1rem;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  line-height: 1.5;
}
.svc-list-items li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 0.6rem; }

.svc-need {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(244,241,235,0.25);
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.svc-cta {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}
.svc-cta:hover { opacity: 0.6; }

.disclaimer { padding: 2rem 4rem 4rem; max-width: 680px; }
.disclaimer p { font-size: 0.65rem; color: rgba(110,106,94,0.45); line-height: 1.7; }

/* ── INSIGHTS ── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  padding: 0 0 6rem;
}
.insight-card { background: var(--ink); padding: 3rem; }
.insight-label { font-size: 0.57rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.2rem; }
.insight-card h3 { font-family: var(--serif); font-weight: 400; font-size: 1.2rem; color: var(--white); margin-bottom: 1rem; line-height: 1.3; }
.insight-card p { font-size: 0.76rem; color: var(--muted); line-height: 1.8; }
.insight-meta { font-size: 0.6rem; letter-spacing: 0.14em; color: var(--gold); margin-top: 1.5rem; opacity: 0.55; }

/* ── CONTACT ── */
.contact-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  padding: 6rem 4rem;
  border-bottom: 1px solid var(--rule);
}
.contact-left h3 { font-family: var(--serif); font-weight: 400; font-size: 1.4rem; color: var(--white); margin-bottom: 1.2rem; }
.contact-left p { font-size: 0.8rem; color: var(--muted); line-height: 1.88; }
.contact-info { margin-top: 3rem; border-top: 1px solid var(--rule); padding-top: 2rem; display: flex; flex-direction: column; gap: 1.4rem; }
.ci-label { font-size: 0.57rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.ci-value { font-size: 0.8rem; color: var(--white); text-decoration: none; }
a.ci-value:hover { color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 1.6rem; }
.cf-field { display: flex; flex-direction: column; gap: 0.5rem; }
.cf-field label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.cf-field input,
.cf-field textarea,
.cf-field select {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--rule);
  border-bottom-color: rgba(184,151,90,0.2);
  color: var(--white);
  padding: 0.85rem 1rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.cf-field input:focus,
.cf-field textarea:focus,
.cf-field select:focus { border-color: var(--gold); }
.cf-field select option { background: var(--ink2); }
.cf-note { font-size: 0.65rem; color: var(--muted); line-height: 1.6; }
.cf-success { border: 1px solid var(--rule); padding: 3rem; text-align: center; }
.cf-success h3 { font-family: var(--serif); font-size: 1.8rem; font-weight: 300; color: var(--white); margin-bottom: 0.8rem; }
.cf-success p { font-size: 0.8rem; color: var(--muted); }

/* ── CTA BAND ── */
.cta-band {
  padding: 8rem 4rem;
  border-top: 1px solid var(--rule);
  background: var(--ink2);
}
.cta-band h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.08;
  margin-bottom: 1.2rem;
  color: var(--white);
}
.cta-band p { font-size: 0.8rem; color: var(--muted); max-width: 420px; margin-bottom: 2.5rem; line-height: 1.85; }

/* ── RESPONSIVE ── */
/* ── GOLD EM GLOBAL — all h2 italic gets gold ── */
h2 em, h1 em { font-style: italic; color: var(--gold-lt); }

/* ── ABOUT TEASER INTRO TEXT ── */
.at-intro {
  font-size: 0.82rem;
  color: rgba(244,241,235,0.5);
  line-height: 1.85;
  margin-bottom: 1.8rem;
  max-width: 460px;
}

/* ── LUXURY TOUCHES ── */

/* Subtle gold shimmer on nav logo hover */
.nav-logo:hover span { 
  text-shadow: 0 0 20px rgba(184,151,90,0.4);
  transition: text-shadow 0.4s;
}

/* Hero h1 gets slightly more weight on large screens */
@media (min-width: 1200px) {
  .hero h1 { font-size: 5.5rem; letter-spacing: -0.02em; }
  .statement-text { font-size: 2rem; }
}

/* Statement section — more breathing room */
.statement { padding: 10rem 4rem; }

/* Pillars — more vertical space */
.pillars { padding: 8rem 4rem; }
.pillar h3 { font-size: 1.6rem; }

/* About teaser — larger photo on desktop */
@media (min-width: 1100px) {
  .about-teaser { grid-template-columns: 400px 1fr; gap: 8rem; padding: 8rem 4rem; }
}

/* Service cards — gold left border on hover */
.stg-card {
  border-left: 2px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.stg-card:hover { border-left-color: var(--gold); }

/* Final CTA — dark gold tint background */
.final-cta {
  background: linear-gradient(to bottom right, var(--ink2), #0D0C08);
  border-top: 1px solid var(--rule);
}

/* Subtle texture on hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--rule) 30%, var(--rule) 70%, transparent);
}

/* Creds hover gold */
.at-cred {
  transition: color 0.2s, padding-left 0.2s;
  cursor: default;
}
.at-cred:hover { color: var(--white); padding-left: 0.4rem; }

/* Mobile about teaser intro */
@media (max-width: 768px) {
  .at-intro { font-size: 0.78rem; max-width: 100%; }
  .statement { padding: 5rem 1.2rem; }
  .pillars { padding: 4rem 1.2rem; }
}


/* ── HERO BUTTONS ── */
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* ── WHO THIS IS FOR ── */
.for-whom {
  padding: 8rem 4rem;
  border-top: 1px solid var(--rule);
  background: var(--ink2);
}
.fw-header { margin-bottom: 4rem; max-width: 700px; }
.fw-header h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  color: var(--white);
  margin-top: 0.5rem;
}
.fw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.fw-card { background: var(--ink2); padding: 2.5rem 2rem; transition: background 0.3s; }
.fw-card:hover { background: #0F0F0C; }
.fw-icon { font-size: 0.5rem; color: var(--gold); margin-bottom: 1.4rem; opacity: 0.6; }
.fw-card h4 { font-family: var(--serif); font-weight: 400; font-size: 1.05rem; color: var(--white); margin-bottom: 0.9rem; line-height: 1.3; }
.fw-card p { font-size: 0.75rem; color: var(--muted); line-height: 1.85; }

/* ── SERVICE TEASER NOTE ── */
.svc-teaser-note {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 340px;
  line-height: 1.8;
  text-align: right;
}
.br-desktop { display: block; }

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (max-width: 1024px)
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Layout shifts */
  .pillars { flex-direction: column; gap: 3rem; padding: 6rem 2.5rem; }
  .pillar { padding: 0; }
  .pillar-divider { width: 100%; height: 1px; }

  .about-teaser { grid-template-columns: 1fr; gap: 3rem; padding: 6rem 2.5rem; }
  .at-photo { max-width: 300px; }

  .svc-teaser { padding: 6rem 2.5rem; }
  .svc-teaser-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .svc-teaser-note { text-align: left; max-width: 100%; }
  .svc-teaser-grid { grid-template-columns: repeat(2, 1fr); }

  .about-main { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo-wrap { max-width: 280px; }

  .svc-header { grid-template-columns: 1fr; gap: 2rem; }
  .svc-body { grid-template-columns: 1fr; gap: 3rem; }

  .contact-main { grid-template-columns: 1fr; gap: 3rem; }

  .insights-grid { grid-template-columns: 1fr 1fr; }

  .creds-strip-grid { grid-template-columns: 1fr 1fr; }
  .cs-item:nth-child(3n) { border-right: 1px solid var(--rule); }
  .cs-item:nth-child(2n) { border-right: none; }
  .cs-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--rule); }
  .cs-item:nth-last-child(-n+2) { border-bottom: none; }

  .fw-grid { grid-template-columns: repeat(2, 1fr); }

  .final-cta { padding: 7rem 2.5rem; }
  .statement { padding: 7rem 2.5rem; }
  .cta-band { padding: 6rem 2.5rem; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (max-width: 768px)
   ══════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── NAV ── */
  nav { padding: 1rem 1.2rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
  .mobile-menu { top: 58px; }

  /* ── HERO ── */
  .hero {
    padding: 6.5rem 1.2rem 3.5rem;
    min-height: 100svh;
    align-items: flex-start;
  }
  .hero h1 { font-size: clamp(2.6rem, 10.5vw, 3.8rem); margin-bottom: 1.4rem; }
  .hero-sub-wrap p { font-size: 0.8rem; line-height: 1.75; margin-bottom: 0; }
  .br-desktop { display: none; }
  .hero-ornament { display: none; }
  .hero-geo { font-size: 0.52rem; letter-spacing: 0.26em; }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    margin-top: 2rem;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-ghost { text-align: center; padding: 1rem 1.5rem; font-size: 0.65rem; }

  /* ── STATEMENT ── */
  .statement { padding: 4.5rem 1.2rem; }
  .statement-text { font-size: 1.1rem; line-height: 1.6; }
  .statement-attr { font-size: 0.58rem; }

  /* ── PILLARS ── */
  .pillars { padding: 4rem 1.2rem; flex-direction: column; gap: 2rem; }
  .pillar { padding: 0; }
  .pillar-divider { width: 100%; height: 1px; }
  .pillar-num { margin-bottom: 1rem; }
  .pillar h3 { font-size: 1.25rem; margin-bottom: 0.7rem; }
  .pillar p { font-size: 0.77rem; }

  /* ── ABOUT TEASER (home) ── */
  .about-teaser { padding: 4rem 1.2rem; grid-template-columns: 1fr; gap: 2.5rem; }
  .at-photo { max-width: 220px; }
  .at-photo-line { display: none; }
  .at-content h2 { font-size: clamp(1.6rem, 6.5vw, 2rem); margin-bottom: 1rem; }
  .at-intro { font-size: 0.77rem; max-width: 100%; margin-bottom: 1.2rem; }
  .at-cred { font-size: 0.71rem; padding: 0.7rem 0; }

  /* ── WHO THIS IS FOR ── */
  .for-whom { padding: 4rem 1.2rem; }
  .fw-header { margin-bottom: 2.5rem; }
  .fw-header h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .fw-grid { grid-template-columns: 1fr; gap: 0; }
  .fw-card { padding: 1.8rem 1.2rem; border-bottom: 1px solid var(--rule); }
  .fw-card:last-child { border-bottom: none; }
  .fw-icon { margin-bottom: 1rem; }
  .fw-card h4 { font-size: 0.95rem; margin-bottom: 0.6rem; }
  .fw-card p { font-size: 0.74rem; }

  /* ── SERVICES TEASER (home) ── */
  .svc-teaser { padding: 4rem 1.2rem; }
  .svc-teaser-header { flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
  .svc-teaser-header h2 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .svc-teaser-note { text-align: left; max-width: 100%; font-size: 0.73rem; }
  .svc-teaser-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .stg-card { padding: 1.5rem 1rem 1.2rem; min-height: 150px; }
  .stg-label { font-size: 0.54rem; letter-spacing: 0.2em; }
  .stg-name { font-size: 1.05rem; margin-top: 1.8rem; margin-bottom: 0.5rem; }
  .stg-profile { font-size: 0.62rem; line-height: 1.5; }
  .stg-arrow { opacity: 0.5; }
  .svc-teaser-cta { margin-top: 1.5rem; }

  /* ── FINAL CTA (home) ── */
  .final-cta { padding: 5rem 1.2rem; }
  .final-cta h2 { font-size: clamp(2.3rem, 9.5vw, 3.2rem); margin-bottom: 1rem; }
  .final-cta p { font-size: 0.77rem; margin-bottom: 2rem; }
  .final-cta .hero-buttons { margin-bottom: 0; }

  /* ── PAGE HERO (inner pages) ── */
  .page-hero { padding: 7.5rem 1.2rem 3rem; }
  .page-hero h1 { font-size: clamp(2.1rem, 8.5vw, 3rem); margin-bottom: 1rem; }
  .page-hero-sub { font-size: 0.78rem; line-height: 1.8; }

  /* ── ABOUT PAGE ── */
  .about-main { padding: 4rem 1.2rem; grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo-wrap { max-width: 240px; }
  .about-photo-frame { display: none; }
  .about-caption { padding: 0.8rem 0; margin-top: 0.8rem; }
  .about-caption strong { font-size: 0.9rem; }
  .about-caption span { font-size: 0.66rem; }
  .about-lead { font-size: 1.05rem; line-height: 1.55; margin-bottom: 1.5rem; }
  .about-block { margin-bottom: 1.2rem; }
  .about-block p { font-size: 0.77rem; line-height: 1.88; }
  .about-block h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
  .about-divider { margin: 2rem 0; }

  /* ── CREDENTIALS STRIP ── */
  .creds-strip { padding: 3rem 1.2rem; }
  .creds-strip h3 { font-size: 1.3rem; margin-bottom: 2rem; }
  .creds-strip-grid { grid-template-columns: 1fr; }
  .cs-item { border-right: none !important; border-bottom: 1px solid var(--rule); padding: 1.2rem 0; }
  .cs-item:last-child { border-bottom: none; }
  .cs-org { font-size: 0.88rem; }
  .cs-role { font-size: 0.66rem; }

  /* ── SERVICES PAGE ── */
  .svc-list { padding: 0 1.2rem 4rem; }
  .svc-card { padding: 3rem 0; }
  .svc-card--principal { padding: 3rem 0; }
  .svc-header { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2rem; }
  .svc-tier { margin-bottom: 0.3rem; }
  .svc-name { font-size: clamp(1.55rem, 6vw, 2rem); margin-bottom: 0.4rem; }
  .svc-price { font-size: 0.85rem; }
  .svc-profile-box { padding: 1.1rem 1.2rem; }
  .spb-text { font-size: 0.74rem; }
  .svc-divider { margin-bottom: 2rem; }
  .svc-body { grid-template-columns: 1fr; gap: 2rem; }
  .svc-col h4 { font-size: 0.92rem; margin-bottom: 0.7rem; }
  .svc-col p { font-size: 0.77rem; }
  .svc-list-items li { font-size: 0.74rem; padding: 0.4rem 0 0.4rem 0.9rem; }
  .svc-need { font-size: 0.95rem; margin-top: 2rem; padding-top: 1.5rem; }
  .svc-badge { font-size: 0.56rem; padding: 0.25rem 0.7rem; margin-bottom: 1.5rem; }
  .disclaimer { padding: 0.5rem 1.2rem 2.5rem; }
  .disclaimer p { font-size: 0.63rem; }

  /* ── INSIGHTS PAGE ── */
  .insights-grid { grid-template-columns: 1fr; padding: 0; }
  .insight-card { padding: 2rem 1.2rem; }
  .insight-label { font-size: 0.56rem; margin-bottom: 0.8rem; }
  .insight-card h3 { font-size: 1.05rem; line-height: 1.35; margin-bottom: 0.7rem; }
  .insight-card p { font-size: 0.75rem; line-height: 1.75; }
  .insight-read { font-size: 0.6rem; margin-top: 1rem; }

  /* ── CONTACT PAGE ── */
  .contact-main { padding: 3.5rem 1.2rem; grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-left h3 { font-size: 1.2rem; margin-bottom: 0.9rem; }
  .contact-left p { font-size: 0.78rem; }
  .contact-info { margin-top: 2rem; padding-top: 1.5rem; gap: 1rem; }
  .ci-label { font-size: 0.55rem; margin-bottom: 0.25rem; }
  .ci-value { font-size: 0.78rem; }
  .cf-field label { font-size: 0.58rem; }
  .cf-field input,
  .cf-field textarea,
  .cf-field select { font-size: 0.8rem; padding: 0.75rem 0.9rem; }
  .cf-note { font-size: 0.63rem; }
  .cf-success h3 { font-size: 1.5rem; }
  .cf-success { padding: 2.5rem 1.5rem; }

  /* ── CTA BAND (shared) ── */
  .cta-band { padding: 4.5rem 1.2rem; }
  .cta-band h2 { font-size: clamp(1.9rem, 7.5vw, 2.8rem); margin-bottom: 0.9rem; }
  .cta-band p { font-size: 0.77rem; margin-bottom: 2rem; max-width: 100%; }

  /* ── FOOTER ── */
  footer { padding: 2rem 1.2rem; }
  .footer-inner { flex-direction: column; gap: 1.2rem; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 0.8rem 1.2rem; }
  .footer-links a { font-size: 0.63rem; }
  .footer-email { font-size: 0.7rem; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; padding-top: 1.2rem; margin-top: 1.2rem; border-top: 1px solid var(--rule); }
  .footer-bottom p { font-size: 0.6rem; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — SMALL PHONES (max-width: 390px)
   ══════════════════════════════════════════ */
@media (max-width: 390px) {
  .hero h1 { font-size: 2.4rem; }
  .svc-teaser-grid { grid-template-columns: 1fr; }
  .stg-card { min-height: auto; padding: 1.4rem 1rem; }
  .insights-grid { gap: 0; }
  .fw-grid { gap: 0; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-ghost { font-size: 0.62rem; padding: 0.9rem 1rem; }
}

/* ── REVEAL SECTION — ensure no layout break ── */
.reveal-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── INSIGHTS GRID MOBILE PADDING ── */
@media (max-width: 768px) {
  .insights-grid { padding: 0 0 3rem !important; }
  .insight-card:last-child { border-bottom: 1px solid var(--rule); }
}

/* ── FOOTER TOP FIX ── */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 4rem;
  padding: 4rem;
  border-bottom: 1px solid var(--rule);
}
.footer-brand p { font-size: 0.75rem; color: var(--muted); margin-top: 0.8rem; line-height: 1.7; }
.footer-contact a { display: block; font-size: 0.78rem; color: var(--gold); text-decoration: none; margin-bottom: 0.6rem; }
.footer-contact p { font-size: 0.72rem; color: var(--muted); }
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 1.2rem; }
}

/* ── CONTACT FORM BUTTON WIDTH FIX ── */
@media (max-width: 768px) {
  .contact-form .btn-primary { display: block; width: 100%; box-sizing: border-box; }
}

/* ── FIX: Arrow emoji rendering on mobile ── */
.stg-arrow {
  font-family: monospace;
  font-style: normal;
  -webkit-text-stroke: 0;
  text-rendering: geometricPrecision;
}

/* ── FIX: About photo credentials margin from gold frame ── */
@media (max-width: 768px) {
  .about-photo-wrap { position: relative; padding-bottom: 1.5rem; }
  .about-caption { margin-top: 1.2rem; padding-top: 1rem; }
}
