:root {
  --background: #f3f1e7;
  --foreground: #2f362f;
  --color-cream: #f3f1e7;
  --color-soft-white: #faf8f1;
  --color-ink: #2f362f;
  --color-muted: #687165;
  --color-sand: #d9d5c6;
  --color-accent: #7d8c77;
  --color-forest: #4e5f54;
  --color-highlight: #ebe5d5;
  --color-brand: #70806b;
  --color-brand-deep: #536450;
  --color-sage-border: rgba(112, 128, 107, 0.16);
  --shadow-soft: 0 22px 55px rgba(55, 45, 34, 0.08);
  --shadow-strong: 0 24px 80px rgba(55, 45, 34, 0.12);
  --radius-lg: 2rem;
  --radius-md: 1.5rem;
  --radius-sm: 1.15rem;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.45), transparent 30%),
    linear-gradient(180deg, #f6f3ea 0%, #f1eee4 100%);
  color: var(--foreground);
  font-family: "Manrope", sans-serif;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  border-radius: 999px;
  background: var(--color-brand-deep);
  color: #fff;
  padding: 0.85rem 1.1rem;
  font-weight: 700;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 1rem;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(83, 100, 80, 0.38);
  outline-offset: 3px;
}

button,
input,
textarea,
select {
  font: inherit;
}

.font-display,
h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 1.5rem 0 0;
}

.section-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(178, 96, 63, 0.14);
  background: rgba(255, 255, 255, 0.72);
  padding: 0.65rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button-primary {
  background: var(--color-brand-deep);
  color: #fff;
  box-shadow: 0 18px 35px rgba(83, 100, 80, 0.22);
}

.button-primary:hover {
  transform: translateY(-1px);
  background: #43503f;
  box-shadow: 0 22px 45px rgba(83, 100, 80, 0.3);
}

.button-primary:focus-visible,
.button-secondary:focus-visible {
  box-shadow: 0 0 0 4px rgba(83, 100, 80, 0.16);
}

.button-secondary {
  border: 1px solid rgba(33, 25, 18, 0.12);
  background: transparent;
  color: var(--color-ink);
}

.button-secondary:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.55);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--color-sage-border);
  background: rgba(247, 246, 240, 0.84);
  backdrop-filter: blur(20px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
  padding-bottom: 0.35rem;
  position: relative;
}

.site-logo {
  width: 138px;
  height: 54px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(33, 25, 18, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-ink);
  cursor: pointer;
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

.mobile-menu {
  display: none;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-muted);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--color-brand);
}

.header-cta {
  padding: 0.8rem 1.2rem;
  font-size: 0.88rem;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  z-index: 0;
  height: 24rem;
  width: 24rem;
  border-radius: 999px;
  filter: blur(35px);
  opacity: 0.8;
}

.hero-glow-left {
  left: -8rem;
  top: 2rem;
  background: rgba(220, 214, 194, 0.92);
}

.hero-glow-right {
  right: -6rem;
  top: 7rem;
  background: rgba(194, 208, 194, 0.72);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.4rem;
  align-items: start;
  padding: 2.25rem 0 1.25rem;
}

.hero + .section {
  padding-top: 1.5rem;
}

.hero-copy h1,
.page-hero h1,
.product-detail-title {
  margin: 1.4rem 0 0;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.98;
}

.hero-copy h1 {
  margin-top: 1.1rem;
  max-width: 46rem;
  font-size: clamp(3rem, 5vw, 4.55rem);
  line-height: 0.96;
}

.hero-copy p,
.page-hero p,
.lead-copy {
  margin: 1.5rem 0 0;
  max-width: 44rem;
  font-size: 1.04rem;
  line-height: 1.9;
  color: var(--color-muted);
}

.hero-copy p {
  margin-top: 1.1rem;
  max-width: 40rem;
  line-height: 1.75;
}

.hero-stats {
  display: grid;
  max-width: 42rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-left: 1px solid rgba(33, 25, 18, 0.12);
  padding-left: 1rem;
}

.hero-stat-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.88rem;
  color: var(--color-muted);
}

.hero-showcase-panel,
.surface-panel,
.product-detail-panel,
.cta-panel,
.feature-card,
.story-card,
.about-showcase-card,
.benefit-card,
.snapshot-card,
.soft-panel,
.dark-panel {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero-showcase-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(223, 208, 191, 0.9);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.96), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(246, 239, 228, 0.98) 100%);
  padding: 1.65rem;
}

