/* Мой План — editorial landing */
:root {
  --paper: #f3eadc;
  --paper-2: #e8d9c3;
  --sheet: #fffaf2;
  --ink: #1c1610;
  --ink-soft: #4b4036;
  --muted: #7d6e60;
  --line: rgba(28, 22, 16, 0.1);
  --line-strong: rgba(28, 22, 16, 0.18);
  --coffee: #6e3a24;
  --coffee-mid: #8d4e2f;
  --coffee-deep: #4a2618;
  --foam: #f0d3b4;
  --good: #2c5448;
  --good-soft: #e4efe9;
  --shadow: 0 22px 50px rgba(28, 22, 16, 0.1);
  --shadow-lg: 0 36px 80px rgba(28, 22, 16, 0.14);
  --radius: 22px;
  --nav-h: 72px;
  --font: "Manrope", system-ui, sans-serif;
  --serif: "Fraunces", "Times New Roman", serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--paper); color: var(--ink); }
body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: -0.014em;
  min-height: 100%;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
button, input { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: 0; }
::selection { background: rgba(141, 78, 47, 0.22); color: var(--ink); }

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.055;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.spotlight {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 70;
  opacity: 0;
  transition: opacity 0.6s;
  background: radial-gradient(420px circle at var(--sx, 50%) var(--sy, 40%), rgba(240, 211, 180, 0.11), transparent 46%);
}
.spotlight.is-on { opacity: 1; }

