/* Self-hosted Archivo — latin subsets only (covers DE/AT/CH perfectly) */
/* vietnamese subset */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 800;
  font-stretch: normal;
  font-display: swap;
  src: url('/static/fonts/archivo-vietnamese.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext subset */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 800;
  font-stretch: normal;
  font-display: swap;
  src: url('/static/fonts/archivo-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin subset */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 800;
  font-stretch: normal;
  font-display: swap;
  src: url('/static/fonts/archivo-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Archivo Expanded — display weight alias using expanded stretch */
@font-face {
  font-family: 'Archivo Expanded';
  font-style: normal;
  font-weight: 400 800;
  font-stretch: expanded;
  font-display: swap;
  src: url('/static/fonts/archivo-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* =========================================================================
   Caravan Service Westmünsterland — Redesign
   Warmes Sand/Creme · Dunkelblau · Gold · kräftige Grotesque
   ========================================================================= */

:root {
  /* Brand */
  --navy:       #16233f;
  --navy-2:     #0f1a30;
  --navy-soft:  #21345a;
  --gold:       #c9a227;   /* tweakable */
  --gold-deep:  #a07f17;

  /* Warm neutrals */
  --cream:   #f4eddf;
  --cream-2: #ece2cf;
  --sand:    #e3d6bd;
  --paper:   #fbf7ee;
  --ink:     #1b2333;
  --ink-2:   #5d5747;
  --line:    rgba(22, 35, 63, .14);
  --line-2:  rgba(22, 35, 63, .08);

  /* Type */
  --display-font: "Archivo Expanded", "Archivo", system-ui, sans-serif; /* tweakable */
  --body-font: "Archivo", system-ui, -apple-system, sans-serif;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius: 6px;
  --shadow: 0 18px 40px -22px rgba(15, 26, 48, .45);
  --shadow-sm: 0 8px 20px -14px rgba(15, 26, 48, .4);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--display-font);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Section rhythm */
section { position: relative; }
.section-pad { padding-block: clamp(64px, 9vw, 132px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--gold);
}

.lede { font-size: clamp(18px, 2.1vw, 22px); color: var(--ink-2); line-height: 1.5; }

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  --bg: var(--navy);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .01em;
  padding: 15px 26px;
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--fg);
  border: 2px solid var(--bg);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0); }
.btn svg { width: 19px; height: 19px; }

.btn--gold { --bg: var(--gold); --fg: var(--navy); }
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: #fff; }

.btn--ghost {
  --bg: transparent; --fg: var(--navy);
  border-color: rgba(22,35,63,.30);
}
.btn--ghost:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.btn--ghost-light {
  --bg: transparent; --fg: #fff;
  border-color: rgba(255,255,255,.45);
}
.btn--ghost-light:hover { background: #fff; color: var(--navy); border-color: #fff; }

.btn--wa { --bg: #1faf54; --fg: #fff; border-color: #1faf54; }
.btn--wa:hover { background: #178a43; border-color: #178a43; }

.btn--lg { padding: 17px 30px; font-size: 17px; }

/* =========================================================================
   Header
   ========================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 247, 238, .88);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line-2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 46px; width: auto; }
.brand-text { line-height: 1; }
.brand-text b {
  display: block;
  font-family: var(--display-font);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: .01em;
  color: var(--navy);
}
.brand-text span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 3px;
}

.nav { display: none; align-items: center; gap: 32px; }
.nav a {
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
  position: relative;
  padding-block: 6px;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .2s ease;
}
.nav a:hover::after { width: 100%; }

.header-cta { display: none; align-items: center; gap: 16px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--navy); font-size: 15px;
}
.header-phone svg { width: 17px; height: 17px; color: var(--gold-deep); }

.burger {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  color: var(--navy);
}
.burger svg { width: 24px; height: 24px; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--navy);
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 24px var(--gutter) 40px;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; height: 52px; }
.mobile-menu-top .close {
  width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); border: none; border-radius: var(--radius); color: #fff; cursor: pointer;
  transition: background .15s ease;
}
.mobile-menu-top .close:hover { background: rgba(255,255,255,.16); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; margin-top: 30px; }
.mobile-menu nav a {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 30px;
  color: #fff;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: color .15s ease;
}
.mobile-menu nav a:hover { color: var(--gold); }
.mobile-menu nav a span { color: var(--gold); }
.mobile-menu .mm-actions { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }
.mobile-menu .mm-contact { margin-top: 26px; color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.7; }
.mobile-menu .mm-contact a { color: var(--gold); font-weight: 700; }

/* =========================================================================
   Image placeholders (documentary)
   ========================================================================= */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      rgba(22,35,63,.05) 0 14px,
      rgba(22,35,63,.09) 14px 28px),
    var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.ph .ph-tag {
  margin: 14px;
  font-family: "Courier New", monospace;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--navy);
  background: rgba(251,247,238,.92);
  border: 1px solid var(--line);
  padding: 7px 11px;
  border-radius: 4px;
  max-width: 88%;
}
.ph .ph-tag::before { content: "▢ "; color: var(--gold-deep); }
.ph--dark {
  background:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,.04) 0 14px,
      rgba(255,255,255,.08) 14px 28px),
    var(--navy-2);
  border-color: rgba(255,255,255,.12);
}
.ph--dark .ph-tag { color: #fff; background: rgba(15,26,48,.78); border-color: rgba(255,255,255,.18); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero { position: relative; overflow: hidden; }
.hero .wrap { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
  padding-block: clamp(48px, 7vw, 104px);
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 13.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 22px;
}
.hero-kicker .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.hero h1 {
  font-size: clamp(40px, 7.4vw, 78px);
  line-height: .98;
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--gold); }
.hero-sub {
  margin-top: 24px;
  font-size: clamp(17px, 2.1vw, 21px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 30ch;
}
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-media { position: relative; }
.hero-media .ph { aspect-ratio: 4 / 3.4; height: 100%; min-height: 320px; }
.hero-badge-float {
  position: absolute;
  left: -14px; bottom: -14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.hero-badge-float .stars { color: var(--gold); font-size: 15px; letter-spacing: 1px; }
.hero-badge-float b { font-family: var(--display-font); font-size: 20px; color: var(--navy); display: block; }
.hero-badge-float small { color: var(--ink-2); font-size: 12.5px; }

/* Hero MODE: dark */
body[data-hero-mode="dark"] .hero { background: var(--navy); }
body[data-hero-mode="dark"] .hero h1 { color: #fff; }
body[data-hero-mode="dark"] .hero-sub { color: rgba(255,255,255,.74); }
body[data-hero-mode="dark"] .hero .btn--ghost { --fg:#fff; border-color: rgba(255,255,255,.45); }
body[data-hero-mode="dark"] .hero .btn--ghost:hover { background:#fff; color: var(--navy); }
body[data-hero-mode="dark"] .hero-grain { opacity: .5; }

/* subtle background texture for hero */
.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(201,162,39,.12), transparent 55%),
    radial-gradient(80% 70% at 0% 100%, rgba(22,35,63,.06), transparent 60%);
}
body[data-hero-mode="dark"] .hero-grain {
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(201,162,39,.22), transparent 55%),
    radial-gradient(90% 80% at 0% 100%, rgba(33,52,90,.7), transparent 60%);
}

/* Hero VARIANT B — full-bleed overlay */
body[data-hero-variant="b"] .hero-grid {
  grid-template-columns: 1fr;
  min-height: min(86vh, 760px);
  align-content: center;
}
body[data-hero-variant="b"] .hero-media { display: none; }
body[data-hero-variant="b"] .hero-text { max-width: 760px; }
body[data-hero-variant="b"] .hero h1 { font-size: clamp(44px, 8.2vw, 92px); }
body[data-hero-variant="b"] .hero-sub { max-width: 46ch; }
body[data-hero-variant="b"] .hero-fullbg {
  position: absolute; inset: 0; z-index: 0;
}
body[data-hero-variant="b"] .hero-fullbg .ph { width: 100%; height: 100%; border: none; border-radius: 0; }
body[data-hero-variant="b"] .hero-fullbg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,26,48,.92) 0%, rgba(15,26,48,.7) 45%, rgba(15,26,48,.25) 100%);
}
body[data-hero-variant="b"][data-hero-mode="light"] .hero-fullbg::after {
  background: linear-gradient(90deg, rgba(244,237,223,.95) 0%, rgba(244,237,223,.8) 45%, rgba(244,237,223,.3) 100%);
}
body[data-hero-variant="b"][data-hero-mode="dark"] .hero h1,
body[data-hero-variant="b"] .hero h1 { } /* handled by mode */
body[data-hero-variant="b"] .hero { background: var(--navy-2); }
body[data-hero-variant="b"][data-hero-mode="light"] .hero { background: var(--cream); }
/* In variant B the text sits over the scrim → force readable colors by mode */
body[data-hero-variant="b"][data-hero-mode="dark"] .hero h1 { color:#fff; }
body[data-hero-variant="b"][data-hero-mode="dark"] .hero-sub { color: rgba(255,255,255,.8); }
body[data-hero-variant="b"][data-hero-mode="light"] .hero h1 { color: var(--navy); }
body[data-hero-variant="b"][data-hero-mode="light"] .hero-sub { color: var(--ink-2); }
body[data-hero-variant="a"] .hero-fullbg { display: none; }

/* =========================================================================
   Trust bar
   ========================================================================= */
.trust {
  background: var(--navy);
  color: rgba(255,255,255,.9);
  border-top: 3px solid var(--gold);
}
.trust .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 30px;
  padding-block: 22px;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 14.5px; letter-spacing: .01em;
}
.trust-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.trust-item .stars { color: var(--gold); letter-spacing: 1px; }
.trust-sep { width: 1px; height: 22px; background: rgba(255,255,255,.18); }

