/* ==========================================================================
   Olivetta Pizzeria — site styles
   Palette: brand green (from logo), Italian red, white / warm cream
   ========================================================================== */

:root {
  --green: #209800;
  --green-dark: #176e00;
  --green-tint: #eef8ea;
  --red: #c8102e;
  --red-dark: #a30c25;
  --white: #ffffff;
  --cream: #faf7f0;
  --ink: #1e1e1e;
  --ink-soft: #4b4b4b;
  --line: #e6e2d8;
  --shadow: 0 10px 30px rgba(20, 40, 10, 0.10);
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --container: 1160px;
  --header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }

a { color: var(--green-dark); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--green); }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--red);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus { top: 16px; color: var(--white); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* Tricolour brand stripe -------------------------------------------------- */
.tricolour {
  height: 6px;
  background: linear-gradient(90deg,
    var(--green) 0 33.33%,
    var(--white) 33.33% 66.66%,
    var(--red) 66.66% 100%);
}

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 8px 20px rgba(200, 16, 46, .28); }
.btn-primary:hover { background: var(--red-dark); color: var(--white); }

.btn-green { background: var(--green); color: var(--white); box-shadow: 0 8px 20px rgba(32, 152, 0, .28); }
.btn-green:hover { background: var(--green-dark); color: var(--white); }

.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.85); }
.btn-outline:hover { background: rgba(255,255,255,.12); color: var(--white); }

.btn-ghost { background: var(--white); color: var(--green-dark); border-color: var(--green); }
.btn-ghost:hover { background: var(--green-tint); color: var(--green-dark); }

.btn-lg { padding: 18px 34px; font-size: 1.1rem; }

/* Header ----------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(160%) blur(8px);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(0,0,0,.08); border-color: var(--line); }

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

.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 220px; height: auto; }

.nav-toggle {
  display: none;
  appearance: none;
  background: none;
  border: 2px solid var(--green);
  border-radius: var(--radius-sm);
  width: 46px; height: 42px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle .bars { width: 22px; height: 16px; position: relative; }
.nav-toggle .bars span {
  position: absolute; left: 0; width: 100%; height: 2.5px;
  background: var(--green-dark); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}
.nav-toggle .bars span:nth-child(1) { top: 0; }
.nav-toggle .bars span:nth-child(2) { top: 6.75px; }
.nav-toggle .bars span:nth-child(3) { top: 13.5px; }
.nav-toggle[aria-expanded="true"] .bars span:nth-child(1) { top: 6.75px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bars span:nth-child(3) { top: 6.75px; transform: rotate(-45deg); }

.site-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: 6px;
}
.site-nav a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: background-color .15s ease, color .15s ease;
}
.site-nav a:hover { background: var(--green-tint); color: var(--green-dark); }
.site-nav a[aria-current="page"] { color: var(--green-dark); background: var(--green-tint); }
.site-nav .nav-order { margin-left: 8px; }
.site-nav .nav-order a {
  background: var(--red); color: var(--white);
  padding: 12px 22px;
  box-shadow: 0 6px 16px rgba(200,16,46,.25);
}
.site-nav .nav-order a:hover { background: var(--red-dark); color: var(--white); }

@media (max-width: 800px) {
  :root { --header-h: 72px; }
  .brand img { width: 170px; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(0,0,0,.10);
    display: none;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; padding: 12px 16px 20px; gap: 4px; }
  .site-nav a { display: block; padding: 14px 16px; font-size: 1.05rem; }
  .site-nav .nav-order { margin: 8px 0 0; }
  .site-nav .nav-order a { text-align: center; }
}

/* Hero ------------------------------------------------------------------- */
.hero {
  position: relative;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
  min-height: min(82vh, 760px);
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.02);
}
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.72) 100%);
}
.hero-inner { padding-block: clamp(64px, 10vw, 120px); max-width: 720px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.35);
  padding: 8px 14px; border-radius: 999px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(200,16,46,.35); }
.hero h1 { color: var(--white); text-shadow: 0 2px 20px rgba(0,0,0,.35); }
.hero .lead { font-size: clamp(1.1rem, 2vw, 1.3rem); max-width: 56ch; color: rgba(255,255,255,.92); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  margin-top: 30px; font-size: .95rem; color: rgba(255,255,255,.85);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 18px; height: 18px; fill: currentColor; }

