/* ===== Vanillor — Gold Standard of Vanilla ===== */

:root {
  --green: #1f3b34;
  --green-deep: #16281f;
  --cream: #f5f0e6;
  --gold: #c49551;
  --gold-light: #d9b06e;
  --dark: #2b211d;
  --ink: #3a332e;

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
video { max-width: 100%; height: auto; display: block; }
.video-cover { object-fit: cover; object-position: center; }

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--green);
  margin: 0 0 20px;
  letter-spacing: 0.02em;
}

h1 { font-size: 3.4rem; line-height: 1.1; }
h2 { font-size: 2.5rem; line-height: 1.2; }
h3 { font-size: 1.6rem; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 14px;
}

p { margin: 0 0 16px; color: var(--ink); }

.lead {
  font-size: 1.15rem;
  color: #55504a;
  max-width: 640px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  font-family: var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--green-deep);
}
.btn-gold:hover { background: var(--gold-light); }
.btn:disabled,
.btn:disabled:hover {
  opacity: 0.6;
  cursor: not-allowed;
  background: var(--gold);
}

.btn-outline {
  background: transparent;
  border-color: var(--cream);
  color: var(--cream);
}
.btn-outline:hover { background: rgba(245,240,230,0.12); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--green);
  color: var(--green);
}
.btn-outline-dark:hover { background: var(--green); color: var(--cream); }

/* ===== Header / Nav ===== */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green);
  border-bottom: 1px solid rgba(196,149,81,0.25);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1180px;
  margin: 0 auto;
}

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

.logo .mark {
  width: 34px;
  height: auto;
  color: var(--gold);
  flex-shrink: 0;
  display: block;
}

.logo .wordmark {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--cream);
  line-height: 1;
}
.logo .wordmark span { color: var(--gold); }

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  color: var(--cream);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--gold);
  border-color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--cream);
}

/* ===== Hero ===== */
.hero {
  background: var(--green);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  min-height: 640px;
  padding: 0;
  display: flex;
  align-items: center;
}

.hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(31,59,52,0.4), rgba(31,59,52,0) 18%);
}

.hero-text {
  position: relative;
  z-index: 1;
  width: 50%;
  box-sizing: border-box;
  padding: 100px 48px 100px clamp(32px, 6vw, 100px);
}

.hero h1 { color: var(--cream); }
.hero h1 em { font-style: italic; color: var(--gold); }

.hero .lead { color: #cfd7d1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border: 1px solid rgba(196,149,81,0.5);
  border-radius: 20px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-badge .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

.hero-actions { display: flex; gap: 18px; margin-top: 34px; flex-wrap: wrap; }

.hero-facts {
  display: flex;
  gap: 40px;
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid rgba(245,240,230,0.15);
}
.hero-facts div strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.1rem;
  color: var(--gold);
  font-weight: 500;
}
.hero-facts div span {
  font-size: 0.92rem;
  color: #b7c2bb;
  line-height: 1.4;
}


/* ===== Sections ===== */
section { padding: 100px 0; }
section.tight { padding: 70px 0; }

