/* ============================================================
   YelGlow — style.css
   Architecture: Section-scoped semantic
   Variables: --tone-* family
   Fonts: Nunito (headings) + Source Sans 3 (body)
   Updated: 2025
   ============================================================ */

/* ── TOKENS ── */
:root {
  --tone-main:       #2A7050;
  --tone-dark:       #1C3028;
  --tone-support:    #5BA87A;
  --tone-cta:        #1E5C3C;
  --tone-cta-hover:  #154D30;
  --tone-light:      #EDF7F2;
  --tone-pale:       #C8E6D5;
  --tone-pastel:     #A8D5B5;
  --tone-border:     #D4EAE0;
  --tone-muted:      #6B8C7A;
  --tone-text:       #1C3028;
  --tone-white:      #FFFFFF;
  --tone-bg-alt:     #F4FAF7;
  --tone-accent:     #7EC8A0;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  40px;

  --shadow-soft: 0 4px 24px rgba(42, 112, 80, 0.10);
  --shadow-card: 0 2px 16px rgba(42, 112, 80, 0.08);
  --shadow-lift: 0 8px 32px rgba(42, 112, 80, 0.14);

  --font-head: 'Nunito', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;

  --wrap-max: 1160px;
  --wrap-px:  clamp(1.25rem, 4vw, 2.5rem);

  --transition: 0.22s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--tone-text);
  background: var(--tone-white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--tone-main); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--tone-cta); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
abbr[title] { text-decoration: none; }
address { font-style: normal; }

/* ── SCREEN READER ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── LAYOUT ── */
.wrap {
  max-width: var(--wrap-max);
  margin-inline: auto;
  padding-inline: var(--wrap-px);
}

/* ── TYPOGRAPHY HELPERS ── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tone-support);
  margin-bottom: 0.6rem;
}
.heading-2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--tone-dark);
  margin-bottom: 1.2rem;
}
.heading-2 em {
  font-style: normal;
  color: var(--tone-main);
}
.body-copy {
  font-size: 1.02rem;
  color: #3a5446;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.section-hd {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-hd__sub {
  font-size: 1.02rem;
  color: var(--tone-muted);
  line-height: 1.7;
}

/* ── BUTTONS ── */
.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.97rem;
  padding: 0.82em 2em;
  border-radius: var(--radius-xl);
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}
.pill-btn--solid {
  background: var(--tone-cta);
  color: var(--tone-white);
  box-shadow: 0 3px 14px rgba(30, 92, 60, 0.30);
}
.pill-btn--solid:hover {
  background: var(--tone-cta-hover);
  color: var(--tone-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 92, 60, 0.36);
}
.pill-btn--ghost {
  background: transparent;
  color: var(--tone-white);
  border: 2px solid rgba(255,255,255,0.65);
}
.pill-btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--tone-white);
  color: var(--tone-white);
}
.pill-btn--block {
  width: 100%;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-ribbon {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--tone-dark);
  border-top: 3px solid var(--tone-support);
  padding: 1rem var(--wrap-px);
  animation: slideUp 0.35s ease;
}
.cookie-ribbon[hidden] { display: none; }
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.cookie-ribbon__inner {
  max-width: var(--wrap-max);
  margin-inline: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}
.cookie-ribbon__text {
  font-size: 0.9rem;
  color: #c8d9d0;
  flex: 1 1 260px;
  line-height: 1.55;
}
.cookie-ribbon__text a { color: var(--tone-pastel); text-decoration: underline; }
.cookie-ribbon__btns { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.c-btn {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.86rem;
  padding: 0.55em 1.4em;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--transition);
}
.c-btn--accept {
  background: var(--tone-support);
  color: var(--tone-white);
}
.c-btn--accept:hover { background: var(--tone-main); }
.c-btn--decline {
  background: transparent;
  color: #c8d9d0;
  border: 1px solid #4a6a5a;
}
.c-btn--decline:hover { border-color: var(--tone-pastel); color: var(--tone-pastel); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--tone-white);
  border-bottom: 1px solid var(--tone-border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-soft);
}
.hdr-inner {
  max-width: var(--wrap-max);
  margin-inline: auto;
  padding-inline: var(--wrap-px);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hdr-logo { display: flex; align-items: center; }
.hdr-nav { display: flex; align-items: center; gap: 0.25rem; }
.hdr-nav__list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.hdr-nav__link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--tone-dark);
  padding: 0.45em 0.9em;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.hdr-nav__link:hover {
  background: var(--tone-light);
  color: var(--tone-main);
}
.hdr-nav__link--cta {
  background: var(--tone-cta);
  color: var(--tone-white) !important;
  padding: 0.45em 1.1em;
  border-radius: var(--radius-xl);
  margin-left: 0.4rem;
}
.hdr-nav__link--cta:hover {
  background: var(--tone-cta-hover);
  color: var(--tone-white);
}
.hdr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: 0.5rem;
}
.hdr-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--tone-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(520px, 80vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20,50,35,0.78) 0%,
    rgba(30,92,60,0.60) 45%,
    rgba(42,112,80,0.25) 100%
  );
}
.hero__body {
  position: relative;
  z-index: 2;
  max-width: var(--wrap-max);
  margin-inline: auto;
  padding-inline: var(--wrap-px);
  padding-block: 5rem 4rem;
  max-width: 640px;
  margin-left: clamp(1.25rem, 8vw, 10rem);
}
.hero__pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.38em 1em;
  border-radius: var(--radius-xl);
  background: rgba(168, 213, 181, 0.22);
  color: var(--tone-pale);
  border: 1px solid rgba(168, 213, 181, 0.4);
  backdrop-filter: blur(4px);
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--tone-white);
  margin-bottom: 1.2rem;
}
.hero__title em {
  font-style: normal;
  color: var(--tone-pastel);
}
.hero__lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.86);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}
.hero__legal-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
}

