/* ============================================
   Emanuela Mencarelli — Life & Business Coach
   Palette: Rosso / Bianco / Nero
   ============================================ */

:root {
  --white:      #ffffff;
  --off-white:  #f7f6f5;
  --paper:      #ffffff;
  --line:       #e7e4e2;
  --black:      #0c0c0c;
  --black-2:    #161616;
  --ink:        #141414;
  --ink-soft:   #4a4744;
  --red:        #e10600;
  --red-dark:   #a80400;
  --red-soft:   #ff3b30;

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Work Sans", -apple-system, sans-serif;

  --container: 1180px;
  --radius: 16px;
  --ease: cubic-bezier(.22,.9,.25,1);
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--black);
  color: var(--white);
  padding: 12px 20px;
  z-index: 999;
}
.skip-link:focus { left: 16px; top: 16px; }

/* grain texture overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: .035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12.5px;
  color: var(--red);
  margin: 0 0 14px;
}
.eyebrow-light { color: var(--red-soft); }

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin: 0 0 22px;
  letter-spacing: -.01em;
  color: var(--black);
}
.section-title-light { color: var(--white); }

p { color: var(--ink-soft); }
.light-copy { color: #cfcccb; }

em { font-style: italic; color: var(--red); }
.section-title-light em, .light-copy em { color: var(--red-soft); font-style: italic; }

.text-link {
  display: inline-block;
  margin-top: 6px;
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
  transition: opacity .2s var(--ease), color .2s var(--ease);
}
.text-link:hover { color: var(--red); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--black);
  border-color: rgba(12,12,12,.25);
}
.btn-ghost:hover { border-color: var(--black); transform: translateY(-2px); }

.btn-small { padding: 11px 22px; font-size: 13.5px; }
.btn-full { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 46px; width: auto; }

.main-nav { display: flex; gap: 30px; }
.main-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--red);
  transition: right .25s var(--ease);
}
.main-nav a:hover { color: var(--black); }
.main-nav a:hover::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 76px 0 0;
  overflow: hidden;
  background:
    radial-gradient(1100px 480px at 82% -10%, rgba(225,6,0,.08), transparent 60%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 48px;
  padding-bottom: 64px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -.015em;
  margin: 0 0 26px;
  color: var(--black);
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
}
.hero-lede {
  max-width: 46ch;
  font-size: 18px;
  margin: 0 0 34px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-figure {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-photo-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid var(--black);
  box-shadow: 0 30px 60px -24px rgba(0,0,0,.4);
}
.hero-photo { width: 100%; height: 100%; object-fit: cover; }
.hero-frame-accent {
  position: absolute;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
  top: 26px;
  left: 26px;
  border-radius: var(--radius);
  background: var(--red);
}

.stat-strip-wrap { background: var(--black); }
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px 32px;
}
.stat { text-align: center; padding: 0 10px; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--red-soft);
  font-weight: 600;
}
.stat-label {
  display: block;
  font-size: 12.5px;
  color: #d8d5d3;
  letter-spacing: .03em;
  margin-top: 4px;
}

/* ---------- Sections ---------- */
.section { padding: 108px 0; }
.section-tint { background: var(--off-white); }
.section-dark { background: var(--black); }
.section-head { max-width: 640px; margin-bottom: 56px; }

/* Chi sono */
.chi-sono-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.chi-sono-visual { position: relative; }
.chi-sono-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid var(--black);
}
.photo-tag {
  position: absolute;
  left: 22px;
  bottom: -18px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: 0 14px 30px -12px rgba(225,6,0,.55);
}
.chi-sono-copy p { margin-bottom: 18px; }

/* Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.pillar-card {
  background: var(--paper);
  padding: 38px 32px;
  transition: background .25s var(--ease);
}
.pillar-card:hover { background: var(--off-white); }
.pillar-icon { width: 46px; height: 46px; object-fit: contain; margin-bottom: 14px; }
.pillar-num {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--red);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 14px;
}
.pillar-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
  margin: 0 0 10px;
  color: var(--black);
}
.pillar-card p { font-size: 14.5px; margin: 0; }

/* FORZA method */
.forza-intro { margin-top: -10px; max-width: 50ch; }
.forza-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}
.forza-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,.08);
}
.forza-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.forza-card figcaption { padding: 18px 16px 22px; }
.forza-letter {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--red-soft);
  font-size: 26px;
  line-height: 1;
  margin-bottom: 6px;
}
.forza-word {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 8px;
}
.forza-desc { display: block; font-size: 12.5px; color: #b8b5b3; line-height: 1.5; }

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px 44px;
}
.cta-banner p {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  max-width: 420px;
}
.cta-banner .btn-primary { background: var(--black); }
.cta-banner .btn-primary:hover { background: #000; }

/* Libro */
.libro-grid {
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  gap: 72px;
  align-items: center;
}
.book-cover-img {
  max-width: 300px;
  margin: 0 auto;
  border-radius: 6px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.45);
  border: 1px solid rgba(0,0,0,.08);
}
.libro-copy p { margin-bottom: 18px; }

/* Testimonianze */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.quote-card {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  position: relative;
}
.quote-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--red);
  margin-bottom: 16px;
}
.quote-avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
}
.quote-card blockquote {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
}
.quote-card figcaption {
  font-size: 13px;
  font-weight: 700;
  color: var(--red-dark);
  letter-spacing: .02em;
}

/* Galleria */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery-item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-wide { grid-column: span 2; grid-row: span 2; }

/* Contatti */
.contatti-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-list li { display: flex; flex-direction: column; gap: 2px; }
.contact-label { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; }
.contact-list a { color: var(--black); font-size: 18px; font-weight: 600; text-decoration: none; }
.contact-list a:hover { color: var(--red); }

.social-row { display: flex; gap: 12px; margin-top: 8px; }
.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(12,12,12,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  color: var(--black);
  transition: all .25s var(--ease);
}
.social-row a:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.social-row a svg { width: 18px; height: 18px; }
.social-row-footer a { border-color: rgba(255,255,255,.25); color: var(--white); }
.social-row-footer a:hover { background: var(--red); border-color: var(--red); }

.contact-form {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid var(--line);
}
.hidden-field { position: absolute; left: -9999px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field span { font-size: 12.5px; font-weight: 700; letter-spacing: .03em; color: var(--ink-soft); }
.field input, .field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 15px;
  border-radius: 10px;
  border: 1.5px solid rgba(12,12,12,.18);
  background: var(--white);
  color: var(--ink);
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-note { font-size: 12.5px; color: var(--ink-soft); margin: 0; text-align: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: #d8d5d3;
  padding: 56px 0 34px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.footer-logo { height: 44px; width: auto; filter: invert(1) brightness(1.6); }
.footer-tagline { font-family: var(--font-display); font-style: italic; color: var(--red-soft); font-size: 18px; margin: 0; }
.footer-links { display: flex; gap: 26px; }
.footer-links a { color: #d8d5d3; text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: var(--red-soft); }
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,.45); margin-top: 6px; }
.footer-legal { font-size: 12.5px; margin: 18px 0 0; }
.footer-legal a { color: #d8d5d3; text-decoration: underline; text-underline-offset: 2px; }
.footer-legal a:hover { color: var(--red-soft); }

/* ---------- Form extras: consent checkbox + status ---------- */
.field-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.field-check input[type="checkbox"] {
  margin-top: 3px;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  accent-color: var(--red);
}
.field-check span { font-size: 13px; font-weight: 400; color: var(--ink-soft); letter-spacing: normal; text-transform: none; }
.field-check a { color: var(--black); font-weight: 600; }
.field-check a:hover { color: var(--red); }
.cf-turnstile { margin: 2px auto 0; }

.form-status { min-height: 18px; font-size: 13.5px; text-align: center; margin: 0; }
.form-status-pending { color: var(--ink-soft); }
.form-status-ok { color: #157a3e; font-weight: 600; }
.form-status-error { color: var(--red-dark); font-weight: 600; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3000;
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.35);
  padding: 22px 24px;
}
.cookie-banner-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; justify-content: space-between; }
.cookie-banner-text { margin: 0; font-size: 13.5px; color: var(--ink-soft); flex: 1 1 320px; }
.cookie-banner-text a { color: var(--black); font-weight: 600; }
.cookie-banner-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-panel { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 14px; }
.cookie-panel[hidden] { display: none; }
.cookie-panel-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.cookie-panel-row strong { font-size: 13.5px; }
.cookie-panel-row p { margin: 2px 0 0; font-size: 12.5px; }
.cookie-panel-row input[type="checkbox"] { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--red); flex-shrink: 0; }

