/* ============================================================
   BAEHR ESSENTIAL SERVICES — styles.css
   Design direction: Editorial Florida Craft
   Type: Fraunces (display, serif) + Manrope (body, sans)
   Palette: brand red as punctuation, cream paper, brown ink.
   Mobile-first. Single file. Easy to edit.
   ============================================================ */

/* ---------- Modern minimal reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  min-height: 100vh;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button { background: none; border: 0; cursor: pointer; }

a { color: inherit; text-decoration: none; }

ul, ol { padding: 0; list-style: none; }

/* ---------- Design tokens ---------- */
:root {
  /* Color */
  --c-brand:        #C8202C;
  --c-brand-deep:   #9A1620;
  --c-brand-soft:   #F4D9DB;
  --c-ink:          #1F1410;
  --c-ink-2:        #3D2419;
  --c-muted:        #6D5F52;
  --c-cream:        #FBF6EE;
  --c-cream-deep:   #F2EADA;
  --c-line:         #E0D5C2;
  --c-line-soft:    #EDE3D2;
  --c-white:        #FFFFFF;
  --c-olive:        #6B7A4B;

  /* Type */
  --f-display: "Fraunces", "Times New Roman", Georgia, serif;
  --f-body:    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Spacing scale */
  --s-1: .25rem;
  --s-2: .5rem;
  --s-3: .75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;

  /* Radii */
  --r-sm: .5rem;
  --r-md: .875rem;
  --r-lg: 1.25rem;
  --r-pill: 999px;

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;
  --gutter: clamp(1rem, 4vw, 2.5rem);

  /* Shadows */
  --shadow-1: 0 1px 2px rgba(31, 20, 16, .04), 0 4px 12px rgba(31, 20, 16, .06);
  --shadow-2: 0 6px 16px rgba(31, 20, 16, .08), 0 18px 40px rgba(31, 20, 16, .10);
  --shadow-polaroid: 0 1px 1px rgba(31, 20, 16, .06), 0 8px 24px rgba(31, 20, 16, .12), 0 24px 60px rgba(31, 20, 16, .08);

  /* Motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
  --dur: .25s;

  /* Paper grain — subtle SVG noise, baked in */
  --grain: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1216 0 0 0 0 0.0784 0 0 0 0 0.0627 0 0 0 0.10 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- Base typography ---------- */
body {
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--c-ink);
  background: var(--c-cream);
  background-image: var(--grain);
  background-attachment: fixed;
  background-size: 220px 220px;
}

@media (min-width: 768px) {
  body { font-size: 17px; }
}

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -.012em;
  line-height: 1.05;
  color: var(--c-ink);
}

h1 { font-size: clamp(2.5rem, 6.4vw, 5rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.5rem); line-height: 1.08; }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.625rem); line-height: 1.2; }

p { color: var(--c-ink-2); }

