/* ==========================================================================
   AlgarveSecure — Design System v3
   Warm, bright, trust-first, photography-led. Direct structure over
   asymmetric composition — a local-service brand, not a tech showcase.
   ========================================================================== */

:root {
  --sand: #fbf6ec;      /* base background — warm paper */
  --sand-alt: #f4ead6;  /* alternating section wash */
  --stone: #e7d9bc;     /* borders / dividers — warm neutral, not gray */
  --white: #fffdf9;     /* card surfaces */

  --ink: #0f3238;       /* headings, primary text, header/footer */
  --ink-700: #1b4750;
  --teal-muted: #4d6a6f; /* secondary body text on light backgrounds */

  --terracotta: #c1592f;      /* the one accent — CTAs, links, highlights */
  --terracotta-dark: #9c4423; /* hover / pressed */
  --terracotta-tint: #f4ddc9; /* light accent wash */

  --cream: #f7f1e4; /* text on dark (ink) backgrounds */

  --placeholder-fill: #ded2b6; /* flat, unobtrusive image-slot fill */

  --whatsapp: #25d366;
  --whatsapp-dark: #1ebc59;

  --serif: 'DM Serif Display', Georgia, serif;
  --body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ui: 'Syne', var(--body);

  --header-h: 76px;
  --mobile-bar-h: 68px;
  --container: 1180px;

  /* Phone-handset icon as an SVG mask (not a Unicode glyph) so it renders
     identically everywhere instead of depending on a device's emoji/symbol
     font coverage. Colored via currentColor at each usage site. */
  --icon-phone: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

/* Reusable phone-icon box: an empty element sized in em, filled with
   currentColor and shaped by the SVG mask above. */
.icon-phone {
  display: inline-block;
  width: 0.95em;
  height: 0.95em;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: var(--icon-phone) center / contain no-repeat;
  mask: var(--icon-phone) center / contain no-repeat;
}

/* -------------------------------------------------------------------------
   Reset
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--sand);
  color: var(--teal-muted);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--mobile-bar-h);
}
@media (min-width: 768px) { body { padding-bottom: 0; } }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
/* In-prose links (body copy, FAQ answers, region link paragraphs) need to
   actually look like links; nav/buttons/cards override this locally. */
main p a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 2px; }
main p a:hover { color: var(--terracotta-dark); }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; margin: 0 0 0.5em; line-height: 1.15; color: var(--ink); text-wrap: balance; }
h1 em, h2 em { font-style: italic; color: var(--terracotta); }
p { margin: 0 0 1em; color: var(--teal-muted); }
:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
@media (min-width: 900px) { .container { padding: 0 32px; } }

section { padding: 56px 0; scroll-margin-top: calc(var(--header-h) + 16px); }
@media (min-width: 900px) { section { padding: 84px 0; } }
.section-alt { background: var(--sand-alt); border-top: 1px solid var(--stone); border-bottom: 1px solid var(--stone); }

.eyebrow {
  font-family: var(--ui);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.76rem;
  color: var(--terracotta);
  font-weight: 700;
  margin: 0 0 12px;
  display: block;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.4rem); }
.lede { font-size: clamp(1.02rem, 1.8vw, 1.15rem); color: var(--teal-muted); max-width: 60ch; }

/* Section headers are centered by default — direct, not asymmetric */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-head .lede { margin: 12px auto 0; }
.section-head.left { text-align: left; margin-left: 0; }

