/* mobiledtfprinting.com — "van-route" theme, built from scratch for this site.
   Palette: bg #f4f7f5 / surface #fff / accent #0b7261 / accent2 #f4a63a / ink #15201c
   Display: Familjen Grotesk. Body: Inter. Motif: rounded route-lines with location-pin dots. */

:root {
  --bg: #f4f7f5;
  --surface: #ffffff;
  --accent: #0b7261;
  --accent-deep: #085a4d;
  --accent2: #f4a63a;
  --ink: #15201c;
  --muted: #51625c;
  --line: rgba(11, 114, 97, 0.16);
  --pin-dash: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='8'%3E%3Cpath d='M2 4h20' stroke='%230b7261' stroke-width='2.6' stroke-linecap='round' stroke-dasharray='10 26'/%3E%3C/svg%3E");
  --radius: 18px;
  --shadow: 0 12px 34px rgba(21, 32, 28, 0.1);
  --font-display: "Familjen Grotesk", "Inter", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.015em;
  font-weight: 700;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 5.4vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.25rem); margin-bottom: 0.6em; }
h3 { font-size: 1.15rem; }

/* ---------- scroll progress: a little route being driven ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 4px; z-index: 90;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform-origin: 0 50%; transform: scaleX(0);
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.7rem clamp(1rem, 4vw, 2.6rem);
  background: rgba(244, 247, 245, 0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--ink); }
.brand-pin {
  display: grid; place-items: center; width: 42px; height: 42px;
  background: var(--surface); border: 1.5px solid var(--line); border-radius: 50% 50% 50% 6px;
  box-shadow: 0 3px 10px rgba(11, 114, 97, 0.14);
}
.brand-word { display: flex; flex-direction: column; line-height: 1.15; }
.brand-word strong { font-family: var(--font-display); font-size: 1.06rem; letter-spacing: -0.01em; }
.brand-word small { font-size: 0.72rem; color: var(--muted); }
.site-nav { display: flex; align-items: center; gap: clamp(0.7rem, 1.6vw, 1.4rem); }
.site-nav a {
  text-decoration: none; color: var(--ink); font-weight: 500; font-size: 0.95rem;
  padding: 0.3rem 0.1rem; border-bottom: 2px solid transparent;
}
.site-nav a:hover { border-bottom-color: var(--accent2); }
.site-nav .nav-cta {
  background: var(--accent); color: #fff; padding: 0.55rem 1.1rem; border-radius: 999px;
  border-bottom: none; font-weight: 600;
}
.site-nav .nav-cta:hover { background: var(--accent-deep); }
.nav-toggle {
  display: none; font: 600 0.9rem var(--font-body); color: var(--ink);
  background: var(--surface); border: 1.5px solid var(--line); border-radius: 999px;
  padding: 0.5rem 1.1rem; cursor: pointer;
}

/* ---------- buttons ---------- */
.button {
  display: inline-block; background: var(--accent); color: #fff; text-decoration: none;
  font: 600 1rem var(--font-body); padding: 0.85rem 1.7rem; border-radius: 999px;
  box-shadow: 0 8px 20px rgba(11, 114, 97, 0.28); transition: transform 0.15s ease, background 0.15s ease;
}
.button:hover { background: var(--accent-deep); transform: translateY(-1px); }
.button-ghost {
  background: rgba(255, 255, 255, 0.14); border: 1.5px solid rgba(255, 255, 255, 0.65);
  box-shadow: none; backdrop-filter: blur(4px);
}
.button-ghost:hover { background: rgba(255, 255, 255, 0.26); }
.text-link { font-weight: 600; text-decoration-color: var(--accent2); text-underline-offset: 3px; }

