/* ==============================================================
   Walamo Cleaners — styles.css
   Direction: "Retro Service Badge" — built off the client's own logo
   (red / navy / cream, oval badge, bold block lettering) instead of a
   generic glassmorphism template. Bordered sticker cards, offset hard
   shadows, halftone print texture, poster display type, no blur.
   Single file, sectioned. No preprocessor, no build step.
   ============================================================== */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:          #faf7f1;   /* warm cream, brighter than paper */
  --bg-2:        #fdf0ec;   /* pale red-tinted cream for alternating sections */
  --paper:       #ffffff;

  --ink:         #0b2a52;   /* deep navy — from the logo */
  --ink-soft:    #24446e;
  --ink-mute:    #5c7089;

  --accent:      #e21f26;   /* signature red — from the logo */
  --accent-dark: #a3141a;
  --accent-2:    #0b2a52;   /* navy doubles as the secondary accent */
  --accent-ink:  #7a0f13;   /* dark red for text-on-cream */
  --accent-soft: #fbe1df;   /* pale red tint (badges, avatar fill) */

  --glass:       #ffffff;         /* card fill — solid now, name kept for low churn */
  --glass-2:     #ffffff;
  --glass-border: var(--ink);     /* card/nav border — solid navy, not translucent */
  --glass-shadow: 6px 6px 0 rgba(11, 42, 82, 0.22); /* hard offset "sticker" shadow */

  --line:        rgba(11, 42, 82, 0.18);
  --line-soft:   rgba(11, 42, 82, 0.1);

  --radius-lg:   16px;
  --radius-md:   10px;
  --radius-sm:   7px;

  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --container: 1280px;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --sans-poster: "Anton", "Arial Narrow", "Segoe UI", sans-serif;   /* big poster headlines only */
  --sans-display: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif; /* heavy UI/labels */
  --sans-body: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.12; letter-spacing: -0.005em; font-family: var(--sans-display); font-weight: 800; }
h1, h2.section-title {
  font-family: var(--sans-poster); font-weight: 400; letter-spacing: .01em;
  line-height: 0.98; text-transform: uppercase;
}
ul, ol { list-style: none; padding: 0; }
::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.1rem; background: var(--ink); color: #fff;
  border-radius: var(--radius-sm); font-weight: 700; transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.section { position: relative; padding-block: clamp(3.5rem, 8vw, 7rem); }
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head.is-center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans-display);
  font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent-soft);
  border: 1.5px solid var(--accent-ink);
  padding: .35rem .8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

h2.section-title { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h1 { font-size: clamp(2.4rem, 7vw, 4rem); }
.section-lede { color: var(--ink-mute); font-size: clamp(1rem, 1.4vw, 1.15rem); margin-top: .9rem; max-width: 42ch; }
.section-head.is-center .section-lede { margin-inline: auto; }

/* =============================================================
   4. Buttons — bordered, offset "sticker" shadow, press interaction
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 2.5px solid var(--ink);
  font-family: var(--sans-display);
  font-weight: 800;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .15s var(--ease-out), box-shadow .15s var(--ease-out), background .2s var(--ease-out);
  white-space: nowrap;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0 var(--ink); }

.btn-primary { background: var(--ink); color: #fff; }
.btn-accent { background: var(--accent); color: #fff; border-color: var(--ink); }
.btn-glass { background: var(--paper); color: var(--ink); border-color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); box-shadow: none; }
.btn-ghost:hover { background: var(--paper); transform: none; box-shadow: 3px 3px 0 var(--ink); }
.btn-sm { padding: .58rem 1.05rem; font-size: .8rem; box-shadow: 3px 3px 0 var(--ink); border-width: 2px; }
.btn-sm:hover { box-shadow: 5px 5px 0 var(--ink); }
.btn[data-magnetic] { will-change: transform; }

/* =============================================================
   5. Card component ("badge card": solid fill, bold border, offset shadow)
   ============================================================= */
.glass-card {
  position: relative;
  background: var(--paper);
  border: 2.5px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.1rem);
  box-shadow: var(--glass-shadow);
}
.glass-card--tilt { transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out); transform-style: preserve-3d; }
.glass-card--tilt:hover { box-shadow: 9px 9px 0 rgba(11, 42, 82, 0.28); }

