@font-face {
  font-family: "TAYLennon";
  src: url("../fonts/TAYLennon.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "StreetPlain";
  src: url("../fonts/Street-PlainRegular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --cream: #FFFAF7;
  --cream-2: #FFFCF1;
  --yellow: #F2E6AE;
  --maroon: #761E0B;
  --maroon-dark: #2A0702;
  --orange: #FF4315;
  --dark-brown: #531003;
  --lavender: #E2C8F3;
  --border: rgba(118,30,11,.35);
  --font-title: "TAYLennon", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "StreetPlain", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--maroon);
  background: var(--cream);
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ───────── HEADER ───────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,.05);
}

.header__row {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 14px 5%;
  gap: 32px;
}

.header__row > nav { display: contents; }

.header-logo img { height: 32px; width: auto; aspect-ratio: 5377 / 701; object-fit: contain; }

.nav-links { display: flex; gap: 36px; list-style: none; margin: 0 auto; }

@media (min-width: 751px) {
  .nav-links { transform: translateX(-90px); }
}

.nav-links a {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--maroon);
  opacity: .75;
  transition: opacity .2s;
}

.nav-links a.active, .nav-links a:hover { opacity: 1; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: none;
  background: none;
  padding: 0;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--maroon);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 750px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--cream);
    border-bottom: 1px solid rgba(0,0,0,.08);
    padding: 8px 5% 20px;
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; }
}

/* ───────── PAGE INTRO (services / realisaties / contact) ───────── */
.page-title {
  text-align: center;
  padding: clamp(40px, 6vw, 64px) 5% 8px;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  font-family: var(--font-title);
  text-transform: uppercase;
}

.page-intro {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 0 5% clamp(12px, 2.5vw, 28px);
  opacity: .9;
}

/* ───────── HERO (home) ───────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 5% 2vh;
  background: #000;
}

.hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .92;
}

.hero__logo {
  position: relative;
  z-index: 2;
  width: 92%;
  height: auto;
  aspect-ratio: 5377 / 701;
  object-fit: contain;
}

/* ───────── TRANSPARANTE HEADER OVER DE HERO (home, enkel desktop) ─────────
   Op mobiel is deze absolute/fixed-wissel via JS onbetrouwbaar (100svh
   verandert voortdurend door de adresbalk tijdens scroll), dat gaf een
   haperende/overlappende header. Op mobiel blijft de header daarom gewoon
   een effen sticky balk, net als op de andere pagina's. */
@media (min-width: 751px) {
  body.page-home header {
    position: absolute;
    inset: 0 0 auto 0;
    background: transparent;
    border-bottom: none;
    transition: background .25s ease, border-color .25s ease;
  }

  body.page-home header.is-scrolled {
    position: fixed;
    background: var(--cream);
    border-bottom: 1px solid rgba(0,0,0,.05);
  }

  body.page-home header .header-logo { visibility: hidden; }
  body.page-home header.is-scrolled .header-logo { visibility: visible; }

  body.page-home header:not(.is-scrolled) .nav-links a {
    color: var(--yellow);
    font-family: var(--font-title);
    font-weight: 700;
    letter-spacing: 0;
  }
  body.page-home header.is-scrolled .nav-links a { color: var(--maroon); }

  body.page-home header .nav-toggle span { background: var(--yellow); }
  body.page-home header.is-scrolled .nav-toggle span { background: var(--maroon); }

  body.page-home .nav-links {
    margin: 0;
    transform: none;
    gap: 44px;
  }

  body.page-home .nav-links a {
    font-size: 1.6rem;
  }
}

/* ───────── SERVICES ROW (home) ───────── */
.services {
  background: var(--cream);
  padding: clamp(50px, 8vw, 100px) 5%;
  display: flex;
  justify-content: center;
  gap: clamp(30px, 5vw, 60px);
  flex-wrap: wrap;
  text-align: center;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 260px;
}

.service-item img { width: 56px; height: 56px; object-fit: contain; }
.service-item h2 { font-size: 1.5rem; font-weight: 400; font-family: var(--font-title); }

/* ───────── MEDIA + CONTENT (home) ───────── */
.media-content {
  display: flex;
  align-items: stretch;
}

.media-content.compact { height: 50svh; }
.media-content.compact .content { padding: clamp(20px, 3vw, 40px); }
.media-content.compact .jumbo-text { font-size: clamp(1.3rem, 2.6vw, 2.1rem); }