/* ---------- eyebrow with pin dot ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font: 600 0.78rem/1 var(--font-body); letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent2); box-shadow: 0 0 0 3px rgba(244, 166, 58, 0.25);
}
.eyebrow-light { color: #ffe9c4; }

/* ---------- hero: full-bleed photo, angled bottom edge ---------- */
.hero { position: relative; min-height: min(88vh, 760px); display: flex; align-items: flex-end; clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%); }
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(178deg, rgba(21, 32, 28, 0.28) 0%, rgba(8, 61, 52, 0.62) 62%, rgba(8, 61, 52, 0.9) 100%);
}
.hero-inner {
  position: relative; z-index: 2; max-width: 860px;
  padding: clamp(6rem, 16vh, 10rem) clamp(1.2rem, 5vw, 3rem) clamp(5.5rem, 11vh, 8rem);
  color: #fff;
}
.hero-inner h1 { color: #fff; max-width: 17ch; text-wrap: balance; }
.hero-lede { margin: 1.1rem 0 1.6rem; max-width: 58ch; font-size: 1.08rem; color: rgba(255, 255, 255, 0.92); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ---------- floating booking card overlapping the angled edge ---------- */
.booking-card-wrap { position: relative; z-index: 5; padding: 0 clamp(1.2rem, 5vw, 3rem); }
.booking-card {
  max-width: 880px; margin: clamp(-4.5rem, -9vh, -3rem) auto 0;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 1.1rem; align-items: center;
  padding: 1.3rem 1.5rem;
}
.bc-row { display: flex; gap: 0.7rem; align-items: flex-start; }
.bc-row strong { display: block; font-family: var(--font-display); font-size: 0.98rem; line-height: 1.25; }
.bc-row span:not(.bc-pin) { font-size: 0.8rem; color: var(--muted); line-height: 1.4; display: block; }
.bc-pin {
  flex: none; width: 13px; height: 13px; margin-top: 5px; border-radius: 50% 50% 50% 3px;
  background: var(--accent); transform: rotate(-45deg);
}
.bc-pin.bc-amber { background: var(--accent2); }
.bc-btn { white-space: nowrap; }

/* ---------- generic sections ---------- */
.section { max-width: 1140px; margin: 0 auto; padding: clamp(3rem, 7vw, 5rem) clamp(1.2rem, 5vw, 3rem); }
.section.band {
  max-width: none; background: var(--surface);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.section.band > * { max-width: 1140px; margin-left: auto; margin-right: auto; }
.section.band h2 { margin-bottom: 1.4rem; }
.section-note { margin-top: 2.2rem; color: var(--muted); max-width: 72ch; }
.center-link { margin-top: 2rem; text-align: center; }

/* ---------- route divider motif ---------- */
.route-divider {
  display: flex; align-items: center; gap: 0; max-width: 1140px;
  margin: 0 auto; padding: 0 clamp(1.2rem, 5vw, 3rem);
}
.rd-line { flex: 1; height: 8px; background: var(--pin-dash) repeat-x left center; }
.rd-pin {
  flex: none; width: 14px; height: 14px; border-radius: 50% 50% 50% 3px;
  background: var(--accent); transform: rotate(-45deg); margin: 0 6px;
}
.rd-pin-amber { background: var(--accent2); }

/* ---------- split rows ---------- */
.split { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(1.6rem, 4vw, 3.2rem); align-items: start; }
.split-copy p + p, .split-copy p + h2, .split-copy h2 + p { margin-top: 1rem; }
.split-copy h2 { margin-top: 1.8rem; }
.split-copy h2:first-child { margin-top: 0; }
.split-photo img { border-radius: var(--radius); box-shadow: var(--shadow); }
.split-photo figcaption { font-size: 0.83rem; color: var(--muted); margin-top: 0.7rem; }

/* ---------- route steps (numbered pins) ---------- */
.route-steps {
  list-style: none; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem; margin-top: 2rem; counter-reset: stop;
}
.route-steps li {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem 1.2rem 1.3rem; position: relative;
}
.step-pin {
  position: relative; display: grid; place-items: center;
  width: 40px; height: 40px; margin-bottom: 1.15rem;
  background: var(--accent); color: #fff;
  font: 700 1rem/1 var(--font-display); border-radius: 50%;
}
.step-pin::after {
  content: ""; position: absolute; bottom: -7px; left: 50%;
  width: 12px; height: 12px; background: inherit;
  transform: translateX(-50%) rotate(45deg); border-radius: 2px; z-index: -1;
}
.route-steps li:nth-child(even) .step-pin { background: var(--accent2); color: #3a2a10; }
.route-steps li h3 { margin-bottom: 0.4rem; }
.route-steps li p { font-size: 0.92rem; color: var(--muted); }

/* ---------- press grid ---------- */
.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.press-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.3rem 1.2rem; transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.press-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.press-card h3 { margin-bottom: 0.4rem; }
.press-card p { font-size: 0.92rem; color: var(--muted); }

/* ---------- photo grids ---------- */
.photo-grid, .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.photo-grid figure, .gallery-grid figure {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 6px 18px rgba(21, 32, 28, 0.07);
}
.photo-grid img, .gallery-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.photo-grid figcaption, .gallery-grid figcaption {
  padding: 0.75rem 1rem; font-size: 0.85rem; color: var(--muted);
  border-top: 3px solid var(--accent2);
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; }
.faq-list details {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 1rem 1.2rem; margin-bottom: 0.8rem;
}
.faq-list summary {
  cursor: pointer; font: 600 1.02rem var(--font-display); color: var(--ink);
  list-style: none; position: relative; padding-right: 1.6rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 0; top: 0;
  color: var(--accent2); font-size: 1.3rem; line-height: 1;
}
.faq-list details[open] summary::after { content: "\2013"; }
.faq-list details p { margin-top: 0.7rem; color: var(--muted); }

/* ---------- quote band + form ---------- */
.quote-band {
  background: linear-gradient(160deg, var(--accent-deep), var(--accent));
  color: #fff; padding: clamp(3rem, 7vw, 5rem) clamp(1.2rem, 5vw, 3rem);
}
.quote-band .quote-intro { max-width: 1140px; margin: 0 auto 2rem; }
.quote-band h2 { color: #fff; }
.quote-band .quote-intro p { max-width: 62ch; color: rgba(255, 255, 255, 0.88); }
.quote-band .eyebrow { color: #ffe9c4; }
.lead-form {
  max-width: 1140px; margin: 0 auto; background: var(--surface); color: var(--ink);
  border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow);
}
.field-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1rem; }
.lead-form label { display: flex; flex-direction: column; gap: 0.35rem; font: 600 0.85rem var(--font-body); color: var(--ink); }
.lead-form input, .lead-form textarea {
  font: 400 1rem var(--font-body); color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line); border-radius: 10px;
  padding: 0.7rem 0.85rem; width: 100%;
}
.lead-form input:focus, .lead-form textarea:focus {
  outline: 2px solid var(--accent2); outline-offset: 1px; border-color: var(--accent);
}
.hp-wrap { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-submit {
  margin-top: 1.1rem; font: 600 1.05rem var(--font-body); color: #fff;
  background: var(--accent); border: none; border-radius: 999px; padding: 0.9rem 2rem;
  cursor: pointer; box-shadow: 0 8px 20px rgba(11, 114, 97, 0.28);
}
.form-submit:hover { background: var(--accent-deep); }
.form-submit:disabled { opacity: 0.7; cursor: wait; }
.form-note { margin-top: 0.8rem; font-size: 0.86rem; color: var(--muted); }
.lead-form.is-success { outline: 3px solid var(--accent2); }

/* ---------- interior stop header ---------- */
.stop-header {
  max-width: 1140px; margin: 0 auto;
  padding: clamp(2.4rem, 6vw, 4rem) clamp(1.2rem, 5vw, 3rem) 0;
}
.stop-header .lede { max-width: 66ch; color: var(--muted); font-size: 1.05rem; margin-top: 0.9rem; }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 0.55rem; font-size: 0.82rem; margin-bottom: 1.4rem; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--accent); }
.crumbs [aria-current] { color: var(--accent); font-weight: 600; }
.crumb-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent2); }