.icon-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.7rem; height: 2.7rem;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 2px solid var(--accent-ink);
  color: var(--accent-ink);
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.icon-badge svg { width: 1.3rem; height: 1.3rem; }

/* =============================================================
   6. Nav
   ============================================================= */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  padding-block: .9rem;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: .5rem .55rem .5rem 1.2rem;
  box-shadow: 4px 4px 0 var(--ink);
  transition: box-shadow .25s var(--ease-out), transform .25s var(--ease-out);
}
.site-nav.is-scrolled .nav-inner { box-shadow: 6px 6px 0 var(--ink); }

.brand { display: flex; align-items: center; gap: .55rem; }
.brand-logo { height: 2.9rem; width: auto; display: block; }
.footer-brand .brand-logo { height: 3.4rem; }

.lang-toggle {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .5rem .8rem;
  border-radius: 999px;
  font-family: var(--sans-display); font-weight: 800; font-size: .78rem;
  letter-spacing: .03em;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
  transition: background .2s var(--ease-out), transform .2s var(--ease-out);
}
.lang-toggle svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.lang-toggle:hover { background: var(--accent-soft); transform: translateY(-1px); }
.mobile-menu .lang-toggle { align-self: flex-start; margin-top: .3rem; }

.nav-links { display: none; align-items: center; gap: 1.7rem; }
.nav-links a {
  position: relative; font-weight: 700; font-size: .93rem; color: var(--ink-soft);
  padding-block: .3rem;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 3px; width: 100%;
  background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s var(--ease-out);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-links a[aria-current="page"] { color: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: .5rem; }
.nav-cta { display: none; }

.nav-toggle-input { position: absolute; opacity: 0; pointer-events: none; }
.nav-toggle-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--ink);
}
.nav-toggle-btn svg { width: 1.2rem; height: 1.2rem; }
.nav-toggle-btn .icon-close { display: none; }

.mobile-menu {
  display: block;
  max-height: 0; overflow: hidden;
  margin-top: .6rem;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-md);
  transition: max-height .4s var(--ease-out);
}
.mobile-menu-inner { padding: .5rem 1.1rem 1.1rem; display: flex; flex-direction: column; gap: .2rem; }
.mobile-menu a { padding: .7rem 0; font-weight: 700; border-bottom: 1px solid var(--line-soft); }
.mobile-menu a:last-child { border-bottom: 0; }
/* .nav-toggle-input is a direct sibling of .mobile-menu at the .container level
   (see HTML) so this plain CSS-only checkbox hack works with zero JS required. */
.nav-toggle-input:checked ~ .mobile-menu { max-height: 26rem; }
/* Icon swap is cosmetic only, so it's handled via a JS-toggled class (main.js)
   instead of relying on :has() support for a deeply-nested pseudo-class. */
.site-nav.is-open .icon-burger { display: none; }
.site-nav.is-open .icon-close { display: block; }

/* =============================================================
   7. Hero
   ============================================================= */
.hero { padding-top: clamp(2.5rem, 6vw, 4.5rem); padding-bottom: clamp(3rem, 8vw, 6rem); position: relative; overflow: clip; }
.hero-mesh {
  position: absolute; inset: 0; z-index: -1; overflow: hidden;
  background: var(--bg);
}
.hero-mesh::before {
  /* halftone print texture — signature "badge print" motif, used across the site */
  content: ""; position: absolute; inset: -10%;
  background-image: radial-gradient(var(--ink) 1.3px, transparent 1.6px);
  background-size: 15px 15px;
  opacity: .06;
}
.hero-mesh::after {
  /* diagonal accent band, echoing the swoosh in the logo's oval badge */
  content: ""; position: absolute; top: -20%; right: -14%; width: 62%; height: 150%;
  background: var(--accent);
  clip-path: polygon(32% 0, 100% 0, 68% 100%, 0% 100%);
  opacity: .1;
}
.hero-grid { display: grid; gap: clamp(2rem, 5vw, 3rem); align-items: center; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 700; color: var(--ink-soft);
  background: var(--paper); border: 1.5px solid var(--ink);
  padding: .4rem .8rem; border-radius: 999px;
}
.hero-badge svg { width: .9rem; height: .9rem; color: var(--accent); flex-shrink: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-sub { margin-top: 1.1rem; color: var(--ink-mute); font-size: clamp(1.02rem, 1.6vw, 1.2rem); max-width: 42ch; }

.hero-visual { position: relative; }
.hero-visual-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 rgba(11, 42, 82, 0.22);
  aspect-ratio: 4 / 5;
}
.hero-visual-frame img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroBob 7s ease-in-out infinite;
}
@keyframes heroBob {
  0%, 100% { transform: scale(1.02) translateY(0); }
  50% { transform: scale(1.02) translateY(-10px); }
}
.hero-float-card {
  position: absolute; left: -1.2rem; bottom: 1.6rem;
  display: flex; align-items: center; gap: .8rem;
  padding: .9rem 1.1rem; max-width: 15.5rem;
}
.hero-float-card .icon-badge { margin-bottom: 0; }
.hero-float-card strong { display: block; font-family: var(--sans-poster); font-weight: 400; font-size: 1.3rem; }
.hero-float-card span { display: block; font-size: .82rem; color: var(--ink-mute); }