.wrap {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  background: rgba(243, 234, 220, 0.58);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(243, 234, 220, 0.9);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.logo svg { width: 34px; height: 34px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.nav-links a { position: relative; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 1px;
  background: var(--coffee);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

.btn,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--coffee);
  color: var(--sheet);
  font-size: 14.5px;
  font-weight: 650;
  letter-spacing: -0.02em;
  transition: transform 0.3s var(--ease), background 0.25s, box-shadow 0.3s;
  box-shadow: 0 8px 20px rgba(110, 58, 36, 0.18);
  white-space: nowrap;
}
.btn:hover, .nav-cta:hover {
  transform: translateY(-1px);
  background: var(--coffee-deep);
}
.btn-lg { height: 54px; padding: 0 24px; font-size: 16px; }
.btn-ghost {
  background: transparent;
  color: var(--sheet);
  box-shadow: none;
  border: 1px solid rgba(255, 250, 242, 0.38);
}
.btn-ghost:hover { background: rgba(255, 250, 242, 0.1); transform: translateY(-1px); }
.btn-sheet {
  background: var(--sheet);
  color: var(--coffee);
  box-shadow: var(--shadow);
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav.is-open .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.is-open .burger span:nth-child(2) { opacity: 0; }
.nav.is-open .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-panel {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(243, 234, 220, 0.97);
  border-bottom: 1px solid var(--line);
  padding: 8px 0 22px;
}
.nav.is-open .nav-panel { display: block; }
.nav-panel .wrap { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.nav-panel a { font-size: 16px; color: var(--ink-soft); }
.nav-panel .btn { margin-top: 6px; color: var(--sheet); }

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: flex-end;
  padding: 48px 0 72px;
  overflow: hidden;
  color: var(--sheet);
}
.hero-media {
  position: absolute;
  inset: -4%;
  z-index: 0;
  overflow: hidden;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 42%;
  transform: scale(1.08);
  animation: kenburns 32s var(--ease) infinite alternate;
  will-change: transform;
}
@keyframes kenburns {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.16) translate3d(-2.4%, -1.6%, 0); }
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(20, 14, 10, 0.78) 0%, rgba(28, 22, 16, 0.52) 38%, rgba(28, 22, 16, 0.12) 68%, rgba(243, 234, 220, 0.22) 100%),
    linear-gradient(180deg, rgba(20, 14, 10, 0.18) 0%, transparent 28%, rgba(20, 14, 10, 0.55) 100%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: end;
  width: min(1180px, calc(100% - 36px));
}
.hero-copy { max-width: 38em; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8c9a8;
  margin-bottom: 18px;
}
.eyebrow i {
  width: 18px; height: 1.5px;
  background: #e8c9a8;
}
h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5.6vw, 66px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}
h1 em {
  font-style: italic;
  font-weight: 500;
  color: #f0d3b4;
}
.lede {
  font-size: 18.5px;
  color: #ece3d5;
  max-width: 36em;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.12);
  border: 1px solid rgba(255, 250, 242, 0.22);
  backdrop-filter: blur(10px);
  font-size: 13px;
  color: #f4eadc;
  font-weight: 550;
}
.chip b { color: #fffaf2; font-weight: 650; }

.hero-aside {
  position: relative;
  min-height: 140px;
}
.price-chip {
  position: absolute;
  right: 4%;
  bottom: 18%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 14px 18px 15px;
  background: rgba(255, 250, 242, 0.16);
  color: var(--sheet);
  border-radius: 20px;
  border: 1px solid rgba(255, 250, 242, 0.32);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  box-shadow: 0 18px 40px rgba(20, 14, 10, 0.28);
  transform: rotate(3.5deg);
}
.price-chip strong {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-chip span { font-size: 12px; opacity: 0.82; margin-top: 4px; }

/* SECTIONS */
section { padding: 80px 0; }
.sec-head { max-width: 720px; margin-bottom: 36px; }
.kicker {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coffee-mid);
  margin-bottom: 10px;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.032em;
  margin-bottom: 12px;
}
h2 em { font-style: italic; color: var(--coffee); }
.sec-head p { color: var(--ink-soft); font-size: 18px; }

/* PAIN */
.pain {
  background: linear-gradient(180deg, #efe3d0 0%, #e8d9c3 14%, #e8d9c3 88%, var(--paper) 100%);
}
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  background: var(--sheet);
  border: 1px solid rgba(28, 22, 16, 0.07);
  border-radius: var(--radius);
  padding: 26px 24px 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.card-photo { padding: 0; }
.card-strip {
  height: 148px;
  overflow: hidden;
}
.card-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.8s var(--ease);
}
.card-photo:hover .card-strip img { transform: scale(1.12); }
.card-body { padding: 22px 22px 26px; }
.card .num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--coffee);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.card h3 {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.card p { color: var(--ink-soft); font-size: 15.5px; }
.card:hover { transform: translateY(-4px); box-shadow: 0 28px 56px rgba(28, 22, 16, 0.13); }

/* OFFER PHOTO CARDS */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.photo-card {
  background: var(--sheet);
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(28, 22, 16, 0.07);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.photo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.photo-card-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.photo-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.photo-card:hover .photo-card-media img { transform: scale(1.1); }
.photo-card-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.photo-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.photo-card p { color: var(--ink-soft); font-size: 15.5px; }
.photo-card .tag {
  display: inline-flex;
  margin-top: 16px;
  height: 28px;
  padding: 0 10px;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  background: var(--good-soft);
  color: var(--good);
  font-size: 12.5px;
  font-weight: 700;
}
.photo-card.paid {
  background: linear-gradient(180deg, #fffaf2, #f7ece0);
  border-color: rgba(110, 58, 36, 0.16);
}
.photo-card.paid .tag { background: var(--coffee); color: var(--sheet); }
.we-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(28, 22, 16, 0.72);
  color: var(--sheet);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.we-caption b {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}
.we-caption span { font-size: 12px; opacity: 0.82; }

/* WHY + POLAROID */
.why-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.why-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 18px 18px 18px 16px;
  background: var(--sheet);
  border-radius: 18px;
  border: 1px solid rgba(28, 22, 16, 0.07);
}
.why-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #f3eadc;
  display: grid;
  place-items: center;
}
.why-item h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.why-item p { color: var(--ink-soft); font-size: 15px; }

.polaroid {
  margin: 0 auto;
  width: min(100%, 460px);
  padding: 16px 16px 20px;
  background: #fffaf2;
  box-shadow: 0 28px 70px rgba(28, 22, 16, 0.18), 0 2px 0 rgba(28, 22, 16, 0.04);
  border: 1px solid rgba(28, 22, 16, 0.06);
  transform: rotate(-2.8deg);
  transition: transform 0.5s var(--ease);
}
.polaroid:hover { transform: rotate(-0.4deg) translateY(-4px); }
.polaroid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 40%;
  background: #ece2d2;
}
.polaroid figcaption {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--ink-soft);
  padding: 14px 6px 2px;
  text-align: center;
}

/* STEPS */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.steps::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(110, 58, 36, 0.35), transparent);
  pointer-events: none;
}
.step {
  position: relative;
  padding: 0 0 8px;
}
.step-thumb {
  position: relative;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 18px;
  border: 3px solid var(--sheet);
  box-shadow: 0 12px 28px rgba(28, 22, 16, 0.12);
  z-index: 1;
  background: var(--paper-2);
}
.step-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.step:hover .step-thumb img { transform: scale(1.1); }
.step-thumb span {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--coffee);
  color: var(--sheet);
  font-family: var(--serif);
  font-size: 13px;
  display: grid;
  place-items: center;
  border: 2px solid var(--paper);
}
.step h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}
.step p { color: var(--ink-soft); font-size: 15px; }