/* ============================================================
   AWARENESS
   ============================================================ */
.awareness {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--tone-white);
}
.awareness__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.awareness__text-col { order: 1; }
.awareness__img-col {
  order: 2;
  position: relative;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1rem;
  align-items: start;
}
.aware-img {
  border-radius: var(--radius-lg);
  object-fit: cover;
  width: 100%;
}
.aware-img--main {
  height: 360px;
  box-shadow: var(--shadow-lift);
}
.aware-img--float {
  height: 220px;
  margin-top: 3rem;
  box-shadow: var(--shadow-card);
}
.stat-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.stat-chip {
  background: var(--tone-light);
  border: 1px solid var(--tone-border);
  border-radius: var(--radius-md);
  padding: 1.1rem;
}
.stat-chip strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--tone-main);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-chip span {
  font-size: 0.82rem;
  color: var(--tone-muted);
  line-height: 1.45;
}

/* ============================================================
   LIFESTYLE CARDS
   ============================================================ */
.lifestyle {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--tone-bg-alt);
}
.habit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.habit-card {
  background: var(--tone-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.habit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.habit-card__figure {
  height: 180px;
  overflow: hidden;
}
.habit-card__figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.habit-card:hover .habit-card__figure img {
  transform: scale(1.05);
}
.habit-card__body {
  padding: 1.3rem 1.2rem 1.5rem;
}
.habit-card__ico {
  font-size: 1.5rem;
  margin-bottom: 0.55rem;
  display: block;
}
.habit-card__body h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--tone-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.habit-card__body p {
  font-size: 0.87rem;
  color: var(--tone-muted);
  line-height: 1.6;
}

/* ============================================================
   PRODUCT
   ============================================================ */
.product-blk {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--tone-white);
}
.product-blk__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.product-blk__visual { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.product-blk__frame {
  background: var(--tone-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 2px solid var(--tone-border);
  width: 100%;
  max-width: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-blk__frame img { max-height: 320px; object-fit: contain; }
.product-blk__badges {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}
.p-badge {
  background: var(--tone-pale);
  color: var(--tone-dark);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  padding: 0.5em 0.9em;
  border-radius: var(--radius-md);
  line-height: 1.3;
}
.feature-list {
  margin: 1.4rem 0 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.97rem;
  color: #3a5446;
}
.feature-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.3rem; height: 1.3rem;
  min-width: 1.3rem;
  background: var(--tone-pale);
  color: var(--tone-main);
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: 50%;
  margin-top: 0.1rem;
}
.product-disclaimer-box {
  background: #FFF8E7;
  border: 1px solid #E8D4A0;
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  font-size: 0.83rem;
  color: #6B5A2A;
  line-height: 1.55;
  margin-bottom: 1.6rem;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

/* ============================================================
   ROUTINE
   ============================================================ */
.routine {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  background: var(--tone-main);
}
.routine .section-hd { color: var(--tone-white); }
.routine .heading-2 { color: var(--tone-white); }
.routine .heading-2 em { color: var(--tone-pale); }
.routine .eyebrow { color: var(--tone-pastel); }
.routine__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  flex: 1 1 220px;
  max-width: 280px;
  text-align: center;
  padding: 2rem 1.5rem;
}
.step__num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--tone-pale);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.step h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--tone-white);
  margin-bottom: 0.5rem;
}
.step p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.74);
  line-height: 1.6;
}
.step__arrow {
  font-size: 2rem;
  color: var(--tone-pale);
  opacity: 0.5;
  align-self: center;
  padding: 0 0.5rem;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  background: var(--tone-bg-alt);
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.trust-tile {
  background: var(--tone-white);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.4rem;
  text-align: center;
  border: 1px solid var(--tone-border);
  transition: box-shadow var(--transition);
}
.trust-tile:hover { box-shadow: var(--shadow-card); }
.trust-tile__ico {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  display: block;
}
.trust-tile h3 {
  font-family: var(--font-head);
  font-size: 0.97rem;
  font-weight: 800;
  color: var(--tone-dark);
  margin-bottom: 0.5rem;
}
.trust-tile p {
  font-size: 0.86rem;
  color: var(--tone-muted);
  line-height: 1.6;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--tone-white);
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.review-card {
  background: var(--tone-bg-alt);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  border: 1px solid var(--tone-border);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.review-card--accent {
  background: var(--tone-light);
  border-color: var(--tone-pale);
}
.review-card__stars {
  font-size: 1.05rem;
  color: #D4A012;
  letter-spacing: 0.1em;
}
.review-card blockquote p {
  font-size: 0.94rem;
  color: #3a5446;
  line-height: 1.7;
  font-style: italic;
}
.review-card__author {
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px solid var(--tone-border);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.review-card__author strong {
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: var(--tone-dark);
}
.review-card__author span {
  font-size: 0.8rem;
  color: var(--tone-muted);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-sec {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--tone-bg-alt);
}
.faq-stack {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.faq-item {
  background: var(--tone-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--tone-border);
  overflow: hidden;
}
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--tone-dark);
  cursor: pointer;
  transition: background var(--transition);
}
.faq-item__q:hover { background: var(--tone-light); }
.faq-item__q[aria-expanded="true"] {
  background: var(--tone-light);
  color: var(--tone-main);
}
.faq-item__icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--tone-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--tone-main);
  transition: transform var(--transition), background var(--transition);
}
.faq-item__icon::after { content: '+'; line-height: 1; }
.faq-item__q[aria-expanded="true"] .faq-item__icon {
  background: var(--tone-main);
  color: var(--tone-white);
  transform: rotate(45deg);
}
.faq-item__a {
  padding: 0 1.4rem 1.2rem;
  font-size: 0.93rem;
  color: #3a5446;
  line-height: 1.72;
}
.faq-item__a[hidden] { display: none; }
.faq-item__a a { color: var(--tone-main); text-decoration: underline; }

