/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

/* ── MAILERLITE EMBED HELPERS ─────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.ml-form-embedSubmitLoad {
  display: inline-block;
  width: 20px;
  height: 20px;
}
.ml-form-embedSubmitLoad:after {
  content: " ";
  display: block;
  width: 11px;
  height: 11px;
  margin: 1px;
  border-radius: 50%;
  border: 4px solid #fff;
  border-color: #B8924A #B8924A #B8924A transparent;
  animation: ml-form-embedSubmitLoad 1.2s linear infinite;
}
@keyframes ml-form-embedSubmitLoad {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

:root {
  --ink:        #0F0C09;
  --deep:       #1A1410;
  --mid-brown:  #3A2A1A;
  --gold:       #B8924A;
  --gold-dim:   #8A6533;
  --gold-pale:  #F0DEB8;
  --cream:      #FAF6F0;
  --warm-white: #FDFAF6;
  --sage:       #6B8F71;
  --terracotta: #C4654A;
  --blush:      #E8C5A8;
  --muted:      #8A7A6A;
  --mid:        #5A4A3A;
  --border:     rgba(184,146,74,0.15);
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --page-bg:    #FDFAF6;
}

body {
  background: var(--page-bg);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ──────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease);
  background: rgba(253,250,246,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

nav.scrolled {
  background: rgba(15,12,9,0.95);
  backdrop-filter: blur(12px);
  padding: 14px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: #B8924A;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-logo span { color: #B8924A; font-style: normal; font-weight: 400; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  color: var(--ink) !important;
  background: var(--gold);
  padding: 10px 24px;
  transition: background 0.3s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold-pale) !important;
  transform: translateY(-1px);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 48px 80px;
  overflow: hidden;
  background: var(--page-bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 70%, rgba(201,169,110,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(196,101,74,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(107,143,113,0.05) 0%, transparent 40%);
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.35s forwards;
}

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

.hero-sub {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.5s forwards;
}

.hero-sub strong { color: var(--ink); font-weight: 500; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.65s forwards;
  max-width: 480px;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 48px;
  transition: background 0.3s, transform 0.2s;
  width: 100%;
  max-width: 480px;
  text-align: center;
}

.btn-primary:hover {
  background: var(--gold-pale);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  transition: border-color 0.3s, background 0.3s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(201,169,110,0.05);
}

/* HERO PHOTO */
.hero-photo {
  position: relative;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 0.5s forwards;
}

.hero-photo-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--mid-brown);
  position: relative;
  overflow: hidden;
}

.hero-photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.12) 0%, transparent 60%);
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.photo-placeholder-icon {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-placeholder-icon svg { opacity: 0.3; }

.photo-placeholder p {
  font-size: 12px;
  color: rgba(201,169,110,0.3);
  letter-spacing: 0.1em;
}

.hero-photo-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(201,169,110,0.2);
  pointer-events: none;
}

.hero-photo-tag {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: var(--gold);
  color: var(--ink);
  padding: 12px 20px;
}

.hero-photo-tag .tag-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  display: block;
  line-height: 1;
}

.hero-photo-tag .tag-title {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

/* ── SCROLL INDICATOR ────────────────────────────────────── */
.scroll-ind {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.2s forwards;
}

.scroll-ind span {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ── STATEMENT BAND ──────────────────────────────────────── */
.statement-band {
  background: var(--gold);
  padding: 20px 48px;
  overflow: hidden;
}

.statement-inner {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.statement-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--ink);
  flex-shrink: 0;
}

.statement-dot {
  color: var(--gold-dim);
  margin: 0 24px;
}

/* ── SECTIONS SHARED ─────────────────────────────────────── */
section { position: relative; z-index: 1; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 48px;
}

.eyebrow {
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--border), transparent);
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-heading em { font-style: italic; color: var(--gold); }

/* ── ABOUT / MIRROR ──────────────────────────────────────── */
.mirror-section { background: var(--ink); }

.mirror-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mirror-pains {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pain-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: background 0.3s;
}

.pain-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

.pain-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
}

.mirror-content .section-heading { color: var(--cream); }

.mirror-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 20px;
}

.mirror-body strong { color: var(--cream); font-weight: 400; }

/* ── ABOUT SAPI ──────────────────────────────────────────── */
.about-section { background: var(--cream); }
.about-section .section-heading { color: var(--ink); }
.about-section .eyebrow { color: var(--gold-dim); }
.about-section .eyebrow::after { background: linear-gradient(to right, rgba(138,101,51,0.3), transparent); }

.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.about-photo {
  position: sticky;
  top: 100px;
}

.about-photo-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--mid-brown);
  position: relative;
  overflow: hidden;
}

.about-photo-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(15,12,9,0.6), transparent);
}

.about-accent {
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: -12px;
  border: 1px solid rgba(138,101,51,0.2);
  pointer-events: none;
}

.about-content p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-content p strong { color: var(--ink); font-weight: 500; }

.about-content p.lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 28px;
}

.about-quote {
  border-left: 2px solid var(--gold-dim);
  padding: 20px 28px;
  background: rgba(201,169,110,0.06);
  margin: 32px 0;
}

.about-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--ink);
  margin: 0;
  line-height: 1.5;
}