.hero-showcase-panel::after,
.about-feature-panel::after,
.product-detail-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.42) 48%, transparent 62%);
  transform: translateX(-120%);
  animation: soft-sheen 7s ease-in-out infinite;
  pointer-events: none;
}

.hero-showcase-top {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--color-sage-border);
}

.feature-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.feature-copy {
  margin-top: 0.85rem;
  max-width: 42rem;
  font-size: 0.98rem;
  line-height: 1.9;
  color: var(--color-muted);
}

.showcase-note {
  display: inline-flex;
  align-self: flex-start;
  border-radius: 999px;
  border: 1px solid var(--color-sage-border);
  background: rgba(255, 255, 255, 0.7);
  padding: 0.9rem 1.1rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--color-muted);
}

.showcase-grid,
.product-grid,
.about-showcase-grid,
.story-grid,
.benefit-grid,
.snapshot-grid,
.highlights-grid,
.brand-values,
.content-grid,
.product-detail-grid,
.detail-support-grid {
  display: grid;
  gap: 1.5rem;
}

.showcase-grid,
.about-showcase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.15rem;
}

.hero-showcase-panel .showcase-grid {
  gap: 1rem;
}

.hero-showcase-panel .product-showcase-card {
  border-radius: 1.35rem;
  padding: 0.9rem;
}

.hero-showcase-panel .product-showcase-image-wrap {
  border-radius: 1rem;
  padding: 0.45rem;
}

.hero-showcase-panel .product-pack-stage.is-lg {
  height: 210px;
}

.hero-showcase-panel .product-showcase-card > div:last-child {
  margin-top: 0.85rem !important;
}

.hero-showcase-panel .product-showcase-card h3 {
  font-size: 1.65rem !important;
}

.product-showcase-card,
.about-showcase-card {
  border: 1px solid rgba(223, 208, 191, 0.8);
  border-radius: 1.7rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(248, 244, 236, 0.92) 100%);
  padding: 1.35rem;
}

.product-showcase-card.is-soft {
  background: linear-gradient(180deg, rgba(252, 249, 242, 0.94) 0%, rgba(238, 229, 211, 0.94) 100%);
}

.product-showcase-image-wrap {
  overflow: hidden;
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.95), transparent 55%),
    rgba(255, 255, 255, 0.58);
  padding: 1rem;
}

.product-pack-stage {
  display: flex;
  height: 220px;
  width: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-pack-stage picture,
.product-detail-stage picture {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.product-pack-stage.is-lg {
  height: 360px;
}

.product-pack-image {
  height: 100%;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 42px rgba(74, 89, 79, 0.16));
  transform: scale(1.5);
  transform-origin: center;
  transition: transform 260ms ease, filter 260ms ease;
}

.product-pack-stage.is-lg .product-pack-image {
  transform: scale(1.75);
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.product-card:hover .product-pack-image,
.product-showcase-card:hover .product-pack-image,
.about-showcase-card:hover .product-pack-image {
  filter: drop-shadow(0 30px 48px rgba(74, 89, 79, 0.22));
}

.product-card-top {
  display: flex;
  align-items: stretch;
  min-height: 360px;
  padding: 1.7rem;
}

.product-card-top-grid {
  display: grid;
  gap: 1.2rem;
  align-items: center;
  width: 100%;
  grid-template-columns: minmax(128px, 0.9fr) minmax(0, 1.1fr);
}

.product-card-top-grid > :last-child {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: stretch;
}

.product-card-meta {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-brand);
}

.product-card h3 {
  margin: 0.9rem 0 0;
  font-size: 2rem;
}

.product-card-top-grid > :last-child h3 {
  min-height: 5rem;
}

.product-card-copy {
  margin: 0.9rem 0 0;
  font-size: 0.98rem;
  line-height: 1.9;
  color: var(--color-muted);
  overflow-wrap: anywhere;
}

.product-card-bottom {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.7rem;
}

.product-card-bottom .button-row {
  margin-top: auto;
  padding-top: 1.5rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-content: flex-start;
  min-height: 5.75rem;
}

.chip {
  border-radius: 999px;
  border: 1px solid rgba(217, 213, 198, 0.8);
  background: var(--color-soft-white);
  padding: 0.55rem 0.9rem;
  font-size: 0.78rem;
  color: var(--color-muted);
}

.surface-panel {
  border: 1px solid var(--color-sand);
  background: white;
  padding: 2rem;
}

.surface-panel.is-warm {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 244, 236, 0.98) 100%);
}

