* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f2ec;
  --paper: #fffdf9;
  --ink: #23211f;
  --muted: #77716a;
  --line: #ddd5cb;
  --accent: #d9cec0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

.hero,
.product-section,
.faq-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 28px 84px;
}

.nav {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 70px;
}

.brand {
  font-size: 18px;
  letter-spacing: .15em;
  font-weight: 600;
}

.byline {
  color: var(--muted);
  font-size: 13px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 72px;
  align-items: center;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: .18em;
  font-weight: 600;
  margin-bottom: 18px;
}

h1, h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  margin: 0;
}

h1 {
  font-size: clamp(52px, 7vw, 92px);
  line-height: .95;
  max-width: 650px;
}

h1 em {
  font-weight: 500;
}

.intro {
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
  color: var(--muted);
  margin: 32px 0 28px;
}

.offer-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 22px;
  max-width: 520px;
  margin-bottom: 16px;
}

.offer-label {
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--muted);
}

.code-row {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  margin-top: 12px;
}

.code-row strong {
  font-size: clamp(20px, 3vw, 30px);
  letter-spacing: .025em;
  overflow-wrap: anywhere;
}

.code-row button {
  appearance: none;
  border: 1px solid var(--ink);
  background: transparent;
  padding: 10px 14px;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  letter-spacing: .12em;
}

.offer-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  justify-content: space-between;
  gap: 34px;
  align-items: center;
  background: var(--ink);
  color: white;
  padding: 17px 20px;
  min-width: 240px;
  font-size: 12px;
  letter-spacing: .11em;
  font-weight: 600;
}

.disabled {
  opacity: .45;
  pointer-events: none;
}

.microcopy {
  color: var(--muted);
  font-size: 11px;
  margin-top: 9px;
}

.media-card {
  min-height: 650px;
  background: #e7ddd1;
  border-radius: 2px;
  padding: 22px;
  display: flex;
  align-items: stretch;
}


.instagram-embed-wrap {
  width: 100%;
  min-height: 606px;
  overflow: hidden;
  background: var(--paper);
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.instagram-embed {
  width: 100%;
  min-height: 606px;
  border: 0;
  background: white;
}

.media-placeholder {
  border: 1px solid rgba(35,33,31,.25);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 30px;
}

.play {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(35,33,31,.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 18px;
}

.media-placeholder p {
  margin: 0 0 4px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
}

.media-placeholder small {
  color: var(--muted);
}

.product-section {
  padding-top: 92px;
}

.section-heading h2,
.how-card h2 {
  font-size: clamp(38px, 5vw, 62px);
}

.product-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 68px;
  margin-top: 48px;
}

.product-visual {
  min-height: 500px;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.device-shape {
  width: 120px;
  height: 320px;
  position: relative;
}

.device-head {
  width: 98px;
  height: 90px;
  border-radius: 50%;
  background: #d8d8d4;
  margin: 0 auto;
  box-shadow: inset 0 0 0 9px #ecece8;
}

.device-body {
  width: 58px;
  height: 245px;
  border-radius: 30px;
  background: linear-gradient(#e6e6e1, #c7c7c1);
  margin: -4px auto 0;
}

.visual-note {
  position: absolute;
  bottom: 22px;
  color: var(--muted);
  font-size: 11px;
}

.product-copy {
  align-self: center;
}

.product-copy .lead {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  line-height: 1.35;
  margin: 0 0 24px;
}

.product-copy > p:not(.lead) {
  color: var(--muted);
  line-height: 1.8;
  max-width: 580px;
}

.mini-details {
  margin: 34px 0;
  border-top: 1px solid var(--line);
}

.mini-details > div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.mini-details span {
  color: var(--muted);
}

.how-section {
  background: #2a2825;
  color: white;
  margin: 50px 0;
}

.how-card {
  max-width: 1180px;
  margin: 0 auto;
  padding: 90px 28px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 54px;
}

.step {
  border-top: 1px solid rgba(255,255,255,.25);
  padding-top: 16px;
}

.step span {
  color: #bcb5ad;
  font-size: 11px;
}

.step p {
  line-height: 1.65;
}

.faq-section {
  padding-top: 80px;
}

.faq-section .section-heading {
  margin-bottom: 34px;
}

details {
  border-top: 1px solid var(--line);
  padding: 19px 0;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 500;
}

details p {
  color: var(--muted);
  line-height: 1.7;
}

footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 38px 28px 50px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

footer strong,
footer span {
  display: block;
}

footer strong {
  letter-spacing: .13em;
  margin-bottom: 8px;
}

footer span,
.disclosure {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 24px);
  background: var(--ink);
  color: white;
  padding: 12px 16px;
  font-size: 12px;
  letter-spacing: .06em;
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 800px) {
  .hero,
  .product-section,
  .faq-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav {
    padding-bottom: 48px;
  }

  .byline {
    display: none;
  }

  .hero-grid,
  .product-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .media-card {
    min-height: 520px;
    order: -1;
  }

  h1 {
    font-size: 55px;
  }

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

  footer {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Anna's picks */
.picks-heading p {
  color: var(--muted);
  font-size: 16px;
  margin: 16px 0 0;
}

.picks-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 46px;
}

.pick-card {
  min-height: 300px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}

.pick-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(35,33,31,.06);
}

.pick-number {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  color: #c9beb1;
  line-height: 1;
  margin-bottom: 42px;
}

.pick-brand {
  display: block;
  font-size: 10px;
  letter-spacing: .18em;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 10px;
}

.pick-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 29px;
  line-height: 1.12;
  font-weight: 500;
  margin: 0;
}

.pick-card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
  margin: 14px 0 28px;
  max-width: 480px;
}

