/* ============================================
   Novalika / Hemoril — Stylesheet
   ============================================ */

:root {
  --c-bg: #f6f9f6;
  --c-bg-alt: #ffffff;
  --c-bg-tint: #eaf3ec;
  --c-surface: #ffffff;
  --c-ink: #15291f;
  --c-ink-soft: #3a4a42;
  --c-muted: #6b7d73;
  --c-line: #d8e3db;
  --c-accent: #1f6f4a;
  --c-accent-dark: #134d33;
  --c-accent-soft: #c7e3d1;
  --c-azure: #4ea3c9;
  --c-azure-soft: #d5ecf5;
  --c-warn: #b85a3a;
  --shadow-sm: 0 1px 2px rgba(20, 50, 35, .06), 0 1px 3px rgba(20, 50, 35, .04);
  --shadow-md: 0 6px 18px rgba(20, 50, 35, .08);
  --shadow-lg: 0 20px 40px -12px rgba(20, 50, 35, .18);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 22px;
  --container: 1180px;
  --transition: .28s cubic-bezier(.4, 0, .2, 1);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--c-accent-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-accent); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--c-ink);
  letter-spacing: -.01em;
  line-height: 1.18;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); font-weight: 450; }
h2 { font-size: clamp(1.65rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; font-weight: 500; }
p  { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-weight: 600;
  margin-bottom: .9rem;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: .96rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  font-family: inherit;
}
.btn-primary {
  background: var(--c-accent);
  color: #fff;
  box-shadow: 0 4px 12px rgba(31, 111, 74, .25);
}
.btn-primary:hover {
  background: var(--c-accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(31, 111, 74, .32);
}
.btn-ghost {
  background: transparent;
  color: var(--c-accent-dark);
  border-color: var(--c-line);
}
.btn-ghost:hover {
  background: var(--c-bg-tint);
  border-color: var(--c-accent-soft);
}

/* ============================================
   Header / Navigation
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(216, 227, 219, .6);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.32rem;
  letter-spacing: -.01em;
  color: var(--c-ink);
  font-weight: 500;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-azure) 110%);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: .85rem;
  box-shadow: inset 0 -8px 14px rgba(0,0,0,.12);
}
.brand small {
  font-family: var(--font-body);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-muted);
  display: block;
  line-height: 1;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  display: inline-block;
  padding: 9px 14px;
  color: var(--c-ink-soft);
  font-size: .95rem;
  font-weight: 500;
  border-radius: 8px;
  position: relative;
}
.nav-menu a:hover { color: var(--c-accent-dark); background: var(--c-bg-tint); }
.nav-menu a.active { color: var(--c-accent-dark); }
.nav-menu a.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--c-accent);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--c-line);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--c-ink);
  border-radius: 2px;
  position: relative;
  transition: var(--transition);
}
.nav-toggle span::before { position: absolute; top: -6px; left: 0; }
.nav-toggle span::after  { position: absolute; top:  6px; left: 0; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: rotate(45deg); top: 0; }
.nav-toggle.is-open span::after  { transform: rotate(-45deg); top: 0; }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  padding: 90px 0 110px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(199, 227, 209, .55), transparent 42%),
    radial-gradient(circle at 88% 78%, rgba(213, 236, 245, .45), transparent 50%);
  z-index: 0;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.hero-copy h1 { margin-bottom: .55em; }
.hero-copy h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-accent-dark);
}
.hero-lead {
  font-size: 1.12rem;
  color: var(--c-ink-soft);
  max-width: 480px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--c-line);
  flex-wrap: wrap;
}
.hero-meta div { min-width: 130px; }
.hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--c-accent-dark);
  font-weight: 500;
}
.hero-meta span {
  font-size: .82rem;
  color: var(--c-muted);
  letter-spacing: .04em;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  transform: rotate(-1.2deg);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}
.hero-tag {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--c-surface);
  padding: 16px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  transform: rotate(1.2deg);
  width: 320px;
  max-width: calc(100% + 20px);
  z-index: 2;
}
.hero-tag-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 4px var(--c-accent-soft);
  flex-shrink: 0;
}
.hero-tag span {
  font-size: .9rem;
  color: var(--c-ink-soft);
  line-height: 1.45;
  text-wrap: balance;
}

/* ============================================
   Sections — generic
   ============================================ */
section { padding: 80px 0; }
.section-head { max-width: 680px; margin-bottom: 50px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--c-ink-soft); font-size: 1.05rem; }

/* ============================================
   Product showcase
   ============================================ */
.product-showcase {
  background: var(--c-bg-alt);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.product-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.product-image-wrap {
  position: relative;
  padding: 40px;
  background: linear-gradient(160deg, var(--c-bg-tint) 0%, var(--c-azure-soft) 100%);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  aspect-ratio: 1;
}
.product-image-wrap::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(31, 111, 74, .25);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
}
.product-image-wrap img {
  max-height: 100%;
  width: auto;
  filter: drop-shadow(0 16px 30px rgba(20, 50, 35, .18));
  transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}
.product-image-wrap:hover img { transform: translateY(-8px) scale(1.02); }

.product-info .eyebrow { color: var(--c-azure); }
.product-info h2 { margin-bottom: .5em; }
.product-features {
  list-style: none;
  padding: 0;
  margin: 28px 0 32px;
  display: grid;
  gap: 14px;
}
.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--c-ink-soft);
  font-size: .98rem;
}
.product-features li::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--c-accent-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f6f4a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============================================
   Ingredients / Info cards (asymmetric)
   ============================================ */