/* Sections --------------------------------------------------------------- */
.section { padding-block: clamp(56px, 8vw, 104px); }
.section-tint { background: var(--cream); }
.section-head { max-width: 680px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head.center { margin-inline: auto; text-align: center; }
.kicker {
  display: inline-block;
  color: var(--red); font-weight: 700; font-size: .85rem;
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 10px;
}
.section-head p { color: var(--ink-soft); font-size: 1.1rem; }

/* Feature cards */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 2px 0 rgba(0,0,0,.02);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature .icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--green-tint); color: var(--green-dark);
  margin-bottom: 18px;
}
.feature .icon svg { width: 28px; height: 28px; }
.feature h3 { margin-bottom: 8px; }
.feature p { margin: 0; color: var(--ink-soft); font-size: 1rem; }

/* About / split */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.split-media { position: relative; }
.split-media img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5; object-fit: cover;
}
.split-media .badge {
  position: absolute; left: -14px; bottom: 28px;
  background: var(--white);
  border-left: 6px solid var(--red);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-dark);
  max-width: 250px;
}
.split-body p { color: var(--ink-soft); }
.menu-list { list-style: none; padding: 0; margin: 22px 0 28px; display: grid; gap: 10px; }
.menu-list li { display: flex; gap: 12px; align-items: flex-start; }
.menu-list li::before {
  content: ""; flex: none; width: 10px; height: 10px; border-radius: 50%;
  background: var(--green); margin-top: 9px;
  box-shadow: 0 0 0 4px var(--green-tint);
}
.menu-list strong { color: var(--ink); }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split-media { order: -1; }
  .split-media .badge { left: 12px; }
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; background: #ddd; }
.gallery img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 36px 18px 16px;
  color: var(--white); font-weight: 600; font-size: .95rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.65));
}
@media (max-width: 700px) {
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery figure:first-child { grid-column: 1 / -1; }
  .gallery figure:first-child img { aspect-ratio: 16 / 10; }
}

/* Order options */
.order-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.order-card {
  position: relative;
  border-radius: var(--radius);
  padding: 32px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
}
.order-card.is-featured {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
  box-shadow: 0 18px 40px rgba(23,110,0,.28);
}
.order-card.is-featured h3, .order-card.is-featured p { color: var(--white); }
.order-card .step {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green-tint); color: var(--green-dark);
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
}
.order-card.is-featured .step { background: rgba(255,255,255,.18); color: var(--white); }
.order-card p { color: var(--ink-soft); margin: 0; flex: 1; }
.order-card .btn { align-self: flex-start; margin-top: 6px; }
.order-card .phone-big {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700; color: var(--ink);
  text-decoration: none;
}
.order-card .phone-big:hover { color: var(--red); }

/* App badges */
.app-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.app-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--white);
  border-radius: 12px; padding: 9px 16px 9px 12px;
  text-decoration: none; line-height: 1.1;
  border: 1px solid rgba(255,255,255,.18);
  transition: transform .15s ease, background-color .15s ease;
}
.app-badge:hover { transform: translateY(-2px); background: #000; color: var(--white); }
.app-badge svg { width: 26px; height: 26px; fill: currentColor; flex: none; }
.app-badge small { display: block; font-size: .68rem; opacity: .85; text-transform: uppercase; letter-spacing: .04em; }
.app-badge strong { display: block; font-size: 1.02rem; font-weight: 600; }
.order-card.is-featured .app-badge { background: var(--white); color: var(--ink); border-color: transparent; }
.order-card.is-featured .app-badge:hover { background: var(--cream); color: var(--ink); }

/* Find us */
.find-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
}
.info-card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.info-card h3 svg { width: 22px; height: 22px; fill: var(--red); flex: none; }
.info-card address { font-style: normal; line-height: 1.55; }
.info-card + .info-card { margin-top: 20px; }
.hours { list-style: none; margin: 0; padding: 0; }
.hours li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 8px 0; border-bottom: 1px dashed var(--line);
}
.hours li:last-child { border-bottom: 0; }
.hours li span:last-child { font-weight: 600; color: var(--green-dark); }
.map-embed {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  min-height: 360px; background: #e9e9e9; border: 1px solid var(--line);
}
.map-embed iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }
.map-card {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  position: relative; min-height: 360px; display: flex; align-items: flex-end;
}
.map-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.map-card .map-overlay {
  position: relative; z-index: 1; width: 100%;
  padding: 28px 24px; color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.72));
}
.map-card .map-overlay p { margin: 0 0 14px; }
@media (max-width: 860px) { .find-grid { grid-template-columns: 1fr; } }

