:root {
  --bg: #f5f0e3;
  --bg-soft: #efe6d2;
  --surface: rgba(255, 251, 242, 0.78);
  --surface-strong: #f8f2e6;
  --text: #242016;
  --text-soft: #665b48;
  --olive-900: #364127;
  --olive-700: #536238;
  --olive-500: #7d8450;
  --gold-500: #a78a45;
  --gold-300: #d5bf7b;
  --soil: #8c6640;
  --line: rgba(54, 65, 39, 0.12);
  --shadow: 0 22px 60px rgba(49, 46, 31, 0.14);
  --shadow-soft: 0 14px 40px rgba(63, 52, 28, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(213, 191, 123, 0.18), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(83, 98, 56, 0.22), transparent 28%),
    linear-gradient(180deg, #f8f4eb 0%, #f2ead9 48%, #efe4cf 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.18;
  mask-image: radial-gradient(circle at center, black 20%, transparent 88%);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(245, 240, 227, 0.82);
  border-bottom: 1px solid rgba(54, 65, 39, 0.08);
}

.topbar,
.nav-wrap,
.hero,
.trust-ribbon,
.section,
.site-footer {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  min-height: 44px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.topbar a {
  font-weight: 700;
  color: var(--olive-900);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 1.25rem;
  align-items: center;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand img,
.footer-brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.brand strong,
.footer-brand strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.95;
  color: var(--olive-900);
}

.brand span {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.site-nav {
  display: inline-flex;
  justify-content: center;
  gap: 1.25rem;
  font-size: 0.94rem;
  color: var(--text-soft);
}

.site-nav a {
  position: relative;
  padding: 0.3rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.12rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--olive-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.header-cta,
.button-primary {
  background: linear-gradient(135deg, var(--olive-900), var(--olive-700));
  color: #fff7eb;
  box-shadow: var(--shadow-soft);
}

.button-secondary {
  border: 1px solid rgba(54, 65, 39, 0.18);
  background: rgba(255, 255, 255, 0.42);
  color: var(--olive-900);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  gap: 0.36rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--olive-900);
  border-radius: 99px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: center;
  padding: 3rem 0 2rem;
}

.hero-copy,
.hero-visual,
.product-card,
.quality-panel,
.story-media,
.editorial-grid article,
.process-grid article,
.contact-panel,
.faq-list details,
.use-grid article {
  position: relative;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 251, 242, 0.9), rgba(246, 238, 221, 0.8));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--soil);
}

.eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: rgba(140, 102, 64, 0.5);
}

h1,
h2,
h3,
summary {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
}

h1 {
  font-size: clamp(3rem, 6vw, 3rem);
  line-height: 0.93;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 4vw, 2rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

h3,
summary {
  font-size: 1.6rem;
  line-height: 1.02;
}

.hero-text,
.section-heading p,
.quality-copy > p,
.story-copy > p,
.contact-panel > p,
.faq-list p,
.product-card p,
.editorial-grid p,
.process-grid p,
.use-grid p,
.trust-ribbon p,
.quality-list p,
.story-points p,
.footer-brand p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.hero-text {
  max-width: 62ch;
  margin-top: 1rem;
  font-size: 1.05rem;
}

.hero-actions,
.contact-actions,
.cta-row,
.section-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-metrics article,
.quality-list article,
.story-points article,
.trust-ribbon article,
.use-grid article,
.editorial-grid article,
.process-grid article {
  border-radius: var(--radius-md);
  background: rgba(255, 253, 247, 0.76);
  padding: 1rem 1.05rem;
  border: 1px solid rgba(54, 65, 39, 0.08);
}

.hero-metrics strong,
.quality-list strong,
.story-points strong,
.trust-ribbon strong,
.use-grid h3,
.editorial-grid h3,
.process-grid h3,
.product-card h3,
.analysis-card h3,
.faq-list summary,
.contact-panel h2 {
  color: var(--olive-900);
}

.hero-metrics strong,
.process-grid strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.hero-visual {
  min-height: 620px;
}

.hero-card {
  position: absolute;
  inset: 0;
  padding: 1.3rem;
  border-radius: 40px;
  background: linear-gradient(160deg, rgba(54, 65, 39, 0.95), rgba(122, 113, 63, 0.88));
  box-shadow: 0 28px 60px rgba(29, 35, 19, 0.28);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 249, 235, 0.8), rgba(240, 228, 197, 0.74));
}

.floating-note {
  position: absolute;
  max-width: 240px;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 249, 239, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
}

.floating-note span,
.product-badge,
.editorial-grid span {
  display: inline-flex;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soil);
}

.floating-note strong {
  display: block;
  line-height: 1.45;
}