.pick-link {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: .12em;
  font-weight: 600;
}

.pick-link:hover {
  opacity: .72;
}

.pick-link span {
  font-size: 15px;
}

.featured-pick {
  background: #fbf7f2;
  border-color: #cdbfb0;
  box-shadow: inset 0 0 0 1px rgba(205,191,176,.28);
}

.picks-offer-note {
  margin-top: 18px;
  background: var(--ink);
  color: white;
  padding: 23px 27px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.picks-offer-note span {
  font-size: 10px;
  letter-spacing: .18em;
  opacity: .65;
}

.picks-offer-note strong {
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 760px) {
  .picks-grid {
    grid-template-columns: 1fr;
  }

  .pick-card {
    min-height: 270px;
  }

  .picks-offer-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
}


.image-pick {
  padding: 22px;
}


.pick-media {
  background: #f7f2ed;
  border: 1px solid rgba(35,33,31,.06);
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin-bottom: 22px;
}

.pick-media img {
  max-width: 100%;
  max-height: 220px;
  display: block;
}

.pick-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.pick-badge {
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--ink);
  border: 1px solid var(--line);
  background: #f5efe7;
  padding: 6px 8px;
  line-height: 1;
}

.pick-description {
  margin-bottom: 18px;
}

.pick-skin-note {
  border-top: 1px solid var(--line);
  padding-top: 15px;
  display: grid;
  gap: 6px;
}

.pick-skin-note span {
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--muted);
  text-transform: uppercase;
}

.pick-skin-note strong {
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
}


.about-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px 40px;
}

.about-card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 36px;
  padding: 34px;
}

.about-copy p {
  color: var(--muted);
  line-height: 1.8;
  max-width: 640px;
}

.about-copy p + p {
  margin-top: 10px;
}

.about-cta {
  margin-top: 14px;
}

.about-stats {
  display: grid;
  gap: 16px;
  align-content: start;
}

.about-stats div {
  border: 1px solid var(--line);
  padding: 18px;
  background: #fbf6ef;
}

.about-stats strong,
.about-stats span {
  display: block;
}

.about-stats strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  margin-bottom: 6px;
}

.about-stats span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.pick-media img {
  width: 100%;
  height: 220px;
  object-fit: contain;
}

.featured-pick .pick-media {
  background: #f3eee8;
}

@media (max-width: 800px) {
  .about-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}


.price-row {
  margin: 18px 0 20px;
  padding: 15px 0 0;
  border-top: 1px solid var(--line);
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.current-price {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 14px;
}

.code-price {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  font-weight: 500;
}

.price-note,
.saving-note {
  display: block;
  font-size: 10px;
  letter-spacing: .08em;
  margin-top: 5px;
}

.price-note {
  color: var(--muted);
}

.saving-note {
  font-weight: 600;
}

.featured-pick .saving-note {
  font-size: 11px;
}

.price-disclaimer {
  max-width: 900px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 16px;
  margin-top: 14px;
}

.footer-links a {
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page {
  max-width: 850px;
  margin: 0 auto;
  padding: 44px 28px 90px;
}

.legal-page .legal-nav {
  margin-bottom: 70px;
}

.legal-page h1 {
  font-size: clamp(42px, 7vw, 72px);
  margin-bottom: 30px;
}

.legal-page h2 {
  font-size: 28px;
  margin: 36px 0 12px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.8;
}

.legal-page a {
  text-decoration: underline;
  text-underline-offset: 3px;
}


.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.locale-links {
  display: flex;
  gap: 8px;
  font-size: 10px;
  letter-spacing: .12em;
}

.locale-links a {
  color: var(--muted);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.locale-links a.active {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.independent-note {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
  margin: 7px 0 0;
  max-width: 520px;
}

@media (max-width: 800px) {
  .nav-right { gap: 10px; }
  .locale-links { gap: 7px; }
}