.media-content.dark .media,
.media-content.cream2 .media { aspect-ratio: 1.775; }

.media-content.reverse { flex-direction: row-reverse; }

.media-content .media {
  flex: 1 1 50%;
  position: relative;
  min-height: 220px;
}

.media-content .media video,
.media-content .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-content .content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 80px);
  gap: 18px;
}

.media-content.cream .content { background: var(--cream-2); }
.media-content.dark .content { background: var(--dark-brown); color: var(--lavender); }
.media-content.cream2 .content { background: var(--cream); }

.jumbo-text {
  font-family: var(--font-title);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.9;
  font-size: clamp(2rem, 5vw, 3.4rem);
  text-align: right;
}

.media-content h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 400; font-family: var(--font-title); }
.media-content h4 { font-size: 1.3rem; font-weight: 400; font-family: var(--font-title); }
.media-content p { max-width: 40ch; opacity: .9; }
.media-content.center { text-align: center; align-items: center; }
.media-content.center .content { align-items: center; text-align: center; }

/* ───────── SHARED FORM FIELDS ───────── */
.field-row { display: flex; gap: 14px; flex-wrap: wrap; }
.field-row > .field { flex: 1 1 180px; }

.field { display: flex; flex-direction: column; gap: 6px; }

.field label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .68rem;
  font-weight: 700;
  opacity: .65;
}

.field input,
.field textarea {
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-family: inherit;
  font-size: .92rem;
  color: var(--maroon);
  transition: border-color .18s, box-shadow .18s;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--maroon-dark);
  box-shadow: 0 0 0 3px rgba(118,30,11,.12);
}

.field textarea { min-height: 110px; resize: vertical; }

/* ───────── CONTACT CTA CARD (home) ───────── */
.contact-cta-section {
  background: var(--cream) url("media/Element_1_Baristamigo_4.png") left bottom/contain no-repeat;
  border-radius: 52px;
  overflow: hidden;
  margin: 40px 5%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: max(20px, 6vw) 5%;
}

