/* ==========================================================================
   D&L Plastering & Rendering Services
   Brand: burnt orange + black
   Single stylesheet, no build step. Edit design tokens below to retune.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand
     --brand is the identity orange, taken from the van. It is used for graphics,
     icons, rules and large type — never as a background behind small white text,
     because white on it only reaches 3.5:1.
     --brand-dark is the "text-safe" orange: white on it hits 5.1:1, so that is
     what fills buttons and the CTA band. Both read as the same burnt orange. */
  --brand:        #E85C2B;   /* burnt orange (from the van livery) */
  --brand-dark:   #C24519;
  --brand-darker: #9C3712;
  --brand-light:  #FF8A5E;
  --brand-tint:   #FDF0EA;

  /* Neutrals */
  --ink:      #141519;       /* near-black, headings */
  --ink-2:    #22242A;       /* panels */
  --ink-3:    #33363E;
  --body:     #4A4E57;       /* body copy */
  --muted:    #6B7079;
  --line:     #E4E0DA;
  --line-2:   #F0EDE8;
  --paper:    #FFFFFF;
  --paper-2:  #F8F6F3;       /* warm off-white, "fresh plaster" */
  --paper-3:  #EFEAE4;

  /* Type */
  --font: "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --wrap: 1200px;
  --wrap-narrow: 760px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --radius: 4px;
  --radius-lg: 8px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(20, 21, 25, .06), 0 2px 8px rgba(20, 21, 25, .05);
  --shadow-md: 0 4px 12px rgba(20, 21, 25, .08), 0 12px 32px rgba(20, 21, 25, .08);
  --shadow-lg: 0 12px 28px rgba(20, 21, 25, .12), 0 32px 64px rgba(20, 21, 25, .12);

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

/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;      /* 17px */
  line-height: 1.65;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: var(--brand-dark); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--brand-darker); }

h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  font-weight: 800;
  text-wrap: balance;
}

h1 { font-size: clamp(2.35rem, 6.2vw, 4.25rem); }
h2 { font-size: clamp(1.85rem, 4.2vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); letter-spacing: -0.015em; }
h4 { font-size: 1.0625rem; letter-spacing: 0; }

p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.15em; padding-left: 1.25em; }
li { margin-bottom: .4em; }

strong { color: var(--ink); font-weight: 700; }

hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }

::selection { background: var(--brand); color: #fff; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: .75rem 1.25rem; font-weight: 700;
}
.skip-link:focus { left: 0; color: #fff; }

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--paper { background: var(--paper-2); }
.section--dark { background: var(--ink); color: #C9CCD3; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }

/* `strong` hard-codes ink black (see the base rule), which makes it invisible
   anywhere it sits on a dark ground. Inherit the surrounding colour instead.
   Callouts are excluded automatically: `.callout strong` has equal specificity
   and is declared later, and callouts carry their own light background. */
.section--dark strong,
.site-footer strong,
.logo-tile--dark strong { color: inherit; }

.stack > * + * { margin-top: 1.15em; }

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.125rem; color: var(--body); }
.section--dark .section-head p { color: #A9AEB8; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .8125rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  font-stretch: 92%;
  color: var(--brand-dark); margin: 0 0 .9rem;
}
.eyebrow::before {
  content: ""; width: 1.75rem; height: 3px; background: var(--brand); flex: none;
}
.section-head--center .eyebrow { justify-content: center; }
.section--dark .eyebrow { color: var(--brand-light); }

.lede { font-size: clamp(1.0625rem, 1.6vw, 1.25rem); line-height: 1.6; color: var(--body); }
/* .lede sets its own colour, so it needs inverting on dark sections. */
.section--dark .lede { color: #D2D6DD; }

.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.75rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17.5rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); }

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--brand-dark);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.6rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 2px solid var(--btn-bg); border-radius: var(--radius);
  font: inherit; font-weight: 700; font-size: 1rem; letter-spacing: .01em;
  text-decoration: none; cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease),
              border-color .18s var(--ease), color .18s var(--ease), box-shadow .18s var(--ease);
  box-shadow: var(--shadow-sm);
}
.btn:hover { --btn-bg: var(--brand-darker); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--ink); box-shadow: none; }
.btn--ghost:hover { --btn-bg: var(--ink); --btn-fg: #fff; color: #fff; border-color: var(--ink); }

.btn--onDark { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,.55); box-shadow: none; }
.btn--onDark:hover { --btn-bg: #fff; --btn-fg: var(--ink); color: var(--ink); border-color: #fff; }

.btn--lg { padding: 1.1rem 2rem; font-size: 1.0625rem; }
.btn--block { width: 100%; }

.btn svg { width: 1.15em; height: 1.15em; flex: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }
.btn-row--center { justify-content: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 700; text-decoration: none; color: var(--brand-dark);
}
.link-arrow::after {
  content: "→"; transition: transform .2s var(--ease); font-weight: 400;
}
.link-arrow:hover::after { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   5. Logo
   -------------------------------------------------------------------------- */
.logo { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; }
/* The mark is taller than it is wide (104 x 141), so drive it off height. */
.logo__mark { height: 3rem; width: auto; aspect-ratio: 104 / 141; flex: none; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-size: 1.65rem; font-weight: 800; letter-spacing: -.02em; color: var(--ink);
  font-stretch: 105%;
}
.logo__tag {
  font-size: .5625rem; font-weight: 700; letter-spacing: .085em; text-transform: uppercase;
  color: var(--ink-3); font-stretch: 78%; margin-top: .28rem;
}
.logo--light .logo__name { color: #fff; }
.logo--light .logo__tag { color: rgba(255,255,255,.72); }

/* --------------------------------------------------------------------------
   6. Header / nav
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--ink); color: #B9BDC5;
  font-size: .8125rem; font-weight: 500;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 2.5rem; }
.topbar__item { display: inline-flex; align-items: center; gap: .45rem; }
.topbar__item svg { width: 1rem; height: 1rem; color: var(--brand); flex: none; }
.topbar a { color: #fff; text-decoration: none; }
.topbar a:hover { color: var(--brand-light); }
.topbar__right { display: none; gap: 1.5rem; }
@media (min-width: 45rem) { .topbar__right { display: flex; } }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(1.6) blur(10px);
  -webkit-backdrop-filter: saturate(1.6) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow-md); }
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 4.5rem;
}

.nav { display: none; }
.nav ul { display: flex; align-items: center; gap: clamp(.6rem, 1.8vw, 1.6rem); list-style: none; margin: 0; padding: 0; }
.nav li { margin: 0; }
.nav a {
  display: block; padding: .5rem .25rem;
  font-size: .9375rem; font-weight: 600; color: var(--ink-2); text-decoration: none;
  position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: .1rem; height: 2px;
  background: var(--brand); transition: right .22s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { right: 0; }
.nav a[aria-current="page"] { color: var(--ink); }

.header__cta { display: none; }

@media (min-width: 62rem) {
  .nav { display: block; }
  .header__cta { display: inline-flex; }
}

/* Mobile menu */
.nav-toggle {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--ink); color: #fff; border: 0; border-radius: var(--radius);
  padding: .7rem 1rem; font: inherit; font-weight: 700; font-size: .875rem; cursor: pointer;
}
.nav-toggle svg { width: 1.1rem; height: 1.1rem; }
@media (min-width: 62rem) { .nav-toggle { display: none; } }

.mobile-nav {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ink); color: #fff;
  display: flex; flex-direction: column;
  padding: 1.25rem var(--gutter) 2rem;
  transform: translateY(-100%);
  transition: transform .3s var(--ease);
  overflow-y: auto;
}
.mobile-nav[data-open="true"] { transform: translateY(0); }
.mobile-nav__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.mobile-nav__close {
  background: none; border: 2px solid rgba(255,255,255,.3); border-radius: var(--radius);
  color: #fff; padding: .6rem .9rem; font: inherit; font-weight: 700; font-size: .875rem; cursor: pointer;
}
.mobile-nav ul { list-style: none; margin: 0 0 2rem; padding: 0; }
.mobile-nav li { margin: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.mobile-nav a {
  display: block; padding: 1rem 0; color: #fff; text-decoration: none;
  font-size: 1.35rem; font-weight: 700; letter-spacing: -.01em;
}
.mobile-nav a:hover, .mobile-nav a[aria-current="page"] { color: var(--brand-light); }
body.nav-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative; background: var(--ink); color: #fff; overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(15,16,19,.94) 0%, rgba(15,16,19,.86) 42%, rgba(15,16,19,.5) 72%, rgba(15,16,19,.35) 100%);
}
.hero .wrap { position: relative; padding-block: clamp(3.5rem, 10vw, 7.5rem); }
.hero__inner { max-width: 40rem; }
.hero h1 { color: #fff; margin-bottom: .45em; }
.hero h1 em { font-style: normal; color: var(--brand); }
.hero__lede { font-size: clamp(1.0625rem, 2vw, 1.3125rem); color: #D6D9DF; max-width: 34rem; margin-bottom: 2rem; }
.hero .btn-row { margin-bottom: 2.5rem; }

.hero__badges { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,.16); }
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .875rem; font-weight: 600; color: #C6CAD2;
}
.hero__badge svg { width: 1.1rem; height: 1.1rem; color: var(--brand); flex: none; }
.hero .eyebrow { color: var(--brand-light); }

/* Page hero (inner pages) */
.page-hero {
  background: var(--ink); color: #fff; position: relative; isolation: isolate; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath d='M0 90 L30 60 L60 90 L90 60 L120 90' fill='none' stroke='%23ffffff' stroke-opacity='.045' stroke-width='10'/%3E%3C/svg%3E");
  background-size: 120px 120px;
}
.page-hero .wrap { padding-block: clamp(2.75rem, 7vw, 5rem); position: relative; }
.page-hero h1 { color: #fff; margin-bottom: .3em; }
.page-hero p { color: #B4B9C2; font-size: 1.125rem; max-width: 46rem; }

.breadcrumbs { font-size: .8125rem; margin-bottom: 1.25rem; color: #8A8F99; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin: 0; padding: 0; }
.breadcrumbs li { margin: 0; }
.breadcrumbs li + li::before { content: "/"; margin-right: .4rem; color: #55596180; }
.breadcrumbs a { color: #C6CAD2; text-decoration: none; }
.breadcrumbs a:hover { color: var(--brand-light); }

/* --------------------------------------------------------------------------
   8. Cards
   -------------------------------------------------------------------------- */
.card {
  position: relative; display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--paper-3); }
.card__media { aspect-ratio: 4 / 3; background: var(--paper-3); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.04); }
.card__body { padding: clamp(1.25rem, 2.5vw, 1.75rem); display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: .5rem; }
.card__body p { font-size: .9688rem; margin-bottom: 1.25rem; }
.card__body .link-arrow { margin-top: auto; }
.card__link::after { content: ""; position: absolute; inset: 0; }

.card--icon { padding: clamp(1.5rem, 3vw, 2rem); border-top: 3px solid var(--brand); }
.card--icon:hover { transform: none; box-shadow: var(--shadow-sm); }

/* Cards sitting on a dark section need a dark panel, or the text disappears. */
.section--dark .card {
  background: var(--ink-2);
  border-color: rgba(255, 255, 255, .12);
  border-top-color: var(--brand);
}
.section--dark .card:hover { border-color: rgba(255, 255, 255, .28); border-top-color: var(--brand); }
.section--dark .card p { color: #C9CCD3; }

.icon-badge {
  width: 3rem; height: 3rem; display: grid; place-items: center; margin-bottom: 1.1rem;
  background: var(--brand-tint); color: var(--brand-dark); border-radius: var(--radius);
}
.icon-badge svg { width: 1.6rem; height: 1.6rem; }
.section--dark .icon-badge { background: rgba(232,92,43,.16); color: var(--brand-light); }

/* Numbered steps */
.steps { counter-reset: step; }
.step { position: relative; padding-top: 1.5rem; border-top: 3px solid var(--line); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  display: block; font-size: 2rem; font-weight: 800; line-height: 1; color: var(--brand);
  margin-bottom: .65rem; letter-spacing: -.03em;
}
.step h3 { font-size: 1.1875rem; margin-bottom: .4rem; }
.step p { font-size: .9688rem; margin: 0; }
.section--dark .step { border-top-color: rgba(255,255,255,.18); }

/* Feature split */
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 56rem) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-left { grid-template-columns: 1.15fr .85fr; }
  .split--wide-right { grid-template-columns: .85fr 1.15fr; }
  .split__media--first { order: -1; }
}
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.split__media--framed::before {
  content: ""; position: absolute; inset: auto -1rem -1rem auto; width: 55%; height: 55%;
  border: 3px solid var(--brand); border-radius: var(--radius-lg); z-index: -1;
}

/* Tick list */
.ticks { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.ticks li {
  position: relative; padding-left: 2rem; margin-bottom: .7rem; font-weight: 500; color: var(--ink-2);
}
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .42em; width: 1.15rem; height: 1.15rem;
  background: var(--brand);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
}
.section--dark .ticks li { color: #D2D6DD; }

/* Manufacturer accreditation — badge alongside a short explanation */
.accreditation {
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 1.75rem);
  flex-wrap: wrap; margin: 2rem 0;
  padding: 1.25rem; border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .06);
}
.accreditation img {
  width: 12.5rem; max-width: 100%; height: auto; flex: none;
  background: #fff; border-radius: var(--radius);
}
.accreditation p { flex: 1 1 16rem; margin: 0; font-size: .9688rem; }
.section--dark .accreditation p { color: #C9CCD3; }

/* Stat / trust strip */
.trust-strip { background: var(--paper-2); border-block: 1px solid var(--line); }
.trust-strip .wrap {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(1.25rem, 4vw, 3.5rem); padding-block: 1.5rem;
}
.trust-strip__item {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .875rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  font-stretch: 90%; color: var(--ink-3);
}
.trust-strip__item svg { width: 1.35rem; height: 1.35rem; color: var(--brand); flex: none; }

/* --------------------------------------------------------------------------
   9. Gallery
   -------------------------------------------------------------------------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.chip {
  padding: .55rem 1.05rem; border: 1.5px solid var(--line); border-radius: 100px;
  background: var(--paper); color: var(--ink-2);
  font: inherit; font-size: .875rem; font-weight: 600; cursor: pointer;
  transition: all .18s var(--ease);
}
.chip:hover { border-color: var(--ink-3); }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }

.gallery {
  display: grid; gap: .75rem;
  /* Two tiles across on a phone, larger tiles once there's room. */
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 9.5rem), 1fr));
}
@media (min-width: 40rem) {
  .gallery { grid-template-columns: repeat(auto-fill, minmax(min(100%, 15rem), 1fr)); }
}
.gallery__item {
  position: relative; margin: 0; padding: 0; border: 0; background: var(--paper-3);
  aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); cursor: pointer;
  display: block; width: 100%;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,21,25,.55), transparent 55%);
  opacity: 0; transition: opacity .25s var(--ease);
}
.gallery__item:hover::after { opacity: 1; }
.gallery__caption {
  position: absolute; left: .85rem; right: .85rem; bottom: .75rem; z-index: 2;
  color: #fff; font-size: .8125rem; font-weight: 600; text-align: left;
  opacity: 0; transform: translateY(6px); transition: all .25s var(--ease);
}
.gallery__item:hover .gallery__caption { opacity: 1; transform: none; }
.gallery__play {
  position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; pointer-events: none;
}
.gallery__play span {
  width: 3.25rem; height: 3.25rem; border-radius: 50%;
  background: rgba(20,21,25,.55); backdrop-filter: blur(4px);
  display: grid; place-items: center; border: 2px solid rgba(255,255,255,.85);
}
.gallery__play svg { width: 1.15rem; height: 1.15rem; color: #fff; margin-left: 3px; }

@media (min-width: 40rem) {
  .gallery--teaser { grid-template-columns: repeat(auto-fill, minmax(min(100%, 12rem), 1fr)); }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(10,11,13,.95);
  display: grid; place-items: center; padding: clamp(1rem, 4vw, 3rem);
  opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), visibility .25s;
}
.lightbox[data-open="true"] { opacity: 1; visibility: visible; }
.lightbox__stage { max-width: min(100%, 76rem); max-height: 100%; display: grid; place-items: center; }
.lightbox img, .lightbox video { max-height: 80vh; width: auto; max-width: 100%; border-radius: var(--radius); }
.lightbox__caption { color: #C9CCD3; text-align: center; font-size: .9375rem; margin-top: 1rem; }
.lightbox__btn {
  position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
  color: #fff; width: 3rem; height: 3rem; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; transition: background .2s var(--ease);
}
.lightbox__btn:hover { background: var(--brand); border-color: var(--brand); }
.lightbox__btn svg { width: 1.35rem; height: 1.35rem; }
.lightbox__close { top: 1.25rem; right: 1.25rem; }
.lightbox__prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.25rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 40rem) {
  .lightbox__prev { left: .5rem; } .lightbox__next { right: .5rem; }
  .lightbox__btn { width: 2.5rem; height: 2.5rem; }
}