em {
  font-style: italic;
  font-family: var(--f-display);
  font-weight: 400;
  color: var(--c-brand);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

::selection {
  background: var(--c-brand);
  color: var(--c-white);
}

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.visually-hidden,
.skip-link {
  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:focus {
  position: fixed;
  left: 1rem; top: 1rem;
  width: auto; height: auto;
  padding: .75rem 1rem;
  clip: auto; white-space: normal;
  background: var(--c-ink);
  color: var(--c-cream);
  border-radius: var(--r-sm);
  z-index: 9999;
}

/* ---------- Eyebrow / section markers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-3);
  font-family: var(--f-body);
  font-size: .8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--c-muted);
}
.eyebrow .nowrap { white-space: nowrap; }

.eyebrow__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-brand);
  box-shadow: 0 0 0 4px var(--c-brand-soft);
}

.eyebrow--light { color: rgba(255, 255, 255, .85); }
.eyebrow--light .eyebrow__dot {
  background: var(--c-white);
  box-shadow: 0 0 0 4px rgba(255,255,255,.20);
}

.section-num {
  font-family: var(--f-body);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-brand);
  margin-bottom: var(--s-4);
}

.section-head { max-width: 56rem; margin-bottom: var(--s-8); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-title { margin-bottom: var(--s-4); }
.section-lead {
  font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
  color: var(--c-ink-2);
  max-width: 48rem;
}
.section-head--center .section-lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: .85rem 1.4rem;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: .9375rem;
  letter-spacing: .005em;
  border-radius: var(--r-pill);
  transition: transform var(--dur) var(--ease),
              background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  cursor: pointer;
  text-align: center;
}

.btn--lg {
  padding: 1.05rem 1.7rem;
  font-size: 1rem;
}

.btn--block { width: 100%; }

.btn--primary {
  background: var(--c-brand);
  color: var(--c-white);
  box-shadow: 0 1px 2px rgba(154, 22, 32, .15), 0 8px 22px rgba(154, 22, 32, .22);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--c-brand-deep);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(154, 22, 32, .20), 0 12px 28px rgba(154, 22, 32, .28);
}

.btn--ghost {
  background: transparent;
  color: var(--c-ink);
  border: 1.5px solid var(--c-ink);
  flex-direction: column;
  line-height: 1.1;
}
.btn--ghost .btn__tel {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1rem;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: var(--c-ink);
  color: var(--c-cream);
}

.btn--white {
  background: var(--c-white);
  color: var(--c-ink);
}
.btn--white:hover,
.btn--white:focus-visible {
  background: var(--c-cream);
  transform: translateY(-1px);
}

.btn--outline-light {
  background: transparent;
  color: var(--c-white);
  border: 1.5px solid rgba(255,255,255,.7);
}
.btn--outline-light:hover,
.btn--outline-light:focus-visible {
  background: var(--c-white);
  color: var(--c-ink);
  border-color: var(--c-white);
}

.btn--nav {
  padding: .55rem .95rem;
  font-size: .875rem;
  white-space: nowrap;
  flex-shrink: 0;
  min-height: 44px;
}
/* Narrow desktop (1080-1365px): hide the duplicated nav CTA button — the
   menu link "Free estimate / Orçamento grátis" already routes to #contact,
   so the prominent btn--nav is redundant and was pushing the PT-BR header
   24px past the viewport at 1280px (bug 2026-05-27). Restores at ≥1366px. */
@media (min-width: 1080px) and (max-width: 1365px) {
  .btn--nav { display: none; }
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-weight: 600;
  color: var(--c-brand);
  border-bottom: 1.5px solid transparent;
  /* Vertical padding lifts the tap target close to WCAG 2.5.5 (44px) without
     changing visual line-height in the surrounding paragraph. */
  padding-block: 10px;
  padding-bottom: 12px;
  min-height: 44px;
  transition: gap var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.link-arrow:hover {
  gap: var(--s-3);
  border-bottom-color: var(--c-brand);
}

/* ---------- Site header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-cream);
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.site-header[data-scrolled="true"] {
  background: rgba(251, 246, 238, .94);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom-color: var(--c-line);
  box-shadow: 0 1px 0 rgba(31, 20, 16, .02), 0 8px 24px rgba(31, 20, 16, .04);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--s-4);
  gap: var(--s-3);
  min-width: 0;
}
.site-header__inner > * { min-width: 0; }

/* ---------- Language switcher (EN | PT) ---------- */
.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  background: var(--c-white);
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-pill);
  flex-shrink: 0;
  margin-left: auto;
}
.lang-switch__option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  /* Vertical padding lifted so tap target hits WCAG 2.5.5 / Apple HIG 44×44 */
  padding: 11px 12px;
  font-family: var(--f-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--c-muted);
  border-radius: var(--r-pill);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  min-height: 44px;
  white-space: nowrap;
}
.lang-switch__option--active {
  background: var(--c-ink);
  color: var(--c-cream);
}
.lang-switch__option:not(.lang-switch__option--active):hover,
.lang-switch__option:not(.lang-switch__option--active):focus-visible {
  color: var(--c-ink);
  background: var(--c-cream);
}
.lang-switch__flag {
  font-size: .9375rem;
  line-height: 1;
}

@media (min-width: 1080px) {
  .lang-switch { margin-left: 0; order: 2; }
  .site-header__inner > .primary-nav { order: 3; }
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  text-decoration: none;
}
.brand__mark {
  width: 44px; height: 44px;
  border-radius: 50%;
}
.brand__name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__last {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.375rem;
  letter-spacing: -.01em;
  color: var(--c-ink);
}
.brand__first {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: .6875rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-top: 3px;
}

.primary-nav {
  position: fixed;
  inset: 0;
  background: var(--c-cream);
  background-image: var(--grain);
  padding: 6rem var(--gutter) var(--s-7);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  /* CLOSED state: stay at inset:0 (no off-canvas transform that would add to
     document.scrollWidth on tablet), but invisible + non-interactive.
     OPEN state: slide-in via transform on the inner content. */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease), visibility 0s linear var(--dur);
  z-index: 90;
}
.primary-nav[data-open="true"] {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity var(--dur) var(--ease), visibility 0s linear 0s;
}

.primary-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.primary-nav__list a {
  display: block;
  padding: var(--s-3) 0;
  font-family: var(--f-display);
  font-size: 1.75rem;
  font-weight: 500;
  border-bottom: 1px solid var(--c-line-soft);
}
.primary-nav__list a:hover { color: var(--c-brand); }

