:root {
  --forest: #183c35;
  --navy: #182735;
  --ivory: #fcf8f2;
  --sage: #dce7df;
  --copper: #b96b4b;
  --champagne: #d6b77a;
  --stone: #eae2d8;
  --charcoal: #242725;
  --white: #ffffff;
  --muted: #65706a;
  --line: rgba(24, 60, 53, 0.14);
  --shadow: 0 28px 70px rgba(24, 39, 53, 0.13);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--ivory);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(185, 107, 75, 0.48);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.wrap {
  width: min(1180px, calc(100% - 42px));
  margin: 0 auto;
}

.notice-bar {
  background: var(--forest);
  color: var(--ivory);
  font-size: 0.84rem;
}

.notice-inner {
  min-height: 42px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 26px;
  text-align: center;
}

.notice-inner span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.notice-inner span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--champagne);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(252, 248, 242, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.brand span {
  color: var(--forest);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand small {
  margin-top: 5px;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 19px;
  color: #3e4d47;
  font-size: 0.88rem;
  font-weight: 800;
}

.main-nav a:hover,
.site-footer a:hover,
.site-footer button:hover {
  color: var(--champagne);
}

.order-btn,
.primary-btn,
.checkout-btn,
.secondary-btn,
.action-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.order-btn,
.checkout-btn {
  border: 0;
  padding: 13px 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--copper), #955239);
  box-shadow: 0 14px 34px rgba(185, 107, 75, 0.28);
}

.order-btn:hover,
.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(185, 107, 75, 0.34);
}

.secondary-btn {
  border: 1px solid var(--line);
  padding: 12px 20px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.78);
}

.action-link {
  min-height: auto;
  margin-top: 22px;
  color: var(--copper);
  text-decoration: underline;
  text-underline-offset: 7px;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--forest);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--ivory);
}

.mobile-nav a {
  display: block;
  padding: 15px 22px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 70px;
  background:
    linear-gradient(115deg, rgba(252, 248, 242, 0.98) 0 52%, rgba(220, 231, 223, 0.8) 52% 100%),
    var(--ivory);
}

.hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -22vw;
  width: 48vw;
  height: 48vw;
  border-radius: 50%;
  background: rgba(214, 183, 122, 0.2);
  pointer-events: none;
}

.hero-grid,
.editorial-grid,
.routine-grid,
.availability-grid,
.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: 64px;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  max-width: 660px;
  font-size: clamp(3rem, 4.9vw, 4.5rem);
}

h2 {
  font-size: clamp(2.55rem, 4.8vw, 3.8rem);
}

h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.25;
}

.lead,
.section-heading p,
.editorial-grid p,
.routine-grid p,
.availability-grid p,
.final-grid p {
  color: var(--muted);
  font-size: 1.05rem;
}

.point-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}

.point-list span,
.support-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(24, 60, 53, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 850;
}