/* --------------------------------------------------------------------------
   10. Testimonials
   -------------------------------------------------------------------------- */
.quote {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem); display: flex; flex-direction: column; gap: 1rem;
}
.quote__stars { display: flex; gap: .15rem; color: var(--brand); }
.quote__stars svg { width: 1.1rem; height: 1.1rem; }
.quote blockquote { margin: 0; font-size: 1.0625rem; color: var(--ink-2); line-height: 1.6; }
.quote figcaption { margin-top: auto; font-size: .875rem; color: var(--muted); font-weight: 600; }
.quote figcaption strong { display: block; color: var(--ink); font-size: .9375rem; }

/* A single, longer testimonial given prominence above the review grid. */
.quote--featured {
  border-left: 4px solid var(--brand);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: clamp(1rem, 2.5vw, 1.75rem);
  box-shadow: var(--shadow-sm);
}
.quote--featured blockquote { font-size: clamp(1.0625rem, 1.7vw, 1.25rem); line-height: 1.65; }

.quote__mark {
  display: block; font-size: 2.5rem; line-height: .55; color: var(--brand);
  font-weight: 800; margin-bottom: -.35rem;
}
.quote--featured .quote__mark { font-size: 3rem; line-height: .6; }

/* --------------------------------------------------------------------------
   11. Areas
   -------------------------------------------------------------------------- */