/* -------------------------------------------------------------------------
   Buttons — plain, honest pill. Nothing to decode.
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ui);
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 15px 28px;
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(156, 68, 35, 0.28);
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--terracotta-dark); }
.btn:active { transform: translateY(1px); }
.btn-lg { font-size: clamp(1.05rem, 2vw, 1.3rem); padding: 18px 34px; }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--stone); box-shadow: none; }
.btn-outline:hover { border-color: var(--terracotta); color: var(--terracotta); background: transparent; }
.btn-block { width: 100%; }
.btn-icon::before { content: ''; display: inline-block; width: 0.92em; height: 0.92em; flex-shrink: 0; background-color: currentColor; -webkit-mask: var(--icon-phone) center / contain no-repeat; mask: var(--icon-phone) center / contain no-repeat; }

/* -------------------------------------------------------------------------
   Header
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(251, 246, 236, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stone);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.wordmark { font-family: var(--ui); font-weight: 800; font-size: clamp(0.86rem, 4vw, 1.15rem); color: var(--ink); display: flex; align-items: baseline; gap: 0; white-space: nowrap; }
.wordmark span.accent { color: var(--terracotta); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { font-family: var(--ui); font-weight: 700; color: var(--terracotta); font-size: clamp(0.88rem, 2vw, 1.08rem); display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.header-phone .icon { display: inline-block; width: 1.15em; height: 1.15em; background-color: currentColor; -webkit-mask: var(--icon-phone) center / contain no-repeat; mask: var(--icon-phone) center / contain no-repeat; }
@media (max-width: 480px) {
  .header-phone .phone-digits { display: none; }
  .header-phone .icon { width: 1.5rem; height: 1.5rem; }
}

.hamburger {
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 44px; height: 44px;
  background: var(--white); border: 1px solid var(--stone); border-radius: 10px;
  flex-shrink: 0;
}
.hamburger span { display: block; width: 20px; height: 2px; background: var(--ink); transition: transform 0.2s ease, opacity 0.2s ease; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------------------------------------------------------------
   Nav drawer
   ------------------------------------------------------------------------- */
.nav-drawer { position: fixed; inset: 0; z-index: 70; background: rgba(15, 50, 56, 0.45); opacity: 0; pointer-events: none; transition: opacity 0.2s ease; }
.nav-drawer.is-open { opacity: 1; pointer-events: auto; }
.nav-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(420px, 88vw);
  background: var(--sand); border-left: 1px solid var(--stone); box-shadow: -30px 0 60px rgba(15, 50, 56, 0.15);
  padding: 22px 26px 32px; overflow-y: auto;
  transform: translateX(100%); transition: transform 0.25s ease;
  display: flex; flex-direction: column;
}
.nav-drawer.is-open .nav-panel { transform: translateX(0); }
.nav-panel-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.nav-close { width: 40px; height: 40px; border-radius: 10px; background: var(--white); border: 1px solid var(--stone); color: var(--ink); font-size: 1.1rem; display: flex; align-items: center; justify-content: center; }
.nav-group-label { font-family: var(--ui); text-transform: uppercase; letter-spacing: 0.09em; font-size: 0.68rem; color: var(--terracotta); margin: 22px 0 10px; }
.nav-group-label:first-of-type { margin-top: 0; }
.nav-list a { display: block; font-family: var(--ui); font-weight: 600; font-size: 1.02rem; color: var(--ink); padding: 10px 4px; border-bottom: 1px solid var(--stone); }
.nav-list a:hover { color: var(--terracotta); }
.nav-cta { margin-top: auto; padding-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.nav-towns-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 16px; }
.nav-towns-grid a { font-size: 0.9rem; font-weight: 500; }
body.nav-open { overflow: hidden; }

/* -------------------------------------------------------------------------
   Hero stack — headline-first, single column, top to bottom: kicker (the
   real, crawlable <h1>, keyword-driven and small) -> large emotional
   headline (a separate heading, not the H1, carrying the visual weight)
   -> subtext -> CTA -> supporting image. The image sits below the CTA,
   full width of the content column (not full-bleed), height scaled per
   breakpoint via object-fit: cover, so it reads as evidence rather than a
   mood-setting backdrop.
   ------------------------------------------------------------------------- */
.hero-stack { padding-top: 40px; padding-bottom: 40px; }
@media (min-width: 768px) { .hero-stack { padding-top: 56px; padding-bottom: 56px; } }
@media (min-width: 1025px) { .hero-stack { padding-top: 20px; padding-bottom: 18px; } }
.hero-stack-text { max-width: 720px; }
.hero-stack .breadcrumb { margin-bottom: 14px; }