/* =========================================================================
   Werkstatt (Hauptblock)
   ========================================================================= */
.werkstatt { background: var(--cream); }
.werkstatt-head { max-width: 760px; }
.werkstatt-head h2 { font-size: clamp(32px, 4.6vw, 56px); margin-top: 18px; }
.werkstatt-head .lede { margin-top: 22px; }

.service-grid {
  margin-top: clamp(40px, 5vw, 60px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px 24px;
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--gold); }
.service-card .ico {
  width: 50px; height: 50px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.service-card .ico svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 19px; font-weight: 800; letter-spacing: 0; }
.service-card p { margin-top: 7px; font-size: 14.5px; color: var(--ink-2); line-height: 1.45; }

.werkstatt-cta {
  margin-top: clamp(36px, 5vw, 52px);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  padding: 28px;
  background: var(--navy);
  border-radius: var(--radius);
  color: #fff;
}
.werkstatt-cta .txt { flex: 1 1 260px; }
.werkstatt-cta .txt b { font-family: var(--display-font); font-size: 22px; display: block; }
.werkstatt-cta .txt span { color: rgba(255,255,255,.72); font-size: 15px; }

/* =========================================================================
   Value props
   ========================================================================= */
.values { background: var(--cream-2); border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.values-grid {
  margin-top: clamp(36px, 4vw, 52px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.value-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 30px 26px 32px;
  position: relative;
}
.value-card .vnum {
  font-family: var(--display-font);
  font-size: 13px; font-weight: 800; letter-spacing: .14em;
  color: var(--gold-deep);
}
.value-card .ico {
  width: 52px; height: 52px; margin: 16px 0 18px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy); color: var(--gold); border-radius: 50%;
}
.value-card .ico svg { width: 26px; height: 26px; }
.value-card h3 { font-size: 23px; }
.value-card p { margin-top: 12px; color: var(--ink-2); font-size: 15.5px; }
.value-card .tags { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.value-card .tags span {
  font-size: 12.5px; font-weight: 700; color: var(--navy);
  background: var(--sand); padding: 5px 10px; border-radius: 100px;
}

/* =========================================================================
   Über uns
   ========================================================================= */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}
.about-media { position: relative; }
.about-media .ph { aspect-ratio: 4/3.2; }
.about-media .ph.small {
  position: absolute; right: -10px; bottom: -22px;
  width: 46%; aspect-ratio: 1/1; box-shadow: var(--shadow);
}
.about-text h2 { font-size: clamp(30px, 4.4vw, 50px); margin-top: 16px; }
.about-text p { margin-top: 18px; color: var(--ink-2); font-size: 16.5px; }
.about-text p .hl { color: var(--navy); font-weight: 700; }
.about-sign { margin-top: 26px; display: flex; align-items: center; gap: 16px; }
.about-sign .names { font-family: var(--display-font); font-weight: 800; color: var(--navy); font-size: 18px; }
.about-sign .role { font-size: 13.5px; color: var(--ink-2); }
.about-stats { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 30px; }
.about-stats .stat b { font-family: var(--display-font); font-size: 34px; color: var(--gold-deep); display: block; line-height: 1; }
.about-stats .stat span { font-size: 13.5px; color: var(--ink-2); font-weight: 600; }

/* =========================================================================
   Bewertungen
   ========================================================================= */
.reviews { background: var(--navy); color: #fff; }
.reviews-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; }
.reviews-head h2 { color: #fff; font-size: clamp(30px, 4.2vw, 50px); }
.reviews-head .eyebrow { color: var(--gold); }
.reviews-head .eyebrow::before { background: var(--gold); }
.reviews-score { text-align: right; }
.reviews-score .num { font-family: var(--display-font); font-size: 42px; color: var(--gold); line-height: 1; }
.reviews-score .stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.reviews-score small { display: block; color: rgba(255,255,255,.65); font-size: 13px; margin-top: 4px; }
.reviews-grid {
  margin-top: clamp(34px, 4vw, 50px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.review-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.review-card .stars { color: var(--gold); letter-spacing: 2px; font-size: 16px; }
.review-card p { margin-top: 14px; font-size: 16px; line-height: 1.55; color: rgba(255,255,255,.92); }
.review-card .who { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.review-card .who .av {
  width: 42px; height: 42px; border-radius: 50%; background: var(--gold); color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center; font-family: var(--display-font); font-weight: 800;
}
.review-card .who b { font-size: 15px; }
.review-card .who small { display: block; color: rgba(255,255,255,.55); font-size: 12.5px; }
.reviews-foot { margin-top: 30px; }

/* =========================================================================
   Kontakt
   ========================================================================= */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
}
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
}
.contact-card h2 { font-size: clamp(28px, 4vw, 46px); margin-top: 14px; }
.contact-wa-box {
  margin-top: 26px;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 24px;
  color: #fff;
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
}
.contact-wa-box .ico { width: 48px; height: 48px; border-radius: 50%; background:#1faf54; display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-wa-box .ico svg { width: 26px; height: 26px; color: #fff; }
.contact-wa-box .t { flex: 1 1 180px; }
.contact-wa-box .t b { font-family: var(--display-font); font-size: 19px; display: block; }
.contact-wa-box .t span { color: rgba(255,255,255,.72); font-size: 14px; }

.contact-list { margin-top: 26px; display: flex; flex-direction: column; gap: 2px; }
.contact-row { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.contact-row:last-child { border-bottom: none; }
.contact-row .ico {
  width: 42px; height: 42px; border-radius: var(--radius); background: var(--sand); color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-row .ico svg { width: 21px; height: 21px; }
.contact-row .c b { display: block; font-family: var(--display-font); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); }
.contact-row .c .big { font-size: 19px; font-weight: 700; color: var(--navy); margin-top: 3px; line-height: 1.3; }
.contact-row .c .big.link:hover { color: var(--gold-deep); }
.contact-row .c .muted { font-size: 14.5px; color: var(--ink-2); }

.hours-table { margin-top: 6px; width: 100%; border-collapse: collapse; }
.hours-table td { padding: 7px 0; font-size: 15px; border-bottom: 1px dashed var(--line); }
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--navy); }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table .closed td:last-child { color: var(--ink-2); font-weight: 600; }

.map-ph { min-height: 280px; height: 100%; }
.map-ph .ph { height: 100%; min-height: 280px; }
.map-ph .map-link { display: block; position: relative; height: 100%; min-height: 280px; border-radius: var(--radius); overflow: hidden; text-decoration: none; }
.map-ph .map-link img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; display: block; }
.map-static {
  width: 100%; height: 100%; min-height: 280px;
  background: var(--cream-2);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.map-dots { position: absolute; inset: 0; }
.map-pin-center {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center;
}
.map-pin-center i { color: var(--gold); width: 36px; height: 36px; }
.map-pin-center span { font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.5; }
.map-ph .map-overlay {
  position: absolute; bottom: 16px; right: 16px;
  background: var(--navy); color: #fff;
  padding: 8px 14px; border-radius: 6px;
  font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  transition: background .15s ease;
}
.map-ph .map-link:hover .map-overlay { background: var(--navy-soft); }
.map-ph .map-overlay i { width: 14px; height: 14px; }
.map-ph .map-fallback { background: var(--cream-2); display: flex; align-items: center; justify-content: center; color: var(--ink-2); font-size: 15px; }
.map-ph iframe { width: 100%; height: 100%; min-height: 280px; border: none; display: block; border-radius: var(--radius); }/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { background: var(--navy-2); color: rgba(255,255,255,.7); padding-block: clamp(48px, 6vw, 76px) 30px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 64px; height: 64px; border-radius: 50%; background:#fff; }
.footer-brand .ft b { display:block; font-family: var(--display-font); font-weight: 800; color:#fff; font-size: 19px; }
.footer-brand .ft span { display:block; color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; margin-top:3px; }
.footer-about { margin-top: 18px; font-size: 14.5px; line-height: 1.6; max-width: 38ch; }
.footer-col h4 { color:#fff; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-family: var(--body-font); font-weight: 700; }
.footer-col ul { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14.5px; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,.5);
}
.footer-bottom a:hover { color: var(--gold); }

/* Floating WhatsApp */
.wa-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 50;
  width: 58px; height: 58px; border-radius: 50%;
  background: #1faf54; color:#fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px -8px rgba(31,175,84,.7);
  transition: transform .18s ease;
}
.wa-fab:hover { transform: scale(1.06); }
.wa-fab svg { width: 30px; height: 30px; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (min-width: 600px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 880px) {
  .nav { display: flex; }
  .header-cta { display: flex; }
  .burger { display: none; }
  .service-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  body[data-hero-variant="b"] .hero-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: .95fr 1.05fr; }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1.15fr .85fr; }
}
@media (min-width: 1024px) {
  .about-media .ph.small { right: -28px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* Reveal on scroll */
.reveal { opacity: 0; transition: opacity .6s ease; }
.reveal.in { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .reveal, .reveal.in { opacity: 1 !important; transition: none !important; } }

/* Global focus ring */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}



/* ==========================================================================
   webhull bridge
   Maps webhull's auto-rendered nav/footer classes to reference design.
   Reference: .site-header → webhull: .nav
              .header-inner → webhull: .nav-container  
              .brand        → webhull: .logo
              .brand img    → webhull: .logo-img
              .brand-text   → webhull: .logo-text
              .nav (links)  → webhull: .nav-links (ul > li > a)
              .burger       → webhull: .mobile-menu-toggle
              .site-footer  → webhull: .footer
   ========================================================================== */

/* Header */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,247,238,.88);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line-2);
  padding: 0;
}
.nav-container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 76px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; text-decoration: none; }
.logo-img { height: 46px; width: auto; display: block; }
.logo-text { line-height: 1; }
.logo-text b, .logo-text strong {
  display: block; font-family: var(--display-font); font-weight: 800;
  font-size: 17px; letter-spacing: .01em; color: var(--navy);
}
.logo-text span {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-deep); margin-top: 3px;
}

