:root {
  color-scheme: light;
  --ink: #251c1f;
  --muted: #6e6266;
  --accent: #8a234d;
  --accent-dark: #641534;
  --accent-soft: #f3dce4;
  --peach: #f2c8a2;
  --paper: #fffaf6;
  --surface: #ffffff;
  --surface-soft: #f9f0ec;
  --line: #eadbdc;
  --line-strong: #d8c3c6;
  --shadow: 0 24px 70px rgba(71, 36, 48, 0.12);
  --shadow-soft: 0 14px 42px rgba(71, 36, 48, 0.07);
  --radius-lg: 34px;
  --radius-md: 22px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--accent-dark);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(138, 35, 77, 0.34);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--surface);
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 250, 246, 0.88);
  border-bottom: 1px solid rgba(138, 35, 77, 0.09);
  backdrop-filter: blur(18px) saturate(130%);
}

.nav {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 760;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(138, 35, 77, 0.12);
  border-radius: 13px;
  box-shadow: 0 8px 24px rgba(71, 36, 48, 0.12);
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  color: var(--surface);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 15px;
  font: inherit;
  font-size: 15px;
  font-weight: 760;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), background 220ms ease, border-color 220ms ease;
}

.button:hover {
  color: var(--surface);
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line-strong);
}

.button.secondary:hover {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--ink);
}

.button.disabled {
  color: #87797d;
  background: #eee5e5;
  border-color: #e2d5d6;
  cursor: default;
}

.button.disabled:hover {
  color: #87797d;
  background: #eee5e5;
  border-color: #e2d5d6;
  transform: none;
}

.eyebrow,
.article-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 17px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 1px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h1 {
  font-size: clamp(48px, 7vw, 84px);
}

h2 {
  font-size: clamp(36px, 5vw, 60px);
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

p {
  text-wrap: pretty;
}

.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.52;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(138, 35, 77, 0.08);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 86% 18%, rgba(242, 200, 162, 0.48), transparent 26rem),
    radial-gradient(circle at 18% 3%, rgba(243, 220, 228, 0.78), transparent 30rem);
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
  padding-block: 84px 104px;
}

.hero-copy h1 {
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.availability-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.trust-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.trust-line div {
  padding-top: 15px;
  border-top: 1px solid var(--line-strong);
}

.trust-line strong,
.trust-line span {
  display: block;
}

.trust-line strong {
  font-size: 14px;
}

.trust-line span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-height: 650px;
}

.phone-stage {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 430px);
  padding: 14px;
  background: #2b2326;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 54px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.phone-stage img {
  width: 100%;
  border-radius: 42px;
}

.swatch-note {
  position: absolute;
  right: min(38%, 158px);
  bottom: 24px;
  width: 230px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.91);
  border: 1px solid rgba(138, 35, 77, 0.13);
  border-radius: 20px;
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.swatch-note strong,
.swatch-note span {
  display: block;
}

.swatch-note strong {
  font-size: 15px;
}

.swatch-note span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.swatches {
  display: flex;
  gap: 7px;
  margin-bottom: 13px;
}

.swatches i {
  width: 22px;
  height: 22px;
  border: 2px solid var(--surface);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(37, 28, 31, 0.12);
}