.area-list { columns: 2; column-gap: 2rem; list-style: none; padding: 0; margin: 0; }
@media (min-width: 45rem) { .area-list { columns: 3; } }
@media (min-width: 62rem) { .area-list { columns: 4; } }
.area-list li {
  break-inside: avoid; padding: .45rem 0; border-bottom: 1px solid var(--line);
  font-size: .9375rem; font-weight: 500; color: var(--ink-2);
}

/* --------------------------------------------------------------------------
   12. Forms
   -------------------------------------------------------------------------- */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .875rem; font-weight: 700; color: var(--ink); }
.field .hint { font-size: .8125rem; color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; color: var(--ink);
  padding: .8rem .95rem; background: var(--paper);
  border: 1.5px solid var(--line); border-radius: var(--radius);
  width: 100%; transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(232,92,43,.16);
}
.field textarea { min-height: 8rem; resize: vertical; }
.field--row { display: grid; gap: 1.1rem; }
@media (min-width: 40rem) { .field--row { grid-template-columns: 1fr 1fr; } }
.form__note { font-size: .8125rem; color: var(--muted); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

.contact-panel {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3.5vw, 2.5rem); box-shadow: var(--shadow-sm);
}

/* The Turnstile widget is a fixed 300px wide and cannot shrink. Left alone it
   sets a min-content floor on the column and pushes the whole page sideways on
   a phone. Cap it so that floor can never escape the panel, and claw back the
   padding it needs so it fits without scrolling on normal handset widths. */