/* ---------- Legal pages ---------- */
.legal-page { padding: 64px 0 100px; }
.legal-page .wrap { max-width: 820px; }
.legal-updated { color: var(--ink-soft); font-size: 13.5px; margin-bottom: 40px; }
.legal-page h2 { font-family: var(--font-display); font-weight: 500; font-size: 24px; margin: 44px 0 14px; color: var(--black); }
.legal-page h2:first-of-type { margin-top: 0; }
.legal-page h3 { font-family: var(--font-body); font-weight: 700; font-size: 15.5px; margin: 26px 0 8px; color: var(--black); }
.legal-page p, .legal-page li { color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.legal-page ul { padding-left: 20px; }
.legal-page li { margin-bottom: 6px; }
.legal-page strong { color: var(--black); }
.legal-page a { color: var(--red-dark); }
.legal-box { background: var(--off-white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 28px; margin: 28px 0; }
.legal-box p { margin: 4px 0; }
.cookie-table { width: 100%; border-collapse: collapse; margin: 18px 0 28px; font-size: 13.5px; }
.cookie-table th, .cookie-table td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--line); }
.cookie-table th { color: var(--black); font-weight: 700; background: var(--off-white); }
.cookie-table td { color: var(--ink-soft); }

/* ---------- Recensioni page ---------- */
.review-hero { padding: 80px 0 40px; text-align: center; }
.review-hero .eyebrow { justify-content: center; }
.review-gate {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 640px;
  margin: 40px auto 0;
}
.review-gate-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 34px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease);
}
.review-gate-btn:hover { transform: translateY(-3px); }
.review-gate-icon { font-size: 30px; }
.review-gate-positive { background: var(--red); color: var(--white); }
.review-gate-positive:hover { background: var(--red-dark); }
.review-gate-negative { background: var(--white); color: var(--black); border-color: rgba(12,12,12,.2); }
.review-gate-negative:hover { border-color: var(--black); }

.review-disclaimer { max-width: 640px; margin: 40px auto 0; font-size: 12.5px; color: var(--ink-soft); text-align: center; line-height: 1.6; }

.review-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: rgba(12,12,12,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.review-modal-overlay[hidden] { display: none; }
.review-modal {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
}
.review-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
  padding: 6px;
}
.review-modal h2 { font-family: var(--font-display); font-weight: 500; font-size: 22px; margin: 0 0 6px; text-align: center; }
.review-modal-sub { text-align: center; font-size: 13.5px; color: var(--ink-soft); margin: 0 0 22px; }

.star-rating { display: flex; flex-direction: row-reverse; justify-content: center; gap: 4px; margin-bottom: 20px; }
.star-rating input { position: absolute; opacity: 0; width: 0; height: 0; }
.star-rating label {
  font-size: 30px;
  line-height: 1;
  color: #d8d5d3;
  cursor: pointer;
  transition: color .15s var(--ease);
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label { color: var(--red); }

.thanks-page { padding: 110px 0 120px; text-align: center; }
.thanks-icon { font-size: 52px; margin-bottom: 18px; }
.thanks-page .section-title { max-width: 620px; margin-left: auto; margin-right: auto; }
.thanks-page p { max-width: 560px; margin: 0 auto 18px; }
.thanks-actions { display: flex; gap: 16px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }

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

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .forza-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item-wide { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-figure { order: -1; padding-top: 20px; }
  .hero-photo-frame { max-width: 300px; }
  .hero-frame-accent { max-width: 300px; top: 16px; left: 16px; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .chi-sono-grid, .libro-grid, .contatti-grid { grid-template-columns: 1fr; gap: 40px; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .quotes-grid { grid-template-columns: 1fr 1fr; }
  .forza-grid { grid-template-columns: repeat(2, 1fr); }
  .review-gate { grid-template-columns: 1fr 1fr; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 8px 32px 20px;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: flex; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .section { padding: 76px 0; }
  .pillars-grid { grid-template-columns: 1fr; }
  .forza-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .quotes-grid { grid-template-columns: 1fr; }
  .review-gate { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .header-actions .btn-small { display: none; }
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; padding: 18px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1 1 auto; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
}