/* ---------- services rows ---------- */
.svc-list { display: flex; flex-direction: column; gap: clamp(2rem, 5vw, 3.2rem); }
.svc-row { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(1.4rem, 4vw, 2.8rem); align-items: center; }
.svc-row:nth-child(even) { grid-template-columns: 0.8fr 1.2fr; }
.svc-row:nth-child(even) .svc-copy { order: 2; }
.svc-row figure img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.svc-copy h2 { margin-bottom: 0.6rem; }

/* ---------- spec list ---------- */
.spec-list { list-style: none; margin: 1.4rem 0 1.6rem; display: grid; gap: 0.7rem; max-width: 780px; }
.spec-list li {
  background: var(--surface); border: 1px solid var(--line); border-left: 5px solid var(--accent2);
  border-radius: 12px; padding: 0.85rem 1.1rem;
}

/* ---------- pricing ---------- */
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.price-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.4rem; box-shadow: 0 6px 18px rgba(21, 32, 28, 0.06); position: relative; overflow: hidden;
}
.price-card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}
.pc-label { font: 600 0.78rem var(--font-body); letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.pc-figure { display: block; font: 700 2.1rem var(--font-display); color: var(--accent); margin: 0.4rem 0 0.6rem; }
.price-card p { font-size: 0.93rem; color: var(--muted); }
.lever-list { list-style: none; counter-reset: lever; display: grid; gap: 1rem; max-width: 860px; }
.lever-list li {
  counter-increment: lever; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.2rem 1.3rem 1.2rem 4rem; position: relative;
}
.lever-list li::before {
  content: counter(lever, decimal-leading-zero); position: absolute; left: 1.1rem; top: 1.15rem;
  font: 700 1.1rem var(--font-display); color: var(--accent2);
}
.lever-list h3 { margin-bottom: 0.3rem; }
.lever-list p { font-size: 0.95rem; color: var(--muted); }

/* ---------- cases ---------- */
.case { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.4rem, 4vw, 2.8rem); align-items: center; padding: clamp(1.6rem, 4vw, 2.6rem) 0; }
.case figure img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.case-copy h2 { margin-bottom: 0.7rem; }
.case-copy p + p { margin-top: 0.8rem; }
.case + .route-divider { margin: 0 auto; }