.cf-turnstile { max-width: 100%; overflow-x: auto; }
@media (max-width: 30rem) {
  .contact-panel { padding: 1rem; margin-inline: -.5rem; }
}

.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.25rem; }
.contact-list li { display: flex; gap: 1rem; margin: 0; }
.contact-list svg { width: 1.5rem; height: 1.5rem; color: var(--brand); flex: none; margin-top: .15rem; }
.contact-list .label { display: block; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .1rem; }
.contact-list .value { font-size: 1.125rem; font-weight: 700; color: var(--ink); text-decoration: none; }
.contact-list a.value:hover { color: var(--brand-dark); }
.section--dark .contact-list .value { color: #fff; }
.section--dark .contact-list .label { color: #868C96; }

/* --------------------------------------------------------------------------
   13. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  background: var(--brand-dark);
  color: #fff; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath d='M0 90 L30 60 L60 90 L90 60 L120 90' fill='none' stroke='%23000' stroke-opacity='.06' stroke-width='12'/%3E%3C/svg%3E");
  background-size: 120px 120px;
}
.cta-band .wrap { position: relative; padding-block: clamp(3rem, 6vw, 4.5rem); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.94); font-size: 1.125rem; }
.cta-band .btn { --btn-bg: #fff; --btn-fg: var(--ink); border-color: #fff; }
.cta-band .btn:hover { --btn-bg: var(--ink); --btn-fg: #fff; color: #fff; border-color: var(--ink); }
.cta-band .btn--onDark { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,.6); }
.cta-band .btn--onDark:hover { --btn-bg: rgba(0,0,0,.18); --btn-fg: #fff; border-color: #fff; }
.cta-band__inner { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 56rem) { .cta-band__inner { grid-template-columns: 1.4fr auto; } }

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: #9AA0AA; font-size: .9375rem; }
.site-footer .wrap { padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 56rem) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }
.site-footer h4 {
  color: #fff; font-size: .8125rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 1.1rem; font-stretch: 92%;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { color: #B6BBC4; text-decoration: none; }
.site-footer a:hover { color: var(--brand-light); }
.site-footer .logo { margin-bottom: 1.1rem; }
/* The contact list defaults to dark-on-light; invert it inside the dark footer. */
.site-footer .contact-list .value { color: #fff; }
.site-footer .contact-list a.value:hover { color: var(--brand-light); }
.site-footer .contact-list .label { color: #9AA0AA; }
.site-footer .contact-list svg { color: var(--brand-light); }
.footer-social { display: flex; gap: .6rem; margin-top: 1.25rem; }
.footer-social a {
  width: 2.5rem; height: 2.5rem; border-radius: var(--radius);
  background: rgba(255,255,255,.07); display: grid; place-items: center;
  transition: background .18s var(--ease);
}
.footer-social a:hover { background: var(--brand); }
.footer-social svg { width: 1.25rem; height: 1.25rem; color: #fff; }
/* Site-wide links to the location landing pages. */
.footer-areas { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.12); }
.footer-areas ul { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; }
.footer-areas li { margin: 0; }
.footer-areas a { font-size: .875rem; }

.footer-bottom {
  margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: .75rem 2rem; justify-content: space-between;
  font-size: .8125rem; color: #8F949E;
}

/* --------------------------------------------------------------------------
   15. Mobile sticky call bar
   -------------------------------------------------------------------------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--ink); border-top: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.callbar a {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem .5rem; color: #fff; text-decoration: none;
  font-weight: 700; font-size: .9375rem;
}
.callbar a:first-child { background: var(--brand-dark); color: #fff; }
.callbar a:first-child:hover { background: var(--brand-darker); }
.callbar svg { width: 1.15rem; height: 1.15rem; flex: none; }
@media (min-width: 62rem) { .callbar { display: none; } }
@media (max-width: 61.99rem) { body { padding-bottom: 3.5rem; } }

/* --------------------------------------------------------------------------
   16. Prose (long-form pages)
   -------------------------------------------------------------------------- */
.prose h2 { margin-top: 2.5em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.9em; }
.prose ul li, .prose ol li { margin-bottom: .5em; }
.prose > *:first-child { margin-top: 0; }

.callout {
  border-left: 4px solid var(--brand); background: var(--brand-tint);
  padding: 1.25rem 1.5rem; border-radius: 0 var(--radius) var(--radius) 0; margin: 2rem 0;
}
.callout p { margin-bottom: .6em; }
.callout strong { color: var(--brand-darker); }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.25rem 2.5rem 1.25rem 0; position: relative;
  font-weight: 700; font-size: 1.0625rem; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .25rem; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--brand); line-height: 1;
}
.faq details[open] summary::after { content: "\2212"; }
.faq details > div { padding-bottom: 1.5rem; max-width: 68ch; }

/* --------------------------------------------------------------------------
   17. Utilities / motion
   -------------------------------------------------------------------------- */
/* Scroll-in animation. Wrapped in `scripting: enabled` so that if JavaScript is
   off (or blocked), nothing is ever hidden — the page just renders normally. */
@media (scripting: enabled) {
  .reveal { opacity: 0; transform: translateY(18px); }
  .reveal.is-in { opacity: 1; transform: none; transition: opacity .6s var(--ease), transform .6s var(--ease); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .callbar, .mobile-nav, .cta-band, .topbar { display: none !important; }
  body { color: #000; }
}