.nav-toggle {
  position: relative;
  z-index: 95;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  /* min-width + flex-shrink:0 prevents the header flex layout from squeezing
     the tap target below WCAG 2.5.5 / Apple HIG 44×44 minimum. */
  width: 44px; height: 44px;
  min-width: 44px;
  flex-shrink: 0;
  padding: 12px 10px;
}
.nav-toggle__bar {
  display: block;
  width: 24px; height: 2px;
  background: var(--c-ink);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1080px) {
  .nav-toggle { display: none; }
  .primary-nav {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: var(--s-5);
    padding: 0;
    background: none;
    transform: none;
    background-image: none;
    flex-wrap: nowrap;
    min-width: 0;
    /* Desktop nav is always visible — clear mobile-overlay hide state */
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: none;
  }
  .primary-nav__list { flex-direction: row; gap: var(--s-4); flex-wrap: nowrap; }
  .primary-nav__list a {
    font-family: var(--f-body);
    font-size: .9375rem;
    font-weight: 500;
    padding: var(--s-2) 0;
    border-bottom: 0;
    white-space: nowrap;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  /* Tighter mobile padding so the hero-video peeks above the first fold */
  padding-block: var(--s-6) var(--s-5);
  overflow: hidden;
}
.hero__grain { display: none; } /* grain inherited from body */

.hero__inner {
  display: grid;
  /* Tighter mobile gap so video peeks */
  gap: var(--s-5);
  align-items: center;
}

@media (min-width: 920px) {
  .hero {
    padding-block: var(--s-10) var(--s-9);
  }
  .hero__inner {
    grid-template-columns: 1.05fr .95fr;
    gap: var(--s-9);
  }
}

.hero__title {
  /* Tighter mobile margins to lift the video into view */
  margin-top: var(--s-3);
  margin-bottom: var(--s-3);
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
@media (min-width: 920px) {
  .hero__title { margin-top: var(--s-5); margin-bottom: var(--s-5); }
}
.hero__title em { display: block; }

.hero__lead {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  max-width: 36rem;
  color: var(--c-ink-2);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  /* Mobile: center CTAs (visually tidier when buttons have different widths).
     Desktop reverts to flex-start so the buttons hug the left of the column. */
  justify-content: center;
  gap: var(--s-3);
  margin-top: var(--s-4);
}
@media (min-width: 920px) {
  .hero__cta {
    justify-content: flex-start;
    margin-top: var(--s-6);
  }
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-4);
  margin-top: var(--s-4);
  font-size: .875rem;
  color: var(--c-muted);
}
@media (min-width: 920px) {
  .hero__chips { margin-top: var(--s-6); }
}
.hero__chips li {
  position: relative;
  padding-left: var(--s-4);
}
.hero__chips li::before {
  content: "";
  position: absolute;
  left: 0; top: .55rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-brand);
}

.hero__visual {
  position: relative;
  min-height: 22rem;
}

/* ---------- Polaroid photo treatment ---------- */
.polaroid {
  background: var(--c-white);
  padding: .5rem .5rem 2.5rem .5rem;
  box-shadow: var(--shadow-polaroid);
  border-radius: 4px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  position: relative;
}
.polaroid img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  aspect-ratio: 4 / 5;
}
.polaroid figcaption {
  position: absolute;
  left: 0; right: 0; bottom: .75rem;
  text-align: center;
  font-family: var(--f-display);
  font-size: .875rem;
  font-style: italic;
  color: var(--c-muted);
  padding-inline: var(--s-3);
}

.polaroid--lg { max-width: 26rem; }
.polaroid--md { max-width: 18rem; }
.polaroid--sm { max-width: 14rem; }

.polaroid--tilt-left  { transform: rotate(-3deg); }
.polaroid--tilt-right { transform: rotate(2.5deg); }

.polaroid:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow:
    0 2px 2px rgba(31, 20, 16, .08),
    0 14px 32px rgba(31, 20, 16, .15),
    0 30px 70px rgba(31, 20, 16, .10);
}

.hero__visual .polaroid--lg {
  margin-inline: auto;
}
.hero__visual .polaroid--float {
  position: absolute;
  bottom: -1rem;
  right: 0;
  z-index: 2;
}
@media (min-width: 920px) {
  .hero__visual .polaroid--lg {
    margin-inline: 0;
    margin-left: auto;
  }
  .hero__visual .polaroid--float {
    bottom: -1.5rem;
    left: -.5rem;
    right: auto;
  }
}

