/* Flygbensin — clean editorial-industrial
   Full Site Editing theme stylesheet
   ─────────────────────────────────── */

:root {
  --bg:          #FAFAF7;
  --bg-2:        #F4F2EE;
  --ink:         #0F2A47;
  --ink-2:       #1B3A5B;
  --ink-3:       #3A6FA5;
  --muted:       #6B7785;
  --line:        #DCD9D2;
  --line-strong: #B8B4AA;
  --accent:      #C25A2E;
  --paper:       #FFFFFF;

  --f-sans:  "Geist", ui-sans-serif, -apple-system, "Helvetica Neue", sans-serif;
  --f-serif: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --f-mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --maxw: 1240px;
  --pad:  clamp(20px, 4vw, 56px);
}

body.dark {
  --bg:          #0A1622;
  --bg-2:        #0F2A47;
  --ink:         #F4F2EE;
  --ink-2:       #E8E4DC;
  --ink-3:       #6FA0D8;
  --muted:       #8FA0B5;
  --line:        #1F3A55;
  --line-strong: #2E4D6E;
  --paper:       #11253C;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* WordPress removes default margins — restore for content areas */
.entry-content p,
.wp-block-post-content p { margin: 0 0 1em; }

/* ── Utility bar ─────────────────────────────────────────── */
.utility {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.utility-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 9px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.utility-left { display: flex; gap: 28px; }
.utility-left .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #2F9E5A;
  margin-right: 8px;
  vertical-align: 1px;
  box-shadow: 0 0 0 3px color-mix(in oklch, #2F9E5A 22%, transparent);
}
.utility-right { display: flex; gap: 4px; align-items: center; }

.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px;
  background: var(--paper);
}
.lang-toggle button {
  appearance: none;
  border: 0;
  background: transparent;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--muted);
  transition: background 0.15s, color 0.15s;
}
.lang-toggle button.on { background: var(--ink); color: var(--bg); }

/* ── Header ──────────────────────────────────────────────── */
.header {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}
.brand .mark { width: 40px; height: 40px; flex: 0 0 40px; }
.brand .wordmark {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 1;
}
.brand .wordmark small {
  display: block;
  font-family: var(--f-mono);
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.footer .brand .wordmark { color: var(--bg); }
.footer .brand .wordmark small { color: color-mix(in oklch, var(--bg) 55%, transparent); }

.nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  white-space: nowrap;
}
.nav a { color: var(--ink); opacity: 0.78; transition: opacity 0.15s; }
.nav a:hover { opacity: 1; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(3px); }
.btn.outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn.outline:hover { background: var(--bg-2); }

/* ── Hero (full-bleed) ───────────────────────────────────── */
.hero { border-bottom: 1px solid var(--line); }