/* ============================================================
   ORDER SECTION
   ============================================================ */
.order-sec {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--tone-white);
}
.order-sec__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.price-display {
  margin: 1.6rem 0;
  background: var(--tone-light);
  border: 2px solid var(--tone-pale);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.price-display__label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tone-muted);
}
.price-display__value {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--tone-main);
  line-height: 1.1;
}
.price-display__note {
  font-size: 0.82rem;
  color: var(--tone-muted);
}
.order-assurances {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.order-assurances li {
  font-size: 0.9rem;
  color: #3a5446;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.order-assurances li span { color: var(--tone-support); font-weight: 700; }

.order-form {
  background: var(--tone-bg-alt);
  border: 1px solid var(--tone-border);
  border-radius: var(--radius-xl);
  padding: 2rem 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.field-group label {
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--tone-dark);
}
.field-group input,
.field-group select {
  width: 100%;
  padding: 0.75em 1em;
  border: 1.5px solid var(--tone-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--tone-dark);
  background: var(--tone-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.field-group input:focus,
.field-group select:focus {
  outline: none;
  border-color: var(--tone-support);
  box-shadow: 0 0 0 3px rgba(91, 168, 122, 0.18);
}
.field-group input.is-invalid { border-color: #c0392b; }
.field-error {
  font-size: 0.78rem;
  color: #c0392b;
  min-height: 1em;
}
.field-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.field-check input[type="checkbox"] {
  width: 17px; height: 17px;
  min-width: 17px;
  margin-top: 0.18rem;
  accent-color: var(--tone-main);
  cursor: pointer;
}
.field-check label {
  font-size: 0.83rem;
  color: var(--tone-muted);
  line-height: 1.5;
  cursor: pointer;
}
.field-check label a { text-decoration: underline; color: var(--tone-main); }
.form-rgpd-note {
  font-size: 0.76rem;
  color: var(--tone-muted);
  text-align: center;
  line-height: 1.5;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-sec {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  background: var(--tone-light);
  text-align: center;
}
.contact-sec__inner { max-width: 700px; margin-inline: auto; }
.contact-sec .heading-2 { margin-bottom: 1.6rem; }
.contact-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--tone-dark);
  background: var(--tone-white);
  border: 1px solid var(--tone-border);
  border-radius: var(--radius-lg);
  padding: 0.9rem 1.3rem;
  text-align: left;
  text-decoration: none;
  transition: box-shadow var(--transition);
}
.contact-item:hover { box-shadow: var(--shadow-card); color: var(--tone-dark); }
.contact-item__ico { font-size: 1.1rem; flex-shrink: 0; }
.contact-hours {
  font-size: 0.84rem;
  color: var(--tone-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--tone-dark);
  color: #9ab8a8;
  padding-block: clamp(3rem, 5vw, 4.5rem) 2rem;
}
.footer__top {
  display: flex;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer__brand { flex: 1 1 220px; }
.footer__tagline {
  margin-top: 0.8rem;
  font-size: 0.86rem;
  color: #7a9e8a;
  line-height: 1.6;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 4rem);
  flex: 1 1 auto;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 140px;
}
.footer__col h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c8d9d0;
  margin-bottom: 0.2rem;
}
.footer__col a,
.footer__col span {
  font-size: 0.87rem;
  color: #7a9e8a;
  text-decoration: none;
  transition: color var(--transition);
  line-height: 1.5;
}
.footer__col a:hover { color: var(--tone-pastel); }
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer__bottom > p:first-child {
  font-family: var(--font-head);
  font-size: 0.84rem;
  color: #7a9e8a;
}
.footer__legal-notice {
  font-size: 0.78rem;
  color: #4a6a5a;
  line-height: 1.6;
  max-width: 860px;
}

/* ============================================================
   LEGAL PAGES SHARED STYLE
   ============================================================ */
.legal-page {
  max-width: 780px;
  margin: 4rem auto;
  padding-inline: var(--wrap-px);
}
.legal-page h1 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--tone-dark);
  margin-bottom: 0.5rem;
}
.legal-page .legal-date {
  font-size: 0.82rem;
  color: var(--tone-muted);
  margin-bottom: 2rem;
}
.legal-page h2 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--tone-dark);
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}
.legal-page p,
.legal-page li {
  font-size: 0.95rem;
  color: #3a5446;
  line-height: 1.75;
  margin-bottom: 0.6rem;
}
.legal-page ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin-bottom: 0.8rem;
}
.legal-page a { color: var(--tone-main); text-decoration: underline; }