.swatches i:nth-child(1) { background: #4c2d26; }
.swatches i:nth-child(2) { background: #b65d32; }
.swatches i:nth-child(3) { background: #8a234d; }
.swatches i:nth-child(4) { background: #d7a85f; }
.swatches i:nth-child(5) { background: #858991; }

.section {
  padding-block: 112px;
}

.section.soft {
  background: var(--surface-soft);
  border-block: 1px solid rgba(138, 35, 77, 0.08);
}

.section.dark {
  color: #fffaf6;
  background: #302528;
}

.section.dark .section-heading p,
.section.dark .muted,
.section.dark .process-step p {
  color: #d8cace;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 56px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.feature-split.reverse {
  grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.84fr);
}

.feature-split.reverse .media-frame {
  order: 2;
}

.media-frame {
  position: relative;
  padding: 22px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.media-frame.phone {
  width: min(100%, 440px);
  margin-inline: auto;
  padding: 14px;
  background: #30282a;
  border-radius: 50px;
}

.media-frame.phone img {
  border-radius: 38px;
}

.feature-copy h2 {
  max-width: 720px;
}

.feature-copy > p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.check-list {
  display: grid;
  gap: 0;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.check-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.check-list b {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 50%;
  font-size: 13px;
}

.check-list strong,
.check-list span {
  display: block;
}

.check-list span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 14px;
}

.shade-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.shade-pair {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.shade-pair img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.shade-pair figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 760;
  backdrop-filter: blur(10px);
}

.shade-grid .shade-pair:nth-child(2) {
  margin-top: 68px;
}

.process-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 28px 0 34px 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  counter-increment: process;
}

.process-step::before {
  position: absolute;
  top: 28px;
  left: 0;
  color: #f0b57c;
  content: "0" counter(process);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.process-step p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.guide-list {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px 44px;
}

.guide-card {
  display: grid;
  min-height: 230px;
  align-content: space-between;
  padding: 30px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 34px rgba(71, 36, 48, 0.04);
  text-decoration: none;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), border-color 200ms ease;
}

.guide-card:nth-child(2n) {
  min-height: 190px;
}

.guide-card:hover {
  color: var(--ink);
  border-color: rgba(138, 35, 77, 0.36);
  transform: translateY(-4px);
}

.guide-card small {
  color: var(--accent);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.guide-card h3 {
  max-width: 540px;
  margin-top: 42px;
  font-size: clamp(24px, 3vw, 34px);
}

.guide-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.pricing-table {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.price-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.65fr) minmax(160px, 0.45fr) 1fr;
  align-items: center;
  gap: 30px;
  padding: 28px 32px;
}

.price-row + .price-row {
  border-top: 1px solid var(--line);
}

.price-row.featured {
  background: var(--accent-soft);
}

.price-row strong,
.price-row span {
  display: block;
}

.price-row .price {
  color: var(--accent-dark);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.price-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  font-size: 19px;
  font-weight: 760;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 4px;
  color: var(--accent);
  content: "+";
  font-size: 26px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 760px;
  margin: -6px 0 24px;
  color: var(--muted);
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 50px;
  padding: clamp(38px, 6vw, 70px);
  overflow: hidden;
  color: #fffaf6;
  background: var(--accent-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.cta-panel::after {
  position: absolute;
  top: -100px;
  right: 12%;
  width: 280px;
  height: 280px;
  background: rgba(242, 200, 162, 0.2);
  border-radius: 44% 56% 62% 38%;
  content: "";
  transform: rotate(23deg);
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  max-width: 760px;
}

.cta-panel p {
  max-width: 650px;
  margin: 20px 0 0;
  color: #eadce0;
}

.cta-panel .button {
  color: var(--accent-dark);
  background: #fffaf6;
  border-color: #fffaf6;
}

.cta-panel .button:hover {
  color: var(--accent-dark);
  background: #f5e8e4;
  border-color: #f5e8e4;
}

.page-hero {
  position: relative;
  padding-block: 94px 82px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  position: absolute;
  top: -140px;
  right: 8%;
  width: 430px;
  height: 430px;
  background: rgba(243, 220, 228, 0.58);
  border-radius: 50%;
  content: "";
  filter: blur(1px);
}

.page-hero .shell {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero .lead {
  max-width: 760px;
}

.text-page {
  padding-block: 78px 120px;
}

.text-layout,
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
}

.prose,
.article-body {
  max-width: 780px;
}

.prose h2,
.article-body h2 {
  margin: 58px 0 18px;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.04em;
}

.prose h3,
.article-body h3 {
  margin: 38px 0 12px;
}

.prose p,
.prose li,
.article-body p,
.article-body li {
  color: #4e4347;
}

.prose li + li,
.article-body li + li {
  margin-top: 10px;
}

.prose .lead,
.article-body .lead {
  color: var(--muted);
}

.updated {
  margin: 18px 0 42px;
  color: var(--muted);
  font-size: 14px;
}

.article-body h1,
.prose h1 {
  font-size: clamp(43px, 6vw, 70px);
}

.article-figure {
  margin: 42px 0;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.article-figure img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  border-radius: 14px;
}

.article-figure figcaption {
  padding: 14px 5px 2px;
  color: var(--muted);
  font-size: 13px;
}

.callout {
  margin: 42px 0;
  padding: 26px 28px;
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: 5px var(--radius-md) var(--radius-md) 5px;
}

.callout p:last-child {
  margin-bottom: 0;
}

.page-aside {
  position: sticky;
  top: 108px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.page-aside h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.page-aside p,
.page-aside li {
  color: var(--muted);
  font-size: 14px;
}

.page-aside ul {
  padding-left: 20px;
}

.page-aside .button {
  width: 100%;
  margin-top: 8px;
}

.site-footer {
  padding-block: 42px 48px;
  color: var(--muted);
  background: #f5ebe7;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a,
.footer-links button {
  color: var(--muted);
  background: none;
  border: 0;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--ink);
}

.consent-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  width: min(430px, calc(100% - 40px));
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner strong {
  display: block;
  font-size: 17px;
}

.consent-banner p {
  margin: 7px 0 16px;
  color: var(--muted);
  font-size: 13px;
}

.consent-actions {
  display: flex;
  gap: 9px;
}

.consent-actions .button {
  min-height: 42px;
  padding: 9px 14px;
  font-size: 13px;
}

.not-found {
  display: grid;
  min-height: 72vh;
  place-items: center;
  padding: 80px 24px;
  text-align: center;
}

.not-found div {
  max-width: 640px;
}

.not-found p {
  color: var(--muted);
}

@media (max-width: 940px) {
  .nav {
    align-items: flex-start;
    padding-block: 16px;
  }

  .nav-links {
    max-width: 520px;
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 74px 90px;
  }

  .hero-copy {
    max-width: 800px;
  }

  .hero-visual {
    width: min(100%, 560px);
    min-height: 690px;
    margin-inline: auto;
  }

  .section-heading,
  .feature-split,
  .feature-split.reverse,
  .text-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .feature-split.reverse .media-frame {
    order: 0;
  }

  .page-aside {
    position: static;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 30px, var(--shell));
  }

  .site-header {
    position: static;
  }

  .nav {
    display: grid;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .nav-links .button {
    display: none;
  }

  h1 {
    font-size: clamp(43px, 13vw, 64px);
  }

  .hero-grid {
    padding-top: 54px;
  }

  .trust-line,
  .shade-grid,
  .process-list,
  .guide-list,
  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 590px;
  }

  .phone-stage {
    left: 50%;
    right: auto;
    width: min(90%, 390px);
    transform: translateX(-50%) rotate(1deg);
  }

  .swatch-note {
    right: 0;
    bottom: 0;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading {
    align-items: start;
    gap: 22px;
    margin-bottom: 38px;
  }

  .shade-grid .shade-pair:nth-child(2) {
    margin-top: 0;
  }

  .shade-pair img {
    min-height: 250px;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px;
  }

  .cta-panel {
    align-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 470px) {
  body {
    font-size: 16px;
  }

  .brand-copy small {
    display: none;
  }

  .nav-links {
    font-size: 13px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-line {
    gap: 6px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .phone-stage {
    width: 94%;
    border-radius: 43px;
  }

  .phone-stage img {
    border-radius: 32px;
  }

  .swatch-note {
    width: 205px;
    padding: 15px;
  }

  .shade-pair {
    grid-template-columns: 1fr;
  }

  .shade-pair img {
    min-height: auto;
  }

  .consent-actions {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
