@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Jost:wght@300;400;500&display=swap');

/* ── TOKENS ─────────────────────────────────────────────────────── */
:root {
  --black:   #0A0A0A;
  --gold:    #B8872A;
  --cream:   #F5EFE3;
  --charcoal:#2C2C2C;
  --mist:    #7A7A7A;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Jost', sans-serif;
}

/* ── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TICKER ─────────────────────────────────────────────────────── */
.ticker {
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-block;
  animation: ticker 30s linear infinite;
}
.ticker-inner span { margin: 0 3rem; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── NAV ────────────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid #1a1a1a;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--cream);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--cream); }
.nav-cta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black) !important;
  padding: 10px 22px;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--cream); color: var(--black) !important; }

/* Mobile nav toggle */
.nav-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 1px; background: var(--cream); transition: all 0.3s; }

/* ── GOLD RULE ──────────────────────────────────────────────────── */
.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* ── SECTION LABEL ──────────────────────────────────────────────── */
.section-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid var(--cream);
  color: var(--cream);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn:hover { background: var(--cream); color: var(--black); }
.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.btn-gold:hover { background: var(--cream); border-color: var(--cream); color: var(--black); }

/* ── HERO ───────────────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 8vw 4vw;
  position: relative;
  border-bottom: 1px solid #1a1a1a;
}
.hero-content { max-width: 760px; }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 108px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 2rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  color: var(--mist);
  margin-bottom: 3rem;
  max-width: 480px;
}
.hero-deco {
  position: absolute;
  right: 4vw;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
  opacity: 0.4;
}

/* ── TRUST SIGNALS ──────────────────────────────────────────────── */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #1a1a1a;
}
.trust-item {
  padding: 3rem 2rem;
  border-right: 1px solid #1a1a1a;
}
.trust-item:last-child { border-right: none; }
.trust-item h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.trust-item p {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.6;
}

/* ── HOW IT WORKS ───────────────────────────────────────────────── */
.how {
  padding: 8rem 4vw;
  border-bottom: 1px solid #1a1a1a;
}
.how-headline {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  margin-bottom: 5rem;
  color: var(--cream);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
.how-step-num {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 300;
  color: #1e1e1e;
  line-height: 1;
  margin-bottom: 1rem;
}
.how-step h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1rem;
}
.how-step p {
  font-size: 15px;
  color: var(--mist);
  line-height: 1.8;
}