/* INSIDE */
.inside {
  background: var(--ink);
  color: var(--sheet);
  padding: 0 0 80px;
}
.inside-band {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-bottom: 28px;
}
.inside-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 50%;
}
.inside-band-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 14, 10, 0.15) 0%, rgba(20, 14, 10, 0.72) 100%),
              linear-gradient(90deg, rgba(20, 14, 10, 0.55) 0%, transparent 70%);
}
.inside-band-copy {
  position: relative;
  z-index: 1;
  padding: 56px 0 40px;
  max-width: 720px;
}
.inside .kicker { color: #e0b48e; }
.inside h2 em { color: #e8c9a8; }
.inside .sec-head p,
.inside-band-copy p { color: #d8cbb8; font-size: 18px; }
.inside-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.inside-item {
  padding: 22px 20px;
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.05);
  border: 1px solid rgba(243, 234, 220, 0.1);
}
.inside-item h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}
.inside-item p { color: #d4c6b4; font-size: 15px; }

/* REVIEWS */
.reviews-sec {
  position: relative;
  overflow: hidden;
}
.reviews-texture {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(243, 234, 220, 0.55), rgba(243, 234, 220, 0.72)),
    url("img/texture-paper.jpg") center / cover no-repeat;
  pointer-events: none;
}
.reviews-sec .wrap { position: relative; z-index: 1; }
.rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px 22px;
  margin-bottom: 28px;
}
.rating-num {
  font-family: var(--serif);
  font-size: 72px;
  line-height: 0.85;
  letter-spacing: -0.04em;
}
.rating-meta { color: var(--ink-soft); }
.rating-meta strong { color: var(--ink); }
.reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.quote {
  background: rgba(255, 250, 242, 0.82);
  border-radius: 18px;
  padding: 22px 22px 18px;
  border: 1px solid rgba(28, 22, 16, 0.07);
  backdrop-filter: blur(6px);
}
.quote p { font-size: 15.5px; color: var(--ink-soft); margin-bottom: 16px; }
.quote footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}
.quote footer b { color: var(--ink); font-weight: 700; }
.link-more {
  display: inline-flex;
  margin-top: 22px;
  color: var(--coffee);
  font-weight: 700;
  border-bottom: 1px solid rgba(110, 58, 36, 0.3);
}

/* PRICE */
.price-block {
  background: linear-gradient(180deg, #f7efe3, #efe2cf);
  border-radius: 32px;
  padding: 20px 20px 20px 48px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
  border: 1px solid rgba(110, 58, 36, 0.1);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.price-copy { padding: 28px 8px 28px 0; }
.giant {
  font-family: var(--serif);
  font-size: clamp(72px, 10vw, 120px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--coffee);
}
.price-block h2 { margin: 12px 0 10px; }
.price-block .price-copy > p { color: var(--ink-soft); }
.price-list { list-style: none; margin: 18px 0 26px; display: grid; gap: 8px; }
.price-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 15.5px;
}
.price-list li::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coffee);
  margin-top: 8px;
  flex-shrink: 0;
}
.pay-note { font-size: 13.5px; color: var(--muted); margin-top: 14px; }
.honest {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(28, 22, 16, 0.05);
  font-size: 14px;
  color: var(--ink-soft);
}
.price-photo {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 420px;
}
.price-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 40%;
}
.price-glow {
  position: absolute;
  inset: auto 8% 8% 8%;
  height: 40%;
  background: radial-gradient(ellipse at 60% 30%, rgba(255, 220, 170, 0.35), transparent 70%);
  pointer-events: none;
  animation: glow 4.8s ease-in-out infinite alternate;
}
@keyframes glow {
  from { opacity: 0.45; filter: blur(8px); }
  to { opacity: 0.9; filter: blur(16px); }
}
.steam {
  position: absolute;
  left: 48%;
  top: 8%;
  width: 80px;
  height: 140px;
  pointer-events: none;
}
.steam i {
  position: absolute;
  bottom: 0;
  width: 18px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 250, 242, 0.55), transparent 70%);
  filter: blur(8px);
  animation: steam 3.6s ease-in-out infinite;
}
.steam i:nth-child(1) { left: 8px; animation-delay: 0s; }
.steam i:nth-child(2) { left: 28px; width: 22px; animation-delay: 0.8s; }
.steam i:nth-child(3) { left: 48px; animation-delay: 1.5s; }
@keyframes steam {
  0% { transform: translateY(20px) scaleX(1); opacity: 0; }
  25% { opacity: 0.7; }
  100% { transform: translateY(-90px) scaleX(1.4); opacity: 0; }
}

/* FAQ */
.faq-list { display: grid; gap: 10px; max-width: 860px; }
.faq {
  background: var(--sheet);
  border-radius: 16px;
  border: 1px solid rgba(28, 22, 16, 0.07);
  overflow: hidden;
}
.faq button {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  font-weight: 700;
  font-size: 16.5px;
  letter-spacing: -0.02em;
}
.faq button span {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
}
.faq button span::before,
.faq button span::after {
  content: "";
  position: absolute;
  background: var(--coffee);
  border-radius: 2px;
}
.faq button span::before { width: 10px; height: 1.5px; }
.faq button span::after { width: 1.5px; height: 10px; transition: transform 0.25s var(--ease); }
.faq.is-open button span::after { transform: scaleY(0); }
.faq .ans {
  display: none;
  padding: 0 22px 20px;
  color: var(--ink-soft);
  font-size: 15.5px;
  max-width: 62em;
}
.faq.is-open .ans { display: block; }