.hero.hero-full {
  position: relative;
  overflow: hidden;
  min-height: min(820px, 88vh);
  color: #F4F2EE;
  isolation: isolate;
}
.hero.hero-full .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero.hero-full .hero-bg .photo-ph {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 14px),
    linear-gradient(180deg, #0F2A47 0%, #1B3A5B 55%, #2A4868 100%);
}
.hero.hero-full .hero-bg .photo-ph .ph-label {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: clamp(110px, 9vw, 140px);
  background: rgba(15,42,71,0.55);
  border-color: rgba(244,242,238,0.25);
  color: rgba(244,242,238,0.78);
  max-width: 280px;
  text-align: right;
}
.hero.hero-full .hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(10,22,34,0.82) 0%, rgba(10,22,34,0.6) 35%,
      rgba(10,22,34,0.25) 70%, rgba(10,22,34,0.05) 100%),
    linear-gradient(180deg,
      rgba(10,22,34,0.0) 0%, rgba(10,22,34,0.0) 55%,
      rgba(10,22,34,0.55) 100%);
  pointer-events: none;
}
.hero.hero-full .hero-inner {
  position: relative; z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(140px,16vw,220px) var(--pad) clamp(32px,4vw,56px);
  display: block;
}
.hero.hero-full .hero-content { max-width: min(820px, 90%); }
.hero.hero-full h1 { color: #F4F2EE; }
.hero.hero-full h1 em { color: #9CC0E4; }
.hero.hero-full .lede { color: rgba(244,242,238,0.82); max-width: 52ch; }
.hero.hero-full .hero-eyebrow { color: #9CC0E4; }
.hero.hero-full .hero-eyebrow::before { background: #9CC0E4; }
.hero.hero-full .btn { background: #F4F2EE; color: #0F2A47; border-color: #F4F2EE; }
.hero.hero-full .btn.outline {
  background: transparent; color: #F4F2EE;
  border-color: rgba(244,242,238,0.4);
}
.hero.hero-full .btn.outline:hover { background: rgba(244,242,238,0.08); }
.hero.hero-full .hero-meta-row {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(244,242,238,0.65);
  margin-top: clamp(48px, 7vw, 88px);
  padding-top: 24px;
  border-top: 1px solid rgba(244,242,238,0.18);
  white-space: nowrap;
}
.hero.hero-full .hero-meta-row > span { white-space: nowrap; }
.hero.hero-full .hero-meta-row .dotgap { opacity: 0.4; }

.hero h1 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(44px, 6.2vw, 88px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  padding-bottom: 0.25em;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--ink-3); }
.hero .lede {
  font-size: 17px; line-height: 1.55;
  color: var(--muted); max-width: 44ch; margin: 0 0 32px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-eyebrow {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3); margin: 0 0 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--ink-3); }

/* ── Photo placeholder ───────────────────────────────────── */
.photo-ph {
  width: 100%; height: 100%; position: relative;
  background:
    repeating-linear-gradient(135deg,
      color-mix(in oklch, var(--ink) 8%, var(--bg-2)) 0 1px,
      transparent 1px 9px),
    linear-gradient(180deg,
      color-mix(in oklch, var(--ink) 10%, var(--bg-2)),
      var(--bg-2));
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-align: center; padding: 24px;
}
.photo-ph .ph-label {
  border: 1px solid var(--line-strong);
  padding: 8px 12px;
  background: color-mix(in oklch, var(--bg) 70%, transparent);
  max-width: 80%;
}

/* Real hero photo (once you replace the placeholder) */
.hero-real-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}

/* ── Trust strip ─────────────────────────────────────────── */
.strip { border-bottom: 1px solid var(--line); background: var(--bg); }
.strip-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 22px var(--pad);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted);
}
.strip-inner > div { display: flex; flex-direction: column; gap: 4px; }
.strip-inner b {
  color: var(--ink); font-family: var(--f-sans);
  font-weight: 500; font-size: 14px;
  letter-spacing: 0; text-transform: none;
}

/* ── Sections ────────────────────────────────────────────── */
section { scroll-margin-top: 80px; }
.sec { border-bottom: 1px solid var(--line); }
.sec-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(56px, 9vw, 112px) var(--pad);
}
.sec-head {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 48px; align-items: end;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.sec-eyebrow {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3); margin: 0 0 16px;
  display: flex; align-items: center; gap: 12px;
}
.sec-eyebrow .num {
  display: inline-block;
  border: 1px solid var(--line-strong);
  padding: 2px 8px; border-radius: 999px; color: var(--muted);
}
.sec-title {
  font-family: var(--f-serif); font-weight: 400;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.02; letter-spacing: -0.015em;
  margin: 0; text-wrap: balance;
}
.sec-title em { font-style: italic; color: var(--ink-3); }
.sec-sub {
  font-size: 16px; line-height: 1.55;
  color: var(--muted); max-width: 50ch; margin: 0;
}

