:root {
  --bg: #f7f1e8;
  --paper: #fffaf3;
  --ink: #221d19;
  --muted: #6f655b;
  --line: #d8c7b1;
  --accent: #b9976a;
  --accent-dark: #8b6b43;
  --dark: #15120f;
  --soft: #eadfce;
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow: 0 22px 60px rgba(61, 45, 29, .12);
  --max: 1160px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(185,151,106,.25), transparent 34rem),
    linear-gradient(180deg, #fbf7ef 0%, var(--bg) 42%, #f4ece0 100%);
  line-height: 1.58;
}

a { color: inherit; }

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(247, 241, 232, .78);
  border-bottom: 1px solid rgba(216, 199, 177, .72);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .01em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff8ee;
  background: var(--accent);
  font-family: Georgia, serif;
  font-size: 23px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
}

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fffaf3;
  background: var(--dark);
  box-shadow: 0 12px 28px rgba(21,18,15,.18);
}

.button-primary:hover { background: #2a241e; }

.button-accent {
  color: #fffaf3;
  background: var(--accent-dark);
  box-shadow: 0 12px 28px rgba(139,107,67,.20);
}

.button-ghost {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 250, 243, .72);
}

.hero {
  padding: 82px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent-dark);
  background: rgba(255, 250, 243, .64);
  font-size: 14px;
  font-weight: 700;
}

h1, h2, h3 {
  margin: 0 0 18px;
  line-height: 1.05;
  letter-spacing: -.035em;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 700;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.6vw, 58px);
}

h3 {
  font-size: 22px;
  letter-spacing: -.02em;
}

.lead {
  max-width: 690px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.portrait-card,
.cover-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow);
  border: 1px solid rgba(216, 199, 177, .82);
}

.portrait-card img {
  width: 100%;
  height: min(68vw, 640px);
  object-fit: cover;
}

.cover-card img {
  width: 100%;
  height: auto;
}

.float-label {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 250, 243, .88);
  border: 1px solid rgba(216, 199, 177, .82);
  backdrop-filter: blur(12px);
}

.float-label strong {
  display: block;
  margin-bottom: 4px;
}

.float-label span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 74px 0;
}

.section-tight {
  padding-top: 38px;
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

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

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 243, .76);
  border: 1px solid rgba(216, 199, 177, .78);
  box-shadow: 0 10px 30px rgba(61,45,29,.06);
}

.card p,
.tile p,
.feature p {
  margin: 0;
  color: var(--muted);
}

.card-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--accent-dark);
  font-size: 22px;
}

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

.tile {
  position: relative;
  display: block;
  min-height: 156px;
  padding: 24px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  background: var(--paper);
  border: 1px solid rgba(216, 199, 177, .84);
  box-shadow: 0 10px 30px rgba(61,45,29,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.tile:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 18px 40px rgba(61,45,29,.12);
}

.tile h3 {
  padding-right: 42px;
}

.tile-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--accent-dark);
}

.about {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 42px;
  align-items: start;
}

.about-panel {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: var(--dark);
  color: #fffaf3;
}

.about-panel p {
  color: rgba(255,250,243,.72);
}

.list {
  padding-left: 1.2em;
  color: var(--muted);
}

.list li { margin: 8px 0; }

.product-hero {
  padding: 72px 0 58px;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(320px, .92fr);
  gap: 52px;
  align-items: center;
}

.price-card {
  margin-top: 26px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--line);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.price strong {
  font-size: 44px;
  letter-spacing: -.04em;
}

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

.kit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 243, .75);
  border: 1px solid rgba(216, 199, 177, .78);
}

.topics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.topic {
  min-height: 118px;
  padding: 18px;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid rgba(216, 199, 177, .84);
}

.topic span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 13px;
}

.topic strong {
  display: block;
  line-height: 1.2;
}

.topic small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.quote {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: var(--dark);
  color: #fffaf3;
}

.quote p {
  margin: 0;
  color: rgba(255,250,243,.78);
  font-size: 20px;
}

.steps {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step {
  counter-increment: steps;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--line);
}

.step::before {
  content: counter(steps);
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fffaf3;
  font-weight: 800;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 20px 22px;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

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

.cta {
  padding: 42px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(185,151,106,.26), transparent),
    var(--dark);
  color: #fffaf3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta p {
  margin: 0;
  color: rgba(255,250,243,.72);
}

.site-footer {
  padding: 42px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.legal-page {
  max-width: 820px;
  padding: 70px 0;
}

.legal-page h1 {
  font-size: clamp(38px, 5vw, 62px);
}

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

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

.notice {
  padding: 18px;
  border-radius: 16px;
  background: #fff3d9;
  border: 1px solid #e2c484;
  color: #57401c;
}

@media (max-width: 930px) {
  .hero-grid,
  .product-grid,
  .about {
    grid-template-columns: 1fr;
  }

  .portrait-card img {
    height: 620px;
  }

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

  .topics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .nav {
    min-height: 66px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .product-hero {
    padding-top: 48px;
  }

  .section {
    padding: 52px 0;
  }

  .link-grid,
  .topics {
    grid-template-columns: 1fr;
  }

  .portrait-card img {
    height: 520px;
  }

  .float-label {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .price strong {
    font-size: 38px;
  }
}
