/* PB32 Inc. — site styles */

:root {
  --green: #123a2e;
  --green-2: #1a4a3b;
  --green-3: #0c2a21;
  --orange: #d8621a;
  --orange-2: #c05414;
  --gold: #e3a92b;
  --leaf: #5ea83a;
  --bg: #faf8f3;
  --bg-2: #f2f4f1;
  --white: #ffffff;
  --text: #1f2d27;
  --muted: #5d6b64;
  --line: #e6e8e3;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 71rem;
  --radius-lg: 24px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(18, 58, 46, 0.04), 0 8px 24px rgba(18, 58, 46, 0.07);
  --shadow-lg: 0 2px 4px rgba(18, 58, 46, 0.05), 0 24px 48px rgba(18, 58, 46, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--green); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 600;
  color: var(--green);
  letter-spacing: -0.015em;
  line-height: 1.12;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 5.4vw, 4.25rem); line-height: 1.06; }
h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.3rem; line-height: 1.25; }
p { margin: 0 0 1rem; }
strong { font-weight: 600; color: var(--green); }

.container { width: 100%; max-width: calc(var(--container) + 2.5rem); margin-inline: auto; padding-inline: 1.25rem; }
.icon { width: 1.25em; height: 1.25em; flex: none; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.dots { background-image: radial-gradient(rgba(18, 58, 46, 0.07) 1px, transparent 1px); background-size: 22px 22px; }

.skip { position: absolute; left: 1rem; top: -5rem; z-index: 200; background: var(--orange); color: var(--white); padding: 0.6rem 1rem; font-weight: 600; border-radius: 8px; }
.skip:focus { top: 1rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  min-height: 3.1rem; padding: 0.8rem 1.5rem;
  font: 600 0.98rem/1 var(--sans);
  border-radius: 999px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.btn .icon { width: 1.05rem; height: 1.05rem; }
.btn-dark { background: var(--green); color: var(--white); }
.btn-dark:hover { background: var(--green-3); }
.btn-accent { background: var(--orange); color: var(--white); box-shadow: 0 8px 20px rgba(216, 98, 26, 0.28); }
.btn-accent:hover { background: var(--orange-2); }
.btn-outline { background: var(--white); border-color: #d6dbd6; color: var(--green); }
.btn-outline:hover { border-color: var(--green); }
.btn-light { border-color: rgba(255, 255, 255, 0.35); color: var(--white); }
.btn-light:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.06); }
.btn-sm { min-height: 2.6rem; padding: 0.6rem 1.15rem; font-size: 0.92rem; }

.link-arrow { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; font-size: 0.95rem; color: var(--green); text-decoration: none; }
.link-arrow .icon { width: 1rem; height: 1rem; transition: transform 0.2s; }
.link-arrow:hover .icon { transform: translateX(3px); }

/* Section titles */
.eyebrow { display: inline-flex; align-items: center; gap: 0.75rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.9rem; }
.eyebrow::before { content: ""; width: 1.75rem; height: 1px; background: currentColor; }
.section-title { text-align: center; max-width: 44rem; margin: 0 auto 3.25rem; }
.section-title p { color: var(--muted); font-size: 1.1rem; margin: 1rem auto 0; max-width: 38rem; }
.section-title .eyebrow::after { content: ""; width: 1.75rem; height: 1px; background: currentColor; }
.section { padding-block: clamp(4.5rem, 8vw, 6.5rem); }
.section-alt { background: var(--bg-2); }

/* Top bar */
.topbar { background: var(--green-3); color: #cfe0d8; font-size: 0.85rem; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 2.4rem; }
.topbar span, .topbar a { display: inline-flex; align-items: center; gap: 0.45rem; color: #cfe0d8; text-decoration: none; }
.topbar a:hover { color: var(--white); }
.topbar .icon { width: 0.95rem; height: 0.95rem; color: var(--gold); }
.topbar-right { display: flex; gap: 1.5rem; }
@media (max-width: 720px) { .topbar-left, .topbar .hide-sm { display: none !important; } .topbar .container { justify-content: center; } }

/* Header */
.header { position: sticky; top: 0; z-index: 100; background: rgba(250, 248, 243, 0.92); backdrop-filter: blur(10px); border-bottom: 1px solid transparent; transition: box-shadow 0.2s, border-color 0.2s; }
.header.scrolled { box-shadow: 0 6px 24px rgba(18, 58, 46, 0.08); border-bottom-color: var(--line); }
.header .container { display: flex; align-items: center; gap: 2rem; min-height: 4.75rem; }
.brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.brand img { width: 62px; }
.brand-name { display: grid; line-height: 1.1; }
.brand-name b { font: 600 1.3rem var(--serif); color: var(--green); }
.brand-name small { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-top: 0.2rem; }
.nav { display: flex; align-items: center; gap: 2rem; margin-left: auto; }
.nav ul { display: flex; gap: 1.9rem; list-style: none; margin: 0; padding: 0; }
.nav ul a { color: var(--text); text-decoration: none; font-weight: 500; font-size: 0.98rem; }
.nav ul a:hover, .nav ul a[aria-current="page"] { color: var(--orange); }
.nav-actions { display: flex; gap: 0.6rem; }
.menu-toggle { display: none; margin-left: auto; align-items: center; gap: 0.5rem; background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 0.55rem 1rem; font: 600 0.92rem var(--sans); color: var(--green); cursor: pointer; }
@media (max-width: 1000px) {
  .menu-toggle { display: inline-flex; }
  .nav { display: none; position: absolute; inset: 100% 0 auto 0; flex-direction: column; align-items: stretch; gap: 1.25rem; background: var(--bg); padding: 0.75rem 1.25rem 1.5rem; border-bottom: 1px solid var(--line); box-shadow: 0 16px 32px rgba(18, 58, 46, 0.1); }
  .nav.open { display: flex; }
  .nav ul { flex-direction: column; gap: 0; }
  .nav ul a { display: block; padding: 0.85rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-actions { flex-wrap: wrap; }
}

/* Hero */
.hero { position: relative; overflow: hidden; padding-block: clamp(3rem, 7vw, 5.5rem) clamp(4rem, 8vw, 6rem); }
.hero::before { content: ""; position: absolute; width: 46rem; height: 46rem; right: -12rem; top: -14rem; border-radius: 50%; background: radial-gradient(circle, rgba(216, 98, 26, 0.09), transparent 65%); pointer-events: none; }
.hero .container { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
.pill { display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.45rem 0.95rem; background: var(--white); border: 1px solid var(--line); border-radius: 999px; font-size: 0.82rem; font-weight: 600; color: var(--green); box-shadow: var(--shadow); margin-bottom: 1.5rem; }
.pill::before { content: ""; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--orange); }
.hero h1 .accent { color: var(--orange); position: relative; white-space: nowrap; }
.hero h1 .swoosh { position: absolute; left: 4%; right: 4%; bottom: -0.18em; width: 92%; height: 0.3em; color: var(--gold); }
.hero-text > p { font-size: 1.14rem; color: var(--muted); margin: 1.75rem 0 2rem; max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 0.75rem 1.75rem; margin-top: 2rem; font-size: 0.92rem; color: var(--muted); }
.hero-trust span { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero-trust .icon { color: var(--leaf); }

.hero-visual { position: relative; padding: 1.5rem; }
.hero-visual::before { content: ""; position: absolute; inset: -0.5rem; border: 2px dashed rgba(227, 169, 43, 0.45); border-radius: 36px; }
.photo-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--white); }
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .photo-card { aspect-ratio: 4 / 4.2; }
.hero-visual .photo-card img { object-position: 38% 50%; }
.float-card { position: absolute; z-index: 2; background: var(--white); border-radius: 14px; padding: 0.8rem 1.1rem; box-shadow: var(--shadow-lg); line-height: 1.2; }
.float-card b { display: block; font: 600 1.35rem var(--serif); color: var(--green); }
.float-card small { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.float-card.dark { background: var(--green); }
.float-card.dark b { color: var(--white); font: 600 1rem var(--sans); }
.float-card.dark small { color: var(--gold); }
.float-card.tl { top: 0; left: -1rem; }
.float-card.br { bottom: 0.25rem; right: -0.75rem; }
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { max-width: 34rem; margin-inline: auto; width: 100%; }
  .hero-visual .photo-card { aspect-ratio: 4 / 3; }
  .float-card.tl { left: 0; }
  .float-card.br { right: 0; }
}

/* Ticker */
.ticker { background: var(--green); color: var(--white); overflow: hidden; padding-block: 1rem; }
.ticker-track { display: flex; width: max-content; animation: ticker 38s linear infinite; }
.ticker-track ul { display: flex; list-style: none; margin: 0; padding: 0; }
.ticker li { display: inline-flex; align-items: center; gap: 2rem; padding-right: 2rem; font-size: 0.86rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap; }
.ticker li::after { content: "✦"; color: var(--gold); letter-spacing: 0; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Stats */
.stats { margin-top: clamp(3rem, 6vw, 4.5rem); }
.stats-card { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
.stat { text-align: center; padding: 2rem 1rem; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat b { display: block; font: 600 clamp(2.3rem, 4vw, 3.1rem)/1 var(--serif); color: var(--green); letter-spacing: -0.02em; }
.stat span { display: block; margin-top: 0.6rem; font-size: 0.95rem; color: var(--muted); }
@media (max-width: 720px) {
  .stats-card { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n + 3) { border-top: 1px solid var(--line); }
}

/* Split rows */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.split + .split { margin-top: clamp(4.5rem, 8vw, 6.5rem); }
.split-text > p { color: var(--muted); font-size: 1.07rem; margin-top: 1.25rem; }
.split-text h2 { margin-top: 0.1rem; }
.checks { list-style: none; margin: 1.75rem 0 2rem; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem 1.5rem; }
.checks li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.97rem; line-height: 1.45; }
.checks .icon { color: var(--orange); margin-top: 0.05rem; }
.checks.one { grid-template-columns: 1fr; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split .media-first { order: -1; }
}
@media (max-width: 520px) { .checks { grid-template-columns: 1fr; } }

.quote-card { position: relative; background: var(--green); color: #d5e3dc; border-radius: var(--radius-lg); padding: clamp(2rem, 4vw, 2.75rem); box-shadow: var(--shadow-lg); overflow: hidden; }
.quote-card::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px); background-size: 20px 20px; pointer-events: none; }
.quote-card .eyebrow { color: var(--gold); }
.quote-card .eyebrow::before { display: none; }
.quote-mark { font: 600 4rem/0.6 var(--serif); color: var(--gold); display: block; margin: 1rem 0 1.25rem; }
.quote-card blockquote { margin: 0; font: 500 clamp(1.3rem, 2.2vw, 1.6rem)/1.4 var(--serif); color: var(--white); }
.quote-by { display: flex; align-items: center; gap: 0.85rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 0.9rem; }
.quote-by b { display: block; color: var(--white); font-weight: 600; }
.avatar { width: 2.9rem; height: 2.9rem; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, 0.08); color: var(--gold); font: 600 1.05rem var(--serif); flex: none; }

.media { position: relative; padding: 1rem; }
.media .photo-card { aspect-ratio: 5 / 4; }
.media .float-card.tl { top: -0.25rem; left: -0.5rem; }
.media .float-card.br { bottom: -0.25rem; right: -0.25rem; }

/* Dark section */
.dark { position: relative; background: var(--green); color: #c9dad2; overflow: hidden; }
.dark::before, .dark::after { content: ""; position: absolute; border-radius: 50%; border: 60px solid rgba(255, 255, 255, 0.025); pointer-events: none; }
.dark::before { width: 34rem; height: 34rem; right: -12rem; top: -14rem; }
.dark::after { width: 22rem; height: 22rem; left: -10rem; bottom: -10rem; }
.dark .container { position: relative; z-index: 1; }
.dark h2, .dark h3 { color: var(--white); }
.dark .eyebrow { color: var(--gold); }
.dark .section-title p { color: #b7cbc1; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.feature { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius); padding: 1.75rem 1.5rem; }
.feature h3 { font-family: var(--sans); font-size: 1.05rem; font-weight: 600; margin: 1.25rem 0 0.5rem; letter-spacing: 0; }
.feature p { font-size: 0.93rem; margin: 0; color: #b7cbc1; }
.icon-box { width: 3rem; height: 3rem; border-radius: 12px; display: grid; place-items: center; background: var(--bg-2); color: var(--green); }
.icon-box .icon { width: 1.4rem; height: 1.4rem; }
.feature .icon-box { background: rgba(255, 255, 255, 0.07); color: var(--gold); }
.region-pills { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.6rem; margin-top: 2.75rem; font-size: 0.9rem; }
.region-pills span { padding: 0.45rem 1rem; border-radius: 999px; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12); color: var(--white); font-weight: 500; }
.region-pills span:first-child { background: none; border: 0; color: #b7cbc1; font-weight: 400; }
@media (max-width: 1000px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 1.75rem; box-shadow: var(--shadow); transition: transform 0.25s, box-shadow 0.25s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card h3 { margin: 1.35rem 0 0.6rem; }
.card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.25rem; }
.card .link-arrow { margin-top: auto; }
.card .icon-box.hot { background: var(--orange); color: var(--white); }
.card-photo { margin: -1.75rem -1.75rem 0; aspect-ratio: 16 / 10; overflow: hidden; border-radius: 20px 20px 0 0; }
.card-photo img { width: 100%; height: 100%; object-fit: cover; }
.card-photo + .icon-box { margin-top: -1.5rem; position: relative; box-shadow: var(--shadow); background: var(--white); }
.card.cta-card { background: var(--green); border-color: var(--green); justify-content: center; }
.card.cta-card h3 { color: var(--white); margin-top: 0; }
.card.cta-card p { color: #b7cbc1; }
.card.cta-card .link-arrow { color: var(--gold); margin-top: 0; }
@media (max-width: 1000px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .card-grid { grid-template-columns: 1fr; } }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; list-style: none; margin: 0; padding: 0; counter-reset: step; }
.step { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 1.75rem 1.5rem; box-shadow: var(--shadow); counter-increment: step; }
.step::before { content: counter(step, decimal-leading-zero); display: grid; place-items: center; width: 3rem; height: 3rem; border-radius: 50%; background: var(--bg-2); color: var(--orange); font: 600 1.05rem var(--serif); }
.step h3 { font-size: 1.2rem; margin: 1.25rem 0 0.5rem; }
.step p { color: var(--muted); font-size: 0.94rem; margin: 0; }
@media (max-width: 1000px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 13.5rem; gap: 1.25rem; }
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery figure:hover img { transform: scale(1.04); }
.gallery .big { grid-column: span 2; grid-row: span 2; }
.gallery .wide { grid-column: span 2; }
@media (max-width: 800px) {
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 10rem; }
  .gallery .big { grid-row: span 1; }
}

/* FAQ */
.faq { max-width: 50rem; margin-inline: auto; display: grid; gap: 0.9rem; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 1px 2px rgba(18, 58, 46, 0.04); }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.15rem 1.5rem; cursor: pointer; list-style: none; font: 600 1.08rem/1.35 var(--serif); color: var(--green); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .icon { color: var(--muted); transition: transform 0.25s; }
.faq details[open] summary .icon { transform: rotate(180deg); color: var(--orange); }
.faq details p { padding: 0 1.5rem 1.35rem; margin: 0; color: var(--muted); font-size: 0.98rem; }

/* CTA banner */
.cta-banner { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.3fr 1fr; gap: 2rem; align-items: center; background: var(--green); border-radius: 28px; padding: clamp(2.25rem, 5vw, 3.75rem); box-shadow: var(--shadow-lg); }
.cta-banner::after { content: ""; position: absolute; width: 26rem; height: 26rem; right: -8rem; bottom: -14rem; border-radius: 50%; border: 50px solid rgba(255, 255, 255, 0.04); }
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: #b7cbc1; margin: 0.9rem 0 0; font-size: 1.07rem; }
.cta-banner .hero-actions { justify-content: flex-end; position: relative; z-index: 1; }
@media (max-width: 860px) { .cta-banner { grid-template-columns: 1fr; } .cta-banner .hero-actions { justify-content: flex-start; } }

/* Page banner (inner pages) */
.page-banner { position: relative; overflow: hidden; text-align: center; padding-block: clamp(3.5rem, 7vw, 5.5rem); border-bottom: 1px solid var(--line); }
.page-banner::before { content: ""; position: absolute; width: 40rem; height: 40rem; right: -14rem; top: -18rem; border-radius: 50%; background: radial-gradient(circle, rgba(216, 98, 26, 0.08), transparent 65%); }
.page-banner .container { position: relative; }
.page-banner h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); }
.page-banner p { color: var(--muted); font-size: 1.12rem; max-width: 40rem; margin: 1.1rem auto 0; }
.crumbs { display: flex; justify-content: center; gap: 0.5rem; list-style: none; margin: 1.75rem 0 0; padding: 0; font-size: 0.88rem; color: var(--muted); }
.crumbs li + li::before { content: "/"; margin-right: 0.5rem; color: #b9c2bc; }
.crumbs a { color: var(--green); text-decoration: none; font-weight: 500; }
.crumbs a:hover { color: var(--orange); }

/* Service area map */
.map-card { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius-lg); padding: clamp(1.25rem, 3vw, 2rem); }
.map { width: 100%; height: auto; overflow: visible; }
.map .prov path { fill: rgba(255, 255, 255, 0.05); stroke: rgba(255, 255, 255, 0.3); stroke-width: 1; stroke-linejoin: round; }
.map .prov .p-ab { fill: rgba(227, 169, 43, 0.12); }
.map .prov-labels text { font: 600 20px var(--serif); fill: rgba(255, 255, 255, 0.35); text-anchor: middle; }
.map .routes path { fill: none; stroke: var(--gold); stroke-width: 1.6; stroke-dasharray: 1; stroke-dashoffset: 0; }
.map .routes .onward { stroke: rgba(227, 169, 43, 0.7); stroke-dasharray: 0.012 0.012; }
.map text { font-family: var(--sans); }
.map .cities circle { fill: var(--white); }
.map .cities text { font-size: 11.5px; fill: #dfe8e2; }
.map .cities .onward-label { fill: var(--gold); }
.map .home circle { fill: var(--orange); }
.map .home .halo { fill: rgba(216, 98, 26, 0.3); }
.map .home text { font: 600 16px var(--serif); fill: var(--white); }
.js .map .routes path:not(.onward) { stroke-dashoffset: 1; }
.js .map.drawn .routes path:not(.onward) { animation: draw 1.4s ease-out forwards; }
.js .map.drawn .routes path:nth-child(2) { animation-delay: 0.12s; }
.js .map.drawn .routes path:nth-child(3) { animation-delay: 0.24s; }
.js .map.drawn .routes path:nth-child(4) { animation-delay: 0.36s; }
.js .map.drawn .routes path:nth-child(5) { animation-delay: 0.48s; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* Contact & forms */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 1.75rem; box-shadow: var(--shadow); }
.info-card h3 { font-size: 1.15rem; margin: 1.1rem 0 0.4rem; }
.info-card p { margin: 0; color: var(--muted); }
.info-card a { color: var(--green); font-weight: 600; text-decoration: none; }
.info-card a:hover { color: var(--orange); }
@media (max-width: 860px) { .info-grid { grid-template-columns: 1fr; } }

.form-layout { display: grid; grid-template-columns: 1.55fr 1fr; gap: 1.5rem; align-items: start; }
@media (max-width: 960px) { .form-layout { grid-template-columns: 1fr; } }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow); }
.form-card > h2 { font-size: 1.75rem; }
.form-card > p { color: var(--muted); margin: 0.5rem 0 1.75rem; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.25rem; }
.form .full { grid-column: 1 / -1; }
.form .group { grid-column: 1 / -1; font: 600 1.1rem var(--serif); color: var(--green); padding-top: 0.75rem; border-top: 1px solid var(--line); margin-top: 0.5rem; }
.form .group:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
.field { display: grid; gap: 0.4rem; align-content: start; }
.field label { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.field .hint { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--text);
  background: var(--bg); border: 1px solid #dde2dd; border-radius: 12px;
  padding: 0.75rem 0.95rem; min-height: 3.1rem; transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}
.field textarea { min-height: 7.5rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; background: var(--white); border-color: var(--green); box-shadow: 0 0 0 4px rgba(18, 58, 46, 0.1); }
.field input:user-invalid, .field select:user-invalid, .field textarea:user-invalid { border-color: #c0392b; }
.form .hp { display: none; }
.form-foot { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.25rem; margin-top: 0.5rem; }
.form-status { margin: 0; font-weight: 500; font-size: 0.95rem; }
.form-status.ok { color: #2e7d4f; }
.form-status.err { color: #c0392b; }
@media (max-width: 560px) { .form { grid-template-columns: 1fr; } }

.side { display: grid; gap: 1.5rem; }
.side-card { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 1.75rem; box-shadow: var(--shadow); }
.side-card h3 { font-size: 1.2rem; margin-bottom: 0.9rem; }
.side-card.dark-card { background: var(--green); border-color: var(--green); color: #c9dad2; }
.side-card.dark-card h3 { color: var(--white); }
.big-tel { display: block; font: 600 1.6rem/1.3 var(--serif); color: var(--white); text-decoration: none; }
.big-tel:hover { color: var(--gold); }
.hours { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours td { padding: 0.55rem 0; border-bottom: 1px solid var(--line); }
.hours tr:last-child td { border-bottom: 0; }
.hours td:last-child { text-align: right; font-weight: 600; color: var(--green); }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); margin-top: 2.5rem; }
.map-frame iframe { display: block; width: 100%; height: 26rem; border: 0; }

/* Footer */
.footer { background: var(--green-3); color: #a9bfb5; font-size: 0.95rem; margin-top: clamp(4.5rem, 8vw, 6.5rem); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-block: 4rem 3rem; }
.footer .brand-name b { color: var(--white); }
.footer .brand { margin-bottom: 1.1rem; }
.footer .brand img { background: var(--white); border-radius: 12px; padding: 0.35rem; width: 70px; }
.footer h4 { font: 600 1.05rem var(--serif); color: var(--white); margin-bottom: 1.1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer a { color: #cfe0d8; text-decoration: none; }
.footer a:hover { color: var(--gold); }
.footer .contact-list li { display: flex; gap: 0.65rem; align-items: flex-start; }
.footer .contact-list .icon { color: var(--gold); margin-top: 0.2rem; width: 1.05rem; height: 1.05rem; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem 2rem; padding-block: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.08); font-size: 0.86rem; }
.footer-bottom p { margin: 0; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.footer.no-gap { margin-top: 0; }

/* Floating call button */
.float-call { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 90; display: grid; place-items: center; width: 3.5rem; height: 3.5rem; border-radius: 50%; background: var(--orange); color: var(--white); box-shadow: 0 10px 28px rgba(216, 98, 26, 0.4); transition: transform 0.2s; }
.float-call:hover { transform: scale(1.06); color: var(--white); }
.float-call .icon { width: 1.5rem; height: 1.5rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .map .routes path:not(.onward) { stroke-dashoffset: 0; }
}

/* Small modifiers */
.icon-box.hot { background: var(--orange); color: var(--white); }
.stats.flush { margin-top: 0; }
.side-card .checks { margin: 0; }
.float-card { width: max-content; max-width: 70%; }
.brand img { aspect-ratio: 173 / 72; object-fit: cover; object-position: top; }