/* =============================================================
   8. Services grid
   ============================================================= */
.services-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.service-card { display: flex; flex-direction: column; height: 100%; }
.service-card .service-photo {
  border-radius: var(--radius-md); overflow: hidden; margin-bottom: 1.1rem; aspect-ratio: 4/3;
  border: 2px solid var(--ink);
}
.service-card .service-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.service-card:hover .service-photo img { transform: scale(1.06); }
.service-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.service-card p { color: var(--ink-mute); font-size: .95rem; flex-grow: 1; }
.service-card .btn { margin-top: 1.1rem; align-self: flex-start; }

/* =============================================================
   9. Steps
   ============================================================= */
.steps-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; counter-reset: step; }
.step-card { position: relative; }
.step-num {
  font-family: var(--sans-poster); font-weight: 400; font-size: 2.6rem;
  color: var(--accent); line-height: 1; margin-bottom: .5rem;
  -webkit-text-stroke: 1.5px var(--ink);
}
.step-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.step-card p { color: var(--ink-mute); font-size: .93rem; }

/* =============================================================
   10. Trust / values grid
   ============================================================= */
.trust-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.trust-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.4rem; }
.trust-card h3 { font-size: 1.02rem; margin-bottom: .3rem; }
.trust-card p { color: var(--ink-mute); font-size: .9rem; }

/* =============================================================
   11. Testimonials
   ============================================================= */
.testimonial-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.testimonial-card { display: flex; flex-direction: column; gap: 1rem; }
.testimonial-quote { font-family: var(--sans-display); font-weight: 600; font-size: 1.05rem; line-height: 1.45; }
.testimonial-quote::before { content: "\201C"; color: var(--accent); }
.testimonial-quote::after { content: "\201D"; color: var(--accent); }
.testimonial-meta { display: flex; align-items: center; gap: .7rem; margin-top: auto; }
.testimonial-avatar {
  width: 2.7rem; height: 2.7rem; border-radius: 50%;
  background: var(--accent-soft);
  border: 2px solid var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans-poster); font-weight: 400; font-size: 1.1rem; color: var(--accent-ink);
  flex-shrink: 0;
}
.testimonial-meta strong { display: block; font-size: .92rem; }
.testimonial-meta span { display: block; font-size: .8rem; color: var(--ink-mute); }

/* =============================================================
   12. Service area
   ============================================================= */