.hero-kicker {
  font-family: var(--ui);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--terracotta);
  margin: 0 0 14px;
  line-height: 1.3;
}
@media (min-width: 1025px) { .hero-kicker { margin-bottom: 6px; } }
.hero-headline {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.42em;
}
@media (min-width: 1025px) { .hero-headline { margin-bottom: 0.14em; } }
.hero-subtext {
  font-family: var(--body);
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--teal-muted);
  margin: 0 0 22px;
  max-width: 60ch;
}
@media (min-width: 1025px) {
  .hero-subtext {
    font-size: 0.98rem;
    margin-bottom: 10px;
    max-width: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.hero-stack .btn { margin-top: 4px; }
@media (min-width: 1025px) { .hero-stack .btn { margin-top: 0; } }

/* Short risk-reversal line directly under the hero CTA button. */
.cta-note {
  font-family: var(--body);
  font-size: 0.85rem;
  color: var(--teal-muted);
  margin: 10px 0 0;
}

.hero-stack-media { margin-top: 32px; }
@media (min-width: 1025px) { .hero-stack-media { margin-top: 12px; } }
.hero-stack-media .placeholder {
  aspect-ratio: unset;
  min-height: 0;
  height: clamp(320px, 56vh, 480px);
  border-radius: 18px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-stack-media .placeholder { height: clamp(460px, 62vh, 660px); }
}
@media (min-width: 1025px) {
  /* Fixed, flat height (roughly a 2.8:1 wide-banner shape at the
     container's max content width) instead of a viewport-height-driven
     box, so the full image sits within the fold alongside the text above
     it on typical laptop screens, without needing to shrink the headline. */
  .hero-stack-media .placeholder { height: 340px; aspect-ratio: unset; }
}
.hero-stack-media img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: inherit; }

/* -------------------------------------------------------------------------
   Reassurance band — a short callout addressing hesitation directly, right
   after the hero/CTA. Distinct from the standard section-head pattern so it
   reads as a callout, not another content block.
   ------------------------------------------------------------------------- */
.reassurance-band {
  background: var(--terracotta-tint);
  padding: 32px 0;
  text-align: center;
}
.reassurance-band h2 { font-size: clamp(1.25rem, 2.6vw, 1.6rem); margin-bottom: 0.45em; }
.reassurance-band p { color: var(--ink-700); margin: 0; }

.hero-trust-band { background: var(--white); border-bottom: 1px solid var(--stone); }
.hero-trust-band .container { display: grid; grid-template-columns: repeat(3, 1fr); }
.hero-trust-band .stat { padding: 22px 16px; text-align: center; border-right: 1px solid var(--stone); }
.hero-trust-band .stat:last-child { border-right: none; }
.hero-trust-band .v { display: block; font-family: var(--ui); font-weight: 800; color: var(--terracotta); font-size: clamp(0.95rem, 2.4vw, 1.15rem); }
.hero-trust-band .l { font-family: var(--body); font-size: 0.78rem; color: var(--teal-muted); }
/* Stays a horizontal 3-up row at every width, including mobile — labels
   are free to wrap to a second line within their own column rather than
   the stats stacking on top of one another. */
@media (max-width: 480px) {
  .hero-trust-band .stat { padding: 14px 6px; }
  .hero-trust-band .v { font-size: 0.82rem; }
  .hero-trust-band .l { font-size: 0.62rem; line-height: 1.25; }
}

/* -------------------------------------------------------------------------
   Placeholder panels (non-hero) — clearly marked, unobtrusive, plain.
   ------------------------------------------------------------------------- */
.placeholder {
  position: relative;
  background: var(--placeholder-fill);
  border: 1px dashed rgba(15, 50, 56, 0.3);
  border-radius: 14px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}
.placeholder .ph-label {
  font-family: var(--body); font-size: 0.78rem; color: rgba(15, 50, 56, 0.6);
}
.placeholder.ratio-tall { aspect-ratio: 4 / 5; min-height: 0; }
.placeholder.ratio-wide { aspect-ratio: 16 / 9; min-height: 0; }
.placeholder.ratio-square { aspect-ratio: 1 / 1; min-height: 0; }

/* -------------------------------------------------------------------------
   Two-column — plain contained layout, no bleed, no per-page alternation.
   ------------------------------------------------------------------------- */
.two-col { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 860px) { .two-col { grid-template-columns: 1.05fr 0.95fr; } }
.two-col.reverse { grid-template-columns: 1fr; }
@media (min-width: 860px) { .two-col.reverse { grid-template-columns: 0.95fr 1.05fr; } }
.two-col.reverse .two-col-text { order: 2; }
.two-col.reverse .two-col-media { order: 1; }
.two-col-text .btn { margin-top: 8px; }

/* -------------------------------------------------------------------------
   Trust grid — three equal cards, centered heading above. Direct.
   ------------------------------------------------------------------------- */
.trust-grid, .card-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .trust-grid, .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 720px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 10px 28px rgba(15, 50, 56, 0.07);
}
.card .icon-dot { width: 40px; height: 40px; border-radius: 10px; background: var(--terracotta-tint); margin-bottom: 16px; }
.card .placeholder { margin: -28px -24px 20px; border-radius: 16px 16px 0 0; min-height: 0; }
.card h3 { margin-bottom: 8px; }
.card p:last-child { margin-bottom: 0; }
.card-link { display: inline-block; margin-top: 14px; font-family: var(--ui); font-weight: 700; color: var(--terracotta); font-size: 0.88rem; }
.card:hover .card-link { color: var(--terracotta-dark); }
a.card:hover { box-shadow: 0 14px 34px rgba(15, 50, 56, 0.12); }
.card.flagship { border: 1.5px solid var(--terracotta); }
.card .badge {
  display: inline-block; font-family: var(--ui); font-weight: 700; font-size: 0.66rem;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--terracotta-dark);
  background: var(--terracotta-tint); border-radius: 999px; padding: 4px 10px; margin-bottom: 12px;
}

