/* INTER FaSa – authentischer B2B-Auftritt ohne Stock-Fotos */

:root {
  --navy: #0f2438;
  --navy-mid: #1a3d66;
  --navy-light: #2563a8;
  --brand-blue: #2b8fd9;
  --brand-blue-bright: #4db3f5;
  --gold: #2b8fd9;
  --gold-light: #5eb8f7;
  --cream: #f6f4ef;
  --white: #ffffff;
  --text: #1a2b3c;
  --text-muted: #5a6d7d;
  --border: #d8dde3;
  --shadow: 0 12px 40px rgba(13, 33, 55, 0.12);
  --header-h: 72px;
  --max-w: 1140px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.0625rem;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--navy-mid); text-decoration: none; }
a:hover { color: var(--gold); }

.container {
  width: min(100% - 2rem, var(--max-w));
  margin-inline: auto;
}

/* Header – hell, wie team/BMV Gewerbe */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 26px;
  border-radius: 5px;
  border: 2px solid transparent;
  overflow: hidden;
  opacity: 0.5;
  transition: opacity 0.2s, border-color 0.2s, box-shadow 0.2s;
  line-height: 0;
}

.lang-btn:hover {
  opacity: 0.85;
}

.lang-btn.is-active {
  opacity: 1;
  border-color: var(--brand-blue);
  box-shadow: 0 1px 4px rgba(43, 143, 217, 0.25);
}

.lang-flag {
  display: block;
  width: 100%;
  height: 100%;
}

.lang-flag svg {
  width: 100%;
  height: 100%;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text);
}

/* Logo mit abgerundeten Ecken (weißer Rahmen) */
.logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  line-height: 0;
  padding: 0.35rem 0.6rem;
  box-shadow: 0 1px 6px rgba(15, 36, 56, 0.08);
}

.logo-frame img,
.logo-img {
  display: block;
  width: auto;
  height: auto;
  max-height: 56px;
  max-width: min(240px, 52vw);
  object-fit: contain;
  object-position: center;
}

.hero-brand-frame {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.35rem;
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
  max-width: 8rem;
}

@media (max-width: 700px) {
  .logo-sub { display: none; }
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-desktop a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-desktop a:hover { color: var(--navy); }

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: 6px;
}

.nav-cta:hover {
  background: var(--navy-light) !important;
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--navy);
  min-width: 44px;
  min-height: 44px;
  padding: 0.35rem;
  margin: -0.35rem;
  border-radius: 8px;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle:active {
  background: var(--cream);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 99;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-mobile.is-open { display: block; }
.nav-mobile ul { list-style: none; }
.nav-mobile a {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 1rem;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-mobile-lang {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  padding: 1rem 0 !important;
  border-bottom: none !important;
  min-height: auto !important;
}

.nav-mobile-lang span {
  width: 100%;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
}

.nav-mobile-lang a {
  display: inline-flex !important;
  width: auto !important;
  min-height: 40px !important;
  padding: 0.5rem 1rem !important;
  border: 1px solid var(--border) !important;
  border-radius: 999px !important;
  font-size: 0.9rem !important;
  font-weight: 600;
}

.nav-mobile-lang a.is-active {
  background: var(--navy);
  color: var(--white) !important;
  border-color: var(--navy) !important;
}

/* Hero – nur eigenes Bild oder SVG-Muster */
.hero {
  padding-top: var(--header-h);
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Tanklager-Foto – grafisch aufbereitet (nicht „rohes“ Foto) */
.photo-stylized {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.55) contrast(1.18) brightness(0.72);
  transform: scale(1.03);
}

.photo-stylized--soft {
  filter: saturate(0.5) contrast(1.1) brightness(0.88);
  opacity: 0.35;
}

.hero-bg-tanks {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(15, 36, 56, 0.94) 0%,
    rgba(15, 36, 56, 0.78) 42%,
    rgba(37, 99, 168, 0.45) 100%
  );
  pointer-events: none;
}

.hero-bg-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(43, 143, 217, 0.2), transparent 70%);
}

.hero-visual-photo {
  display: none;
}

.hero-brand-wrap {
  position: absolute;
  right: 1%;
  bottom: 5%;
  width: min(48%, 480px);
  z-index: 2;
  padding: 0.5rem;
}

.hero-brand-visual {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.5));
}

.hero-layout {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: calc(92vh - var(--header-h));
}

.hero-inner {
  padding: 4rem 0 4.5rem;
  max-width: 580px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  line-height: 1.12;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--brand-blue);
  color: var(--white);
  border-color: var(--brand-blue);
}

.btn-primary:hover {
  background: var(--brand-blue-bright);
  border-color: var(--brand-blue-bright);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-kpis dt {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-light);
}

.hero-kpis dd {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.2rem;
}