.point-list span::before,
.support-row span::before {
  content: "✓";
  color: var(--copper);
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.micro-copy,
.price-note,
.review-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.price-note {
  display: inline-flex;
  margin-top: 8px;
  padding: 10px 14px;
  border-left: 3px solid var(--champagne);
  background: rgba(255, 255, 255, 0.55);
}

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

.soft-shape {
  position: absolute;
  border-radius: 42% 58% 54% 46%;
  pointer-events: none;
}

.shape-one {
  width: 96%;
  height: 78%;
  background: linear-gradient(145deg, var(--sage), rgba(255, 255, 255, 0.65));
  transform: rotate(-7deg);
}

.shape-two {
  width: 70%;
  height: 72%;
  border: 1px solid rgba(24, 60, 53, 0.18);
  transform: rotate(8deg);
}

.hero-art img {
  position: relative;
  z-index: 1;
  width: min(88%, 460px);
  filter: drop-shadow(0 34px 30px rgba(24, 39, 53, 0.22));
}

.trust-bar {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.trust-item {
  min-height: 106px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  color: var(--forest);
}

.trust-item span {
  color: var(--muted);
  font-size: 0.86rem;
}

.section {
  padding: 106px 0;
}

.product-section,
.benefits-section,
.use-section,
.faq-section {
  background: var(--white);
}

.lifestyle-section,
.product-quality,
.availability-section {
  background: linear-gradient(180deg, var(--ivory), #f5efe7);
}

.image-panel {
  min-height: 520px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: radial-gradient(circle at 50% 42%, var(--white) 0 36%, var(--sage) 94%);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: min(88%, 440px);
  filter: drop-shadow(0 28px 24px rgba(24, 39, 53, 0.16));
}

.info-panel {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.info-panel div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
}

.info-panel div:last-child {
  border-bottom: 0;
}

.info-panel dt {
  color: var(--muted);
  font-weight: 850;
}

.info-panel dd {
  margin: 0;
  color: var(--forest);
  font-weight: 850;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.left {
  margin-inline: 0;
  text-align: left;
}

.card-grid,
.packages-grid,
.review-grid,
.foundation-grid {
  display: grid;
  gap: 22px;
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid.three,
.packages-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.benefit-card,
.quality-card,
.package-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(24, 39, 53, 0.08);
}

.feature-card,
.benefit-card,
.quality-card {
  padding: 28px;
}

.feature-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--champagne);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.35rem;
  font-weight: 700;
}

.feature-card p,
.benefit-card p,
.quality-card p,
.package-card p,
.review-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.routine-grid {
  align-items: start;
}

.note-box,
.warning-box {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(185, 107, 75, 0.2);
  border-radius: 20px;
  background: rgba(185, 107, 75, 0.08);
  color: #70402e;
  font-weight: 800;
}

.process-list {
  display: grid;
  gap: 18px;
}

.process-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(24, 39, 53, 0.06);
}

.process-list span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  font-weight: 900;
}

.process-list p {
  margin: 0;
}

.dark-framework,
.final-section {
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(135deg, rgba(24, 60, 53, 0.98), rgba(24, 39, 53, 0.98)),
    var(--forest);
}

.dark-framework h2,
.dark-framework h3,
.final-section h2,
.final-section h3,
.final-section .eyebrow {
  color: var(--white);
}

.dark-framework .eyebrow {
  color: var(--champagne);
}

.foundation-grid {
  grid-template-columns: repeat(4, 1fr);
}

.foundation-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(252, 248, 242, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.foundation-grid span {
  color: var(--champagne);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.6rem;
  font-weight: 700;
}

.use-section img {
  width: min(84%, 360px);
  margin-top: 22px;
  filter: drop-shadow(0 20px 18px rgba(24, 39, 53, 0.13));
}

.packages-grid {
  align-items: stretch;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 610px;
  padding: 28px;
}

.package-card.featured {
  border: 2px solid var(--copper);
  background: linear-gradient(180deg, var(--white), #fff7ef);
  transform: translateY(-18px);
}

.package-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  margin: 8px auto 22px;
  filter: drop-shadow(0 20px 22px rgba(24, 39, 53, 0.16));
}

.value-badge {
  align-self: flex-start;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--white);
  background: var(--copper);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contents {
  display: block;
  margin-top: 12px;
  color: var(--forest);
  font-weight: 850;
}

.package-price {
  display: block;
  margin: 20px 0;
  color: var(--copper);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.25rem;
  line-height: 1;
}

.checkout-btn {
  width: 100%;
  margin-top: auto;
}

.support-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.review-grid {
  grid-template-columns: repeat(2, 1fr);
}

.review-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  padding: 26px;
}

.review-card img {
  width: 82px;
  height: 82px;
  border: 3px solid var(--sage);
  border-radius: 50%;
  object-fit: cover;
}

.review-card strong,
.review-card span {
  display: block;
  margin-top: 12px;
}

