:root {
  --bg: #f8f3ea;
  --surface: #fffaf2;
  --surface-2: #f2e7d6;
  --text: #1f2b28;
  --muted: #67736f;
  --line: rgba(31,43,40,.10);
  --primary: #0f766e;
  --primary-dark: #0a5752;
  --accent: #111111;
  --radius: 22px;
  --shadow: 0 20px 60px rgba(21, 34, 30, 0.08);
  --container: 1180px;
  --sun: #f4c46a;
  --sun-soft: #f8dfad;
  --sky: #dcefe8;
  --sea: #9fcfc7;
  --sand: #ead7bc;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at top right, rgba(244, 196, 106, 0.22), transparent 22%),
    radial-gradient(circle at 15% 12%, rgba(159, 207, 199, 0.22), transparent 20%),
    linear-gradient(180deg, #fbf7f0 0%, #f6f2ea 35%, #f4eee3 100%);
}

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

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

strong {
  font-weight: 800;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  background: #fff;
  padding: 10px 14px;
  z-index: 99;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 243, 234, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-family: "Instrument Serif", serif;
  font-size: 24px;
}

.brand-copy {
  font-size: 15px;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.nav a {
  font-size: 14px;
  color: var(--muted);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff !important;
}

.hero {
  padding: 72px 0 40px;
}

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

.hero-rich::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 196, 106, 0.52) 0%, rgba(244, 196, 106, 0.15) 45%, rgba(244, 196, 106, 0) 72%);
  filter: blur(8px);
  pointer-events: none;
}

.hero-rich::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: 20px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 207, 199, 0.28) 0%, rgba(159, 207, 199, 0.08) 48%, rgba(159, 207, 199, 0) 75%);
  filter: blur(12px);
  pointer-events: none;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy-wide {
  max-width: 100%;
}

.eyebrow,
.section-label {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
}

.hero h1,
.section h2,
.confirmation-box h1,
.product-feature-content h3,
.form-section h3 {
  font-family: "Instrument Serif", serif;
  line-height: 1.02;
  font-weight: 400;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 82px);
  max-width: 11ch;
  margin: 10px 0 20px;
}

.hero-text {
  font-size: 18px;
  color: var(--muted);
}

.hero-text-wide {
  max-width: 72ch;
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 28px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.22);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border-color: var(--line);
}

.btn-full {
  width: 100%;
}

.inline-btn {
  margin-top: 8px;
}

.hero-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 24px;
}

.hero-feature-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.84);
  border: 1px solid rgba(31,43,40,.08);
  box-shadow: 0 12px 30px rgba(21, 34, 30, 0.05);
}

.hero-feature-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.hero-feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.hero-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: linear-gradient(180deg, #f7ecd9, #efe3cd);
  border: 1px solid rgba(31,43,40,.08);
}

.hero-icon svg {
  width: 24px;
  height: 24px;
}

.mood-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 10px 0 0;
}

.mood-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(31,43,40,.08);
  box-shadow: 0 8px 24px rgba(21, 34, 30, 0.06);
  color: var(--text);
  font-weight: 600;
  letter-spacing: .01em;
}

.hero-products-visual {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-products-stage {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: 560px;
}

.hero-products-stage::before {
  content: "";
  position: absolute;
  inset: 70px 40px 40px 40px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(244,196,106,0.25), transparent 32%),
    radial-gradient(circle at bottom left, rgba(159,207,199,0.22), transparent 28%),
    linear-gradient(180deg, rgba(255,250,242,0.94), rgba(244,236,223,0.96));
  border: 1px solid rgba(31,43,40,.08);
  box-shadow: 0 24px 70px rgba(21, 34, 30, 0.08);
}

.hero-product-card {
  position: absolute;
  width: 78%;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,253,249,0.98), rgba(247,241,231,0.98));
  border: 1px solid rgba(31,43,40,.08);
  box-shadow: 0 22px 60px rgba(21,34,30,.10);
}

.hero-product-card img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-product-card-back {
  top: 30px;
  left: 0;
  transform: rotate(-6deg);
}

.hero-product-card-front {
  right: 0;
  bottom: 10px;
  transform: rotate(5deg);
}

.hero-product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(220,236,233,.94);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-product-badge.dark {
  background: rgba(31,43,40,.88);
  color: #fff;
}

.hero-product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 18px 18px;
}

.hero-product-meta strong {
  font-size: 18px;
}

.hero-product-meta span {
  color: var(--primary);
  font-weight: 800;
}

.section {
  padding: 32px 0 76px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 24px;
}

.section-head-stack {
  display: block;
}

.section h2 {
  font-size: clamp(34px, 4vw, 56px);
  margin: 10px 0 0;
  max-width: 14ch;
}

.section-intro {
  max-width: 72ch;
  color: var(--muted);
  margin-top: 14px;
}

.products-detailed .container {
  display: grid;
  gap: 28px;
}