/* (entfernt: Partner-Leiste) */
.partner-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
}

.partner-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.partner-bar strong { color: var(--navy); }

/* Drei Säulen – Hoyer-Muster */
.pillars {
  padding: 4.5rem 0;
  background: var(--white);
}

.section-head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

.section-head .label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.section-head p { color: var(--text-muted); font-size: 1rem; }

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--cream);
}

.pillar-num {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.pillar h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.pillar p { font-size: 0.95rem; color: var(--text-muted); }

/* Story */
.story {
  padding: 4.5rem 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.story-with-tanks .story-tank-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.story-with-tanks .story-tank-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-with-tanks .story-grid {
  position: relative;
  z-index: 1;
}

.story-compact {
  position: relative;
  z-index: 1;
  padding-bottom: 1rem;
}

.story-copy-centered {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.story-copy-centered p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.story-muted {
  font-size: 0.95rem;
  opacity: 0.9;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.story-copy h2 {
  font-size: 1.85rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.story-copy p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.story-copy .highlight {
  color: var(--navy);
  font-weight: 600;
}

.story-steps {
  list-style: none;
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
}

.story-steps li {
  margin-bottom: 1.5rem;
  position: relative;
}

.story-steps li::before {
  content: "";
  position: absolute;
  left: -1.72rem;
  top: 0.45rem;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--cream);
}

.story-steps strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.story-steps span { font-size: 0.92rem; color: var(--text-muted); }

/* Produkte */
.products {
  padding: 4.5rem 0;
  background: var(--white);
}

.product-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card-header {
  background: var(--navy);
  color: var(--white);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.product-card-header svg {
  width: 40px;
  height: 40px;
  fill: var(--gold);
  flex-shrink: 0;
}

.product-card-header h3 { font-size: 1.35rem; }

.product-card-header .en { font-size: 0.8rem; opacity: 0.75; margin-top: 0.25rem; }

.product-card-body { padding: 1.5rem; flex: 1; }

.product-card-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.price-tag .amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
}

.price-tag .unit { color: var(--text-muted); font-size: 0.9rem; }

.price-tag .note {
  width: 100%;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.price-table-box {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.price-table th {
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-table tr:last-child td { border-bottom: none; }

.price-table .price-cell {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
}

.disclaimer {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.price-on-request {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--cream);
  border: 1px dashed var(--border);
  border-radius: 8px;
  font-weight: 600;
  color: var(--navy-mid);
  font-size: 0.95rem;
}

/* Lieferung */
.delivery {
  padding: 4.5rem 0;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.delivery-tank-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.delivery-tank-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.delivery-bg-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 36, 56, 0.75) 0%, rgba(15, 36, 56, 0.92) 100%);
  z-index: 0;
  pointer-events: none;
}

.delivery > .container {
  position: relative;
  z-index: 1;
}

.contact-logo-wrap {
  margin-bottom: 1.25rem;
}

.contact-logo-wrap .logo-frame img {
  max-height: 52px;
  max-width: 200px;
}

.footer-logo-box {
  display: inline-block;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 1rem;
  line-height: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.footer-logo-box img {
  display: block;
  width: auto;
  height: auto;
  max-height: 58px;
  max-width: 220px;
  object-fit: contain;
  object-position: center;
}

/* FAQ */
.faq {
  padding: 4.5rem 0;
  background: var(--white);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  background: var(--cream);
  overflow: hidden;
}

.faq-item summary {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--brand-blue);
  font-weight: 700;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item .faq-answer {
  padding: 0 1.25rem 1.15rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 0;
}

.content-block {
  padding: 3.5rem 0;
  background: var(--white);
}

.content-block.alt {
  background: var(--cream);
}

.content-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.content-columns p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.trust-list {
  list-style: none;
  margin-top: 1rem;
}

.trust-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--brand-blue);
  border-radius: 50%;
}

@media (max-width: 900px) {
  .content-columns {
    grid-template-columns: 1fr;
  }
}

.delivery-truck-banner {
  margin: 0 0 2rem;
  text-align: center;
}

.delivery-truck-banner img {
  margin: 0 auto;
  max-width: 720px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.delivery-truck-banner figcaption {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  opacity: 0.65;
}

.delivery-truck-banner code {
  font-size: 0.75rem;
  background: rgba(0, 0, 0, 0.25);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.delivery .section-head h2,
.delivery .section-head p { color: var(--white); }
.delivery .section-head p { opacity: 0.8; }
.delivery .section-head .label { color: var(--brand-blue-bright); }

.delivery-truck-banner .brand-visual {
  max-width: 420px;
  margin: 0 auto;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.35));
}


.delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.delivery-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 1.5rem;
}

.delivery-card h3 {
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.delivery-card p {
  font-size: 0.95rem;
  opacity: 0.85;
}

.delivery-diagram {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(0,0,0,0.2);
  border-radius: 10px;
  text-align: center;
}

.delivery-diagram svg {
  max-width: 100%;
  height: auto;
  margin: 0 auto 1rem;
}

.delivery-diagram p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Zielgruppen */
.audience {
  padding: 3.5rem 0;
  background: var(--cream);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.tag-cloud span {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--navy-mid);
}

/* Kontakt */
.contact {
  padding: 4.5rem 0;
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}

.contact-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
}

.contact-card h3 {
  color: var(--navy);
  margin-bottom: 1.25rem;
  font-size: 1.15rem;
}

.contact-block { margin-bottom: 1.25rem; }

.contact-block dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-block dd { font-size: 1rem; }

.partner-box {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.partner-box strong { color: var(--navy); display: block; margin-bottom: 0.35rem; }

.contact-form {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font: inherit;
  background: var(--white);
  min-height: 44px;
}

@media (max-width: 768px) {
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
  }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 0;
  border-color: var(--gold);
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 2.5rem 0 1.5rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  color: var(--gold-light);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.footer-grid a { color: rgba(255,255,255,0.75); }
.footer-grid a:hover { color: var(--gold-light); }

.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.4rem; }

.footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.82rem;
}

/* Legal */
.legal-page {
  padding: calc(var(--header-h) + 2.5rem) 0 3rem;
  min-height: 50vh;
}

.legal-page h1 { color: var(--navy); margin-bottom: 1rem; }
.legal-page h2 { font-size: 1.15rem; margin: 1.5rem 0 0.5rem; color: var(--navy); }
.legal-page p { color: var(--text-muted); margin-bottom: 0.75rem; }
.legal-page ul.legal-list {
  margin: 0 0 0.75rem 1.25rem;
  color: var(--text-muted);
}
.legal-page ul.legal-list li { margin-bottom: 0.35rem; }

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: flex; align-items: center; justify-content: center; }
  .pillar-grid,
  .story-grid,
  .product-cards,
  .delivery-grid,
  .contact-layout,
  .footer-grid { grid-template-columns: 1fr; }
  .hero-kpis {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
  }
  .hero-kpis dt { font-size: 1.05rem; }
  .hero-kpis dd { font-size: 0.72rem; line-height: 1.35; }
  .hero-brand-wrap { display: none; }
  .hero-layout {
    flex-direction: column;
    min-height: auto;
  }
  .hero-inner {
    padding: 2.25rem 0 2.75rem;
    max-width: none;
  }
  .hero h1 {
    font-size: clamp(1.65rem, 7vw, 2.25rem);
  }
  .hero-lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
  }
  .form-row { grid-template-columns: 1fr; }
  .pillars,
  .story,
  .products,
  .delivery,
  .faq,
  .contact {
    padding: 3rem 0;
  }
  .content-block {
    padding: 2.5rem 0;
  }
  .section-head {
    margin-bottom: 1.75rem;
  }
  .contact-form,
  .contact-card {
    padding: 1.35rem;
  }
  .faq-item summary {
    padding: 1rem 1rem;
    font-size: 0.95rem;
    line-height: 1.4;
    align-items: flex-start;
  }
  .faq-item summary::after {
    margin-top: 0.1rem;
  }
  .delivery-truck-banner .brand-visual {
    max-width: min(100%, 320px);
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .legal-page {
    padding-top: calc(var(--header-h) + 1.5rem);
  }
}

@media (max-width: 600px) {
  :root {
    --header-h: 64px;
  }
  .container {
    width: min(100% - 1.25rem, var(--max-w));
  }
  .logo-frame img,
  .logo-img {
    max-height: 48px;
    max-width: min(180px, 48vw);
  }

  .footer-logo-box img {
    max-height: 50px;
    max-width: 180px;
  }
  .lang-btn {
    width: 32px;
    height: 24px;
  }
  .hero-kpis {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .hero-kpis > div {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  .hero-kpis dt,
  .hero-kpis dd {
    display: inline;
    margin: 0;
  }
  .hero-kpis dd::before {
    content: "·";
    margin-right: 0.5rem;
    opacity: 0.5;
  }
  .pillar {
    padding: 1.35rem;
  }
  .tag-cloud {
    gap: 0.45rem;
  }
  .tag-cloud span {
    font-size: 0.82rem;
    padding: 0.45rem 0.85rem;
  }
  .product-card-header h3 {
    font-size: 1.15rem;
  }
  .delivery-card {
    padding: 1.15rem;
  }
  .site-header {
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
  }
  .site-footer {
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 380px) {
  .header-actions {
    gap: 0.25rem;
  }
  .hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }
}