/* ── SERVICES PREVIEW ───────────────────────────────────────────── */
.services-preview {
  padding: 8rem 4vw;
  border-bottom: 1px solid #1a1a1a;
}
.services-preview-headline {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 4rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #1a1a1a;
  margin-bottom: 3rem;
}
.service-card {
  background: var(--black);
  padding: 3rem 2.5rem;
  position: relative;
  transition: background 0.3s;
}
.service-card:hover { background: #111; }
.service-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 10px;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.service-card .service-type {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.service-card p {
  font-size: 14px;
  color: var(--mist);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.service-card .price {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 2rem;
}

/* ── BEFORE AFTER ───────────────────────────────────────────────── */
.before-after {
  padding: 8rem 4vw;
  background: #070707;
  border-bottom: 1px solid #1a1a1a;
}
.ba-headline {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
}
.ba-sub {
  font-size: 15px;
  color: var(--mist);
  margin-bottom: 4rem;
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #1a1a1a;
  margin-bottom: 2rem;
}
.ba-panel {
  background: var(--black);
  padding: 3rem;
}
.ba-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.ba-panel blockquote {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
}
.ba-after { background: #0d0d0d; }
.ba-caption {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: var(--mist);
  text-align: center;
}

/* ── TESTIMONIAL ────────────────────────────────────────────────── */
.testimonial {
  padding: 8rem 4vw;
  text-align: center;
  border-bottom: 1px solid #1a1a1a;
  max-width: 860px;
  margin: 0 auto;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.testimonial cite {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ── LEAD MAGNET ────────────────────────────────────────────────── */
.lead-magnet {
  padding: 7rem 4vw;
  background: #070707;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.lm-content h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
}
.lm-content p {
  font-size: 15px;
  color: var(--mist);
  margin-bottom: 0.75rem;
  line-height: 1.8;
}
.lm-form { display: flex; flex-direction: column; gap: 1rem; }
.lm-form input[type="email"] {
  background: transparent;
  border: 1px solid #2a2a2a;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
}
.lm-form input[type="email"]:focus { border-color: var(--gold); }
.lm-form input::placeholder { color: var(--mist); }
.lm-fine { font-size: 12px; color: var(--mist); }

/* ── ABOUT STRIP ────────────────────────────────────────────────── */
.about-strip {
  padding: 8rem 4vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  border-bottom: 1px solid #1a1a1a;
}
.about-strip h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 2rem;
}
.about-strip p {
  font-size: 15px;
  color: var(--mist);
  margin-bottom: 1rem;
  line-height: 1.9;
}
.about-strip .btn { margin-top: 1rem; }

/* ── FINAL CTA ──────────────────────────────────────────────────── */
.final-cta {
  padding: 10rem 4vw;
  text-align: center;
}
.final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.final-cta p {
  font-size: 16px;
  color: var(--mist);
  margin-bottom: 3rem;
}

/* ── FOOTER ─────────────────────────────────────────────────────── */
footer {
  background: var(--charcoal);
  padding: 4rem 4vw;
  border-top: 1px solid #333;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.footer-brand span {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--mist);
  display: block;
}
.footer-nav h4 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-nav a {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--mist);
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--cream); }
.footer-social h4 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-social a {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--mist);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid #3a3a3a;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--mist);
}
.footer-bottom a {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--mist);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--cream); }

/* ── PAGE HERO (INTERIOR) ───────────────────────────────────────── */
.page-hero {
  padding: 7rem 4vw 5rem;
  border-bottom: 1px solid #1a1a1a;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.page-hero p {
  font-size: 16px;
  color: var(--mist);
  max-width: 560px;
  line-height: 1.8;
}
.page-notice {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-top: 1.5rem;
}

/* ── SERVICES PAGE ──────────────────────────────────────────────── */
.services-section { padding: 0 4vw; }
.services-section-header {
  padding: 5rem 0 3rem;
  border-bottom: 1px solid #1a1a1a;
}
.services-section-header h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.services-section-header p {
  font-size: 15px;
  color: var(--mist);
  max-width: 520px;
  line-height: 1.8;
}
.service-row {
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: 4rem;
  align-items: start;
  padding: 4rem 0;
  border-bottom: 1px solid #1a1a1a;
  position: relative;
}
.service-row-left h3 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.service-row-left .stype {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.popular-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 3px 8px;
  margin-top: 0.75rem;
}
.service-row-middle p {
  font-size: 15px;
  color: var(--mist);
  line-height: 1.9;
  margin-bottom: 1rem;
}
.service-row-middle .best-for {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--cream);
  opacity: 0.6;
  font-style: italic;
}
.service-row-middle .pricing {
  margin-top: 1.5rem;
}
.service-row-middle .pricing p {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.service-row-right { padding-top: 0.5rem; }

/* ── DELIVERABLES ───────────────────────────────────────────────── */
.deliverables {
  padding: 5rem 4vw;
  background: #070707;
  border-bottom: 1px solid #1a1a1a;
}
.deliverables h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 3rem;
}
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.deliverable-item h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.deliverable-item p {
  font-size: 14px;
  color: var(--mist);
  line-height: 1.8;
}
.addon-block {
  padding: 4rem 4vw;
  border-bottom: 1px solid #1a1a1a;
}
.addon-block h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1rem;
}
.addon-block p {
  font-size: 14px;
  color: var(--mist);
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 0.5rem;
}
.esl-block {
  padding: 3rem 4vw;
  border-bottom: 1px solid #1a1a1a;
  border-left: 2px solid var(--gold);
  margin: 0 4vw;
}
.esl-block p {
  font-size: 15px;
  color: var(--mist);
  line-height: 1.8;
  max-width: 680px;
}

