/* EZEfix & Renovations — site stylesheet (v2: full-bleed photo heroes, icon badges, card system)
   Brand: blue #125570 with white detailing. One warm accent (tape-measure amber) reserved for the
   call button, the financing number and icon highlights. Bitter (slab serif) for headlines echoes
   the seal's serif "E"; Source Sans 3 carries body and UI text. */

@font-face {
  font-family: "Bitter";
  src: url("/fonts/bitter-latin.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("/fonts/source-sans-3-latin.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --blue: #125570;
  --blue-deep: #0d4359;
  --blue-ink: #082835;
  --blue-tint: #e9f1f5;
  --blue-tint-2: #f3f7f9;
  --blue-line: #c9dbe3;
  --amber: #f4b942;
  --amber-deep: #e3a527;
  --amber-tint: #fdf1d6;
  --amber-ink: #8a5f0a;
  --ink: #14232b;
  --ink-2: #3b4c55;
  --ink-3: #5c6e77;
  --paper: #ffffff;
  --paper-2: #f5f8fa;
  --line: #dde5ea;

  --font-display: "Bitter", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --fs-1: clamp(2.4rem, 1.4rem + 3.6vw, 4.25rem);
  --fs-2: clamp(1.75rem, 1.3rem + 1.6vw, 2.5rem);
  --fs-3: 1.375rem;
  --fs-4: 1.125rem;
  --fs-lead: clamp(1.125rem, 1rem + 0.5vw, 1.3rem);
  --fs-sm: 0.9375rem;
  --fs-xs: 0.8125rem;

  --container: 74rem;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section: clamp(3.5rem, 8vw, 6.5rem);
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(8, 40, 53, 0.06), 0 10px 28px -14px rgba(8, 40, 53, 0.22);
  --shadow-md: 0 2px 4px rgba(8, 40, 53, 0.06), 0 22px 48px -18px rgba(8, 40, 53, 0.32);
  --header-h: 4.5rem;
  --callbar-h: 4.75rem;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { color-scheme: light; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font: 400 1.0625rem/1.55 var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--callbar-h) + env(safe-area-inset-bottom));
}
@media (min-width: 60em) { body { padding-bottom: 0; } }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; margin: 0; letter-spacing: -0.01em; color: inherit; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }
a { color: var(--blue); text-underline-offset: 0.15em; }
a:hover { color: var(--blue-deep); }
strong { font-weight: 700; }
button { font: inherit; }
svg { display: inline-block; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; box-shadow: 0 0 0 6px var(--blue); border-radius: 4px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 1rem; top: -4rem; z-index: 100; background: var(--amber); color: var(--ink); padding: 0.6rem 1rem; border-radius: var(--radius); font-weight: 700; text-decoration: none; }
.skip-link:focus { top: 1rem; }
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }

/* ---------- icons ---------- */
.ico { display: inline-grid; place-items: center; width: 3rem; height: 3rem; border-radius: 12px; background: var(--blue-tint); color: var(--blue); flex: none; }
.ico svg { width: 1.5rem; height: 1.5rem; }
.ico--amber { background: var(--amber-tint); color: var(--amber-ink); }
.ico--onblue { background: rgba(255, 255, 255, 0.14); color: var(--amber); }
.ico--sm { width: 2.25rem; height: 2.25rem; border-radius: 9px; }
.ico--sm svg { width: 1.15rem; height: 1.15rem; }
.ico--lg { width: 3.5rem; height: 3.5rem; border-radius: 14px; }
.ico--lg svg { width: 1.75rem; height: 1.75rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 3rem; padding: 0.65rem 1.3rem; border-radius: 12px;
  font: 600 1.0625rem/1.2 var(--font-body); text-decoration: none; text-align: center;
  border: 2px solid transparent; cursor: pointer; white-space: nowrap;
  transition: background-color 0.18s var(--ease), border-color 0.18s var(--ease), color 0.18s var(--ease), transform 0.15s var(--ease), box-shadow 0.18s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(1px); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn--call { background: var(--amber); color: var(--ink); border-color: var(--amber); box-shadow: 0 8px 20px -8px rgba(244, 185, 66, 0.7); }
.btn--call:hover { background: var(--amber-deep); border-color: var(--amber-deep); color: var(--ink); }
.btn--primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn--primary:hover { background: var(--blue-deep); border-color: var(--blue-deep); color: #fff; }
.btn--ghost { background: rgba(255, 255, 255, 0.1); color: #fff; border-color: rgba(255, 255, 255, 0.55); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.2); border-color: #fff; color: #fff; }
.btn--outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn--outline:hover { background: var(--blue-tint); color: var(--blue-deep); }
.btn--lg { min-height: 3.5rem; padding: 0.85rem 1.7rem; font-size: 1.125rem; }
.btn--sm { min-height: 2.6rem; padding: 0.4rem 0.95rem; font-size: var(--fs-sm); border-radius: 10px; }
.btn--block { width: 100%; }

/* ---------- header / nav ---------- */
.site-header { background: var(--blue); color: #fff; position: relative; z-index: 50; box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08); }
@media (min-width: 60em) { .site-header { position: sticky; top: 0; } }
.site-header__inner { display: flex; align-items: center; gap: 1rem; min-height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 0.7rem; color: #fff; text-decoration: none; margin-right: auto; }
.brand__mark { width: 2.6rem; }
.brand__word { height: 0.8rem; width: auto; }
@media (min-width: 48em) { .brand__mark { width: 2.9rem; } .brand__word { height: 0.95rem; } }
@media (max-width: 30em) { .brand__mark { width: 2.3rem; } .brand__word { height: 0.66rem; } .nav-toggle { padding: 0.4rem 0.6rem; } }

.nav-toggle { display: inline-flex; align-items: center; gap: 0.5rem; background: transparent; color: #fff; border: 2px solid rgba(255, 255, 255, 0.5); border-radius: 10px; padding: 0.45rem 0.8rem; min-height: 2.75rem; cursor: pointer; font-weight: 600; }
.nav-toggle svg { width: 1.3rem; height: 1.3rem; }
.nav-toggle .nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }

.nav__list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 0.15rem; }
.nav__link { display: inline-flex; align-items: center; gap: 0.35rem; color: #fff; text-decoration: none; font-weight: 600; padding: 0.6rem 0.85rem; border-radius: 10px; background: transparent; border: 0; cursor: pointer; min-height: 2.75rem; }
.nav__link:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.nav__link[aria-current="page"] { box-shadow: inset 0 -3px 0 var(--amber); border-radius: 10px 10px 0 0; }
.nav__link svg { width: 1rem; height: 1rem; transition: transform 0.18s var(--ease); }
.nav__group { position: relative; }
.nav__group[data-open="true"] .nav__link svg { transform: rotate(180deg); }
.nav__menu { list-style: none; margin: 0; padding: 0.5rem; display: none; }
.nav__menu a { display: flex; align-items: center; gap: 0.7rem; color: var(--ink); text-decoration: none; font-weight: 600; padding: 0.6rem 0.75rem; border-radius: 10px; }
.nav__menu a svg { width: 1.15rem; height: 1.15rem; color: var(--blue); flex: none; }
.nav__menu a:hover { background: var(--blue-tint); color: var(--blue-deep); }
.nav__menu a[aria-current="page"] { background: var(--blue-tint); color: var(--blue); }
.nav__menu .nav__menu-all { border-top: 1px solid var(--line); margin-top: 0.35rem; padding-top: 0.35rem; }
.nav__cta-item { margin-left: 0.35rem; }

@media (max-width: 59.99em) {
  .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--blue-deep); border-top: 1px solid rgba(255, 255, 255, 0.15); box-shadow: 0 20px 40px rgba(8, 40, 53, 0.35); }
  .nav[data-open="true"] { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; padding: 0.75rem var(--gutter) 1.25rem; gap: 0.25rem; }
  .nav__link { width: 100%; justify-content: space-between; font-size: 1.125rem; padding: 0.85rem 0.75rem; }
  .nav__group[data-open="true"] .nav__menu { display: block; }
  .nav__menu { background: #fff; border-radius: var(--radius-lg); margin: 0.25rem 0 0.5rem; }
  .nav__cta-item { margin: 0.35rem 0 0; }
  .nav__cta-item .btn { width: 100%; min-height: 3rem; font-size: 1.0625rem; }
  body.nav-open { overflow: hidden; }
}
@media (min-width: 60em) {
  .nav-toggle { display: none; }
  .nav__menu { position: absolute; top: calc(100% + 0.4rem); left: 0; min-width: 17rem; background: #fff; color: var(--ink); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
  .nav__group[data-open="true"] .nav__menu { display: block; }
  .nav__group::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 0.5rem; }
}

/* ---------- hero: full-bleed photo behind the text ---------- */
.hero { position: relative; isolation: isolate; background: var(--blue-ink); color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(8, 40, 53, 0.92) 0%, rgba(18, 85, 112, 0.82) 40%, rgba(18, 85, 112, 0.38) 100%); }
.hero__inner { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem); min-height: clamp(30rem, 74vh, 46rem); display: flex; flex-direction: column; justify-content: center; }
.hero--compact .hero__inner { min-height: clamp(22rem, 50vh, 31rem); padding-block: clamp(3rem, 6vw, 4.5rem); }
.hero__panel { max-width: 44rem; }
.hero__h1 { display: flex; align-items: center; gap: 0.7rem; font: 600 0.95rem/1.3 var(--font-body); color: rgba(255, 255, 255, 0.9); margin: 0 0 1.1rem; letter-spacing: 0.01em; }
.hero__h1::before { content: ""; width: 2.25rem; height: 3px; border-radius: 2px; background: var(--amber); flex: none; }
.hero__title { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-1); line-height: 1.06; letter-spacing: -0.018em; margin: 0 0 1.25rem; max-width: 18ch; text-wrap: balance; text-shadow: 0 2px 24px rgba(8, 40, 53, 0.35); }
.hero__offer { font-size: var(--fs-lead); font-weight: 500; line-height: 1.45; margin: 0 0 1.75rem; max-width: 36rem; color: rgba(255, 255, 255, 0.95); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 0 0 1.5rem; }
@media (max-width: 40em) { .hero__actions .btn { flex: 1 1 100%; } }
.hero__sub { font-size: var(--fs-sm); color: rgba(255, 255, 255, 0.8); margin: 0; max-width: 34rem; }
.hero__meta { list-style: none; margin: 1.75rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem 0.6rem; }
.hero__meta li { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.5rem 0.85rem; border-radius: 999px; background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.2); backdrop-filter: blur(8px); font-size: 0.9rem; font-weight: 600; }
.hero__meta svg { width: 1.05rem; height: 1.05rem; color: var(--amber); flex: none; }
@media (max-width: 60em) {
  .hero__overlay { background: linear-gradient(180deg, rgba(8, 40, 53, 0.9) 0%, rgba(18, 85, 112, 0.82) 55%, rgba(18, 85, 112, 0.68) 100%); }
  .hero__inner { min-height: 0; }
}