/* ---------- Trust strip ---------- */
.trust {
  background: var(--c-ink);
  color: var(--c-cream);
  padding-block: var(--s-6);
}
.trust__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  align-items: center;
  text-align: center;
}
.trust__divider { display: none; }

.trust__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  padding-block: var(--s-2);
}
.trust__num {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.75rem;
  color: var(--c-brand);
  font-variation-settings: "opsz" 144, "SOFT" 20;
}
.trust__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-brand);
}
.trust__label {
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: .005em;
}

@media (min-width: 768px) {
  .trust__inner {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: var(--s-5);
  }
  .trust__divider {
    display: block;
    width: 1px;
    height: 28px;
    background: rgba(251, 246, 238, .15);
  }
}

/* ---------- Services ---------- */
.services {
  padding-block: var(--s-10);
  background: var(--c-cream);
}

.services-grid {
  display: grid;
  gap: var(--s-6);
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-7);
  }
}

.service-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: var(--s-7);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  position: relative;
  /* Flex equalizes card height when text length varies across the 3-col grid,
     keeping link-arrow CTAs aligned on the baseline. */
  display: flex;
  flex-direction: column;
}
.service-card .link-arrow {
  margin-top: auto;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  border-color: var(--c-line);
}

.service-card__tag {
  display: inline-block;
  font-family: var(--f-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-brand);
  padding: .375rem .75rem;
  background: var(--c-brand-soft);
  border-radius: var(--r-pill);
  margin-bottom: var(--s-5);
}

.service-card__title {
  font-size: clamp(1.5rem, 2.6vw, 1.875rem);
  margin-bottom: var(--s-4);
}

.service-card__lead {
  font-size: 1.0625rem;
  color: var(--c-ink-2);
  margin-bottom: var(--s-5);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-bottom: var(--s-6);
}
.service-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: .9375rem;
  color: var(--c-ink-2);
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .55rem;
  width: 14px; height: 2px;
  background: var(--c-brand);
}
.service-list-note {
  font-size: .8125rem;
  color: var(--c-muted);
  font-style: italic;
  margin-bottom: var(--s-5);
  padding-top: var(--s-3);
  border-top: 1px dashed var(--c-line);
}

/* ---------- Featured (vacation & residential blocks) ---------- */
.featured {
  padding-block: var(--s-10);
  position: relative;
}
.featured--rentals { background: var(--c-cream-deep); }
.featured--residential { background: var(--c-cream); }

.featured-grid {
  display: grid;
  gap: var(--s-8);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 920px) {
  .featured-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-9);
  }
  .featured-grid--reverse .featured-text { order: 2; }
}

.featured-text__lead {
  font-size: 1.125rem;
  color: var(--c-ink-2);
  margin-bottom: var(--s-4);
}
.featured-text p { margin-bottom: var(--s-5); }
.featured-text__note {
  font-size: .875rem;
  color: var(--c-muted);
  font-style: italic;
  padding-top: var(--s-3);
  border-top: 1px dashed var(--c-line);
  margin-top: calc(var(--s-3) * -1);
  margin-bottom: var(--s-5);
}

.check-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
  margin-block: var(--s-6);
}
@media (min-width: 600px) {
  .check-list { grid-template-columns: 1fr 1fr; }
}
.check-list li {
  position: relative;
  padding-left: 2rem;
  font-size: .9375rem;
  color: var(--c-ink-2);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .4rem;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--c-brand);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.featured-cta {
  display: flex;
  flex-wrap: wrap;
  /* Mobile: center the CTAs. Desktop reverts to left-align inside the column. */
  justify-content: center;
  gap: var(--s-3);
}
@media (min-width: 920px) {
  .featured-cta { justify-content: flex-start; }
}

.featured-photos {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-7);
  margin-block: var(--s-5);
}
.featured-photos .polaroid--lg {
  width: min(80vw, 22rem);
}
.featured-photos .polaroid--md {
  width: min(64vw, 17rem);
}
@media (min-width: 920px) {
  .featured-photos {
    display: block;
    min-height: 28rem;
    margin-block: 0;
  }
  .featured-photos .polaroid--lg {
    width: auto;
    margin-left: auto;
    margin-right: 2rem;
  }
  .featured-photos .polaroid--md {
    width: auto;
  }
  .featured-photos .polaroid--offset {
    position: absolute;
    left: 0;
    bottom: -1rem;
  }
}