/* ── Fuel cards ──────────────────────────────────────────── */
.fuels { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.fuel {
  background: var(--paper); border: 1px solid var(--line);
  display: flex; flex-direction: column; overflow: hidden;
  transition: border-color 0.2s;
}
.fuel:hover { border-color: var(--line-strong); }
.fuel-img {
  aspect-ratio: 16/10; position: relative;
  border-bottom: 1px solid var(--line); overflow: hidden;
}
.fuel-img .badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--paper); border: 1px solid var(--line);
  padding: 5px 10px; white-space: nowrap;
}
.fuel-img .badge.lead {
  background: var(--ink); color: var(--bg); border-color: var(--ink);
}
.fuel-body { padding: 28px 28px 24px; display: flex; flex-direction: column; gap: 18px; }
.fuel-title { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.fuel-title-text { flex: 1 1 auto; min-width: 0; }
.fuel-title h3 {
  font-family: var(--f-serif); font-weight: 400;
  font-size: 38px; line-height: 1; letter-spacing: -0.01em;
  margin: 0; white-space: nowrap;
}
.fuel-tagline {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-top: 8px;
}
.fuel-title .price {
  flex: 0 0 auto; text-align: right;
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 2px; padding-top: 4px;
}
.fuel-title .price .prefix {
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.fuel-title .price b {
  font-family: var(--f-sans); font-weight: 500;
  font-size: 26px; line-height: 1; letter-spacing: -0.015em;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.fuel-title .price .unit {
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: 0.08em; color: var(--muted); margin-top: 2px;
}
.fuel-desc { font-size: 14.5px; color: var(--muted); margin: 0; line-height: 1.5; }
.fuel-specs { border-top: 1px solid var(--line); margin-top: 4px; }
.fuel-specs dl { margin: 0; display: grid; grid-template-columns: 1fr 1fr; }
.fuel-specs > dl > div { padding: 12px 0; border-bottom: 1px solid var(--line); }
.fuel-specs > dl > div:nth-child(odd)  { border-right: 1px solid var(--line); padding-right: 16px; }
.fuel-specs > dl > div:nth-child(even) { padding-left: 16px; }
.fuel-specs > dl > div:nth-last-child(-n+2) { border-bottom: 0; }
.fuel-specs dt {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 4px;
}
.fuel-specs dd {
  margin: 0; font-family: var(--f-mono);
  font-size: 14px; font-weight: 500; color: var(--ink);
}
.fuel-actions { display: flex; gap: 10px; margin-top: 4px; }

/* ── Pricing table ───────────────────────────────────────── */
.quote-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 48px; align-items: start;
}
.price-table { border: 1px solid var(--line); background: var(--paper); }
.price-table .row {
  display: grid; grid-template-columns: 1fr auto auto;
  align-items: center; gap: 16px;
  padding: 18px 22px; border-bottom: 1px solid var(--line);
}
.price-table .row:last-child { border-bottom: 0; }
.price-table .row.head {
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); padding-top: 14px; padding-bottom: 14px;
  background: var(--bg-2);
}
.price-table .product { font-family: var(--f-serif); font-size: 22px; letter-spacing: -0.01em; }
.price-table .product small {
  display: block; font-family: var(--f-mono); font-size: 10.5px;
  color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px;
}
.price-table .vol,
.price-table .pri { font-family: var(--f-mono); font-size: 14px; color: var(--ink); text-align: right; white-space: nowrap; }
.price-table .pri b { font-family: var(--f-sans); font-weight: 500; font-size: 18px; }
.price-note {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.04em;
  color: var(--muted); margin: 14px 4px 0;
  display: flex; justify-content: space-between; gap: 16px;
}

/* ── Contact form (native + CF7) ─────────────────────────── */
.form {
  background: var(--bg-2); border: 1px solid var(--line);
  padding: 32px; display: flex; flex-direction: column; gap: 18px;
}
.form-title { font-family: var(--f-serif); font-size: 28px; margin: 0 0 4px; letter-spacing: -0.01em; }
.form-sub {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 8px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.field input,
.field select,
.field textarea {
  font: inherit; font-size: 15px;
  background: var(--paper); border: 1px solid var(--line);
  padding: 12px 14px; color: var(--ink); width: 100%;
  border-radius: 0; transition: border-color 0.15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--ink-3); }
.field textarea { resize: vertical; min-height: 92px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* CF7 form field overrides — makes CF7 output match the design */
.wpcf7 { margin: 0 !important; }
.wpcf7-form { display: flex; flex-direction: column; gap: 14px; }
.wpcf7-form > p,
.wpcf7-form > div { margin: 0; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
  font: inherit; font-size: 15px;
  background: var(--paper); border: 1px solid var(--line);
  padding: 12px 14px; color: var(--ink); width: 100%;
  border-radius: 0; transition: border-color 0.15s;
  font-family: inherit;
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus { outline: none; border-color: var(--ink-3); }
.wpcf7-form textarea { resize: vertical; min-height: 92px; }
.wpcf7-form .wpcf7-submit {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 18px; background: var(--ink); color: var(--bg);
  border: 1px solid var(--ink); border-radius: 999px;
  font-size: 13.5px; font-weight: 500; cursor: pointer;
  transition: transform 0.15s; align-self: flex-start;
}
.wpcf7-form .wpcf7-submit:hover { transform: translateY(-1px); }
.wpcf7-response-output {
  font-family: var(--f-mono); font-size: 12px;
  border: 1px solid var(--line); padding: 12px 14px;
  margin: 0 !important;
}
.wpcf7-form.sent .wpcf7-response-output { border-color: #2F9E5A; color: #2F9E5A; background: color-mix(in oklch, #2F9E5A 8%, var(--bg)); }
.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.invalid .wpcf7-response-output { border-color: #C25A2E; color: #C25A2E; }
.wpcf7-not-valid-tip { font-family: var(--f-mono); font-size: 10.5px; color: #C25A2E; margin-top: 4px; }
.wpcf7-acceptance label {
  display: flex; gap: 10px; align-items: flex-start;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.02em;
  color: var(--muted); line-height: 1.5;
}

/* Field-row layout helper for CF7 — add class="field-row" to a <p> or <div> in the CF7 form editor */
.wpcf7-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── About ───────────────────────────────────────────────── */
.about {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 80px); align-items: center;
}
.about p { font-size: 17px; line-height: 1.6; color: var(--ink-2); margin: 0 0 16px; }
.about-img { aspect-ratio: 5/4; }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: 32px; border-top: 1px solid var(--line);
}
.about-stats > div { padding: 20px 16px 4px 0; border-right: 1px solid var(--line); }
.about-stats > div:last-child { border-right: 0; padding-right: 0; }
.about-stats .n {
  font-family: var(--f-serif); font-size: 38px;
  line-height: 1; letter-spacing: -0.02em; color: var(--ink);
}
.about-stats .l {
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-top: 8px;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; appearance: none; background: transparent; border: 0;
  text-align: left; padding: 24px 0; font: inherit;
  font-size: 20px; letter-spacing: -0.005em;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; cursor: pointer; color: var(--ink);
}
.faq-q .num {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.1em; color: var(--muted); flex: 0 0 36px;
}
.faq-q .label { flex: 1; font-family: var(--f-sans); font-weight: 500; }
.faq-q .icon {
  flex: 0 0 24px; width: 24px; height: 24px;
  border: 1px solid var(--line-strong); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s, background 0.2s; color: var(--muted);
  font-style: normal;
}
.faq-item.open .faq-q .icon {
  transform: rotate(45deg); background: var(--ink);
  color: var(--bg); border-color: var(--ink);
}
.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease, padding-bottom 0.3s ease;
  padding-left: 36px;
}
.faq-a > div { overflow: hidden; min-height: 0; }
.faq-item.open .faq-a { grid-template-rows: 1fr; padding-bottom: 24px; }
.faq-a p {
  color: var(--muted); font-size: 15.5px; line-height: 1.6;
  max-width: 60ch; margin: 0;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--ink); color: var(--bg);
  padding: clamp(48px, 7vw, 88px) 0 32px;
}
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid color-mix(in oklch, var(--bg) 18%, transparent);
}
.footer h4 {
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in oklch, var(--bg) 55%, transparent);
  margin: 0 0 18px; font-weight: 500;
}
.footer ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px; font-size: 14.5px;
}
.footer ul a { opacity: 0.85; }
.footer ul a:hover { opacity: 1; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in oklch, var(--bg) 55%, transparent);
}