/* Nav links (webhull renders as <ul class="nav-links"><li><a>…) */
.nav-links {
  display: none;
  list-style: none;
  align-items: center; gap: 28px; margin: 0; padding: 0;
}
.nav-links li { white-space: nowrap; }
.nav-links a {
  font-weight: 600; font-size: 15px; color: var(--ink);
  position: relative; padding-block: 6px;
  transition: color .15s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width .2s ease;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }

/* Hide dark-mode toggle — no dark mode */
.theme-toggle { display: none !important; }

/* Burger button */
.mobile-menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; cursor: pointer; color: var(--navy);
  transition: background .15s ease, border-color .15s ease;
}
.mobile-menu-toggle:hover { background: var(--cream-2); border-color: var(--sand); }
.mobile-menu-toggle svg { width: 24px; height: 24px; }

/* Breakpoints for nav */
@media (min-width: 880px) {
  .nav-links { display: flex; }
  .mobile-menu-toggle { display: none !important; }
}

/* Footer */
.footer {
  background: var(--navy-2);
  color: rgba(255,255,255,.7);
  padding-block: clamp(48px,6vw,76px) 30px;
  border-top: none;
}
.footer a { color: rgba(255,255,255,.7); }
.footer a:hover { color: var(--gold); }

/* Legal pages */
.legal-page { max-width: 760px; margin-inline: auto; padding: clamp(48px,6vw,80px) var(--gutter) clamp(80px,10vw,140px); }
.legal-page h1 { font-size: clamp(28px,3.5vw,42px); margin-bottom: 32px; }
.legal-page h2 { font-size: 22px; margin-top: 36px; margin-bottom: 12px; }
.legal-page p  { margin-bottom: 16px; color: var(--ink-2); line-height: 1.7; }
.legal-page a  { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.legal-page a:hover { color: var(--gold-deep); }

/* Contact form (webhull /api/contact) */
#contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-field-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 14px; font-weight: 700; letter-spacing: .02em; color: var(--navy); }
.form-input, .form-textarea {
  font-family: var(--body-font); font-size: 16px; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line);
  border-radius: var(--radius); padding: 13px 16px; width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease; outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,.15);
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-honeypot { display: none !important; }
#contact-submit {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body-font); font-weight: 700; font-size: 17px;
  padding: 17px 30px; border-radius: var(--radius);
  background: var(--gold); color: var(--navy); border: 2px solid var(--gold);
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
#contact-submit:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
#contact-submit svg { width: 19px; height: 19px; }
.form-message { padding: 14px 18px; border-radius: var(--radius); font-size: 15px; font-weight: 600; }
.form-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.form-error   { background: #fde8e8; color: #9b1c1c; border: 1px solid #f4a4a4; }

/* Contact form section wrapper */
.contact-form-section { background: var(--cream-2); border-top: 1px solid var(--line-2); }
.contact-form-section .wrap { max-width: 720px; }

/* Map embed */
.map-ph iframe { width: 100%; height: 100%; min-height: 280px; border: none; display: block; border-radius: var(--radius); }