/* ---------- Gallery ---------- */
.gallery {
  padding-block: var(--s-10);
  background: var(--c-ink);
  color: var(--c-cream);
}
.gallery .section-num { color: #F4D9DB; }
.gallery .section-title { color: var(--c-cream); }
.gallery .section-title em { color: var(--c-brand-soft); }
.gallery .section-lead { color: rgba(251, 246, 238, .75); }

/* Multi-column masonry — image heights balance across columns automatically.
   No empty cells can occur (vs. grid-auto-flow which leaves holes when
   wide/tall spans don't pack into the row width). Images keep their natural
   aspect ratio so the gallery preserves editorial variety without forced crops. */
.gallery-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: var(--s-3);
}
@media (min-width: 700px) {
  .gallery-grid {
    columns: 3;
    column-gap: var(--s-4);
  }
}
@media (min-width: 1000px) {
  .gallery-grid {
    columns: 4;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  background: #2a1a12;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin: 0 0 var(--s-3);
  display: block;
}
@media (min-width: 700px) {
  .gallery-item { margin-bottom: var(--s-4); }
}
/* Legacy span classes are now visual hints, not layout rules — column flow
   handles packing. Keeping the classes inert avoids touching the HTML. */
.gallery-item--tall, .gallery-item--wide { /* layout-neutral */ }

.gallery-item a {
  display: block;
  width: 100%;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s var(--ease), filter .5s var(--ease);
  filter: saturate(.96) contrast(1.02);
}
.gallery-item:hover img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.05);
}

/* ---------- Process ---------- */
.process {
  padding-block: var(--s-10);
  background: var(--c-cream);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  counter-reset: step;
}
@media (min-width: 700px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .process-steps { grid-template-columns: repeat(4, 1fr); }
}

.process-step {
  position: relative;
  padding: var(--s-6);
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.process-step:hover {
  transform: translateY(-2px);
  border-color: var(--c-brand);
}

.process-step__num {
  display: inline-block;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 2.5rem;
  color: var(--c-brand);
  margin-bottom: var(--s-3);
  font-variation-settings: "opsz" 144, "SOFT" 20;
  line-height: 1;
}
.process-step__title {
  font-size: 1.5rem;
  margin-bottom: var(--s-2);
}
.process-step__text {
  font-size: .9375rem;
  color: var(--c-ink-2);
}

/* ---------- Our Story / About — warm editorial moment ---------- */
.about {
  padding-block: var(--s-10);
  background: var(--c-cream-deep);
  position: relative;
}
.about__inner {
  max-width: 50rem;
}
.about .section-title {
  max-width: 38rem;
  margin-inline: auto;
}
.about__body {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
}
.about__lead {
  font-family: var(--f-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  line-height: 1.45;
  color: var(--c-ink);
  margin-bottom: var(--s-5);
}
.about__body p:not(.about__lead):not(.about__closing) {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--c-ink-2);
}
.about__closing {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  color: var(--c-brand);
  margin-top: var(--s-6);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  letter-spacing: .005em;
}

.about__signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-5);
  margin-top: var(--s-7);
}
.about__signature span:first-child,
.about__signature span:last-child {
  width: 56px;
  height: 1px;
  background: var(--c-brand);
}
.about__signature-mark {
  font-family: var(--f-display);
  font-weight: 500;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--c-brand);
  letter-spacing: .04em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* ---------- Reviews placeholder ---------- */
.reviews {
  padding-block: var(--s-10);
  background: var(--c-cream);
}
.reviews__inner {
  max-width: var(--container-narrow);
  margin-inline: auto;
  text-align: center;
}
.reviews .section-num,
.reviews .section-title { text-align: center; }
.reviews__lead {
  font-size: 1.0625rem;
  color: var(--c-ink-2);
  margin-block: var(--s-5) var(--s-6);
}
.reviews__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3);
}

/* ---------- FAQ ---------- */
.faq {
  padding-block: var(--s-10);
  background: var(--c-cream);
}
.faq__inner {
  max-width: var(--container-narrow);
  margin-inline: auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.faq-item[open] {
  border-color: var(--c-brand);
  box-shadow: var(--shadow-1);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-5) var(--s-6);
  cursor: pointer;
  font-family: var(--f-display);
  font-size: 1.1875rem;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  color: var(--c-ink);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--c-brand); }

.faq-item__icon {
  position: relative;
  flex-shrink: 0;
  width: 24px; height: 24px;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: currentColor;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.faq-item__icon::before {
  width: 14px; height: 2px;
  transform: translate(-50%, -50%);
}
.faq-item__icon::after {
  width: 2px; height: 14px;
  transform: translate(-50%, -50%);
}
.faq-item[open] .faq-item__icon::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }

.faq-item__answer {
  padding: 0 var(--s-6) var(--s-6) var(--s-6);
}
.faq-item__answer p {
  color: var(--c-ink-2);
  font-size: 1rem;
  line-height: 1.65;
}
.faq-item__answer a {
  color: var(--c-brand);
  border-bottom: 1.5px solid var(--c-brand-soft);
  transition: border-color var(--dur) var(--ease);
}
.faq-item__answer a:hover { border-bottom-color: var(--c-brand); }

/* ---------- Final CTA band ---------- */
.cta-final {
  position: relative;
  padding-block: var(--s-10);
  background: linear-gradient(135deg, var(--c-brand-deep), var(--c-brand) 60%, #B4192A);
  color: var(--c-white);
  overflow: hidden;
}
.cta-final__grain {
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: .5;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.cta-final__inner {
  position: relative;
  text-align: center;
  max-width: 60rem;
  margin-inline: auto;
}
.cta-final__title {
  color: var(--c-white);
  margin-block: var(--s-5) var(--s-4);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.cta-final__title em {
  color: var(--c-white);
  font-style: italic;
  border-bottom: 3px solid rgba(255,255,255,.4);
  padding-bottom: 4px;
}
.cta-final__lead {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.92);
  margin-bottom: var(--s-7);
}
.cta-final__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3);
}

/* ---------- Contact ---------- */
.contact {
  padding-block: var(--s-10);
  background: var(--c-cream);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
}
@media (min-width: 920px) {
  .contact__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-9);
    align-items: start;
  }
}

.contact-channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
  margin-top: var(--s-6);
}
@media (min-width: 600px) {
  .contact-channels { grid-template-columns: 1fr 1fr; }
}

.contact-channel {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--s-5);
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
a.contact-channel:hover {
  border-color: var(--c-brand);
  transform: translateY(-1px);
}
.contact-channel__label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.contact-channel__icon {
  color: #25D366; /* WhatsApp brand green */
  flex-shrink: 0;
}
.contact-channel--whatsapp:hover .contact-channel__icon {
  color: var(--c-brand);
}
/* Footer WhatsApp text-link with icon */
.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-wa__icon {
  flex-shrink: 0;
  opacity: .85;
}
.contact-channel__value {
  font-family: var(--f-display);
  font-size: 1.1875rem;
  font-weight: 500;
  color: var(--c-ink);
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.contact-channel__note {
  font-size: .8125rem;
  color: var(--c-muted);
  margin-top: 2px;
}

/* Form */
.contact-form {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
@media (min-width: 600px) {
  .contact-form { padding: var(--s-7); }
}

.field {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 480px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}

.field label {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--c-ink);
  letter-spacing: .02em;
}
.field label span { color: var(--c-brand); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .75rem .875rem;
  background: var(--c-cream);
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-sm);
  font-size: 1rem;
  color: var(--c-ink);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--c-brand);
  background: var(--c-white);
  box-shadow: 0 0 0 3px var(--c-brand-soft);
}

.field textarea { resize: vertical; min-height: 120px; }

.form-footnote {
  text-align: center;
  font-size: .8125rem;
  color: var(--c-muted);
  margin-top: var(--s-2);
}

/* ---------- Alternative contact (below form, for chat-preferrers) ---------- */
.contact-alt {
  margin-top: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--c-line);
  text-align: center;
}
.contact-alt__lead {
  font-size: .875rem;
  color: var(--c-muted);
  margin-bottom: var(--s-3);
}
.contact-alt__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  justify-content: center;
}
.btn--sm {
  padding: .5rem .875rem;
  font-size: .8125rem;
  gap: .375rem;
}

/* ---------- Direct contact panel (replaces form when no Web3Forms key) ---------- */
.contact-direct {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: var(--s-7) var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
@media (min-width: 600px) {
  .contact-direct { padding: var(--s-8) var(--s-7); }
}

.contact-direct__eyebrow {
  font-family: var(--f-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-brand);
}

.contact-direct__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.1;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  color: var(--c-ink);
}

.contact-direct__lead {
  font-size: 1rem;
  color: var(--c-ink-2);
  line-height: 1.5;
}

.contact-direct__actions {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.contact-action {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-4) var(--s-5);
  background: var(--c-cream);
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-md);
  transition: transform var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              background var(--dur) var(--ease);
  min-height: 64px;
}
.contact-action:hover,
.contact-action:focus-visible {
  border-color: var(--c-brand);
  transform: translateY(-1px);
  background: var(--c-white);
}

.contact-action--primary {
  background: var(--c-brand);
  color: var(--c-white);
  border-color: var(--c-brand);
}
.contact-action--primary:hover,
.contact-action--primary:focus-visible {
  background: var(--c-brand-deep);
  border-color: var(--c-brand-deep);
  color: var(--c-white);
}