.note-left {
  left: -2rem;
  bottom: 4rem;
}

.note-right {
  right: -1rem;
  top: 3rem;
}

.trust-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.section {
  padding: 5rem 0 0;
}

.section-heading {
  max-width: 62ch;
  margin-bottom: 2rem;
}

.section-heading.compact {
  max-width: 56ch;
}

.product-grid,
.editorial-grid,
.process-grid,
.use-grid {
  display: grid;
  gap: 1rem;
}

.product-grid {
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
}

.product-card {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 242, 0.78);
}

.product-card.featured {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.product-card.featured img {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 320px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(54, 65, 39, 0.08);
  background: rgba(240, 232, 214, 0.86);
}

.product-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.product-tags span {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(83, 98, 56, 0.08);
  color: var(--olive-900);
  font-weight: 700;
  font-size: 0.85rem;
}

.quality-split,
.story-section,
.contact-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
  align-items: stretch;
}

.quality-copy,
.story-copy,
.contact-panel {
  padding: 2rem 0;
}

.quality-list,
.story-points {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.quality-panel,
.story-media,
.contact-panel {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 251, 243, 0.84), rgba(242, 232, 211, 0.8));
}

.quality-panel {
  padding: 1rem;
  display: grid;
  gap: 1rem;
}

.quality-panel img,
.story-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 460px;
  object-fit: cover;
  border-radius: 24px;
  background: rgba(255, 250, 239, 0.76);
}

.analysis-card {
  padding: 1.2rem;
  border-radius: 24px;
  background: rgba(53, 65, 38, 0.96);
  color: #f5efe1;
}

.analysis-card h3 {
  color: #fff1cd;
}

.analysis-card dl {
  margin: 1rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.analysis-card div {
  display: grid;
  gap: 0.2rem;
}

.analysis-card dt {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 241, 205, 0.68);
}

.analysis-card dd {
  margin: 0;
  font-size: 1rem;
}

.use-grid,
.editorial-grid,
.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.editorial-grid article,
.process-grid article,
.use-grid article {
  padding: 1.35rem;
  border-radius: 24px;
  background: rgba(255, 251, 244, 0.76);
}

.editorial-grid span {
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(167, 138, 69, 0.16);
}

.process-grid strong {
  display: inline-flex;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--olive-900), var(--olive-700));
  color: #fff7ea;
  margin-bottom: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-list details {
  padding: 1.2rem 1.3rem;
  border-radius: 22px;
  background: rgba(255, 252, 246, 0.8);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin-top: 0.8rem;
}

.contact-panel {
  padding: 2.1rem;
  background:
    radial-gradient(circle at top right, rgba(167, 138, 69, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(255, 251, 242, 0.92), rgba(241, 231, 208, 0.88));
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 5rem 0 2.5rem;
}

.footer-brand {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.55rem;
  color: var(--text-soft);
}

.footer-contact a {
  color: var(--olive-900);
  font-weight: 700;
}

.breadcrumb {
  margin-bottom: 0.9rem;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.page-hero {
  width: var(--container);
  margin: 0 auto;
  padding: 3rem 0 0;
}

.page-hero-card,
.detail-card,
.table-card,
.list-panel,
.placeholder-panel,
.form-card,
.legal-note,
.split-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 251, 243, 0.92), rgba(241, 231, 208, 0.78));
  box-shadow: var(--shadow);
}

.page-hero-card {
  display: grid;
  gap: 1.2rem;
  padding: 2.1rem;
}

.page-hero-card.split,
.split-panel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.page-hero-card img,
.placeholder-panel img,
.split-panel img {
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 4 / 3;
  max-height: 460px;
  object-fit: cover;
  background: rgba(255, 250, 239, 0.75);
}

.page-content,
.legal-layout {
  width: var(--container);
  margin: 0 auto;
  padding-top: 2rem;
}

.card-grid,
.info-grid,
.content-grid,
.legal-grid,
.stats-grid {
  display: grid;
  gap: 1rem;
}

.card-grid.three,
.info-grid.three,
.legal-grid,
.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.two,
.info-grid.two,
.content-grid,
.split-panel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-card,
.table-card,
.list-panel,
.placeholder-panel,
.form-card,
.legal-note,
.split-panel {
  padding: 1.4rem;
}

.detail-card h3,
.table-card h3,
.list-panel h3,
.form-card h3,
.legal-note h3,
.split-panel h3 {
  margin-bottom: 0.8rem;
}

.detail-card p,
.table-card p,
.list-panel p,
.form-card p,
.legal-note p,
.split-panel p,
.page-hero-card p,
.placeholder-panel p {
  color: var(--text-soft);
  line-height: 1.72;
}