.contact-cta-section .contact-form {
  width: 49%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form__title { font-family: var(--font-title); font-size: clamp(1.2rem, 2.4vw, 1.6rem); }

.contact-cta-section .contact-form button[type="submit"] {
  align-self: stretch;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  background: var(--maroon-dark);
  color: #fff;
  font-weight: 700;
  transition: background .2s, color .2s;
}

.contact-cta-section .contact-form button[type="submit"]:hover { background: var(--orange); color: #fff; }

/* ───────── CONTACT PAGE (plain form) ───────── */
.contact-section {
  display: flex;
  justify-content: center;
  padding: 20px 5% clamp(50px, 8vw, 90px);
}

.contact-section .contact-form {
  width: min(100%, 560px);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(42,7,2,.08);
  padding: clamp(30px, 5vw, 48px);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-section .contact-form button[type="submit"] {
  align-self: center;
  padding: 14px 44px;
  border-radius: 100px;
  border: none;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  transition: background .2s;
}

.contact-section .contact-form button[type="submit"]:hover { background: var(--maroon); }

.founders-photo { border-radius: 20px; margin-top: 20px; }

.contact-form__success { text-align: center; }
.contact-cta-section .contact-form__success { width: 49%; }
.contact-section .contact-form__success {
  width: min(100%, 560px);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(42,7,2,.08);
  padding: clamp(30px, 5vw, 48px);
  border-radius: 28px;
}

/* ───────── SERVICES PAGE — PAKKETTEN ───────── */
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
  padding: 0 5% clamp(50px, 8vw, 90px);
  align-items: start;
}

.package-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.package-card__badge {
  background: var(--maroon-dark);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 6px;
}

.package-card__image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.package-card__image img { width: 100%; height: 100%; object-fit: cover; }

.package-card h2 {
  font-family: var(--font-title);
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.3rem;
  padding: 20px 16px 4px;
}

.package-card .cta {
  margin: 12px auto 20px;
  display: inline-flex;
  padding: 10px 32px;
  border-radius: 100px;
  background: var(--maroon-dark);
  color: #fff;
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.package-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 20px 24px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.package-card__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: 600;
  line-height: 1.4;
}

.package-card__list li::before {
  content: "✓";
  flex: 0 0 auto;
  color: var(--maroon-dark);
  font-weight: 700;
}

@media (max-width: 1000px) {
  .package-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .package-grid { grid-template-columns: 1fr; }
}

/* ───────── CLOSING CTA (services / realisaties) ───────── */
.closing-cta {
  text-align: center;
  padding: clamp(50px, 8vw, 90px) 5%;
  background: var(--dark-brown);
  color: var(--lavender);
}

.closing-cta h2 { font-family: var(--font-title); font-weight: 400; font-size: clamp(1.6rem, 3.6vw, 2.4rem); margin-bottom: 14px; }
.closing-cta p { max-width: 46ch; margin: 0 auto 24px; opacity: .9; }
.closing-cta .cta {
  display: inline-flex;
  padding: 14px 36px;
  border-radius: 100px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .85rem;
}

/* ───────── REALISATIES PAGE ───────── */
.section-heading {
  text-align: center;
  font-family: var(--font-title);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  padding: clamp(16px, 3vw, 28px) 5% 16px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 0 4px clamp(40px, 6vw, 70px);
}

.video-grid video { width: 100%; height: clamp(240px, 32vw, 420px); object-fit: cover; }

@media (max-width: 850px) {
  .video-grid { grid-template-columns: 1fr; }
  .video-grid video { height: 300px; }
}

.sticker-showcase {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 4vw, 48px);
  flex-wrap: wrap;
  padding: clamp(10px, 3vw, 30px) 5% clamp(50px, 8vw, 90px);
  background: var(--cream);
}

.sticker-showcase img { width: clamp(120px, 16vw, 180px); height: clamp(120px, 16vw, 180px); }

/* ───────── FOOTER ───────── */
.footer-utilities {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 18px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .7rem;
  font-weight: 600;
  opacity: .85;
}

.footer-utilities a { text-decoration: underline; }

/* ───────── FLOATING QUOTE BUTTON ───────── */
.quote-float {
  position: fixed;
  bottom: 24px;
  right: 26px;
  z-index: 999;
  background: var(--maroon-dark);
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 14px 24px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}

.quote-float svg { width: 18px; height: 18px; fill: #fff; }

@media (max-width: 750px) {
  /* Rechtsonder is bezet door de WhatsApp-widget: hier botsten beide knoppen op elkaar */
  .quote-float {
    right: auto;
    left: 16px;
    bottom: 16px;
    padding: 12px 20px;
    font-size: 1rem;
  }
}

/* ───────── QUOTE MODAL ───────── */
.quote-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 2000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(16px, 5vw, 40px) 16px;
  overflow-y: auto;
}

.quote-modal-backdrop.open { display: flex; }

.quote-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  padding: clamp(24px, 6vw, 44px) clamp(18px, 5vw, 40px);
  position: relative;
}

.quote-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--maroon);
}

.quote-modal__logo { height: 40px; width: auto; margin-bottom: 20px; aspect-ratio: 5377 / 701; object-fit: contain; }
.quote-modal__title { font-family: var(--font-title); font-size: 1.2rem; margin-bottom: 24px; }
.quote-modal__step-label { font-family: var(--font-body); text-transform: uppercase; letter-spacing: .06em; font-size: .7rem; opacity: .6; margin-bottom: 2px; }
.quote-modal__page-title { font-family: var(--font-body); text-transform: uppercase; letter-spacing: .06em; font-weight: 700; font-size: .95rem; margin-bottom: 12px; }

.quote-modal__progress {
  height: 4px;
  background: rgba(118,30,11,.15);
  border-radius: 2px;
  margin-bottom: 24px;
  overflow: hidden;
}

.quote-modal__progress-bar { height: 100%; background: var(--maroon-dark); transition: width .3s; }

.quote-modal__field { margin-bottom: 16px; }
.quote-modal__field label { display: block; font-size: .8rem; margin-bottom: 6px; font-weight: 600; }

.quote-modal__field input,
.quote-modal__field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: .9rem;
  color: var(--maroon);
}

.quote-modal__field textarea { min-height: 70px; resize: vertical; }

.quote-modal__checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; }

@media (max-width: 420px) {
  .quote-modal__checkbox-grid { grid-template-columns: 1fr; }
}
.quote-modal__checkbox-item { display: flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 400; }
.quote-modal__checkbox-item input { width: auto; }

.quote-modal__step { display: none; }
.quote-modal__step.active { display: block; }

.quote-modal__actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 24px; }