.section-cream { background: var(--cream); }
.section-green { background: var(--green); color: var(--cream); }
.section-green h2, .section-green h3 { color: var(--cream); }
.section-green p { color: #d6dcd8; }
.section-dark { background: var(--dark); color: var(--cream); }
.section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark p { color: #d9d2ca; }

.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== Grids ===== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-2[id] { scroll-margin-top: 110px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.grid-contact { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: start; }

/* ===== Cards ===== */
.card {
  background: #fff;
  border: 1px solid rgba(31,59,52,0.08);
  padding: 34px 28px;
  border-radius: 4px;
  text-align: center;
}
.card .icon {
  width: 40px; height: 40px;
  margin: 0 auto 18px;
  color: var(--gold);
}

.product-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(31,59,52,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  text-decoration: none;
  color: inherit;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(31,59,52,0.16); }
.product-card img { aspect-ratio: 4/5; object-fit: contain; background: var(--cream); width: 100%; height: auto; }
.product-card .body { padding: 24px 22px 28px; }
.product-card .tag {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}
.product-card h3 { margin-bottom: 8px; }
.product-card p { font-size: 0.92rem; color: #6b655e; margin-bottom: 0;}

.usp-list { list-style: none; padding: 0; margin: 18px 0 22px; display: flex; flex-direction: column; gap: 9px; }
.usp-list li { position: relative; padding-left: 22px; font-size: 0.95rem; color: #4a453e; line-height: 1.5; }
.usp-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ===== Trusted Clientele ===== */
.clientele-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.client-logo {
  padding: 26px 24px;
  border: 1px solid rgba(31,59,52,0.12);
  border-radius: 6px;
  color: #9a8f83;
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  box-shadow: 0 4px 16px rgba(31,59,52,0.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.client-logo:hover {
  box-shadow: 0 10px 26px rgba(31,59,52,0.12);
  transform: translateY(-3px);
}
.client-logo-img img {
  height: 96px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* ===== Quality seal ===== */
.seal-badges { display: flex; gap: 46px; flex-wrap: wrap; margin-top: 30px; }
.seal-badge { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; max-width: 160px; }
.seal-badge .icon { width: 34px; height: 34px; color: var(--gold); }
.seal-badge span { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream); }

/* ===== Footer ===== */
footer.site-footer {
  background: var(--green-deep);
  color: #cfd7d1;
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(196,149,81,0.2);
}
.footer-grid h4 {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo .mark { width: 28px; height: auto; color: var(--gold); flex-shrink: 0; display: block; }
.footer-logo .wordmark { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; color: var(--cream); letter-spacing: 0.14em; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 0.8rem;
  color: #8fa098;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal-links a:hover { color: var(--gold); }

/* ===== Page hero (inner pages) ===== */
.page-hero {
  background: var(--green);
  color: var(--cream);
  padding: 70px 0 60px;
  text-align: center;
}
.page-hero h1 { color: var(--cream); }
.nowrap-desktop { white-space: nowrap; }
@media (max-width: 900px) { .nowrap-desktop { white-space: normal; } }
.page-hero .lead { color: #cfd7d1; margin: 0 auto; }

/* ===== Forms ===== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-field { margin-bottom: 22px; }
.form-field.full { grid-column: 1 / -1; }
label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
input, select, textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(31,59,52,0.2);
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 1rem;
  background: #fff;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}
textarea { resize: vertical; min-height: 130px; }

.contact-info-card {
  background: var(--green);
  color: var(--cream);
  padding: 44px 38px;
  border-radius: 6px;
}
.contact-info-card h3 { color: var(--cream); }
.contact-row { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-row .icon { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.contact-row strong { display: block; color: var(--cream); font-size: 0.95rem; margin-bottom: 3px; }
.contact-row span { color: #cfd7d1; font-size: 0.9rem; }

.form-success {
  display: none;
  background: #eaf1ec;
  border: 1px solid var(--green);
  color: var(--green);
  padding: 16px 20px;
  border-radius: 4px;
  margin-bottom: 24px;
  font-size: 0.92rem;
}

.form-error {
  display: none;
  background: #fbeceb;
  border: 1px solid #b3453c;
  color: #8a2f28;
  padding: 16px 20px;
  border-radius: 4px;
  margin-bottom: 24px;
  font-size: 0.92rem;
}

.botcheck-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.consent-field { margin-bottom: 20px; }
.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.consent-checkbox input {
  width: auto;
  margin: 3px 0 0;
  flex-shrink: 0;
  accent-color: var(--gold);
}
.consent-checkbox span {
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.5;
}
.consent-checkbox a { text-decoration: underline; color: var(--green); }

/* ===== Cookie consent banner ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--green-deep);
  color: var(--cream);
  border-top: 1px solid rgba(196,149,81,0.35);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.25);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 32px;
  align-items: center;
}
.cookie-banner-inner-simple {
  grid-template-columns: 1.6fr auto;
}
.cookie-banner-text h2 {
  color: var(--cream);
  font-size: 1.2rem;
  margin: 0 0 8px;
}
.cookie-banner-text p {
  color: #cfd7d1;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.6;
}
.cookie-banner-text a { color: var(--gold); text-decoration: underline; }

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-toggle-label {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.cookie-pill {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(196,149,81,0.5);
  border-radius: 20px;
  padding: 3px 10px;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
  cursor: pointer;
}
.cookie-switch input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.cookie-switch-track {
  position: absolute;
  inset: 0;
  background: rgba(245,240,230,0.25);
  border-radius: 20px;
  transition: background 0.2s ease;
}
.cookie-switch-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cream);
  transition: transform 0.2s ease;
}
.cookie-switch input:checked + .cookie-switch-track { background: var(--gold); }
.cookie-switch input:checked + .cookie-switch-track .cookie-switch-thumb { transform: translateX(18px); }
.cookie-switch input:focus-visible + .cookie-switch-track { outline: 2px solid var(--gold); outline-offset: 2px; }

.cookie-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}
.cookie-banner-actions .btn {
  padding: 12px 20px;
  justify-content: center;
  white-space: nowrap;
}
.cookie-banner-actions .btn-outline-dark {
  border-color: var(--cream);
  color: var(--cream);
}
.cookie-banner-actions .btn-outline-dark:hover { background: rgba(245,240,230,0.12); color: var(--cream); }

/* ===== Cookie preferences modal ===== */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.cookie-modal[hidden] { display: none; }
.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22,40,31,0.55);
}
.cookie-modal-panel {
  position: relative;
  z-index: 1;
  background: var(--green-deep);
  color: var(--cream);
  border: 1px solid rgba(196,149,81,0.3);
  border-radius: 8px;
  max-width: 620px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 44px 38px 34px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}
.cookie-modal-panel h2 {
  color: var(--cream);
  font-size: 1.5rem;
  margin: 0 0 12px;
}
.cookie-modal-intro {
  color: #cfd7d1;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 28px;
}
.cookie-modal-intro a { color: var(--gold); text-decoration: underline; }
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: var(--cream);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
}
.cookie-modal-close:hover { background: rgba(245,240,230,0.12); }

.cookie-category {
  padding: 18px 0;
  border-top: 1px solid rgba(196,149,81,0.2);
}
.cookie-category:first-of-type { border-top: none; padding-top: 0; }
.cookie-category-desc {
  color: #cfd7d1;
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 8px 0 0;
}

.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.cookie-modal-actions .btn {
  flex: 1 1 auto;
  justify-content: center;
  padding: 12px 18px;
  white-space: nowrap;
}
.cookie-modal-actions .btn-outline-dark {
  border-color: var(--cream);
  color: var(--cream);
}
.cookie-modal-actions .btn-outline-dark:hover { background: rgba(245,240,230,0.12); color: var(--cream); }

.cookie-reset-link {
  display: block;
  margin: 18px auto 0;
  background: none;
  border: none;
  color: #b7c2bb;
  font-size: 0.8rem;
  text-decoration: underline;
  letter-spacing: 0.02em;
  cursor: pointer;
  padding: 6px;
}
.cookie-reset-link:hover { color: var(--gold); }

/* ===== Floating cookie preferences badge ===== */
.cookie-fab {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 900;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--gold);
  border: 1px solid rgba(196,149,81,0.4);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cookie-fab:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,0,0,0.35); }
.cookie-fab[hidden] { display: none; }

/* =====================================================================
   Utility classes — replace what used to be inline style="" attributes,
   so the CSP style-src directive can drop 'unsafe-inline'. Grouped by kind;
   a few are compound selectors (e.g. .icon.icon-lg) specifically so they
   win the specificity tie-break against existing compound rules like
   .card .icon, matching what the inline styles they replace used to force.
   ===================================================================== */

/* Max-width */
.max-w-420 { max-width: 420px; }
.max-w-620 { max-width: 620px; }
.max-w-640 { max-width: 640px; }
.max-w-680 { max-width: 680px; }
.max-w-720 { max-width: 720px; }
.max-w-760 { max-width: 760px; }

/* Margin */
.mb-0 { margin-bottom: 0; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.mb-54 { margin-bottom: 54px; }
.mb-60 { margin-bottom: 60px; }
.mb-90 { margin-bottom: 90px; }
.mt-10 { margin-top: 10px; }
.mt-50 { margin-top: 50px; }

/* Font size */
.fs-085 { font-size: 0.85rem; }
.fs-088 { font-size: 0.88rem; }
.fs-09 { font-size: 0.9rem; }
.fs-11 { font-size: 1.1rem; }
.fs-115 { font-size: 1.15rem; }
.fs-12 { font-size: 1.2rem; }
.fs-15 { font-size: 1.5rem; }

/* Color */
.text-gold { color: var(--gold); }
.text-cream { color: var(--cream); }
.text-muted-green { color: #d6dcd8; }

/* Layout / misc */
.rounded { border-radius: 6px; }
.product-photo { max-width: 380px; max-height: 560px; width: auto; height: auto; margin: 0 auto; }
.underline { text-decoration: underline; }
.order-1 { order: 1; }
.order-2 { order: 2; }
.center-text { text-align: center; }
.py-120 { padding: 120px 0; }
.bg-cream-alt { background: #efe9db; }
.bg-green-solid { background: var(--green); }
.border-b-soft { border-bottom: 1px solid rgba(31,59,52,0.08); }
.list-indent { margin: 0 0 16px; padding-left: 20px; }

/* Compound components (named for what they represent, not their CSS) */
.icon.icon-lg { width: 56px; height: 64px; }
.footer-tagline { color: #9fb0a7; font-size: 0.9rem; max-width: 280px; }
.legal-disclaimer { margin-top: 40px; font-size: 0.85rem; color: #8a8378; }
.stat-number { color: var(--gold); font-size: 2.6rem; margin-bottom: 2px; }
.card-outline-gold { background: transparent; border: 1px solid rgba(196,149,81,0.3); }
.policy-h2 { font-size: 1.7rem; margin-top: 40px; }

/* Policy table (Cookie Policy page) */
.table-scroll { overflow-x: auto; margin: 16px 0; }
.policy-table { width: 100%; min-width: 480px; border-collapse: collapse; font-size: 0.9rem; }
.table-head-row { border-bottom: 1px solid rgba(31,59,52,0.15); text-align: left; }
.table-cell { padding: 8px 12px; }
.table-cell-first { padding: 8px 12px 8px 0; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .grid-2, .grid-contact { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  nav.main-nav { display: none; }
  .nav-toggle { display: flex; }
  .cookie-banner-inner {
    grid-template-columns: 1fr;
    padding: 22px 20px;
    max-height: 80vh;
    overflow-y: auto;
  }
  .cookie-banner-actions { flex-direction: column-reverse; }
  .cookie-modal { padding: 0; align-items: flex-end; }
  .cookie-modal-panel {
    max-width: none;
    width: 100%;
    max-height: 90vh;
    border-radius: 12px 12px 0 0;
    padding: 36px 22px 26px;
  }
  .cookie-modal-actions { flex-direction: column-reverse; }
  .cookie-modal-actions .btn { width: 100%; }
  .cookie-fab { left: 14px; bottom: 14px; width: 42px; height: 42px; }
}

@media (max-width: 900px) {
  nav.main-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--green);
    padding: 20px 32px 30px;
    border-bottom: 1px solid rgba(196,149,81,0.25);
  }
  nav.main-nav.open ul { flex-direction: column; gap: 20px; }
}

@media (max-width: 600px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  section { padding: 70px 0; }
  .container { padding: 0 20px; }
  .seal-badges { gap: 28px; }
  .hero { display: block; min-height: 0; }
  .hero-media { position: static; width: 100%; height: 320px; }
  .hero-media::after { display: none; }
  .hero-text { width: 100%; padding: 56px 24px 64px; }
}