/* ============================================================
   SUCCESS PAGE
   ============================================================ */
.success-pg {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem var(--wrap-px);
  background: var(--tone-light);
}
.success-pg__box {
  background: var(--tone-white);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  max-width: 520px;
  box-shadow: var(--shadow-lift);
}
.success-pg__ico { font-size: 3.5rem; margin-bottom: 1rem; }
.success-pg__box h1 {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--tone-dark);
  margin-bottom: 0.8rem;
}
.success-pg__box p {
  color: var(--tone-muted);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .habit-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .awareness__grid { grid-template-columns: 1fr; }
  .awareness__img-col { display: grid; grid-template-columns: 1fr 1fr; }
  .aware-img--float { margin-top: 0; }
  .product-blk__grid { grid-template-columns: 1fr; }
  .product-blk__visual { flex-direction: row; align-items: center; }
  .order-sec__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hdr-nav__list { display: none; flex-direction: column; gap: 0; position: absolute;
    top: 68px; left: 0; right: 0; background: var(--tone-white);
    border-top: 1px solid var(--tone-border); padding: 0.5rem 0 1rem;
    box-shadow: var(--shadow-soft); z-index: 800; }
  .hdr-nav__list.is-open { display: flex; }
  .hdr-nav__link { padding: 0.8em 1.4rem; border-radius: 0; }
  .hdr-nav__link--cta { margin-left: 0; border-radius: 0; }
  .hdr-burger { display: flex; }
  .hero__body { margin-left: 0; }
  .habit-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip__grid { grid-template-columns: 1fr 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .stat-duo { grid-template-columns: 1fr 1fr; }
  .routine__steps { flex-direction: column; align-items: center; }
  .step__arrow { transform: rotate(90deg); }
  .product-blk__visual { flex-direction: column; }
}

@media (max-width: 480px) {
  .habit-grid { grid-template-columns: 1fr; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .awareness__img-col { grid-template-columns: 1fr; }
  .aware-img--float { display: none; }
  .hero__actions { flex-direction: column; }
  .pill-btn { text-align: center; }
  .cookie-ribbon__inner { flex-direction: column; }
  .order-form { padding: 1.4rem; }
}