/* ── METHOD ──────────────────────────────────────────────── */
.method-section { background: var(--ink); }

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(181,164,106,0.12);
  margin-top: 56px;
}

.method-card {
  background: rgba(15,12,9,0.9);
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}

.method-card:hover { background: rgba(26,20,16,0.95); }

.method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.method-card:hover::before { transform: scaleX(1); }

.method-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: #B8924A;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
  transition: color 0.4s;
}

.method-card:hover .method-letter { color: #D4AA6E; }

.method-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}

.method-outcome {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.method-teaser {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.method-footer {
  margin-top: 56px;
  text-align: center;
  padding: 40px;
  border: 1px solid var(--border);
}

.method-footer p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--gold-pale);
  line-height: 1.5;
  margin-bottom: 8px;
}

.method-footer span {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
}


/* Method card Venn diagram colours */
.method-card:nth-child(1) { border-bottom: 3px solid #B5A46A; }
.method-card:nth-child(1) .method-letter { color: #B5A46A; }
.method-card:nth-child(1) .method-outcome { color: #B5A46A; }
.method-card:nth-child(1)::before { background: #B5A46A; }

.method-card:nth-child(2) { border-bottom: 3px solid #6B8F71; }
.method-card:nth-child(2) .method-letter { color: #6B8F71; }
.method-card:nth-child(2) .method-outcome { color: #6B8F71; }
.method-card:nth-child(2)::before { background: #6B8F71; }

.method-card:nth-child(3) { border-bottom: 3px solid #A07868; }
.method-card:nth-child(3) .method-letter { color: #A07868; }
.method-card:nth-child(3) .method-outcome { color: #A07868; }
.method-card:nth-child(3)::before { background: #A07868; }

.method-card:nth-child(4) { border-bottom: 3px solid #9A9688; }
.method-card:nth-child(4) .method-letter { color: #9A9688; }
.method-card:nth-child(4) .method-outcome { color: #9A9688; }
.method-card:nth-child(4)::before { background: #9A9688; }

.method-section .section-heading em { color: #B8924A !important; font-style: normal !important; }
.method-section .section-heading { color: #B8924A !important; }

/* ── OFFERS ──────────────────────────────────────────────── */
.offers-section { background: var(--cream); }
.offers-section .section-heading { color: var(--ink); }
.offers-section .eyebrow { color: var(--gold-dim); }
.offers-section .eyebrow::after { background: linear-gradient(to right, rgba(138,101,51,0.3), transparent); }

.offers-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 56px;
}

.offer-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  overflow: hidden;
  border: 1px solid rgba(138,101,51,0.15);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.offer-sidebar {
  background: var(--ink);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.offer-tier {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.offer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 0;
}

.offer-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.offer-price-note {
  font-size: 10px;
  color: var(--gold-dim);
  letter-spacing: 0.1em;
  margin-top: 4px;
  display: block;
}

.offer-body {
  padding: 36px 40px;
  background: var(--warm-white);
}

.offer-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.4;
}

.offer-desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.offer-outcomes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.offer-outcome {
  font-size: 13px;
  color: var(--mid);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.offer-outcome::before {
  content: '✦';
  color: var(--gold-dim);
  font-size: 9px;
  flex-shrink: 0;
  margin-top: 3px;
}

.offer-link {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.offer-link:hover { color: var(--gold-dim); }

/* ── TESTIMONIAL ─────────────────────────────────────────── */
.testimonial-section { background: var(--gold); padding: 80px 48px; text-align: center; }

.testimonial-section blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto 24px;
}

.testimonial-section cite {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  font-style: normal;
}

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  background: var(--deep);
  text-align: center;
}

.cta-section .section-inner { padding: 120px 48px; }

.cta-section .section-heading { color: var(--cream); }

.cta-ornament {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto 48px;
}

.cta-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 48px;
}

.cta-contact {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.contact-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-value {
  font-size: 15px;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-value:hover { color: var(--gold); }

/* ── FEATURED OFFER (SELF LEAD SHIFT) ─────────────────────── */
.feature-eyebrow {
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.feature-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 36px;
}

.feature-pillars {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2vw, 20px);
  font-style: italic;
  color: var(--gold-pale);
  margin-bottom: 32px;
}

.feature-pillars .pillar-dot {
  color: var(--gold-dim);
  margin: 0 12px;
  font-style: normal;
}

.feature-scarcity {
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 40px;
}

.feature-cta {
  width: auto;
  max-width: none;
  padding: 20px 56px;
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--cream);
}

.footer-name span { color: var(--gold); font-style: italic; }

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 11px;
  color: var(--muted);
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.4; transform: scaleY(0.7); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }

  .hero { padding: 120px 24px 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-photo { order: -1; max-width: 320px; margin: 0 auto; }

  .section-inner { padding: 72px 24px; }
  .mirror-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { position: static; max-width: 320px; }
  .method-grid { grid-template-columns: 1fr 1fr; }
  .offer-card { grid-template-columns: 1fr; }
  .offer-sidebar { flex-direction: row; align-items: center; }

  .cta-contact { gap: 32px; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }

  .testimonial-section { padding: 60px 24px; }
}

@media (max-width: 600px) {
  .method-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 48px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; }
}