.dark-panel {
  background: linear-gradient(135deg, #617365 0%, #48584b 100%);
  color: var(--color-cream);
  padding: 2rem;
}

.soft-panel {
  border: 1px solid var(--color-sand);
  background: rgba(250, 248, 241, 0.95);
  padding: 2rem;
}

.page-hero {
  max-width: 54rem;
}

.feature-card,
.story-card,
.benefit-card,
.snapshot-card {
  border: 1px solid var(--color-sand);
  background: rgba(255, 255, 255, 0.95);
  padding: 1.5rem;
}

.feature-card p,
.story-card p,
.benefit-card p,
.snapshot-card p,
.value-item p {
  color: var(--color-muted);
  line-height: 1.85;
}

.benefit-card p,
.snapshot-card p,
.value-item p {
  margin: 0.65rem 0 0;
}

.feature-card h3,
.story-card h3,
.benefit-card h3,
.snapshot-card h3 {
  margin: 0.7rem 0 0;
  font-size: 2rem;
}

.content-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.benefit-layout {
  grid-template-columns: 1.3fr 1.05fr;
}

.benefit-layout .benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-layout .feature-card {
  min-height: 100%;
  padding: 2rem 1.45rem;
}

.brand-values {
  grid-template-columns: 1fr;
}

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-md);
  background: var(--color-soft-white);
}

.value-item-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(125, 140, 119, 0.1);
  color: var(--color-accent);
  font-weight: 700;
}

.cta-panel {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, #c86f4b 0%, #9f4f2e 100%);
  color: white;
  padding: 2.4rem;
  box-shadow: 0 24px 80px rgba(159, 79, 46, 0.28);
}

.cta-panel p,
.dark-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  border-top: 1px solid var(--color-sage-border);
  background: var(--color-soft-white);
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 3rem 0;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  align-items: start;
}

.footer-logo {
  display: block;
  width: 172px;
  height: 72px;
  object-fit: cover;
  object-position: center;
}

.footer-heading {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  color: var(--color-muted);
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.breadcrumb a:hover {
  color: var(--color-brand);
}

.product-detail-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.product-detail-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-sand);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.96), transparent 42%),
    linear-gradient(135deg, #fffdf9 0%, #f5f0e6 100%);
  padding: 2.2rem;
}

.product-detail-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.product-detail-stage {
  display: flex;
  width: 100%;
  max-width: 330px;
  min-height: 360px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 2rem;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.98), transparent 60%),
    rgba(255, 255, 255, 0.42);
  padding: 1.5rem;
  margin: 0 auto;
}

.product-detail-image {
  height: 100%;
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(74, 89, 79, 0.18));
  transform: scale(1.2);
  transform-origin: center;
}

.product-detail-tagline,
.mini-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.product-detail-copy,
.panel-copy {
  margin-top: 1rem;
  font-size: 1.04rem;
  line-height: 1.95;
  color: var(--color-muted);
}

.highlights-grid {
  margin-top: 1.7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.highlight-item {
  border: 1px solid var(--color-sand);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.95rem 1rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.detail-support-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.snapshot-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.25rem;
}

.about-feature-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78) 0%, rgba(250, 248, 241, 0.96) 100%);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.muted-stack {
  display: grid;
  gap: 1rem;
  color: var(--color-muted);
  line-height: 1.9;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--color-sage-border);
  border-radius: var(--radius-lg);
  background: var(--color-sage-border);
  box-shadow: var(--shadow-soft);
}

.trust-item {
  background: rgba(255, 255, 255, 0.82);
  padding: 1.25rem;
}

.trust-item strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  line-height: 1;
}