/* ── ABOUT PAGE ─────────────────────────────────────────────────── */
.about-page-body { background: var(--cream); color: var(--black); }
.about-page-body nav { background: var(--black); }
.about-content {
  padding: 7rem 4vw;
  max-width: 860px;
}
.about-content h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 300;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 4rem;
}
.about-section {
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid #d5cfc6;
}
.about-section:last-of-type { border-bottom: none; }
.about-section h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  color: var(--black);
  margin-bottom: 2rem;
  line-height: 1.2;
}
.about-section p {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: #3a3a3a;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.about-sig {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--mist);
  line-height: 2;
}
.about-cta {
  padding: 7rem 4vw;
  background: var(--black);
  text-align: center;
}
.about-cta h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
}
.about-cta p {
  font-size: 15px;
  color: var(--mist);
  margin-bottom: 2.5rem;
}

/* ── FAQ PAGE ───────────────────────────────────────────────────── */
.faq-list { padding: 0 4vw; max-width: 860px; }
.faq-item { border-bottom: 1px solid #1a1a1a; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  text-align: left;
  padding: 2.5rem 3rem 2.5rem 0;
  cursor: pointer;
  position: relative;
  line-height: 1.4;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-answer {
  display: none;
  padding-bottom: 2.5rem;
}
.faq-item.open .faq-answer { display: block; }
.faq-answer p {
  font-size: 15px;
  color: var(--mist);
  line-height: 1.9;
  margin-bottom: 1rem;
}

/* ── INQUIRE PAGE ───────────────────────────────────────────────── */
.inquire-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.inquire-left {
  padding: 7rem 4vw;
  border-right: 1px solid #1a1a1a;
}
.inquire-left h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 2rem;
}
.inquire-left p {
  font-size: 15px;
  color: var(--mist);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.inquire-left .fine {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-top: 2rem;
}
.inquire-right { padding: 7rem 4vw; }
.inquiry-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mist);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: 1px solid #2a2a2a;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group select {
  appearance: none;
  cursor: pointer;
}
.form-group select option { background: var(--black); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #3a3a3a; }
.form-success {
  display: none;
  padding: 2rem;
  border: 1px solid var(--gold);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
}

/* ── BLOG PAGE ──────────────────────────────────────────────────── */
.blog-header {
  padding: 7rem 4vw 5rem;
  border-bottom: 1px solid #1a1a1a;
}
.blog-header h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
}
.blog-header p {
  font-size: 16px;
  color: var(--mist);
  max-width: 560px;
  line-height: 1.8;
}
.blog-grid {
  padding: 5rem 4vw;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: #1a1a1a;
}
.blog-card {
  background: var(--black);
  padding: 3.5rem;
  transition: background 0.3s;
}
.blog-card:hover { background: #0d0d0d; }
.blog-card-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.blog-card h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.35;
  margin-bottom: 1.25rem;
}
.blog-card p {
  font-size: 14px;
  color: var(--mist);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.blog-card a.read-more {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.blog-card a.read-more:hover { color: var(--cream); border-color: var(--cream); }

/* ── BLOG POST ──────────────────────────────────────────────────── */
.post-hero {
  padding: 7rem 4vw 5rem;
  border-bottom: 1px solid #1a1a1a;
  max-width: 860px;
}
.post-hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
}
.post-body {
  padding: 5rem 4vw;
  max-width: 720px;
}
.post-body p {
  font-size: 17px;
  color: var(--mist);
  line-height: 1.95;
  margin-bottom: 1.5rem;
}
.post-body h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.post-cta {
  padding: 5rem 4vw;
  border-top: 1px solid #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.post-cta p {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  color: var(--mist);
}

/* ── PRIVACY / PLAIN ────────────────────────────────────────────── */
.plain-content {
  padding: 6rem 4vw;
  max-width: 760px;
}
.plain-content h1 {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 3rem;
}
.plain-content h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.plain-content p {
  font-size: 15px;
  color: var(--mist);
  line-height: 1.9;
  margin-bottom: 0.75rem;
}

/* ── 404 ────────────────────────────────────────────────────────── */
.not-found {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4vw;
}
.not-found h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 10vw, 140px);
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 2rem;
}
.not-found h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
}
.not-found p {
  font-size: 15px;
  color: var(--mist);
  margin-bottom: 3rem;
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 2rem 4vw;
    border-bottom: 1px solid #1a1a1a;
    z-index: 99;
    gap: 1.5rem;
  }
  .trust { grid-template-columns: 1fr 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid #1a1a1a; }
  .trust-item:nth-child(odd) { border-right: 1px solid #1a1a1a; }
  .how-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .lead-magnet { grid-template-columns: 1fr; gap: 3rem; }
  .about-strip { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 3rem; }
  .service-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .deliverables-grid { grid-template-columns: 1fr; gap: 2rem; }
  .inquire-layout { grid-template-columns: 1fr; }
  .inquire-left { border-right: none; border-bottom: 1px solid #1a1a1a; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-deco { display: none; }
  .post-cta { flex-direction: column; gap: 2rem; text-align: center; }
}

@media (max-width: 600px) {
  .trust { grid-template-columns: 1fr; }
  .trust-item { border-right: none; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ── HERO V2 (Concept D + photo fade) ───────────────────────────── */
.hero-v2 {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid #1a1a1a;
}

.hero-v2-bg-layers {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-gold-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg, transparent, transparent 39px,
    rgba(184,135,42,0.04) 39px,
    rgba(184,135,42,0.04) 40px
  );
}

.hero-wm-name {
  position: absolute;
  font-family: var(--serif);
  font-size: clamp(60px, 9vw, 120px);
  font-weight: 600;
  color: rgba(245,239,227,0.025);
  bottom: -10px;
  left: -10px;
  line-height: 1.1;
  letter-spacing: 0.05em;
}

.hero-wm-tnp {
  position: absolute;
  font-family: var(--serif);
  font-size: clamp(160px, 28vw, 380px);
  font-weight: 600;
  font-style: italic;
  color: rgba(184,135,42,0.045);
  top: -40px;
  right: -20px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-v2-photo {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-v2-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-v2-fade {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    to right,
    #0A0A0A 0%,
    #0A0A0A 38%,
    rgba(10,10,10,0.92) 50%,
    rgba(10,10,10,0.65) 65%,
    rgba(10,10,10,0.25) 82%,
    rgba(10,10,10,0.1) 100%
  );
}

.hero-v2-content {
  position: relative;
  z-index: 4;
  padding: 7vw 4vw;
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-v2-top { display: flex; flex-direction: column; }

.hero-logo-large {
  height: clamp(100px, 14vw, 160px);
  width: auto;
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.hero-issue {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.hero-gold-divider {
  width: 100%;
  height: 1px;
  background: var(--gold);
  opacity: 0.45;
  margin-bottom: 2rem;
}

.hero-v2-h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-v2-h1 em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-v2-sub {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 3rem;
}

/* ── TESTIMONIAL WITH UNSPLASH BACKGROUND ────────────────────────── */
.testimonial-section {
  position: relative;
  padding: 8rem 4vw;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid #1a1a1a;
}

.testimonial-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1455390582262-044cdead277a?w=1600&q=60&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
}

.testimonial-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

.testimonial-content blockquote {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.testimonial-content cite {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ── ABOUT PAGE PHOTO ────────────────────────────────────────────── */
.about-page-hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.about-page-left {
  padding: 7rem 4vw;
  position: relative;
  z-index: 2;
}

.about-page-wm { display: none; }

.about-wm-strip {
  background: #EDE8DF;
  padding: 1.25rem 4vw;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.about-wm-strip-rule {
  position: absolute;
  top: 50%;
  left: 4vw;
  right: 4vw;
  height: 1px;
  background: #B8872A;
  opacity: 0.3;
}

.about-wm-strip-text {
  font-family: var(--serif);
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: 0.28em;
  color: rgba(10,10,10,0.08);
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.about-page-right {
  position: relative;
  overflow: hidden;
}

.about-page-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: contrast(1.05) brightness(0.95);
}

.about-page-right-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 30%);
}

/* ── SERVICES GOLD LINE BG ───────────────────────────────────────── */
.services-gold-bg {
  position: relative;
  overflow: hidden;
}

.services-gold-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg, transparent, transparent 39px,
    rgba(184,135,42,0.05) 39px,
    rgba(184,135,42,0.05) 40px
  );
  pointer-events: none;
  z-index: 0;
}

.services-gold-bg > * { position: relative; z-index: 1; }

/* ── BLOG HEADER WITH PHOTO ──────────────────────────────────────── */
.blog-header-photo {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #1a1a1a;
}

.blog-header-photo-bg {
  position: absolute;
  inset: 0;
  background-image: url('photo-typewriter.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}

.blog-header-photo-content {
  position: relative;
  z-index: 2;
  padding: 7rem 4vw 5rem;
}

.blog-header-photo-content h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
}

.blog-header-photo-content p {
  font-size: 16px;
  color: var(--mist);
  max-width: 560px;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .hero-v2-content { width: 100%; }
  .hero-v2-fade {
    background: linear-gradient(
      to bottom,
      rgba(10,10,10,0.3) 0%,
      #0A0A0A 60%
    );
  }
  .about-page-hero { grid-template-columns: 1fr; }
  .about-page-right { min-height: 300px; }
  .about-page-right-fade { background: linear-gradient(to bottom, var(--cream) 0%, transparent 30%); }
  .hero-wm-tnp { font-size: 140px; }
}

/* ── POPUP OVERLAY ──────────────────────────────────────── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.78);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}
.popup-overlay.visible {
  opacity: 1;
  pointer-events: all;
}
.popup-box {
  background: var(--black);
  border: 1px solid var(--gold);
  padding: 3rem 2.75rem 2.5rem;
  max-width: 460px;
  width: 92%;
  position: relative;
  text-align: center;
}
.popup-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--mist);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color 0.2s;
}
.popup-close:hover { color: var(--cream); }
.popup-gold-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}
.popup-box h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 3.5vw, 26px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.popup-box p {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.popup-form input[type="email"] {
  background: transparent;
  border: 1px solid #2e2e2e;
  color: var(--cream);
  padding: 0.9rem 1rem;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}
.popup-form input[type="email"]:focus { border-color: var(--gold); }
.popup-form input[type="email"]::placeholder { color: #444; }
.popup-fine {
  font-size: 11px !important;
  color: #444 !important;
  margin: 0.25rem 0 0 !important;
}
.popup-success {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.8;
  padding: 0.5rem 0;
}

/* ── CHECKLIST PRODUCT SECTION ──────────────────────────── */
.checklist-product {
  background: var(--black);
  padding: 5rem 4vw;
}
.checklist-product-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 768px) {
  .checklist-product-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
.checklist-product-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.checklist-product h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.checklist-product-left p {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.85;
  margin-bottom: 0.75rem;
}
.checklist-product-price {
  font-family: var(--serif);
  font-size: 34px;
  color: var(--gold);
  margin: 1.5rem 0 0;
  display: block;
}
.checklist-includes {
  border-left: 1px solid var(--gold);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}
.checklist-includes p {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: #777;
  line-height: 1.7;
  margin-bottom: 0.4rem;
}
.checklist-includes p:last-child { margin-bottom: 0; }