.info {
  background: var(--c-bg);
}
.info-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.info-card {
  background: var(--c-surface);
  padding: 32px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--c-line);
  transition: transform var(--transition), box-shadow var(--transition);
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-accent-soft);
}
.info-card h3 { margin-top: 14px; color: var(--c-accent-dark); }
.info-card p { color: var(--c-ink-soft); margin: 0; font-size: .96rem; }
.info-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--c-bg-tint);
  color: var(--c-accent);
}
.info-card .icon svg { width: 24px; height: 24px; }

.info-card-1 { grid-column: 1 / span 5; }
.info-card-2 { grid-column: 6 / span 4; }
.info-card-3 { grid-column: 10 / span 3; padding: 26px 22px; background: var(--c-bg-tint); border-color: var(--c-accent-soft); }
.info-card-4 { grid-column: 1 / span 4; padding: 26px 22px; background: var(--c-azure-soft); border-color: rgba(78, 163, 201, .3); }
.info-card-5 { grid-column: 5 / span 4; }
.info-card-6 { grid-column: 9 / span 4; }

.info-card-3 h3, .info-card-4 h3 { color: var(--c-ink); }

/* ============================================
   Lifestyle split section
   ============================================ */
.lifestyle {
  background: var(--c-bg-alt);
  position: relative;
}
.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.lifestyle-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
}
.lifestyle-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.lifestyle-img:hover img { transform: scale(1.04); }
.lifestyle-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(45deg, rgba(31, 111, 74, .15), transparent 60%);
}
.lifestyle h2 { max-width: 460px; }
.lifestyle p { color: var(--c-ink-soft); max-width: 480px; }
.lifestyle-points {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 18px;
}
.lifestyle-points li {
  padding-left: 22px;
  position: relative;
  color: var(--c-ink-soft);
  border-left: 2px solid var(--c-accent-soft);
  padding-block: 4px;
}
.lifestyle-points li strong { display: block; color: var(--c-ink); margin-bottom: 2px; font-weight: 600; }

/* ============================================
   FAQ accordion
   ============================================ */