.contact-action__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}
.contact-action:not(.contact-action--primary) .contact-action__icon {
  background: var(--c-brand-soft);
  color: var(--c-brand);
}

.contact-action__body {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  gap: 2px;
}
.contact-action__label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
}
.contact-action__value {
  font-family: var(--f-display);
  font-size: 1.125rem;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.contact-action__note {
  font-size: .8125rem;
  opacity: .7;
}

.contact-direct__footnote {
  font-size: .8125rem;
  color: var(--c-muted);
  text-align: center;
  padding-top: var(--s-4);
  border-top: 1px solid var(--c-line);
  margin-top: var(--s-3);
}

/* ---------- Site footer ---------- */
.site-footer {
  background: var(--c-ink);
  color: var(--c-cream);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  padding-block: var(--s-9) var(--s-7);
}
@media (min-width: 700px) {
  .site-footer__inner {
    grid-template-columns: 1.4fr 1fr 1.4fr 1fr;
    gap: var(--s-6);
  }
}

.footer-brand__mark {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin-bottom: var(--s-3);
}
.footer-brand__name {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--c-cream);
  margin-bottom: var(--s-2);
}
.footer-brand__tag {
  font-size: .9375rem;
  color: rgba(251, 246, 238, .65);
  max-width: 18rem;
}

.footer-col__title {
  font-family: var(--f-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-brand-soft);
  margin-bottom: var(--s-4);
}

.footer-col__list { display: flex; flex-direction: column; gap: 2px; }
.footer-col__list li,
.footer-col__list a {
  font-size: .9375rem;
  color: rgba(251, 246, 238, .80);
}
.footer-col__list a,
.footer-col__list li {
  display: inline-flex;
  align-items: center;
  /* Bumped from 40px → 44px so each footer text link meets WCAG 2.5.5 tap
     target sizing without changing visual rhythm. */
  min-height: 44px;
  padding-block: 6px;
}
.footer-col__list a { transition: color var(--dur) var(--ease); }
.footer-col__list a:hover { color: var(--c-white); }

.footer-col__copy {
  font-size: .875rem;
  color: rgba(251, 246, 238, .65);
  line-height: 1.65;
}

