:root {
  --ink: #26342f;
  --muted: #63716b;
  --cream: #f7f3eb;
  --paper: #fffdf8;
  --sage: #9cac8f;
  --deep: #28594b;
  --gold: #d5a958;
  --line: #e3dfd4;
  --shadow: 0 18px 50px rgba(38, 52, 47, 0.09);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font:
    16px/1.65 system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
a {
  color: var(--deep);
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  text-decoration: none;
  color: var(--ink);
  font:
    700 1.2rem Georgia,
    serif;
  letter-spacing: 0.02em;
}
.brand span {
  color: var(--deep);
}
nav {
  display: flex;
  gap: 22px;
}
nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.92rem;
}
.hero {
  padding: 92px 0 72px;
  background:
    radial-gradient(circle at 85% 20%, #dfe8d8 0 16%, transparent 17%),
    linear-gradient(135deg, var(--cream), #eef1e8);
}
.eyebrow {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--deep);
}
h1,
h2,
h3 {
  font-family: Georgia, serif;
  line-height: 1.15;
}
h1 {
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  max-width: 850px;
  margin: 0.2em 0;
}
.hero p {
  font-size: 1.2rem;
  max-width: 650px;
  color: var(--muted);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--deep);
  color: white;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 750;
  border: 0;
}
.button.alt {
  background: #f0eadc;
  color: var(--deep);
}
.section {
  padding: 72px 0;
}
.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 12px;
}
.intro {
  max-width: 700px;
  color: var(--muted);
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 32px;
}
.card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow);
}
.card .num {
  font:
    700 2.2rem Georgia,
    serif;
  color: var(--gold);
}
.card h3 {
  font-size: 1.5rem;
  margin: 0.4em 0;
}
.card p {
  color: var(--muted);
}
.card a.more {
  font-weight: 750;
}
.strip {
  background: var(--deep);
  color: white;
}
.strip .grid {
  grid-template-columns: repeat(3, 1fr);
}
.strip .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}
.strip .card p {
  color: #d9e4df;
}
.article-wrap {
  width: min(760px, calc(100% - 32px));
  margin: auto;
}
.article-hero {
  padding: 64px 0 38px;
  background: var(--cream);
}
.article-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--muted);
}
article {
  padding: 44px 0 80px;
}
article h2 {
  font-size: 2rem;
  margin-top: 2em;
}
article h3 {
  font-size: 1.4rem;
  margin-top: 1.6em;
}
article li {
  margin: 0.45em 0;
}
.disclosure {
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  background: #fbf3df;
  border-radius: 8px;
  margin: 26px 0;
  font-size: 0.93rem;
}
.product {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  margin: 25px 0;
  background: white;
  box-shadow: var(--shadow);
}
.product-visual {
  min-height: 150px;
  border-radius: 14px;
  background: white;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.product-visual img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  padding: 5px;
}
.hero-image {
  width: 100%;
  height: min(58vw, 560px);
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.product h3 {
  margin: 0 0 8px;
}
.product ul {
  padding-left: 20px;
}
.note {
  background: #eef3ec;
  border-radius: 14px;
  padding: 20px;
}
.legal {
  min-height: 60vh;
}
.site-footer {
  padding: 42px 0;
  background: #1d302a;
  color: #dce5e1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
}
.site-footer a {
  color: white;
}
.site-footer ul {
  list-style: none;
  padding: 0;
}
.site-footer small {
  color: #aebdb7;
}
@media (max-width: 720px) {
  nav {
    display: none;
  }
  .hero {
    padding: 64px 0;
  }
  .grid,
  .strip .grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .product {
    grid-template-columns: 1fr;
  }
  .product-visual img {
    height: 260px;
  }
  .hero-image {
    height: 280px;
  }
  .section {
    padding: 52px 0;
  }
  h1 {
    font-size: 2.65rem;
  }
}