/* ---------- event / answer / location cards ---------- */
.event-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.event-card {
  display: grid; grid-template-rows: auto 1fr; text-decoration: none; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 6px 18px rgba(21, 32, 28, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.event-card img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; }
.event-card > div { padding: 1.2rem 1.3rem 1.4rem; }
.event-card h2 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.event-card p { font-size: 0.93rem; color: var(--muted); }
.card-go { display: inline-block; margin-top: 0.8rem; font: 600 0.9rem var(--font-body); color: var(--accent); }
.answer-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-bottom: 2.6rem; }
.answer-card {
  text-decoration: none; color: var(--ink); background: var(--surface);
  border: 1px solid var(--line); border-top: 5px solid var(--accent2); border-radius: var(--radius);
  padding: 1.4rem 1.3rem; transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.answer-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.answer-card h2 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.answer-card p { font-size: 0.92rem; color: var(--muted); }
.quickhits { max-width: 820px; }
.quickhits h2 { margin-bottom: 1rem; }
.quickhits dt { font: 600 1.02rem var(--font-display); margin-top: 1.1rem; }
.quickhits dd { color: var(--muted); margin-top: 0.3rem; }
.loc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.3rem; }
.loc-card {
  text-decoration: none; color: var(--ink); background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.4rem;
  position: relative; transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.loc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.loc-pin {
  display: block; width: 18px; height: 18px; border-radius: 50% 50% 50% 4px;
  background: var(--accent); transform: rotate(-45deg); margin-bottom: 0.9rem;
  box-shadow: 0 0 0 4px rgba(244, 166, 58, 0.3);
}
.loc-card h2 { font-size: 1.35rem; margin-bottom: 0.4rem; }
.loc-card p { font-size: 0.93rem; color: var(--muted); }

/* ---------- prose pages ---------- */
.prose { max-width: 860px; }
.prose h2 { margin-top: 1.8rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-top: 0.9rem; color: #2a3833; }
.prose p strong { color: var(--ink); }

/* ---------- blog cards ---------- */
.blog-list { display: grid; gap: 1.4rem; }
.blog-card {
  display: grid; grid-template-columns: 0.55fr 1.45fr; gap: 1.4rem; align-items: center;
  text-decoration: none; color: var(--ink); background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.blog-card img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.blog-card > div { padding: 1.2rem 1.4rem 1.2rem 0; }
.blog-date { font: 600 0.75rem var(--font-body); letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent2); }
.blog-card h2 { font-size: 1.25rem; margin: 0.4rem 0 0.5rem; }
.blog-card p { font-size: 0.93rem; color: var(--muted); }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #d7e2dd; margin-top: clamp(2rem, 6vw, 4rem); }
.foot-grid {
  max-width: 1140px; margin: 0 auto; padding: clamp(2.5rem, 6vw, 4rem) clamp(1.2rem, 5vw, 3rem);
  display: grid; grid-template-columns: 1.3fr 0.8fr 0.9fr; gap: 2.4rem;
}
.foot-brand strong { font-family: var(--font-display); font-size: 1.2rem; color: #fff; }
.foot-brand p { font-size: 0.92rem; margin-top: 0.7rem; color: #a9bcb4; }
.foot-contact a { color: var(--accent2); text-decoration: none; font-weight: 600; }
.foot-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem 1.4rem; align-content: start; }
.foot-nav a { color: #d7e2dd; text-decoration: none; font-size: 0.93rem; }
.foot-nav a:hover { color: var(--accent2); }
.foot-more { display: flex; flex-direction: column; gap: 0.5rem; align-content: start; }
.foot-head { font: 600 0.75rem var(--font-body); letter-spacing: 0.13em; text-transform: uppercase; color: #7d938a; }
.foot-more a { color: #d7e2dd; text-decoration: none; font-size: 0.93rem; }
.foot-more a:hover { color: var(--accent2); }
.foot-fine { font-size: 0.8rem; color: #7d938a; margin-top: 0.6rem; }

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .booking-card { grid-template-columns: 1fr 1fr; }
  .bc-btn { grid-column: 1 / -1; text-align: center; }
  .route-steps { grid-template-columns: repeat(2, 1fr); }
  .press-grid, .photo-grid, .gallery-grid, .answer-cards, .price-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(21, 32, 28, 0.12);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 0.95rem clamp(1.2rem, 5vw, 2.6rem); border-bottom: 1px solid var(--line); }
  .site-nav .nav-cta { margin: 0.8rem clamp(1.2rem, 5vw, 2.6rem) 1.1rem; text-align: center; }
  .split, .svc-row, .svc-row:nth-child(even), .case, .event-grid, .loc-grid, .blog-card { grid-template-columns: 1fr; }
  .svc-row:nth-child(even) .svc-copy { order: 0; }
  .blog-card > div { padding: 0 1.3rem 1.3rem; }
  .field-grid { grid-template-columns: 1fr 1fr; }
  .hero { clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%); }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .route-steps, .press-grid, .photo-grid, .gallery-grid, .answer-cards, .price-cards, .field-grid, .booking-card, .foot-grid, .foot-nav { grid-template-columns: 1fr; }
  .booking-card { margin-top: -2.6rem; padding: 1.2rem 1.2rem; }
  .hero-inner { padding-bottom: 4.5rem; }
  .hero-actions .button { width: 100%; text-align: center; }
}