.trust-item span {
  display: block;
  margin-top: 0.45rem;
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.comparison-table thead {
  background: rgba(112, 128, 107, 0.08);
}

.comparison-table thead tr,
.comparison-table tbody tr {
  display: table-row;
}

.comparison-table th,
.comparison-table td {
  border-bottom: 1px solid var(--color-sage-border);
  padding: 1rem;
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  background: rgba(112, 128, 107, 0.08);
  color: var(--color-brand-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.comparison-table td {
  color: var(--color-muted);
  line-height: 1.7;
  background: rgba(255, 255, 255, 0.95);
}

.comparison-table tbody td:first-child {
  color: var(--color-ink);
}

.comparison-table th:first-child {
  border-top-left-radius: var(--radius-lg);
}

.comparison-table th:last-child {
  border-top-right-radius: var(--radius-lg);
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.trust-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(112, 128, 107, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  padding: 0.62rem 0.9rem;
  color: var(--color-brand-deep);
  font-size: 0.8rem;
  font-weight: 800;
}

.sticky-buy {
  display: none;
}

.ritual-steps,
.faq-list {
  display: grid;
  gap: 1rem;
}

.ritual-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  padding: 1.25rem;
}

.ritual-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(112, 128, 107, 0.12);
  color: var(--color-brand-deep);
  font-weight: 800;
}

.ritual-step h3,
.faq-item h3 {
  margin: 0;
  font-size: 1.55rem;
}

.ritual-step p,
.faq-item p {
  margin: 0.45rem 0 0;
  color: var(--color-muted);
  line-height: 1.8;
}

.faq-item {
  border-bottom: 1px solid var(--color-sage-border);
  padding: 1.15rem 0;
}

.faq-item:last-child {
  border-bottom: 0;
}

.guide-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.guide-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.guide-card h3 {
  margin: 0.8rem 0 0;
  font-size: 2rem;
}

.guide-card p {
  margin: 0.85rem 0 0;
  color: var(--color-muted);
  line-height: 1.85;
}

.guide-card .button-secondary {
  margin-top: auto;
  align-self: flex-start;
}

.guide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.15rem;
  padding-bottom: 1.25rem;
}

.guide-body {
  display: grid;
  gap: 1.25rem;
}

.guide-body h2 {
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.05;
}

.guide-body p,
.guide-body li {
  color: var(--color-muted);
  line-height: 1.9;
}

.guide-body ul {
  margin: 0;
  padding-left: 1.25rem;
}

.trust-checklist,
.resource-list,
.metric-list {
  display: grid;
  gap: 0.9rem;
}

.trust-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 1.05rem;
  border: 1px solid var(--color-sand);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.85);
}

.trust-check strong,
.resource-card h3,
.metric-card strong {
  display: block;
  color: var(--color-ink);
}

.trust-check span:first-child,
.metric-card span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(112, 128, 107, 0.12);
  color: var(--color-brand-deep);
  font-weight: 800;
}

.trust-check p,
.resource-card p,
.metric-card p {
  margin: 0.35rem 0 0;
  color: var(--color-muted);
  line-height: 1.75;
}

.resource-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.resource-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 0.95rem;
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  padding: 1.35rem;
}

.resource-card .button-secondary,
.resource-card .button-primary {
  margin-top: auto;
  align-self: flex-start;
}

.resource-card.is-highlight {
  background: linear-gradient(135deg, rgba(255, 252, 247, 0.98) 0%, rgba(240, 233, 220, 0.95) 100%);
}

.metric-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-card {
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  padding: 1.25rem;
}

.metric-card strong {
  margin-top: 0.85rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  line-height: 1.05;
}

.eyebrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-brand);
}

.eyebrow-link::after {
  content: "->";
  letter-spacing: 0;
}

.social-proof-strip {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.social-proof-card {
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  padding: 1.35rem;
}

.social-proof-card p {
  margin: 0.5rem 0 0;
  color: var(--color-muted);
  line-height: 1.8;
}

.contact-detail-list {
  display: grid;
  gap: 0.85rem;
}

.contact-detail-item {
  padding: 1rem 1.1rem;
  border: 1px solid var(--color-sand);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.88);
}

.contact-detail-item strong {
  display: block;
  color: var(--color-ink);
}

.contact-detail-item span,
.contact-detail-item a,
.contact-detail-item p {
  margin: 0.35rem 0 0;
  color: var(--color-muted);
  line-height: 1.75;
}