/* CTA band */
.cta-band {
  background: var(--red);
  color: var(--white);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; right: -120px; top: -120px;
  width: 360px; height: 360px; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.cta-band::after {
  content: "";
  position: absolute; left: -80px; bottom: -160px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(0,0,0,.08);
}
.cta-inner {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
  padding-block: clamp(44px, 6vw, 72px);
}
.cta-inner h2 { color: var(--white); margin: 0 0 6px; }
.cta-inner p { margin: 0; color: rgba(255,255,255,.9); }
.cta-inner .btn-ghost { border-color: var(--white); color: var(--red-dark); }

/* Footer ----------------------------------------------------------------- */
.site-footer {
  background: #14260e;
  color: rgba(255,255,255,.82);
  padding-top: clamp(48px, 6vw, 72px);
}
.site-footer a { color: var(--white); }
.site-footer a:hover { color: #bfe8ad; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand img { width: 220px; filter: brightness(0) invert(1); opacity: .95; margin-bottom: 16px; }
.footer-brand p { font-size: .98rem; max-width: 34ch; }
.site-footer h4 {
  color: var(--white); font-family: var(--font-body);
  font-size: .85rem; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-list a { text-decoration: none; }
.footer-list address { font-style: normal; }
.social { display: flex; gap: 10px; margin-top: 4px; }
.social a {
  display: inline-grid; place-items: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  transition: background-color .15s ease, transform .15s ease;
}
.social a:hover { background: var(--green); transform: translateY(-2px); }
.social svg { width: 20px; height: 20px; fill: var(--white); }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  padding-block: 22px;
  font-size: .9rem;
}
.footer-bottom p { margin: 0; }
.powered { display: inline-flex; align-items: center; gap: 10px; }
.powered a { display: inline-flex; align-items: center; background: var(--white); padding: 6px 12px; border-radius: 8px; }
.powered img { height: 24px; width: auto; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Contact page hero ------------------------------------------------------ */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  padding-block: clamp(48px, 7vw, 88px);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; right: -10%; top: -40%;
  width: 60vw; max-width: 640px; aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.page-hero h1 { color: var(--white); }
.page-hero p { max-width: 60ch; color: rgba(255,255,255,.9); font-size: 1.15rem; margin: 0; }
.breadcrumb { list-style: none; margin: 0 0 18px; padding: 0; display: flex; gap: 8px; font-size: .9rem; color: rgba(255,255,255,.8); }
.breadcrumb a { color: var(--white); }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; opacity: .6; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(24px, 4vw, 48px);
}
.contact-details { display: grid; gap: 20px; align-content: start; }
.contact-details .info-card + .info-card { margin-top: 0; }
.contact-details .btn { margin-top: 6px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* Reveal animation -------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .feature, .gallery img, .app-badge { transition: none; }
}
.no-js .reveal { opacity: 1; transform: none; }

/* Print */
@media print {
  .site-header, .site-footer, .cta-band, .hero-actions, .nav-toggle { display: none !important; }
}

/* Hero app badges ---------------------------------------------------------- */
.hero-apps { margin-top: 26px; }
.hero-apps-label { margin: 0 0 10px; font-size: .9rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.hero .app-badge { background: rgba(255,255,255,.96); color: var(--ink); border-color: transparent; box-shadow: 0 8px 20px rgba(0,0,0,.25); }
.hero .app-badge:hover { background: var(--white); color: var(--ink); }

.plain-phone { margin: 12px 0 0; color: var(--ink-soft); font-weight: 600; }

/* Direct-answer block (AEO) ---------------------------------------------- */
.answer-box { background: var(--green-tint); border-bottom: 1px solid #dcefd3; }
.answer-inner { padding-block: clamp(28px, 4vw, 44px); display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(20px, 4vw, 48px); align-items: center; }
.answer-summary { margin: 0; font-size: 1.1rem; line-height: 1.6; color: var(--ink); }
.answer-summary strong { color: var(--green-dark); }
.facts { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.facts div { background: var(--white); border: 1px solid #dcefd3; border-radius: var(--radius-sm); padding: 12px 14px; }
.facts dt { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--red); font-weight: 700; }
.facts dd { margin: 2px 0 0; font-weight: 600; font-size: .98rem; }
@media (max-width: 860px) { .answer-inner { grid-template-columns: 1fr; } }
@media (max-width: 420px) { .facts { grid-template-columns: 1fr; } }

/* FAQ ---------------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq details {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0 22px; transition: box-shadow .2s ease;
}
.faq details[open] { box-shadow: var(--shadow); border-color: #cfe8c3; }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary h3 { margin: 0; font-size: 1.12rem; }
.faq summary::after {
  content: ""; flex: none; width: 12px; height: 12px;
  border-right: 2.5px solid var(--green); border-bottom: 2.5px solid var(--green);
  transform: rotate(45deg); transition: transform .2s ease; margin-right: 4px;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details p { margin: 0 0 20px; color: var(--ink-soft); }