.stat-chip,
.muted-badge,
.pill-list span,
.quick-specs span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(83, 98, 56, 0.08);
  color: var(--olive-900);
  font-weight: 700;
  font-size: 0.88rem;
}

.pill-list,
.quick-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.spec-grid {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.spec-grid article,
.legal-grid article,
.stats-grid article {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 252, 246, 0.82);
  border: 1px solid rgba(54, 65, 39, 0.08);
}

.spec-grid article strong,
.legal-grid article strong,
.stats-grid article strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--olive-900);
}

.spec-table {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.spec-table div {
  display: grid;
  grid-template-columns: minmax(120px, 180px) 1fr;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(54, 65, 39, 0.08);
}

.spec-table div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.spec-table dt {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.spec-table dd {
  margin: 0;
  font-weight: 700;
  color: var(--olive-900);
}

.list-panel ul,
.legal-note ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
  line-height: 1.72;
}

.placeholder-panel {
  display: grid;
  gap: 1rem;
}

.placeholder-panel .panel-note {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(53, 65, 38, 0.95);
  color: #f5efe1;
}

.panel-note strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #fff1cd;
}

.panel-note p {
  color: rgba(255, 247, 229, 0.92);
}

.inquiry-form {
  display: grid;
  gap: 0.95rem;
  margin-top: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.9rem;
  color: var(--text-soft);
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(54, 65, 39, 0.16);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  font: inherit;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-note {
  font-size: 0.88rem;
  color: var(--text-soft);
}

.legal-stack {
  display: grid;
  gap: 1rem;
}

.legal-note {
  scroll-margin-top: 120px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .nav-wrap {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    gap: 0.85rem;
    font-size: 0.88rem;
  }

  .product-grid,
  .use-grid,
  .editorial-grid,
  .process-grid,
  .site-footer,
  .hero-metrics,
  .trust-ribbon,
  .quality-split,
  .story-section,
  .contact-section,
  .page-hero-card.split,
  .split-panel,
  .card-grid.three,
  .info-grid.three,
  .legal-grid,
  .stats-grid,
  .content-grid,
  .card-grid.two,
  .info-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card.featured {
    grid-column: span 2;
  }

  .note-left {
    left: 1rem;
    bottom: 1rem;
  }

  .note-right {
    right: 1rem;
    top: 1rem;
  }
}

@media (max-width: 820px) {
  .topbar {
    flex-direction: column;
    justify-content: center;
    padding: 0.7rem 0;
    text-align: center;
  }

  .nav-wrap {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 1rem 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    inset: calc(100% - 0.5rem) 1rem auto;
    display: grid;
    gap: 0;
    padding: 0.6rem;
    border-radius: 24px;
    background: rgba(251, 246, 234, 0.98);
    border: 1px solid rgba(54, 65, 39, 0.1);
    box-shadow: var(--shadow);
    transform-origin: top right;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.96);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav a {
    padding: 0.9rem 1rem;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .header-cta {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero,
  .quality-split,
  .story-section,
  .contact-section,
  .product-grid,
  .use-grid,
  .editorial-grid,
  .process-grid,
  .hero-metrics,
  .trust-ribbon,
  .site-footer,
  .page-hero-card.split,
  .split-panel,
  .card-grid.two,
  .card-grid.three,
  .info-grid.two,
  .info-grid.three,
  .content-grid,
  .legal-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-copy {
    padding: 1.6rem;
  }

  .hero-visual {
    min-height: 520px;
  }

  .floating-note {
    max-width: 220px;
  }

  .section {
    padding-top: 4rem;
  }

  .page-hero {
    padding-top: 2rem;
  }

  .page-hero-card {
    padding: 1.6rem;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100vw - 1.25rem, 100%);
  }

  .brand img,
  .footer-brand img {
    width: 58px;
    height: 58px;
  }

  .brand strong,
  .footer-brand strong {
    font-size: 1.65rem;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-card {
    border-radius: 28px;
  }

  .hero-card img,
  .quality-panel img,
  .story-media img {
    border-radius: 20px;
  }

  .product-card.featured img,
  .quality-panel img,
  .story-media img,
  .page-hero-card img,
  .placeholder-panel img,
  .split-panel img {
    max-height: 280px;
    aspect-ratio: 16 / 11;
  }

  .floating-note {
    position: static;
    max-width: none;
    margin-top: 0.8rem;
  }

  .hero-copy,
  .contact-panel,
  .product-card,
  .faq-list details,
  .editorial-grid article,
  .process-grid article,
  .use-grid article {
    border-radius: 22px;
  }

  .button,
  .header-cta {
    width: 100%;
  }
}