.section-stack {
  display: grid;
  gap: 2rem;
}

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

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease var(--reveal-delay, 0ms), transform 620ms ease var(--reveal-delay, 0ms);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes soft-sheen {
  0%, 72% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

@media (min-width: 768px) {
  .hero-grid,
  .product-card-top-grid,
  .product-detail-inner {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .product-card-top {
    height: 460px;
  }

  .product-card-copy {
    min-height: 12.5rem;
  }

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

  .story-grid,
  .benefit-grid,
  .resource-list,
  .metric-list,
  .social-proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefit-layout .benefit-grid {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
  }
}

@media (max-width: 1023px) {
  .content-grid,
  .product-detail-grid,
  .detail-support-grid,
  .footer-grid,
  .showcase-grid,
  .about-showcase-grid,
  .resource-list,
  .metric-list,
  .mini-grid,
  .social-proof-strip {
    grid-template-columns: 1fr;
  }

  .benefit-layout {
    grid-template-columns: 1fr;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    border: 1px solid var(--color-sand);
    border-radius: 1.5rem;
    background: rgba(250, 248, 241, 0.98);
    box-shadow: var(--shadow-soft);
    padding: 1rem;
  }

  .mobile-menu.is-open {
    display: grid;
    gap: 0.75rem;
  }

  .mobile-menu a {
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    color: var(--color-muted);
    font-weight: 600;
  }

  .mobile-menu a.is-active,
  .mobile-menu a:hover {
    background: rgba(112, 128, 107, 0.08);
    color: var(--color-brand);
  }

  .site-logo {
    width: 124px;
    height: 48px;
  }

  .footer-logo {
    width: 156px;
    height: 64px;
  }

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

@media (max-width: 767px) {
  .container {
    width: min(var(--container), calc(100% - 1.4rem));
  }

  .section {
    padding: 4rem 0;
  }

  .hero-glow {
    height: 14rem;
    width: 14rem;
    filter: blur(25px);
  }

  .hero-grid {
    padding: 2.5rem 0 1.25rem;
  }

  .hero-stats,
  .highlights-grid,
  .snapshot-grid {
    grid-template-columns: 1fr;
  }

  .product-card-top-grid {
    grid-template-columns: 1fr;
  }

  .product-card-top {
    min-height: auto;
    padding: 1.25rem;
  }

  .product-card-bottom {
    padding: 1.25rem;
  }

  .product-card h3 {
    font-size: 1.7rem;
  }

  .product-card-top-grid > :last-child h3 {
    min-height: 0;
  }

  .product-pack-stage,
  .product-pack-stage.is-lg {
    height: 260px;
  }

  .product-detail-stage {
    min-height: 300px;
  }

  .product-detail-image {
    max-height: 260px;
  }

  .product-pack-image,
  .product-pack-stage.is-lg .product-pack-image {
    transform: scale(1.08);
  }

  .hero-showcase-panel,
  .surface-panel,
  .dark-panel,
  .soft-panel,
  .product-detail-panel,
  .cta-panel,
  .about-feature-panel {
    padding: 1.35rem;
  }

  .button-row {
    flex-direction: column;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .site-header-inner {
    min-height: 68px;
    padding-bottom: 0.25rem;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .benefit-card,
  .snapshot-card {
    padding: 1.25rem;
  }

  .feature-card h3,
  .benefit-card h3,
  .snapshot-card h3 {
    font-size: 1.55rem;
    line-height: 1.15;
  }

  .benefit-grid,
  .benefit-layout .benefit-grid,
  .snapshot-grid {
    grid-template-columns: 1fr;
  }

  .value-item {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.9rem;
  }

  .value-item-number {
    align-self: center;
  }

  .value-item p {
    margin-top: 0;
  }

  .sticky-buy {
    position: fixed;
    z-index: 60;
    right: 0.7rem;
    bottom: 0.7rem;
    left: 0.7rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    align-items: center;
    border: 1px solid rgba(112, 128, 107, 0.16);
    border-radius: 1.25rem;
    background: rgba(250, 248, 241, 0.96);
    box-shadow: 0 18px 50px rgba(55, 45, 34, 0.18);
    padding: 0.75rem;
    backdrop-filter: blur(18px);
  }

  .sticky-buy span {
    color: var(--color-muted);
    font-size: 0.82rem;
    line-height: 1.4;
    display: grid;
    gap: 0.12rem;
  }

  .sticky-buy strong {
    display: block;
    color: var(--color-ink);
    font-size: 0.92rem;
  }

  .sticky-buy .button-primary {
    width: auto;
    padding: 0.78rem 1rem;
    white-space: nowrap;
  }

  body {
    padding-bottom: 5.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  [data-reveal],
  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