.faq { background: var(--c-bg); }
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--c-accent-soft); }
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  padding: 20px 24px;
  text-align: left;
  font: inherit;
  cursor: pointer;
  color: var(--c-ink);
  font-weight: 500;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.faq-q .plus {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--c-accent);
  border-radius: 1px;
  transition: var(--transition);
}
.faq-q .plus::before { top: 8px; left: 0; right: 0; height: 2px; }
.faq-q .plus::after  { top: 0; bottom: 0; left: 8px; width: 2px; }
.faq-item.is-open .faq-q .plus::after { transform: rotate(90deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 24px;
  color: var(--c-ink-soft);
}
.faq-item.is-open .faq-a { padding-bottom: 22px; }

/* ============================================
   CTA band
   ============================================ */
.cta-band {
  background: linear-gradient(120deg, var(--c-accent-dark) 0%, var(--c-accent) 60%, var(--c-azure) 130%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 60px 60px;
  margin: 80px auto;
  max-width: calc(var(--container) - 44px);
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.cta-band::after {
  content: "";
  position: absolute;
  left: -40px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.cta-band h2 { color: #fff; margin-bottom: .3em; }
.cta-band p { color: rgba(255,255,255,.85); margin: 0; max-width: 520px; }
.cta-band .btn {
  background: #fff;
  color: var(--c-accent-dark);
  position: relative;
  z-index: 1;
}
.cta-band .btn:hover { background: var(--c-bg-tint); transform: translateY(-2px); }

/* ============================================
   Page header (sub-pages)
   ============================================ */
.page-header {
  padding: 70px 0 50px;
  background: linear-gradient(180deg, var(--c-bg-tint) 0%, var(--c-bg) 100%);
  border-bottom: 1px solid var(--c-line);
}
.page-header .eyebrow { color: var(--c-azure); }
.page-header h1 { max-width: 760px; margin-bottom: .3em; }
.page-header p { color: var(--c-ink-soft); max-width: 620px; font-size: 1.08rem; }
.crumbs {
  display: flex;
  gap: 8px;
  font-size: .85rem;
  color: var(--c-muted);
  margin-bottom: 18px;
}
.crumbs a { color: var(--c-muted); }
.crumbs a:hover { color: var(--c-accent); }

/* ============================================
   About page
   ============================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: start;
}
.about-intro h2 { margin-bottom: .4em; }
.about-intro p { color: var(--c-ink-soft); }
.about-side {
  position: sticky;
  top: 100px;
  background: var(--c-bg-tint);
  padding: 30px;
  border-radius: var(--radius);
  border-left: 3px solid var(--c-accent);
}
.about-side h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--c-accent-dark); }
.about-side ul { list-style: none; padding: 0; margin: 14px 0 0; }
.about-side li { padding: 8px 0; border-top: 1px solid rgba(31, 111, 74, .15); color: var(--c-ink-soft); font-size: .94rem; }
.about-side li:first-child { border-top: 0; }

.values { background: var(--c-bg-alt); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.value {
  padding: 32px 28px;
  border-top: 3px solid var(--c-accent);
  background: var(--c-surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm);
}
.value:nth-child(2) { border-top-color: var(--c-azure); }
.value:nth-child(3) { border-top-color: var(--c-accent-dark); }
.value h3 { color: var(--c-accent-dark); }
.value p { color: var(--c-ink-soft); margin: 0; font-size: .96rem; }

.sustain {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.sustain-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.sustain-img img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   Contact page
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
}
.contact-form {
  background: var(--c-surface);
  padding: 38px;
  border-radius: var(--radius);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--c-ink-soft);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--c-line);
  border-radius: 10px;
  font: inherit;
  font-size: .96rem;
  color: var(--c-ink);
  background: var(--c-bg-alt);
  transition: var(--transition);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(31, 111, 74, .12);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-error {
  display: none;
  color: var(--c-warn);
  font-size: .82rem;
  margin-top: 6px;
}
.field.has-error input,
.field.has-error textarea { border-color: var(--c-warn); }
.field.has-error .field-error { display: block; }
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .88rem;
  color: var(--c-ink-soft);
  margin-bottom: 20px;
}
.consent input { margin-top: 4px; }

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.info-block {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 28px;
}
.info-block h3 { margin: 0 0 14px; font-size: 1rem; text-transform: uppercase; letter-spacing: .12em; color: var(--c-accent-dark); font-family: var(--font-body); font-weight: 600; }
.info-block dl { margin: 0; }
.info-block dt {
  font-size: .8rem;
  color: var(--c-muted);
  margin-top: 12px;
  letter-spacing: .04em;
}
.info-block dt:first-child { margin-top: 0; }
.info-block dd { margin: 2px 0 0; color: var(--c-ink); font-weight: 500; }
.info-block dd a { color: var(--c-ink); font-weight: 500; }

.map-block {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-bg-tint), var(--c-azure-soft));
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  border: 1px solid var(--c-line);
  position: relative;
}
.map-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 111, 74, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 111, 74, .08) 1px, transparent 1px);
  background-size: 28px 28px;
}
.map-pin {
  position: relative;
  z-index: 1;
  text-align: center;
  background: #fff;
  padding: 20px 26px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}
.map-pin .pin-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--c-accent);
  display: grid; place-items: center;
  margin: 0 auto 10px;
  color: #fff;
  box-shadow: 0 0 0 8px rgba(31, 111, 74, .15);
}
.map-pin strong { display: block; color: var(--c-ink); }
.map-pin span { font-size: .88rem; color: var(--c-muted); }

/* ============================================
   Success page
   ============================================ */
.success-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 22px;
}
.success-card {
  max-width: 540px;
}
.success-icon {
  width: 80px; height: 80px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--c-accent-soft);
  display: grid; place-items: center;
  position: relative;
}
.success-icon::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed var(--c-accent);
  opacity: .35;
  animation: spin 18s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.success-icon svg { width: 38px; height: 38px; color: var(--c-accent-dark); }

/* ============================================
   Legal / Static pages
   ============================================ */
.legal-content {
  max-width: 840px;
  margin: 0 auto;
  padding: 60px 0;
}
.legal-content h2 {
  margin-top: 2.2em;
  font-size: 1.5rem;
  padding-top: .8em;
  border-top: 1px solid var(--c-line);
}
.legal-content h2:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
.legal-content h3 { margin-top: 1.6em; font-size: 1.12rem; color: var(--c-accent-dark); }
.legal-content p, .legal-content li { color: var(--c-ink-soft); }
.legal-content ul, .legal-content ol { padding-left: 1.4em; }
.legal-content li { margin-bottom: 8px; }
.legal-meta {
  background: var(--c-bg-tint);
  border-left: 3px solid var(--c-accent);
  padding: 16px 22px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 30px;
  font-size: .92rem;
  color: var(--c-ink-soft);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: #0e1f17;
  color: rgba(255,255,255,.78);
  padding: 70px 0 24px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.site-footer .brand small { color: rgba(255,255,255,.55); }
.site-footer p { font-size: .92rem; line-height: 1.7; color: rgba(255,255,255,.62); }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 10px; }
.footer-list a {
  color: rgba(255,255,255,.7);
  font-size: .94rem;
}
.footer-list a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.65); }
.footer-bottom a:hover { color: #fff; }

/* ============================================
   Cookie banner
   ============================================ */
.cookie-banner {
  position: fixed;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  background: #0e1f17;
  color: #fff;
  padding: 20px 22px;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  transform: translateY(140%);
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
  max-width: 720px;
  margin: 0 auto;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner p { margin: 0; font-size: .92rem; color: rgba(255,255,255,.85); flex: 1; min-width: 240px; line-height: 1.55; }
.cookie-banner p a { color: #fff; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner .btn { padding: 10px 20px; font-size: .9rem; }
.cookie-banner .btn-primary { background: #fff; color: #0e1f17; }
.cookie-banner .btn-primary:hover { background: var(--c-bg-tint); color: #0e1f17; }
.cookie-banner .btn-ghost { color: #fff; border-color: rgba(255,255,255,.3); background: transparent; }
.cookie-banner .btn-ghost:hover { background: rgba(255,255,255,.08); }

/* ============================================
   Mini FAQ on contact page
   ============================================ */
.mini-faq { background: var(--c-bg); padding-top: 0; }
.mini-faq .faq-wrap { margin-top: 30px; }

/* ============================================
   Reveal animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 980px) {
  .hero { padding: 60px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .product-grid { grid-template-columns: 1fr; gap: 40px; }
  .lifestyle-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .about-side { position: static; }
  .sustain { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .values-grid { grid-template-columns: 1fr; gap: 18px; }
  .info-layout { display: flex; flex-direction: column; }
  .info-card { width: 100%; }
  .cta-band {
    grid-template-columns: 1fr;
    padding: 40px 30px;
    margin: 50px 16px;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 720px) {
  section { padding: 60px 0; }
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-top: 1px solid var(--c-line);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }
  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-menu li { width: 100%; }
  .nav-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 8px;
  }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-meta { gap: 18px; }
  .hero-meta div { min-width: 110px; }
  .contact-form { padding: 26px 22px; }
  .cta-band { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .product-image-wrap { padding: 26px; }
  .hero-tag {
    left: 8px;
    right: 8px;
    bottom: -18px;
    width: auto;
    max-width: none;
    padding: 14px 18px;
  }
  .hero-tag span { font-size: .85rem; }
}