/* -------------------------------------------------------------------------
   Directory — region-grouped town list (kept: simple, clear, not a chip wall)
   ------------------------------------------------------------------------- */
.directory { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.directory-col .head { font-family: var(--ui); font-weight: 700; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--terracotta); padding-bottom: 10px; margin-bottom: 6px; border-bottom: 1px solid var(--stone); }
.directory-col a { display: block; font-family: var(--body); font-weight: 500; font-size: 0.98rem; color: var(--ink-700); padding: 8px 0; border-bottom: 1px solid var(--stone); }
.directory-col a:hover { color: var(--terracotta); }
.directory-col a:last-child { border-bottom: none; }
@media (max-width: 780px) { .directory { grid-template-columns: 1fr; gap: 24px; } }

.link-line { display: flex; flex-wrap: wrap; gap: 0; font-family: var(--body); font-weight: 500; }
.link-line.center { justify-content: center; }
.link-line a { padding: 6px 14px 6px 0; color: var(--terracotta); }
.link-line a:hover { color: var(--terracotta-dark); }
.link-line span.sep { color: var(--stone); padding-right: 14px; }

.service-list { display: grid; gap: 1px; background: var(--stone); border: 1px solid var(--stone); border-radius: 14px; overflow: hidden; }
.service-list a { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 16px; background: var(--white); padding: 20px 22px; }
.service-list a:hover { background: var(--sand-alt); }
.service-list a h3 { font-size: 1.02rem; margin-bottom: 4px; }
.service-list a p { font-size: 0.86rem; margin: 0; }
.service-list a .arrow { font-family: var(--ui); color: var(--terracotta); font-size: 1.1rem; }

/* -------------------------------------------------------------------------
   Check list
   ------------------------------------------------------------------------- */
.check-list li { position: relative; padding-left: 28px; margin-bottom: 12px; color: var(--teal-muted); }
.check-list li::before { content: '\2713'; position: absolute; left: 0; top: 0; color: var(--terracotta); font-weight: 700; }

.breadcrumb { font-family: var(--body); font-size: 0.76rem; color: var(--teal-muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--teal-muted); }
.breadcrumb a:hover { color: var(--terracotta); }

/* -------------------------------------------------------------------------
   Table of contents — jump-links bar under the hero on longer service pages
   ------------------------------------------------------------------------- */
.toc { background: var(--sand-alt); border-bottom: 1px solid var(--stone); padding: 16px 0; }
.toc .container { display: flex; align-items: center; gap: 8px 18px; flex-wrap: wrap; }
.toc-label { font-family: var(--ui); font-weight: 700; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--teal-muted); white-space: nowrap; }
.toc-links { display: flex; flex-wrap: wrap; gap: 8px; }
.toc-links a { font-family: var(--ui); font-weight: 600; font-size: 0.82rem; color: var(--ink-700); background: var(--white); border: 1px solid var(--stone); border-radius: 999px; padding: 6px 14px; white-space: nowrap; }
.toc-links a:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* -------------------------------------------------------------------------
   CTA band — simple, centered, no imagery
   ------------------------------------------------------------------------- */