/* FINAL */
.final {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.final-media {
  position: absolute;
  inset: 0;
}
.final-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  transform: scale(1.04);
}
.final-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 14, 10, 0.55), rgba(20, 14, 10, 0.72)),
    linear-gradient(90deg, rgba(20, 14, 10, 0.5), rgba(20, 14, 10, 0.28));
}
.final .wrap { position: relative; z-index: 1; }
.final-card {
  color: var(--sheet);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.final-card h2 { color: var(--sheet); }
.final-card h2 em { color: #e8c9a8; }
.final-card p {
  color: #d8cbb8;
  max-width: 34em;
  margin: 0 auto 26px;
  font-size: 18px;
}
.final-card .hero-actions { justify-content: center; }
.final-card .btn-ghost {
  color: var(--sheet);
  border-color: rgba(243, 234, 220, 0.36);
}
.final-card .btn-ghost:hover { background: rgba(255, 250, 242, 0.1); }

/* FOOTER */
.footer {
  padding: 28px 0 48px;
  color: var(--muted);
  font-size: 13.5px;
  background: #efe4d2;
}
.footer .wrap { display: grid; gap: 14px; }
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  align-items: center;
}
.footer a { color: var(--coffee); font-weight: 650; }
.legal { max-width: 72em; line-height: 1.55; }

/* REVEAL — IO driven */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.d2 { transition-delay: 0.1s; }
.d3 { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-photo, .card-strip img, .photo-card-media img, .step-thumb img, .final-media img {
    animation: none !important;
    transform: none !important;
    transition: none !important;
  }
  .polaroid, .polaroid:hover, .card:hover, .photo-card:hover, .btn:hover, .nav-cta:hover {
    transform: none !important;
  }
  .steam i, .price-glow { animation: none !important; }
  .spotlight { display: none; }
  html { scroll-behavior: auto; }
}

@media (max-width: 980px) {
  .nav-links, .nav > .wrap > .nav-cta { display: none; }
  .burger { display: flex; }
  .hero {
    min-height: 0;
    display: block;
    padding: 0 0 36px;
    color: var(--ink);
  }
  .hero-media {
    position: relative;
    inset: auto;
    height: 52vw;
    min-height: 240px;
    max-height: 380px;
  }
  .hero-shade {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 52vw;
    min-height: 240px;
    max-height: 380px;
    background: linear-gradient(180deg, rgba(20, 14, 10, 0.15), rgba(20, 14, 10, 0.45));
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 22px;
  }
  .hero-copy { max-width: none; }
  .lede { color: var(--ink-soft); }
  h1 { text-shadow: none; }
  h1 em { color: var(--coffee); }
  .eyebrow, .eyebrow i { color: var(--coffee-mid); background: none; }
  .eyebrow i { background: var(--coffee-mid); }
  .chip {
    background: rgba(255, 250, 242, 0.72);
    border-color: var(--line);
    color: var(--ink-soft);
    backdrop-filter: none;
  }
  .chip b { color: var(--ink); }
  .hero .btn-ghost {
    color: var(--ink);
    border-color: var(--line-strong);
  }
  .hero .btn-ghost:hover { background: rgba(255, 250, 242, 0.7); }
  .hero-aside { min-height: 0; }
  .price-chip {
    position: absolute;
    right: 16px;
    top: -78px;
    bottom: auto;
  }
  .why-layout, .price-block, .cards-3, .offer-grid, .steps, .inside-grid, .reviews {
    grid-template-columns: 1fr;
  }
  .cards-3, .offer-grid, .reviews { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .price-block { padding: 22px; }
  .price-photo { min-height: 280px; }
  .polaroid { margin-top: 8px; }
  section { padding: 56px 0; }
  .inside { padding-bottom: 56px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .cards-3, .offer-grid, .reviews { grid-template-columns: 1fr; }
  .hero-media, .hero-shade {
    height: 56vw;
    min-height: 220px;
  }
  .lede { font-size: 17px; }
  .giant { font-size: 84px; }
  .price-chip { top: -70px; right: 12px; padding: 10px 14px; }
  .price-chip strong { font-size: 28px; }
  .final { padding: 64px 0; min-height: 0; }
  .final-card .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-lg { width: 100%; }
  .step-thumb { width: 88px; height: 88px; }
  .inside-band { min-height: 300px; }
  .photo-card-media { height: 200px; }
}

@media (max-width: 390px) {
  .wrap { width: calc(100% - 28px); }
  h1 { font-size: 34px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
}