.area-list { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.area-chip {
  font-size: .88rem; font-weight: 700; color: var(--ink-soft);
  background: var(--paper); border: 1.5px solid var(--ink);
  padding: .5rem .95rem; border-radius: 999px;
}

/* =============================================================
   13. CTA band — hard diagonal navy/red split, halftone overlay
   ============================================================= */
.cta-band { position: relative; overflow: clip; border-radius: var(--radius-lg); margin-inline: var(--gutter); }
.cta-band-inner {
  position: relative; padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 3.5rem);
  border-radius: var(--radius-lg);
  border: 3px solid var(--ink);
  background: linear-gradient(120deg, var(--ink) 0% 58%, var(--accent-dark) 58% 100%);
  color: #fff;
  display: grid; gap: 2rem; align-items: center;
  overflow: hidden;
}
.cta-band-inner::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,.5) 1.2px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: .08;
}
.cta-band-content { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.8); margin-top: .8rem; max-width: 40ch; }
.cta-band .hero-actions { margin-top: 1.8rem; }
.cta-band .btn-glass { background: #fff; border-color: #fff; color: var(--ink); box-shadow: 4px 4px 0 rgba(0,0,0,0.35); }
.cta-band .btn-glass:hover { box-shadow: 6px 6px 0 rgba(0,0,0,0.4); }
.cta-band .btn-accent { border-color: #fff; box-shadow: 4px 4px 0 rgba(0,0,0,0.35); }
.cta-band .btn-accent:hover { box-shadow: 6px 6px 0 rgba(0,0,0,0.4); }

/* =============================================================
   14. Footer
   ============================================================= */
.site-footer {
  position: relative;
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  background: var(--bg-2);
  border-top: 6px solid var(--ink);
}
.site-footer::before {
  content: ""; position: absolute; top: -9px; left: 0; right: 0; height: 3px;
  background: var(--accent);
}
.footer-grid { display: grid; gap: 2.2rem; grid-template-columns: 1fr; margin-bottom: 2.4rem; }
.footer-brand p { color: var(--ink-mute); font-size: .92rem; margin-top: .8rem; max-width: 30ch; }
.footer-col h4 { font-family: var(--sans-display); font-size: .82rem; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: .9rem; font-weight: 800; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { font-size: .93rem; color: var(--ink-soft); }
.footer-col a:hover { color: var(--accent-ink); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: .8rem; justify-content: space-between; align-items: center;
  padding-top: 1.6rem; border-top: 1px solid var(--line);
  font-size: .82rem; color: var(--ink-mute);
}
.footer-bottom a { color: var(--ink-mute); text-decoration: underline; text-underline-offset: 3px; }

/* =============================================================
   15. Page headers (interior pages)
   ============================================================= */
.page-header { padding-top: clamp(2.5rem, 6vw, 4rem); padding-bottom: clamp(2rem, 5vw, 3rem); position: relative; overflow: clip; }
.page-header .hero-mesh { opacity: .9; }
.breadcrumb { font-size: .85rem; color: var(--ink-mute); margin-bottom: 1rem; }
.breadcrumb a { color: var(--ink-mute); }
.breadcrumb a:hover { color: var(--accent-ink); }

/* =============================================================
   16. Service detail blocks (services.html)
   ============================================================= */
.service-detail {
  display: grid; gap: 1.6rem; align-items: center;
  padding-block: clamp(2rem, 5vw, 3rem);
  border-bottom: 1px solid var(--line);
}
.service-detail:last-of-type { border-bottom: 0; }
.service-detail-media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/4; border: 3px solid var(--ink); box-shadow: var(--glass-shadow); }
.service-detail-media img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-num { font-family: var(--sans-display); font-weight: 800; color: var(--accent-ink); font-size: .95rem; margin-bottom: .6rem; letter-spacing: .02em; }
.service-detail h2 { font-family: var(--sans-poster); font-weight: 400; text-transform: uppercase; font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin-bottom: .7rem; }
.service-detail p.lede { color: var(--ink-mute); margin-bottom: 1.2rem; }
.service-detail .includes { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.4rem; }
.service-detail .includes li { display: flex; gap: .6rem; align-items: flex-start; font-size: .94rem; }
.service-detail .includes svg { width: 1.1rem; height: 1.1rem; color: var(--accent); flex-shrink: 0; margin-top: .15rem; }
.service-detail:nth-of-type(even) .service-detail-media { order: -1; }

/* =============================================================
   17. Forms
   ============================================================= */
.form-card { padding: clamp(1.6rem, 4vw, 2.4rem); }
.form-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field.is-wide { grid-column: 1 / -1; }
.form-field label { font-size: .85rem; font-weight: 700; color: var(--ink-soft); }
.form-field input, .form-field select, .form-field textarea {
  font: inherit; font-size: .96rem;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  transition: border-color .2s var(--ease-out);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--accent); outline: none;
}
.form-field textarea { resize: vertical; min-height: 6.5rem; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-submit-row { margin-top: 1.4rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.form-note { font-size: .82rem; color: var(--ink-mute); }
.form-status {
  margin-top: 1rem; padding: .9rem 1.1rem; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 700; display: none; border: 2px solid transparent;
}
.form-status.is-success { display: block; background: var(--accent-soft); color: var(--accent-ink); border-color: var(--accent-ink); }
.form-status.is-error { display: block; background: #fde2e1; color: #7a2019; border-color: #7a2019; }

/* =============================================================
   17b. Booking Koala online booking embed
   ============================================================= */
.booking-embed {
  padding: clamp(1.4rem, 3vw, 2rem);
}
.booking-embed-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2.5px solid var(--ink);
  background: var(--paper);
}
.booking-embed-frame iframe {
  display: block;
  width: 100%;
  border: none;
}
.booking-fallback {
  margin-top: 1rem;
  font-size: .85rem;
  color: var(--ink-mute);
}
.booking-fallback a { text-decoration: underline; text-underline-offset: 2px; }

/* =============================================================
   18. Contact info + FAQ
   ============================================================= */
.contact-info-card { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-info-row { display: flex; align-items: flex-start; gap: .9rem; }
.contact-info-row h4 { font-size: .95rem; margin-bottom: .2rem; }
.contact-info-row p, .contact-info-row a { font-size: .92rem; color: var(--ink-mute); }
.contact-info-row a:hover { color: var(--accent-ink); }

.map-placeholder {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 16/10;
  background-color: var(--bg-2);
  background-image: radial-gradient(var(--ink) 1.3px, transparent 1.6px);
  background-size: 16px 16px;
  display: flex; align-items: center; justify-content: center;
  border: 2.5px solid var(--ink);
}
.map-placeholder .pin {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--ink); font-weight: 700; font-size: .9rem; text-align: center;
  background: var(--paper); border: 2px solid var(--ink); border-radius: var(--radius-md);
  padding: 1rem 1.3rem; box-shadow: 4px 4px 0 rgba(11,42,82,0.2);
}
.map-placeholder svg { width: 2.2rem; height: 2.2rem; color: var(--accent); }

.faq-list { display: flex; flex-direction: column; gap: .8rem; }
.faq-item {
  border-radius: var(--radius-md);
  border: 2px solid var(--ink);
  background: var(--paper);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.3rem;
  font-weight: 700; font-family: var(--sans-display); font-size: .98rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { flex-shrink: 0; width: 1.1rem; height: 1.1rem; color: var(--accent); transition: transform .3s var(--ease-out); }
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item .faq-body { padding: 0 1.3rem 1.2rem; color: var(--ink-mute); font-size: .93rem; }

/* =============================================================
   19. About page specifics
   ============================================================= */
.values-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }

/* =============================================================
   20. Reveal on scroll
   ============================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-split] { opacity: 1; transform: none; } /* defensive: never hide split-text parents */

/* =============================================================
   21. Effects (mouse-follow glow, magnetic handled via JS transform)
   ============================================================= */
[data-glow] { position: relative; }
[data-glow]::before {
  content: ""; position: absolute; inset: -1px; z-index: -1; border-radius: inherit;
  opacity: 0; transition: opacity .4s var(--ease-out);
  background: radial-gradient(220px circle at var(--gx, 50%) var(--gy, 50%), rgba(226, 31, 38, 0.18), transparent 70%);
}
[data-glow]:hover::before { opacity: 1; }

/* =============================================================
   22. Responsive — mobile-first breakpoints
   ============================================================= */
@media (max-width: 539px) {
  /* Icon-only language toggle on narrow screens — keeps the nav bar
     (logo + toggle + hamburger) from feeling cramped. */
  .lang-toggle span { display: none; }
  .lang-toggle { padding: .55rem; }
}

@media (min-width: 540px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 720px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
  .service-detail { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.3fr repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle-btn, .mobile-menu { display: none; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-band-inner { grid-template-columns: 1.3fr 0.7fr; }
  .cta-band .hero-actions { justify-content: flex-end; }
}

@media (min-width: 1280px) {
  .hero-visual-frame { aspect-ratio: 4/4.6; }
}

/* =============================================================
   23. Reduced motion — only the truly intrusive
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-visual-frame img { animation: none; }
  .reveal { transition-duration: .25s; }
}