/* ── Native block layout overrides ──────────────────────── */
/* Neutralise WordPress's default block group spacing when using
   the custom layout classes for About and FAQ sections */
.wp-block-group.sec         { padding: 0; }
.wp-block-group.sec-inner   { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px,9vw,112px) var(--pad); }
.wp-block-group.sec-head    { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: end; margin-bottom: clamp(40px,6vw,72px); }
.wp-block-group.faq         { border-top: 1px solid var(--line); }
.wp-block-columns.about     { display: grid !important; grid-template-columns: 1.1fr 1fr; gap: clamp(32px,5vw,80px); align-items: center; flex-wrap: unset !important; }
.wp-block-columns.about > .wp-block-column { flex: unset !important; min-width: unset !important; width: auto !important; }

/* ── wp:details used as FAQ accordion ───────────────────── */
.wp-block-details.faq-item  { display: block; border-bottom: 1px solid var(--line); }
.wp-block-details.faq-item > summary {
  list-style: none; padding: 24px 0;
  font-family: var(--f-sans); font-size: 20px; font-weight: 500;
  letter-spacing: -0.005em; display: flex; justify-content: space-between;
  align-items: center; gap: 24px; cursor: pointer; color: var(--ink);
}
.wp-block-details.faq-item > summary::-webkit-details-marker { display: none; }
.wp-block-details.faq-item > summary::marker { content: ""; }
.wp-block-details.faq-item > summary::after {
  content: "+"; flex: 0 0 24px; width: 24px; height: 24px;
  border: 1px solid var(--line-strong); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s, background 0.2s;
  color: var(--muted); font-style: normal;
}
.wp-block-details.faq-item[open] > summary::after {
  transform: rotate(45deg); background: var(--ink);
  color: var(--bg); border-color: var(--ink);
}
.wp-block-details.faq-item p {
  color: var(--muted); font-size: 15.5px; line-height: 1.6;
  max-width: 60ch; margin: 0; padding-bottom: 24px;
}

/* ── WordPress admin bar offset ──────────────────────────── */
.admin-bar .header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .header { top: 46px; } }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner, .sec-head, .quote-grid,
  .about, .fuels, .footer-grid, .field-row,
  .wpcf7-form .field-row { grid-template-columns: 1fr; gap: 32px; }
  .wp-block-group.sec-head  { grid-template-columns: 1fr; gap: 16px; }
  .wp-block-columns.about   { grid-template-columns: 1fr !important; }
  .strip-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
  .nav { display: none; }
  .utility-inner { flex-direction: column; gap: 8px; align-items: flex-start; }
  .hero.hero-full .hero-content { max-width: 100%; }
}