/* ---------- trust bar ---------- */
.trustbar { background: var(--blue-ink); color: #fff; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.trustbar__list { list-style: none; margin: 0; padding: 0.9rem 0; display: flex; flex-wrap: wrap; gap: 0.6rem 2rem; font-size: var(--fs-sm); font-weight: 600; }
.trustbar__list li { display: flex; align-items: center; gap: 0.55rem; }
.trustbar__list svg { width: 1.15rem; height: 1.15rem; color: var(--amber); flex: none; }

/* ---------- sections ---------- */
.section { padding: var(--section) 0; }
.section--tint { background: var(--blue-tint-2); }
.section--paper2 { background: var(--paper-2); }
.section--blue { background: var(--blue); color: #fff; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section__head { max-width: 46rem; margin-bottom: clamp(1.75rem, 4vw, 3rem); }
.section__title { font-size: var(--fs-2); margin: 0 0 0.75rem; text-wrap: balance; }
.section__lead { font-size: var(--fs-lead); color: var(--ink-2); margin: 0; }
.section--blue .section__lead { color: rgba(255, 255, 255, 0.85); }
.section__foot { margin-top: clamp(1.5rem, 3vw, 2.5rem); display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.prose { max-width: 46rem; }
.prose p { color: var(--ink-2); font-size: var(--fs-lead); }
.lead { font-size: var(--fs-lead); color: var(--ink-2); }

/* ---------- cards ---------- */
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }

/* ---------- breadcrumb ---------- */
.crumbs { font-size: var(--fs-sm); padding: 0.9rem 0 0; }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.35rem; color: var(--ink-3); }
.crumbs li + li::before { content: "/"; margin-right: 0.35rem; color: var(--blue-line); }
.crumbs a { color: var(--ink-2); }
.crumbs [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* ---------- language switcher (plain crawlable links: "Español" / "English") ---------- */
.nav__lang .nav__link { font-weight: 700; }
@media (min-width: 60em) { .nav__lang { margin-left: 0.25rem; padding-left: 0.4rem; border-left: 1px solid rgba(255, 255, 255, 0.3); } }
.nav__flag { font-size: 0.78em; font-weight: 500; color: var(--ink-3); white-space: nowrap; }
.nav__menu .nav__flag { margin-left: auto; }
.reviews__note { color: var(--ink-3); font-size: var(--fs-sm); margin: -0.5rem 0 1.25rem; }
.form-note { color: var(--ink-3); font-size: var(--fs-sm); margin: 0.75rem 0 0; }
.related__flag { font-size: 0.8em; font-weight: 500; color: var(--ink-3); margin-left: 0.35rem; }

/* ---------- compact promises row (Home, Gallery, Quote, Services index) ---------- */
.promises { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: 1rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 36em) { .promises { grid-template-columns: 1fr; } }
@media (min-width: 60em) { .promises { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.promise { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 1.25rem; display: flex; flex-direction: column; gap: 0.6rem; }
.promise h3 { font-size: var(--fs-4); margin: 0; }
.promise p { margin: 0; color: var(--ink-2); font-size: var(--fs-sm); }

/* ---------- design and supply partner (kitchen and bathroom pages) ---------- */
.partner { background: var(--blue-tint); border: 1px solid var(--blue-line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.5rem); max-width: 60rem; display: grid; gap: 1rem; }
.partner__head { display: flex; align-items: center; gap: 1rem; }
.partner__head h2 { font-size: var(--fs-3); margin: 0; }
.partner p { margin: 0; }
.partner ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.partner li { display: flex; gap: 0.6rem; align-items: flex-start; }
.partner li svg { width: 1.25rem; height: 1.25rem; flex: none; color: var(--blue); margin-top: 0.15rem; }
.partner .btn { justify-self: start; }

/* ---------- "Which service do you need?" (services index) ---------- */
.which { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; max-width: 56rem; }
.which li { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 1.1rem 1.25rem; }
.which a { display: inline-flex; align-items: center; gap: 0.6rem; font: 700 var(--fs-4)/1.3 var(--font-display); color: var(--blue); text-decoration: none; margin-bottom: 0.4rem; }
.which a:hover { text-decoration: underline; }
.which p { margin: 0; color: var(--ink-2); }

/* ---------- service cards ---------- */
.svc-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 40em) { .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 60em) {
  .svc-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .svc-card:nth-child(-n+2) { grid-column: span 3; }
  .svc-card:nth-child(n+3) { grid-column: span 2; }
}
.svc-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; border-radius: var(--radius-lg); overflow: hidden; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: inherit; }
.svc-card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--blue-tint); }
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.svc-card:hover .svc-card__media img { transform: scale(1.04); }
.svc-card__placeholder { aspect-ratio: 4 / 3; display: grid; place-items: center; background: linear-gradient(135deg, var(--blue-deep), var(--blue)); color: #fff; text-align: center; padding: 1.5rem; }
.svc-card__placeholder .ico { margin: 0 auto 0.75rem; }
.svc-card__placeholder span { font: 700 var(--fs-3)/1.15 var(--font-display); display: block; }
.svc-card__placeholder small { display: block; margin-top: 0.4rem; font-size: var(--fs-sm); color: rgba(255, 255, 255, 0.75); }
.svc-card__body { padding: 1.25rem 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.svc-card__head { display: flex; align-items: center; gap: 0.85rem; }
.svc-card__title { font-size: var(--fs-3); }
.svc-card__text { margin: 0; color: var(--ink-2); flex: 1; }
.svc-card__more { font-weight: 700; color: var(--blue); }

/* ---------- feature grid (why / values) ---------- */
.features { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 40em) { .features { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 64em) { .features { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.features--2 { grid-template-columns: 1fr; }
@media (min-width: 48em) { .features--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.feature { display: flex; flex-direction: column; gap: 0.85rem; padding: 1.5rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.feature h3 { font-size: var(--fs-4); line-height: 1.25; }
.feature p { margin: 0; color: var(--ink-2); }

/* ---------- about teaser / story ---------- */
.about-split { display: grid; gap: 2rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 56em) { .about-split { grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; } }
.about-split .section__head { margin-bottom: 1.25rem; }
.about-points { list-style: none; padding: 0; margin: 1.5rem 0; display: grid; gap: 0.85rem; }
.about-points li { display: flex; gap: 0.85rem; align-items: flex-start; }
.about-points strong { display: block; font-family: var(--font-display); }
.about-points span { color: var(--ink-2); }
.photo-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.photo-stack img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4 / 5; }
.photo-stack img:first-child { transform: translateY(1.5rem); }
.story p { font-size: var(--fs-lead); color: var(--ink-2); }

/* ---------- offers (financing + warranty + guarantees) ---------- */
.offers { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 56em) { .offers { grid-template-columns: 1fr 1fr; } }
.offer { border-radius: var(--radius-lg); padding: clamp(1.75rem, 4vw, 2.5rem); display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.offer--financing { background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 70%); color: #fff; }
.offer--warranty { background: var(--paper); color: var(--ink); border: 2px solid var(--blue); }
.offer__big { font: 800 clamp(3rem, 7vw, 4.75rem)/1 var(--font-display); letter-spacing: -0.02em; margin: 0.5rem 0 0.5rem; color: var(--amber); }
.offer__title { font-size: var(--fs-3); margin: 0 0 1rem; max-width: 22ch; text-wrap: balance; }
.offer ul { padding-left: 0; list-style: none; margin: 0 0 1.25rem; display: grid; gap: 0.5rem; }
.offer li { display: flex; gap: 0.6rem; align-items: flex-start; }
.offer li svg { width: 1.15rem; height: 1.15rem; flex: none; margin-top: 0.2rem; color: var(--amber); }
.offer--warranty li svg, .offer--guarantee li svg { color: var(--blue); }
.offer__tag { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-4); margin: 0 0 1rem; color: var(--blue); }
.offer__fine { font-size: var(--fs-xs); margin: auto 0 0; opacity: 0.85; padding-top: 0.75rem; }
.offer__actions { margin: 0.25rem 0 1.25rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.offer__head { display: flex; align-items: flex-start; gap: 1.25rem; margin-bottom: 0.5rem; }
.seal { width: 7.5rem; height: auto; flex: none; color: var(--blue); }
.offer--financing .btn--outline { color: #fff; border-color: rgba(255, 255, 255, 0.7); }
.offer--financing .btn--outline:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }
.offers--secondary { margin-top: 1.5rem; }
.offer--guarantee { background: var(--paper); border: 1px solid var(--line); padding: clamp(1.5rem, 3vw, 2rem); gap: 0.85rem; }
.offer--guarantee .offer__title { font-size: var(--fs-4); margin: 0; max-width: none; }
.offer--guarantee p { color: var(--ink-2); margin: 0; }
.offer--guarantee ul { margin: 0; color: var(--ink-2); }

/* ---------- sub-services ---------- */
.subs { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 56em) { .subs { grid-template-columns: 1fr 1fr; } }
.sub { display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; padding: 1.25rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); scroll-margin-top: calc(var(--header-h) + 1rem); }
.sub h3 { font-size: var(--fs-4); line-height: 1.3; margin: 0.35rem 0 0.4rem; }
.sub p { margin: 0; color: var(--ink-2); }

/* ---------- photos ---------- */
.photos { display: grid; gap: 0.75rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 48em) { .photos { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; } }
.photo { position: relative; margin: 0; }
.photo[hidden] { display: none; }
.photo__btn { display: block; width: 100%; padding: 0; border: 0; background: var(--blue-tint); cursor: pointer; border-radius: 12px; overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-sm); }
.photo__btn img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.photo__btn:hover img { transform: scale(1.04); }
.photo__tag { position: absolute; left: 0.6rem; bottom: 0.6rem; background: rgba(8, 40, 53, 0.82); color: #fff; font-size: var(--fs-xs); font-weight: 700; padding: 0.3rem 0.6rem; border-radius: 999px; pointer-events: none; backdrop-filter: blur(6px); }
.photo--before .photo__tag { background: var(--amber); color: var(--ink); }
.photos-empty { border: 2px dashed var(--blue-line); border-radius: var(--radius-lg); padding: 2rem; color: var(--ink-2); max-width: 46rem; }
.photos-empty p { margin: 0 0 0.75rem; }

.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0 0 1.5rem; }
.chip { border: 2px solid var(--blue-line); background: #fff; color: var(--ink); border-radius: 999px; padding: 0.5rem 1rem; font: 600 var(--fs-sm)/1 var(--font-body); cursor: pointer; min-height: 2.75rem; display: inline-flex; align-items: center; gap: 0.4rem; }
.chip:hover { border-color: var(--blue); }
.chip[aria-pressed="true"] { background: var(--blue); border-color: var(--blue); color: #fff; }
.chip__count { opacity: 0.7; font-weight: 400; }
.gallery-status { font-size: var(--fs-sm); color: var(--ink-3); margin: 0 0 1rem; }

/* ---------- lightbox ---------- */
.lightbox { border: 0; padding: 0; background: transparent; max-width: 100vw; max-height: 100vh; width: 100%; height: 100%; margin: 0; }
.lightbox::backdrop { background: rgba(8, 40, 53, 0.94); }
.lightbox[open] { display: grid; place-items: center; }
.lightbox__figure { margin: 0; display: grid; gap: 0.75rem; justify-items: center; padding: 3.5rem 1rem 1rem; max-width: 100%; }
.lightbox__img { max-width: min(96vw, 90rem); max-height: 78vh; width: auto; height: auto; border-radius: 12px; background: var(--blue-ink); }
.lightbox__caption { color: #fff; font-size: var(--fs-sm); text-align: center; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.25rem; }
.lightbox__count { color: rgba(255, 255, 255, 0.65); }
.lightbox__btn { position: fixed; z-index: 2; width: 3rem; height: 3rem; border-radius: 50%; border: 0; background: rgba(255, 255, 255, 0.14); color: #fff; display: grid; place-items: center; cursor: pointer; }
.lightbox__btn:hover { background: rgba(255, 255, 255, 0.28); }
.lightbox__btn svg { width: 1.4rem; height: 1.4rem; }
.lightbox__close { top: 0.75rem; right: 0.75rem; }
.lightbox__prev { left: 0.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 0.5rem; top: 50%; transform: translateY(-50%); }
@media (min-width: 48em) { .lightbox__prev { left: 1.25rem; } .lightbox__next { right: 1.25rem; } }

/* ---------- steps (a real sequence) ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.25rem; grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 40em) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 64em) { .steps { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.steps--3 { grid-template-columns: 1fr; }
@media (min-width: 64em) { .steps--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.step { counter-increment: step; position: relative; padding: 1.5rem 1.25rem 1.25rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 0.75rem; }
.step__num { position: absolute; top: 1rem; right: 1rem; font: 800 0.9rem/1 var(--font-body); color: var(--amber-ink); background: var(--amber-tint); padding: 0.35rem 0.6rem; border-radius: 999px; }
.step h3 { font-size: var(--fs-4); line-height: 1.25; }
.step p { margin: 0; color: var(--ink-2); font-size: var(--fs-sm); }

/* ---------- reviews ---------- */
.reviews { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 40em) { .reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 64em) { .reviews { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.review { position: relative; background: #fff; border-radius: var(--radius-lg); padding: 1.6rem 1.5rem 1.5rem; border: 1px solid var(--line); box-shadow: var(--shadow-sm); margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.review::before { content: "\201C"; position: absolute; top: 0.4rem; right: 1.1rem; font: 800 4rem/1 var(--font-display); color: var(--blue-tint); }
.review p { margin: 0; position: relative; }
.review footer { color: var(--ink-3); font-size: var(--fs-sm); font-weight: 600; margin-top: auto; }
.review__more { font-weight: 400; white-space: nowrap; }
.review--placeholder { border: 2px dashed var(--blue-line); background: transparent; color: var(--ink-3); box-shadow: none; }
.stars { display: inline-flex; gap: 0.15rem; color: var(--amber); }
.stars svg { width: 1.1rem; height: 1.1rem; }
.rating-pill { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.9rem; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); font-weight: 700; margin-bottom: 1.5rem; box-shadow: var(--shadow-sm); }
.rating-pill svg { width: 1.1rem; height: 1.1rem; color: var(--amber); }
.widget-slot { margin-bottom: 2rem; min-height: 22rem; }
@media (min-width: 48em) { .widget-slot { min-height: 30rem; } }
.widget-slot--empty { border: 2px dashed var(--blue-line); border-radius: var(--radius-lg); padding: 1.5rem; color: var(--ink-2); max-width: 46rem; }
.widget-slot--empty p { margin: 0 0 0.5rem; }
.widget-slot--empty code { font-size: 0.9em; background: #fff; padding: 0.1rem 0.35rem; border-radius: 4px; }

/* ---------- FAQ ---------- */
.faq { max-width: 52rem; display: grid; gap: 0.75rem; }
.faq__item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 0 1.25rem; }
.faq__item summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 0; font: 700 var(--fs-4)/1.3 var(--font-display); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font: 400 1.5rem/1 var(--font-body); color: var(--blue); flex: none; width: 2rem; height: 2rem; display: grid; place-items: center; border-radius: 50%; background: var(--blue-tint); }
.faq__item[open] summary::after { content: "\2212"; }
.faq__a { padding: 0 0 1.25rem; color: var(--ink-2); max-width: 46rem; }
.faq__a p { margin: 0; }

/* ---------- service area ---------- */
.area { display: grid; gap: 1.5rem 3rem; grid-template-columns: 1fr; }
@media (min-width: 48em) { .area { grid-template-columns: 1fr 1fr; } }
.area h3 { font-size: var(--fs-4); margin: 0 0 0.75rem; display: flex; align-items: center; gap: 0.6rem; }
.area h3 svg { width: 1.2rem; height: 1.2rem; color: var(--blue); }
.towns { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0; padding: 0; list-style: none; }
.towns li { padding: 0.35rem 0.75rem; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; font-size: 0.9rem; color: var(--ink-2); }
.area-compact .lead { margin: 0; max-width: 46rem; }

/* ---------- related ---------- */
.related { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); }
.related a { display: flex; align-items: center; gap: 0.85rem; padding: 1rem 1.15rem; border: 1px solid var(--line); border-radius: var(--radius-lg); text-decoration: none; color: var(--ink); font-weight: 700; font-family: var(--font-display); font-size: var(--fs-4); background: var(--paper); box-shadow: var(--shadow-sm); transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.related a:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--blue); }

/* ---------- CTA band + form ---------- */
.cta { position: relative; background: linear-gradient(135deg, var(--blue-ink) 0%, var(--blue) 65%); color: #fff; padding: var(--section) 0; overflow: hidden; }
.cta__grid { display: grid; gap: 2.5rem; align-items: start; grid-template-columns: 1fr; }
@media (min-width: 56em) { .cta__grid { grid-template-columns: 1fr 1.1fr; gap: 3.5rem; } }
.cta__title { font-size: var(--fs-2); margin: 0 0 0.75rem; text-wrap: balance; }
.cta__lead { font-size: var(--fs-lead); color: rgba(255, 255, 255, 0.88); margin: 0 0 1.5rem; max-width: 34rem; }
.cta__phone { display: inline-flex; align-items: center; gap: 0.6rem; font: 800 clamp(1.75rem, 4vw, 2.4rem)/1.1 var(--font-display); color: #fff; text-decoration: none; margin: 0 0 1rem; letter-spacing: -0.01em; }
.cta__phone svg { width: 1em; height: 1em; color: var(--amber); }
.cta__phone:hover { color: var(--amber); }
.cta__note { font-size: var(--fs-sm); color: rgba(255, 255, 255, 0.75); margin: 0 0 1.75rem; }
.cta__list { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: 0.6rem; }
.cta__list li { display: flex; gap: 0.6rem; align-items: flex-start; }
.cta__list svg { width: 1.2rem; height: 1.2rem; color: var(--amber); flex: none; margin-top: 0.2rem; }
.form-shell { background: #fff; color: var(--ink); border-radius: var(--radius-lg); padding: clamp(1.25rem, 3vw, 2rem); box-shadow: var(--shadow-md); }
.form-shell h2, .form-shell h3 { font-size: var(--fs-3); margin: 0 0 0.35rem; }
.form-shell > p { color: var(--ink-2); margin: 0 0 1.25rem; }
.form-placeholder { border: 2px dashed var(--blue-line); border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; color: var(--ink-2); }
.form-placeholder strong { display: block; margin-bottom: 0.5rem; color: var(--ink); }
.form-placeholder p { margin: 0 0 0.75rem; font-size: var(--fs-sm); }
.form-placeholder p:last-child { margin: 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--blue-ink); color: rgba(255, 255, 255, 0.85); padding: 3.5rem 0 2rem; font-size: var(--fs-sm); }
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--amber); }
.footer__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 48em) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; } }
.footer__logo { width: 13rem; margin-bottom: 1rem; }
.footer__h { font: 700 1rem/1.2 var(--font-display); color: #fff; margin: 0 0 0.75rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.45rem; }
.site-footer p { margin: 0 0 0.6rem; }
.footer__contact li { display: flex; gap: 0.6rem; align-items: flex-start; }
.footer__contact svg { width: 1.1rem; height: 1.1rem; color: var(--amber); flex: none; margin-top: 0.2rem; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.15); margin-top: 2.5rem; padding-top: 1.25rem; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between; font-size: var(--fs-xs); color: rgba(255, 255, 255, 0.65); }

/* ---------- mobile call bar ---------- */
.callbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; padding: 0.6rem var(--gutter) calc(0.6rem + env(safe-area-inset-bottom)); background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(10px); border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(8, 40, 53, 0.12); }
.callbar .btn { min-height: 3.25rem; font-size: 1rem; padding-inline: 0.5rem; }
@media (max-width: 22em) { .callbar .btn { font-size: 0.9rem; } }
@media (min-width: 60em) { .callbar { display: none; } }

/* ---------- utilities ---------- */
.stack > * + * { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.text-muted { color: var(--ink-3); }
.two-col { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 56em) { .two-col { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.note { font-size: var(--fs-sm); color: var(--ink-3); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .svc-card:hover, .related a:hover, .btn:hover { transform: none; }
}
@media print {
  .site-header, .callbar, .lightbox, .cta, .skip-link { display: none !important; }
  body { padding: 0; }
}