.quote-modal__btn {
  padding: 12px 28px;
  border-radius: 80px;
  border: none;
  background: var(--maroon-dark);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.quote-modal__btn.secondary { background: #e7e7e7; color: #111; }

.quote-modal__footer-note { font-size: .68rem; opacity: .55; margin-top: 24px; text-align: center; }
.quote-modal__footer-note a { text-decoration: underline; }

.quote-modal__success { text-align: center; padding: 20px 0; }
.quote-modal__success h3 { font-family: var(--font-title); margin-bottom: 10px; }

@media (max-width: 750px) {
  .media-content, .media-content.reverse { flex-direction: column; }
  .media-content .media { min-height: 260px; }
  .media-content.compact { height: auto; }
  .media-content.compact .media { min-height: 160px; }
  .jumbo-text { text-align: left; }
  .contact-cta-section { justify-content: center; border-radius: 28px; background-image: none; background-color: var(--cream); }
  .contact-cta-section .contact-form { width: 100%; }

  /* WhatsApp-widget niet nodig op mobiel */
  .elfsight-app-ae0fd06d-759a-407e-ab45-b056ee390d64 { display: none !important; }
}

/* ───────── SEO / TOEGANKELIJKHEID: UTILITIES ───────── */
.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;
}

/* ───────── BREADCRUMB ───────── */
.breadcrumb {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 5% 0;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 700;
  color: var(--maroon);
  opacity: .7;
}

.breadcrumb a { text-decoration: underline; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 6px; opacity: .6; }

/* ───────── USP-LIJST ───────── */
.usp-section { padding: clamp(30px, 5vw, 60px) 5%; max-width: 1000px; margin: 0 auto; }
.usp-section h2 { font-family: var(--font-title); font-weight: 400; text-transform: uppercase; font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 20px; }

.usp-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
}

.usp-list li { display: flex; gap: 12px; align-items: flex-start; }
.usp-list li::before { content: "✓"; color: var(--orange); font-weight: 700; flex: 0 0 auto; }

@media (max-width: 700px) { .usp-list { grid-template-columns: 1fr; } }

/* ───────── WERKGEBIED / STEDENLIJST ───────── */
.area-section { padding: clamp(30px, 5vw, 60px) 5%; max-width: 900px; margin: 0 auto; text-align: center; }
.area-section h2 { font-family: var(--font-title); font-weight: 400; text-transform: uppercase; font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 12px; }
.area-section > p { max-width: 60ch; margin: 0 auto 24px; opacity: .9; }

.city-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.city-list li {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
}

/* ───────── MINI-FAQ OP DIENSTPAGINA'S ───────── */
.faq-section { background: var(--cream-2); padding: clamp(30px, 5vw, 60px) 5%; }
.faq-section .inner { max-width: 900px; margin: 0 auto; }
.faq-section h2 { font-family: var(--font-title); font-weight: 400; text-transform: uppercase; font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 20px; }

.faq-item { border-bottom: 1px solid var(--border); padding: 18px 0; }
.faq-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.faq-item p { opacity: .9; }

/* ───────── GERELATEERDE PAGINA'S ───────── */
.related-links { padding: clamp(30px, 5vw, 60px) 5%; max-width: 1000px; margin: 0 auto; }
.related-links h2 { font-family: var(--font-title); font-weight: 400; text-transform: uppercase; font-size: 1.2rem; margin-bottom: 16px; }
.related-links ul { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; }
.related-links a {
  display: inline-flex;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-weight: 700;
  font-size: .85rem;
}
.related-links a:hover { background: var(--cream-2); }

/* ───────── SITE-FOOTER MET NAP-GEGEVENS ───────── */
.site-footer { background: var(--cream-2); border-top: 1px solid var(--border); }

.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 64px) 5%;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
}

.footer-col h2 {
  font-family: var(--font-title);
  font-weight: 400;
  text-transform: uppercase;
  font-size: .95rem;
  margin-bottom: 14px;
}

.footer-col img { height: 30px; width: auto; margin-bottom: 12px; aspect-ratio: 5377 / 701; object-fit: contain; }
.footer-col p { font-size: .85rem; opacity: .85; max-width: 32ch; }

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .85rem; opacity: .85; }
.footer-col a:hover { opacity: 1; text-decoration: underline; }

.footer-col address { font-size: .85rem; font-style: normal; line-height: 1.7; opacity: .9; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 550px) {
  .footer-grid { grid-template-columns: 1fr; }
}
