:root {
  --ink: #153632;
  --teal: #0c5750;
  --teal2: #083e3a;
  --cream: #fbf6eb;
  --paper: #fffdf8;
  --copper: #b56b3f;
  --muted: #61726e;
  --line: #dce4de;
  --shadow: 0 24px 70px rgba(15,55,49,.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.65;
}

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

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

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

.topbar {
  background: var(--teal2);
  color: #fff;
  text-align: center;
  padding: 7px 16px;
  font-size: .82rem;
  letter-spacing: .03em;
}

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

.brand {
  font-family: Georgia,serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--teal);
}

.brand span {
  color: var(--copper);
}

.links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: .92rem;
}

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

.menu {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-weight: 750;
  border: 1px solid var(--teal);
  cursor: pointer;
}

.btn:hover {
  background: var(--teal2);
}

.btn.ghost {
  background: transparent;
  color: var(--teal);
}

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%,#d8e9df 0,transparent 28%),linear-gradient(135deg,var(--cream),#f5eee0);
  border-radius: 0 0 44px 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  min-height: 650px;
  gap: 42px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--copper);
  font-weight: 800;
  font-size: .76rem;
}

.hero h1,.page-hero h1 {
  font-family: Georgia,serif;
  font-size: clamp(2.8rem,6vw,5.7rem);
  line-height: .94;
  letter-spacing: -.045em;
  margin: 16px 0 22px;
}

.hero p {
  font-size: 1.12rem;
  max-width: 590px;
  color: var(--muted);
}

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

.hero-product {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.hero-product:before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: #0c5750;
  box-shadow: inset 0 0 0 16px rgba(255,255,255,.15);
}

.hero-product img {
  position: relative;
  max-height: 545px;
  filter: drop-shadow(0 28px 22px rgba(31,39,36,.24));
  border-radius: 24px;
}

.strip {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.strip div {
  background: #fff;
  padding: 24px;
  text-align: center;
  font-weight: 700;
}

.section {
  padding: 92px 0;
}

.section.alt {
  background: #f3f7f3;
}

.section h2,.content h2 {
  font-family: Georgia,serif;
  font-size: clamp(2rem,4vw,3.5rem);
  line-height: 1.05;
  margin: 0 0 18px;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 700px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
  margin-top: 42px;
}

.card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(24,60,54,.05);
}

.card .num {
  color: var(--copper);
  font-weight: 900;
}

.card h3 {
  font-family: Georgia,serif;
  font-size: 1.35rem;
  margin: 16px 0 8px;
}

.product-band {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.product-band img {
  max-height: 520px;
  margin: auto;
  border-radius: 24px;
}

.price {
  font-family: Georgia,serif;
  font-size: 3rem;
  color: var(--teal);
  margin: 14px 0;
}

.note {
  font-size: .85rem;
  color: var(--muted);
}

.page-hero {
  padding: 80px 0;
  background: linear-gradient(135deg,var(--cream),#edf5ef);
}

.page-hero h1 {
  font-size: clamp(2.5rem,5vw,4.7rem);
  max-width: 850px;
}

.content {
  padding: 76px 0;
}

.prose {
  max-width: 790px;
}

.prose p,.prose li {
  color: #40534f;
}

.prose h2 {
  margin-top: 2.5rem;
  margin-bottom: .75rem;
}

.prose ul {
  padding-left: 1.25rem;
}

.prose li + li {
  margin-top: .55rem;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
  margin: 30px 0 38px;
}

.checklist div {
  position: relative;
  padding: 16px 18px 16px 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}

.checklist div::before {
  content: "✓";
  position: absolute;
  left: 17px;
  color: var(--copper);
}

.grid2 {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
}

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

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

.order {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 46px;
  align-items: start;
}

.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 32px;
  box-shadow: var(--shadow);
}

label {
  display: block;
  font-weight: 750;
  margin: 16px 0 7px;
}

input,select,textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #c9d5cf;
  border-radius: 12px;
  font: inherit;
  background: #fff;
}

input: focus,select:focus,textarea:focus {
  outline: 3px solid rgba(12,87,80,.15);
  border-color: var(--teal);
}

.total {
  display: flex;
  justify-content: space-between;
  margin: 22px 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 850;
  font-size: 1.15rem;
}

.footer {
  background: var(--teal2);
  color: #dce9e5;
  padding: 60px 0 26px;
}

.footgrid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 42px;
}

.footer h3 {
  color: #fff;
}

.footer a {
  display: block;
  margin: 8px 0;
}

.footer small {
  display: block;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 22px;
}

.notice {
  padding: 18px;
  border-left: 4px solid var(--copper);
  background: var(--cream);
  border-radius: 8px;
}

.success {
  text-align: center;
  padding: 110px 20px;
}

.success .check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  background: var(--teal);
  color: #fff;
  font-size: 2rem;
}

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

  .links {
    display: none;
    position: absolute;
    top: 112px;
    left: 14px;
    right: 14px;
    background: #fff;
    padding: 20px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    z-index: 20;
    flex-direction: column;
    align-items: stretch;
  }

  .links.open {
    display: flex;
  }

  .menu {
    display: block;
  }

  .hero-grid,.product-band,.order {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 58px 0;
  }

  .hero-product {
    min-height: 420px;
  }

  .hero-product:before {
    width: 310px;
    height: 310px;
  }

  .hero-product img {
    max-height: 420px;
  }

  .strip,.cards,.grid2,.footgrid,.checklist {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 66px 0;
  }

  .page-hero {
    padding: 58px 0;
  }

}