.cta-band { background: var(--ink); text-align: center; }
.cta-band h2, .cta-band .eyebrow { color: var(--cream); }
.cta-band h2 em { color: #f3caa4; }
.cta-band .lede { color: rgba(247, 241, 228, 0.82); margin: 12px auto 26px; }

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: rgba(247, 241, 228, 0.75); }
.footer-masthead { padding: 44px 0; border-bottom: 1px solid rgba(247, 241, 228, 0.14); display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px; }
.footer-masthead .wordmark { font-size: clamp(1rem, 5vw, 1.3rem); color: var(--cream); }
.footer-masthead .wordmark span.accent { color: #f3caa4; }
.footer-masthead p { margin: 6px 0 0; max-width: 42ch; font-size: 0.92rem; color: rgba(247, 241, 228, 0.65); }
.footer-grid { display: grid; gap: 32px; grid-template-columns: 1fr; padding: 44px 0; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-col h4 { font-family: var(--ui); text-transform: uppercase; letter-spacing: 0.07em; font-size: 0.68rem; color: #f3caa4; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col a { font-size: 0.9rem; color: rgba(247, 241, 228, 0.7); }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { padding: 22px 0; border-top: 1px solid rgba(247, 241, 228, 0.14); display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 900px) { .footer-bottom:last-child { padding-bottom: 22px; } }
@media (min-width: 720px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-bottom p { font-size: 0.78rem; color: rgba(247, 241, 228, 0.55); margin: 0; }
.footer-disclaimer { font-size: 0.8rem; color: rgba(247, 241, 228, 0.6); max-width: 74ch; margin: 0 0 16px; }

/* -------------------------------------------------------------------------
   Floating WhatsApp + sticky mobile call bar
   ------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed; right: 18px; bottom: calc(var(--mobile-bar-h) + 16px); z-index: 55;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(15, 50, 56, 0.3);
  transition: transform 0.15s ease, background 0.15s ease;
}
.whatsapp-float:hover { background: var(--whatsapp-dark); transform: scale(1.05); }
.whatsapp-float svg { width: 28px; height: 28px; }
@media (min-width: 900px) { .whatsapp-float { bottom: 24px; } }

.mobile-call-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; height: var(--mobile-bar-h);
  background: var(--white); border-top: 1px solid var(--stone);
  display: flex; align-items: center; padding: 0 14px;
  box-shadow: 0 -8px 24px rgba(15, 50, 56, 0.1);
}
.mobile-call-bar .btn { width: 100%; font-size: 1rem; padding: 13px 18px; }
@media (min-width: 768px) { .mobile-call-bar { display: none; } }

/* -------------------------------------------------------------------------
   Contact form
   ------------------------------------------------------------------------- */
.contact-form { background: var(--white); border: 1px solid var(--stone); border-radius: 16px; padding: 28px; box-shadow: 0 10px 28px rgba(15, 50, 56, 0.06); }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-family: var(--ui); font-size: 0.8rem; font-weight: 700; color: var(--ink-700); margin-bottom: 8px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; background: var(--sand); border: 1px solid var(--stone); border-radius: 10px;
  padding: 12px 14px; color: var(--ink);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--terracotta); }
.form-row textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.8rem; color: var(--teal-muted); margin-top: 4px; }

.contact-direct { display: flex; flex-direction: column; gap: 14px; }
.contact-direct-card { padding: 22px; border: 1px solid var(--stone); border-radius: 16px; background: var(--white); box-shadow: 0 10px 28px rgba(15, 50, 56, 0.06); }
.contact-direct-card h3 { margin-bottom: 6px; }
.contact-direct-card .big-phone { font-family: var(--ui); font-weight: 800; font-size: 1.4rem; color: var(--terracotta); display: block; margin: 6px 0 14px; }

/* -------------------------------------------------------------------------
   FAQ — simple, always-expanded list (no JS, good for SEO/accessibility)
   ------------------------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; max-width: 800px; margin: 0 auto; }
.faq-item { padding: 22px 0; border-top: 1px solid var(--stone); }
.faq-item:first-child { border-top: none; padding-top: 0; }
.faq-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.faq-item p { margin: 0; font-size: 0.94rem; }

/* -------------------------------------------------------------------------
   About page pillars — simple numbered list
   ------------------------------------------------------------------------- */
.pillar-list { display: flex; flex-direction: column; }
.pillar { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid var(--stone); }
.pillar:first-child { border-top: none; padding-top: 0; }
.pillar .num { font-family: var(--ui); font-weight: 800; font-size: 1.1rem; color: var(--terracotta); }
.pillar h3 { margin-bottom: 4px; }
.pillar p { margin: 0; font-size: 0.94rem; }

/* -------------------------------------------------------------------------
   Utility
   ------------------------------------------------------------------------- */
.text-center { text-align: center; }
.narrow { max-width: 720px; }
.mt-32 { margin-top: 32px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