.footer-bottom {
  border-top: 1px solid rgba(251, 246, 238, .10);
  padding-block: var(--s-5);
}
.footer-bottom__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s-3);
  font-size: .8125rem;
  color: rgba(251, 246, 238, .55);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(31, 20, 16, .92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--s-6);
  z-index: 200;
}
.lightbox[aria-hidden="false"] { display: flex; }
.lightbox__image {
  max-width: min(100%, 1100px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.lightbox__close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  color: var(--c-white);
  font-size: 1.75rem;
  line-height: 1;
  transition: background var(--dur) var(--ease);
}
.lightbox__close:hover { background: rgba(255,255,255,.20); }

/* ---------- Motion / accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .polaroid--tilt-left,
  .polaroid--tilt-right { transform: none; }
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* Scroll-margin so deep links (#about, #services …) land below the sticky header */
main > section[id],
[id="main"] {
  scroll-margin-top: 90px;
}

/* Focus visible polish */
:focus-visible {
  outline: 2px solid var(--c-brand);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible {
  outline-offset: 4px;
}

/* Lock scroll when mobile nav is open */
body[data-nav-open="true"] { overflow: hidden; }

/* ============================================================
   2026-05-27 — REPOSITION: handyman/painting/vacation rental
   - Hero video element
   - Services overview 6-card grid
   - Detailed services bullet categories
   - Not-a-fit list
   - Field hint (optional)
   ============================================================ */

/* ---------- Hero video ---------- */
.hero__visual--video {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-video {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 22rem;
  background: var(--c-ink);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(40, 18, 14, .25), 0 4px 12px rgba(40, 18, 14, .12);
  transform: rotate(-1.2deg);
}
.hero-video__player {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 540 / 960;
  object-fit: cover;
  background: var(--c-ink);
}
/* Hero caption hidden — kept as belt-and-suspenders in case any cached/stale
   HTML re-introduces it. Hero must stay clean: video + copy alongside, nothing
   overlaid on the player. */
.hero-video__caption { display: none !important; }
@media (max-width: 699px) {
  /* Narrower video on mobile so it sits comfortably under the CTAs and peeks
     above the first fold without dominating the viewport. */
  .hero-video { max-width: 15rem; transform: none; }
}

/* ---------- Services overview — 6 cards ---------- */
.services-overview {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
  margin-top: var(--s-5);
}
@media (min-width: 700px) {
  .services-overview {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-4);
  }
}
@media (min-width: 1080px) {
  .services-overview {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Override generic .service-card sizing for the lighter 6-card layout */
.services-overview .service-card {
  padding: var(--s-5);
  min-height: 0;
}
.services-overview .service-card__title {
  font-size: 1.25rem;
  margin-bottom: var(--s-2);
}
.services-overview .service-card__lead {
  font-size: .95rem;
  color: var(--c-muted);
  margin: 0;
}
.services-overview .service-card--highlight {
  background: linear-gradient(140deg, var(--c-brand) 0%, var(--c-brand-deep) 100%);
  color: var(--c-cream);
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(154, 22, 32, .22);
  /* Span 2 cols on tablet+, full row on desktop with 3 cols */
}
@media (min-width: 700px) {
  .services-overview .service-card--highlight {
    grid-column: span 2;
  }
}
@media (min-width: 1080px) {
  .services-overview .service-card--highlight {
    grid-column: span 3;
  }
}
.services-overview .service-card--highlight .service-card__tag {
  color: rgba(251, 246, 238, .85);
  background: rgba(255, 255, 255, .18);
}
.services-overview .service-card--highlight .service-card__title {
  color: var(--c-cream);
}
.services-overview .service-card--highlight .service-card__lead {
  color: rgba(251, 246, 238, .92);
}
.services-overview .service-card--highlight .link-arrow {
  color: var(--c-cream);
  border-bottom-color: rgba(251, 246, 238, .6);
}
.services-overview__footnote {
  margin-top: var(--s-5);
  font-size: .9rem;
  color: var(--c-muted);
  text-align: center;
}
.services-overview__footnote a {
  color: var(--c-brand);
  border-bottom: 1px solid currentColor;
}

/* ---------- Detailed services (6 categories with bullets) ---------- */
.detailed {
  padding-block: var(--s-10);
  background: var(--c-cream);
}
.detailed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  margin-top: var(--s-5);
}
@media (min-width: 700px) {
  .detailed-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-5);
  }
}
@media (min-width: 1080px) {
  .detailed-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.detailed-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: var(--s-5);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.detailed-card:hover {
  border-color: var(--c-brand);
}
.detailed-card__title {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  color: var(--c-ink);
  margin: 0 0 var(--s-3);
}
.detailed-card .check-list {
  margin: 0;
}
.detailed-card__hint {
  display: block;
  font-size: .8125rem;
  color: var(--c-muted);
  font-weight: 400;
  margin-top: 2px;
}

/* ---------- Not a fit for ---------- */
.notfit {
  padding-block: var(--s-10);
  background: var(--c-white);
}
.notfit-list {
  list-style: none;
  padding: 0;
  margin: var(--s-5) auto 0;
  max-width: 38rem;
  display: grid;
  gap: var(--s-3);
}
.notfit-list li {
  padding: var(--s-4) var(--s-5);
  background: var(--c-cream);
  border-left: 3px solid var(--c-brand);
  border-radius: var(--r-sm, 6px);
}
.notfit-list__item {
  display: block;
  font-family: var(--f-display);
  font-size: 1.0625rem;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  color: var(--c-ink);
}
.notfit-list__note {
  display: block;
  font-size: .875rem;
  color: var(--c-muted);
  margin-top: 4px;
}

/* ---------- Form field hint ---------- */
.field__hint {
  font-weight: 400;
  font-size: .85em;
  color: var(--c-muted);
}

/* ---------- Section scroll-margin: pick up new section IDs ---------- */
#services, #vacation-rentals, #detailed-services, #not-a-fit,
#gallery, #process, #about, #reviews, #faq, #contact {
  scroll-margin-top: 90px;
}

/* ---------- Client-authorized proof video (Vacation Rental section) ----------
   Minimal premium centered block: no card background, no border, just the
   video with shadow and a single short caption line below. Same MP4s/poster
   as the hero — browser cache serves both. preload="none" means zero extra
   download until the user clicks play. */
.rental-proof {
  margin: var(--s-7) auto 0;
  max-width: 22rem;
  text-align: center;
}
@media (min-width: 1080px) {
  .rental-proof { max-width: 24rem; }
}
.rental-proof__media {
  margin: 0;
}
.rental-proof__player {
  width: 100%;
  height: auto;
  aspect-ratio: 540 / 960;
  display: block;
  border-radius: var(--r-md);
  background: var(--c-ink);
  box-shadow: 0 18px 50px rgba(40, 18, 14, .25), 0 4px 12px rgba(40, 18, 14, .12);
}
.rental-proof__caption {
  margin: var(--s-3) 0 0;
  font-size: .9375rem;
  color: var(--c-muted);
  font-style: italic;
  line-height: 1.45;
  text-align: center;
}