.product-feature,
.info-card,
.order-form,
.confirmation-box,
.travel-banner,
.benefit-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-feature {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,253,249,0.98), rgba(247,241,231,0.98));
}

.product-feature-reverse {
  grid-template-columns: 1.1fr 1fr;
}

.product-feature-reverse .product-feature-media {
  order: 2;
}

.product-feature-reverse .product-feature-content {
  order: 1;
}

.product-feature-media {
  position: relative;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(244,196,106,0.16), transparent 30%),
    linear-gradient(180deg, #f7f1e8, #ebe1d2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-feature-media::after {
  content: "";
  position: absolute;
  inset: auto 28px 22px auto;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,196,106,0.26) 0%, rgba(244,196,106,0.08) 48%, transparent 72%);
}

.product-feature-content {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #dcece9;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  width: max-content;
}

.product-feature-content h3 {
  margin: 16px 0 12px;
  font-size: 42px;
}

.lead {
  font-size: 18px;
  color: var(--text);
  margin: 0 0 18px;
  max-width: 48ch;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.feature-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #f7efe4, #f2e8da);
  color: #55615e;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.product-price {
  font-size: 34px;
}

.logistics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.logistics .info-card {
  background: linear-gradient(180deg, rgba(255,250,242,0.98), rgba(245,236,221,0.95));
}

.info-card {
  padding: 28px;
}

.info-card ul {
  padding-left: 18px;
  color: var(--muted);
}

.travel-banner-section {
  padding-top: 12px;
}

.travel-banner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(31,43,40,.10);
  box-shadow: 0 24px 70px rgba(21, 34, 30, 0.10);
  background: #fffaf2;
}

.travel-banner-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.travel-banner-content {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(244,196,106,0.20), transparent 28%),
    linear-gradient(180deg, #fffaf2 0%, #f5ead8 100%);
}

.travel-banner-content h2 {
  margin: 10px 0 18px;
  max-width: 10ch;
}

.travel-banner-content p {
  color: var(--muted);
  max-width: 42ch;
  margin-bottom: 24px;
}

.order-section-wide .container {
  display: block;
}

.order-form {
  padding: 32px;
}

.order-form-wide {
  width: 100%;
  background: linear-gradient(180deg, rgba(255,253,249,0.98), rgba(247,241,231,0.98));
  border: 1px solid rgba(31,43,40,.10);
  box-shadow: 0 24px 70px rgba(21, 34, 30, 0.08);
}

.form-section {
  margin-bottom: 26px;
}

.form-section h3 {
  margin: 0 0 14px;
  font-size: 30px;
}

.form-section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

.order-form label,
.order-form fieldset {
  display: grid;
  gap: 8px;
}

.order-form span,
.order-form legend {
  font-weight: 600;
}

.order-form input,
.order-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  background: #fff;
  font: inherit;
}

.order-form fieldset {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}

.option {
  display: flex;
  grid-auto-flow: column;
  justify-content: start;
  gap: 10px;
  align-items: center;
}

.pickup-box {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f5ecdf, #efe2d1);
  border: 1px solid var(--line);
}

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

.qty-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #f7efe4, #f0e4d3);
}

.qty-card p {
  margin: 6px 0 0;
  color: var(--muted);
}

.consent-row {
  display: flex !important;
  align-items: center;
  gap: 12px;
}

.consent-row input {
  width: auto;
}

.summary-box {
  margin: 22px 0;
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f2e7d6, #ecdfcb);
}

.summary-box-wide {
  max-width: 100%;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
}

.summary-row.total {
  font-size: 22px;
  font-weight: 800;
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 16px;
}

.fineprint {
  font-size: 14px;
  color: var(--muted);
}

.confirmation-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
}

.confirmation-box {
  padding: 40px;
  max-width: 720px;
}

@media (max-width: 1100px) {
  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-products-visual {
    min-height: 520px;
  }

  .hero-products-stage {
    max-width: 520px;
    height: 500px;
  }
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .hero {
    padding-top: 36px;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero-feature-list,
  .product-feature,
  .product-feature-reverse,
  .logistics-grid,
  .product-selectors,
  .two-col,
  .form-section-split,
  .travel-banner {
    grid-template-columns: 1fr;
  }

  .product-feature-reverse .product-feature-media,
  .product-feature-reverse .product-feature-content {
    order: initial;
  }

  .hero-products-visual {
    min-height: 420px;
  }

  .hero-products-stage {
    height: 400px;
  }

  .hero-product-card {
    width: 84%;
  }

  .hero-product-card-back {
    top: 10px;
  }

  .hero-product-card-front {
    bottom: 0;
  }

  .travel-banner-media img {
    min-height: 260px;
  }

  .travel-banner-content {
    padding: 28px;
  }

  .mood-strip {
    gap: 10px;
  }

  .mood-pill {
    width: 100%;
    justify-content: center;
  }

  .section-head {
    display: block;
  }

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