.review-card span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.9rem;
}

.review-note {
  max-width: 920px;
  margin: 26px auto 0;
  text-align: center;
}

.availability-grid {
  grid-template-columns: 1fr 1fr;
}

.region-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(220, 231, 223, 0.74), rgba(255, 255, 255, 0.78)),
    var(--white);
  box-shadow: var(--shadow);
}

.region-panel span {
  min-height: 80px;
  display: grid;
  place-items: center;
  padding: 16px;
  border: 1px solid rgba(24, 60, 53, 0.12);
  border-radius: 18px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 900;
  text-align: center;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

details {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 22px 6px;
  color: var(--navy);
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--copper);
  font-size: 1.4rem;
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 780px;
  margin: 0;
  padding: 0 6px 22px;
  color: var(--muted);
}

.final-section {
  padding: 96px 0;
}

.final-grid img {
  width: min(100%, 560px);
  justify-self: center;
  filter: drop-shadow(0 34px 30px rgba(0, 0, 0, 0.28));
}

.point-list.light span {
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.08);
}

.site-footer {
  padding: 68px 0 110px;
  color: rgba(252, 248, 242, 0.76);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 0.9fr;
  gap: 42px;
}

.footer-brand span,
.footer-brand small,
.site-footer h3 {
  color: var(--ivory);
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.site-footer button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.mobile-order-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 45;
  display: none;
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  background: rgba(252, 248, 242, 0.96);
  backdrop-filter: blur(16px);
}

.mobile-order-bar .order-btn {
  width: 100%;
}

.cookie-panel {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  width: min(480px, calc(100% - 36px));
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.cookie-panel.is-hidden {
  display: none;
}

.cookie-panel p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.cookie-actions .order-btn,
.cookie-actions .secondary-btn {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 0.84rem;
}

.exit-panel,
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(24, 39, 53, 0.66);
}

.exit-panel.is-visible,
.legal-modal.is-visible {
  display: flex;
}

.exit-window,
.legal-window {
  position: relative;
  width: min(790px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.34);
}

.exit-window {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 28px;
  padding: 32px;
}

.exit-window img {
  width: 240px;
}

.exit-window h2,
.legal-window h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 3.35rem);
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.legal-window {
  padding: 38px;
}

.legal-window p {
  color: var(--muted);
}

.close-window,
.close-modal {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

@media (max-width: 1080px) {
  .main-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .hero-grid,
  .editorial-grid,
  .routine-grid,
  .availability-grid,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 500px;
  }

  .trust-row,
  .card-grid.four,
  .foundation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid.three,
  .packages-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-card.featured {
    transform: none;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(100% - 30px, 1180px);
  }

  .notice-inner {
    justify-content: flex-start;
    padding: 8px 0;
    text-align: left;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand span {
    font-size: 1.8rem;
  }

  .hero,
  .section,
  .final-section {
    padding: 70px 0;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.45rem);
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .hero-actions,
  .modal-actions {
    flex-direction: column;
  }

  .hero-art {
    min-height: 380px;
  }

  .hero-art img {
    width: min(92%, 370px);
  }

  .image-panel {
    min-height: 380px;
  }

  .trust-row,
  .card-grid.four,
  .card-grid.three,
  .packages-grid,
  .review-grid,
  .foundation-grid,
  .footer-grid,
  .region-panel,
  .cookie-panel {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .info-panel div,
  .process-list article,
  .review-card,
  .exit-window {
    grid-template-columns: 1fr;
  }

  .package-card {
    min-height: auto;
  }

  .package-card img {
    height: 220px;
  }

  .exit-window img {
    width: 210px;
    justify-self: center;
  }

  .cookie-panel {
    right: 12px;
    bottom: 86px;
    width: calc(100% - 24px);
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions button {
    width: 100%;
  }

  .mobile-order-bar {
    display: block;
  }
}
