/* =========================================================
   Plumbworks — hand-rolled stylesheet
   ========================================================= */

:root {
  --ink:       #111418;
  --ink-soft:  #1b1f24;
  --bone:      #F6F3EE;
  --cream:     #EFEADF;
  --paper:     #ffffff;
  /* Sampled from the supplied logo.png — keep these in lockstep with the art. */
  --blue:      #1590CB;   /* logo exact — all text/fill accents */
  --blue-deep: #0A5A7A;   /* deeper variant for CTA hover / emphasis */
  --blue-ink:  #0F7AAA;   /* darker variant for accents on light backgrounds (AA contrast) */
  --brass:     #B08A4B;
  --brass-lt:  #D7B87C;
  --line:      rgba(17,20,24,.10);
  --line-dk:   rgba(255,255,255,.14);
  --muted:     #6B7380;

  --radius-sm: 6px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(17,20,24,.05), 0 2px 10px rgba(17,20,24,.04);
  --shadow:    0 4px 18px rgba(17,20,24,.08), 0 20px 50px -20px rgba(17,20,24,.18);
  --shadow-lg: 0 30px 80px -20px rgba(17,20,24,.35);

  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --wrap: 1240px;
  --pad:  clamp(20px, 4vw, 40px);

  --head-h: 78px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--head-h); }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; border: 0; background: transparent; cursor: pointer; color: inherit; }
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -.01em; margin: 0 0 .4em; line-height: 1.08; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* ---------- Utilities ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-inline: var(--pad); }
.sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; background: var(--ink); color: var(--bone); padding: 10px 14px; border-radius: 6px; z-index: 999; }
.small { font-size: .88em; color: var(--muted); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--blue-ink);
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: currentColor;
}
.mt { margin-top: 1.2em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-family: var(--sans); font-weight: 500; font-size: 15px;
  letter-spacing: .02em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ink); color: var(--bone); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--blue-ink); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bone); }
.btn-brass { background: var(--brass); color: #fff; }
.btn-brass:hover { background: #957039; }
.btn-light { background: var(--bone); color: var(--ink); }
.btn-light:hover { background: #fff; }

/* Top-of-page scrim — dark gradient that fades from black at the very top
   down to transparent ~30vh down the page. Sits below the header content
   (z-index 100) but above page content so the logo/nav stay readable on
   any background. Always-visible, doesn't block interactions. */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 30vh;
  background: linear-gradient(180deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.5) 30%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  z-index: 99;
}

/* ---------- Header ---------- */
.site-head {
  position: fixed;               /* float over the hero so images run edge-to-edge */
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;       /* clean slate — no menu bg */
  border-bottom: 0;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-head.is-scrolled {
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}
.head-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--head-h);
  position: relative;
}

/* Brand — logo spills exactly 50% below the header edge into content.
   PNG is square-ish; logo height = 2 × header height, positioned at top:0
   so the bottom half of the image overhangs into the page below. */
.brand {
  display: inline-flex; align-items: center;
  color: var(--blue);
  position: relative;
  z-index: 2;
  height: var(--head-h);
  width: calc(var(--head-h) * 2);   /* match logo's square footprint */
}
.brand img {
  position: absolute;
  top: 0;
  left: -6px;
  height: calc(var(--head-h) * 2);
  width: auto;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.45));
  transition: transform .35s var(--ease);
  pointer-events: none;             /* clicks fall through to the anchor */
}
.brand:hover img { transform: scale(1.03) rotate(-2deg); }

/* Footer logo: half the column width, centred */
.brand-foot {
  display: block;
  width: 50%;
  height: auto;
  margin: 0 auto 18px;
}
.brand-foot img {
  position: static;
  width: 100%;
  height: auto;
  max-width: 100%;
  filter: none;
  transform: none;
}
.brand-foot:hover img { transform: none; }

/* Nav */
.primary { display: flex; align-items: center; gap: 28px; }
.primary > ul { display: flex; align-items: center; gap: 28px; }
.primary a {
  font-size: 15px; font-weight: 500; color: var(--blue);
  padding: 8px 0; position: relative;
  transition: color .2s var(--ease);
}
.primary a:hover { color: #CDE8F3; }
.primary a[aria-current="page"] { color: #fff; }
.primary a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 4px;
  height: 1px; background: var(--blue);
}
.chev { font-size: 10px; margin-left: 2px; opacity: .7; }

.has-sub { position: relative; }
.has-sub .sub {
  position: absolute; top: 100%; left: -16px;
  min-width: 240px;
  background: transparent;
  border: 0; border-radius: var(--radius);
  padding: 10px;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,.55);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .22s var(--ease);
}
.has-sub:hover .sub, .has-sub:focus-within .sub {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.has-sub .sub li { display: block; }
.has-sub .sub a {
  display: block; padding: 10px 14px; border-radius: 10px;
  font-size: 14px; color: var(--blue);
}
.has-sub .sub a:hover { background: rgba(143,206,229,.10); color: #fff; }

/* No phone pill, no mobile drawer — top menu is just logo + horizontal nav. */

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink);
  color: var(--bone);
  min-height: clamp(520px, 86vh, 820px);
  display: grid; align-items: end;
}
.hero-media {
  position: absolute; inset: 0;
  background: #000;
}
/* Single-image heroes (inner pages) */
.hero-media > img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .7;
  animation: heroScale 18s var(--ease) forwards;
}
@keyframes heroScale { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-media::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(17,20,24,.35) 0%, rgba(17,20,24,.2) 40%, rgba(17,20,24,.9) 100%);
  pointer-events: none;
}

/* Multi-slide hero (home page) */
.hero-slide {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0;
  transition: opacity 1.6s var(--ease);
  will-change: opacity;
}
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .7;
  transform: scale(1.08);
}
.hero-slide.is-active img {
  animation: heroKenBurns 9s var(--ease) forwards;
}
@keyframes heroKenBurns {
  from { transform: scale(1.12); }
  to   { transform: scale(1); }
}

/* Slide dots — sit just above the hero-meta strip, centred */
.hero-dots {
  position: absolute; left: 50%; bottom: 54px; z-index: 3;
  transform: translateX(-50%);
  display: flex; gap: 10px;
  padding: 0; margin: 0;
  background: transparent; border: 0;
}
.hero-dots button {
  width: 34px; height: 3px; padding: 0;
  border: 0; border-radius: 2px;
  background: rgba(255,255,255,.35);
  transition: background .3s var(--ease), width .3s var(--ease);
  cursor: pointer;
}
.hero-dots button:hover { background: rgba(255,255,255,.7); }
.hero-dots button.is-active { background: #fff; width: 48px; }
@media (max-width: 700px) {
  .hero-dots { bottom: 46px; }
  .hero-dots button { width: 26px; }
  .hero-dots button.is-active { width: 38px; }
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 80px 0 60px;
}
.hero h1 {
  font-size: clamp(44px, 7.4vw, 104px);
  font-weight: 300;
  letter-spacing: -.02em;
  max-width: 18ch;
  margin-bottom: .3em;
}
.hero h1 em { font-style: italic; color: var(--blue); font-weight: 300; }
.hero p.lede {
  font-size: clamp(17px, 1.6vw, 21px);
  max-width: 56ch;
  color: rgba(246,243,238,.82);
  margin-bottom: 2em;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .btn-ghost { border-color: var(--bone); color: var(--bone); }
.hero .btn-ghost:hover { background: var(--bone); color: var(--ink); }

.hero-meta {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  color: rgba(246,243,238,.7); font-size: 12px;
  letter-spacing: .22em; text-transform: uppercase;
  pointer-events: none;
}
.hero-meta > * { pointer-events: auto; }
.hero-meta a { color: inherit; border-bottom: 1px solid rgba(246,243,238,.25); padding-bottom: 2px; }

/* Compact hero (inner pages) */
.hero.is-compact { min-height: clamp(360px, 52vh, 520px); }
.hero.is-compact h1 { font-size: clamp(36px, 5.2vw, 68px); }

/* ---------- Proof bar ---------- */
.proof {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
section.proof.tight { padding: 14px 0; }       /* compact strip — overrides default tight */
.proof-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 16px 0;
}
.proof-item {
  text-align: center; padding: 6px 14px;
  border-right: 1px solid var(--line);
}
.proof-item:last-child { border-right: 0; }
.proof-item strong {
  display: block;
  font-family: var(--sans);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1;
}
.proof-item span {
  display: block; font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-top: 6px;
}
@media (max-width: 700px) {
  .proof-inner { grid-template-columns: repeat(2, 1fr); padding: 8px 0; }
  .proof-item { border-bottom: 1px solid var(--line); padding: 12px 8px; }
  .proof-item:nth-child(2), .proof-item:last-child { border-right: 0; }
  .proof-item:nth-child(3), .proof-item:last-child { border-bottom: 0; }
  .proof-item strong { font-size: 22px; }
  .proof-item span { font-size: 10.5px; margin-top: 4px; }
}

/* ---------- Sections ---------- */
section { padding: clamp(70px, 10vw, 130px) 0; }
section.tight { padding: clamp(50px, 7vw, 90px) 0; }
section.dark { background: var(--ink); color: var(--bone); }
section.dark h1, section.dark h2, section.dark h3, section.dark h4 { color: var(--bone); }
section.dark .eyebrow { color: var(--blue); }
section.cream { background: var(--cream); }

.sec-head { max-width: 760px; margin-bottom: 56px; }
.sec-head h2 {
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 300;
  letter-spacing: -.015em;
  margin-top: .4em;
}
.sec-head h2 em { font-style: italic; color: var(--blue-ink); }
section.dark .sec-head h2 em { color: var(--blue); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }

/* ---------- Service cards ---------- */
.services-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(12, 1fr);
}
.service-card {
  grid-column: span 6;
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--bone);
  aspect-ratio: 4 / 3;
  transition: transform .5s var(--ease);
}
.service-card:nth-child(3) { grid-column: span 4; aspect-ratio: 3 / 4; }
.service-card:nth-child(4) { grid-column: span 8; aspect-ratio: 3 / 2; }
.service-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: .78;
  transition: transform .9s var(--ease), opacity .45s var(--ease);
}
.service-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,20,24,0) 40%, rgba(17,20,24,.9) 100%);
}
.service-card:hover img { transform: scale(1.05); opacity: .9; }
.service-card-body {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 28px 28px 26px;
}
.service-card h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 400;
  color: var(--bone);
  margin-bottom: 8px;
}
.service-card p { color: rgba(246,243,238,.78); font-size: 14.5px; margin-bottom: 14px; }
.service-card .arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue);
}
.service-card .arrow::after { content: "→"; transition: transform .3s var(--ease); }
.service-card:hover .arrow::after { transform: translateX(4px); }

@media (max-width: 820px) {
  .service-card, .service-card:nth-child(3), .service-card:nth-child(4) {
    grid-column: span 12; aspect-ratio: 3 / 2;
  }
}

/* ---------- Featured work strip ---------- */
.featured-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.featured-item {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}
.featured-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease);
}
.featured-item:hover img { transform: scale(1.06); }
.featured-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px 22px;
  background: linear-gradient(180deg, transparent, rgba(17,20,24,.85));
  color: var(--bone);
  font-family: var(--serif);
  font-size: 20px;
}
@media (max-width: 820px) {
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .featured-item:nth-child(3) { grid-column: span 2; aspect-ratio: 3/2; }
}

/* ---------- Two-col image + text ---------- */
.split {
  display: grid; gap: clamp(30px, 5vw, 72px);
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
.split-media {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5;
  box-shadow: var(--shadow);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-body h2 {
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 300;
  margin-bottom: .5em;
}
.split-body ul.ticks {
  margin: 18px 0 24px; display: grid; gap: 10px;
}
.split-body ul.ticks li {
  padding-left: 28px; position: relative; font-size: 15.5px;
}
.split-body ul.ticks li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--blue);
  box-shadow: inset 0 0 0 4px var(--bone);
}
section.dark .split-body ul.ticks li::before { box-shadow: inset 0 0 0 4px var(--ink); }
@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: 0; }
  .split-media { aspect-ratio: 4/3; }
}

/* ---------- Process ---------- */
.process {
  display: grid; gap: 28px;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: step;
}
.step {
  padding: 30px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute; top: 20px; right: 22px;
  font-family: var(--serif); font-style: italic; font-size: 24px;
  color: var(--blue-ink);
}
.step h3 { font-size: 22px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted); }
@media (max-width: 900px) { .process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .process { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.quotes {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.quote {
  padding: 36px 30px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-dk);
}
section:not(.dark) .quote { background: var(--paper); border-color: var(--line); }
.quote p {
  font-family: var(--serif); font-size: 19px; line-height: 1.45;
  font-style: italic;
  margin-bottom: 22px;
}
.quote footer {
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue);
}
section:not(.dark) .quote footer { color: var(--blue-ink); }
.stars { color: var(--brass-lt); letter-spacing: 2px; margin-bottom: 12px; }
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.gallery a {
  grid-column: span 4;
  aspect-ratio: 4/5;
  overflow: hidden; border-radius: var(--radius-sm);
  position: relative; background: var(--ink);
}
.gallery a.wide { grid-column: span 6; aspect-ratio: 3/2; }
.gallery a.tall { grid-column: span 4; aspect-ratio: 3/4; }
.gallery a.sq   { grid-column: span 3; aspect-ratio: 1/1; }
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.gallery a:hover img { transform: scale(1.06); }

@media (max-width: 820px) {
  .gallery a, .gallery a.wide, .gallery a.tall, .gallery a.sq { grid-column: span 6; aspect-ratio: 4/5; }
}

/* Filters */
.filters {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px;
}
.filters button {
  padding: 10px 18px; border-radius: 999px;
  font-size: 13.5px; font-weight: 500;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: all .22s var(--ease);
}
.filters button:hover { border-color: var(--ink); }
.filters button.is-active { background: var(--ink); color: var(--bone); border-color: var(--ink); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8,10,14,.92);
  display: none; align-items: center; justify-content: center;
  padding: 4vw;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: 6px; box-shadow: var(--shadow-lg); }
.lightbox button {
  position: absolute; color: #fff; font-size: 30px; line-height: 1;
  background: rgba(255,255,255,.08); border-radius: 999px;
  width: 52px; height: 52px; display: inline-flex; align-items: center; justify-content: center;
}
.lightbox .lb-close { top: 24px; right: 24px; }
.lightbox .lb-prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next  { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox button:hover { background: rgba(255,255,255,.18); }

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(50px, 7vw, 90px) 0;
}
.cta-inner {
  display: grid; gap: 30px; align-items: center;
  grid-template-columns: 1.1fr auto;
}
.cta-inner h2 {
  font-size: clamp(30px, 4vw, 52px); font-weight: 300; margin: 0 0 .2em; color: var(--bone);
}
.cta-inner p { color: rgba(246,243,238,.7); margin: 0; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-strip .btn-primary { background: var(--blue); color: var(--ink); }
.cta-strip .btn-primary:hover { background: var(--bone); }
.cta-strip .btn-ghost { color: var(--bone); border-color: var(--bone); }
.cta-strip .btn-ghost:hover { background: var(--bone); color: var(--ink); }
@media (max-width: 800px) { .cta-inner { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-foot {
  background: var(--ink-soft); color: rgba(246,243,238,.72);
  padding: 80px 0 24px;
  font-size: 14.5px;
}
.foot-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  padding-bottom: 50px;
}
.site-foot h4 {
  color: var(--bone); font-family: var(--sans); font-size: 13px;
  text-transform: uppercase; letter-spacing: .2em; font-weight: 600;
  margin-bottom: 16px;
}
.site-foot ul li { margin-bottom: 8px; }
.site-foot a:hover { color: var(--blue); }
.foot-brand p { max-width: 36ch; }
.foot-brand .rating strong { color: var(--blue); }
.foot-bar {
  border-top: 1px solid var(--line-dk); padding: 22px 0 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12.5px; color: rgba(246,243,238,.5);
  letter-spacing: .06em;
}
.foot-bar a:hover { color: var(--blue); }
@media (max-width: 900px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .foot-grid { grid-template-columns: 1fr; }
}

/* ---------- Floating call button (mobile only) ---------- */
.floating-call {
  position: fixed; right: 18px; bottom: 18px; z-index: 50;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue-ink); color: #fff;
  display: none; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.floating-call:hover { transform: scale(1.06); background: var(--blue); color: var(--ink); }
@media (max-width: 900px) { .floating-call { display: inline-flex; } }

/* ---------- Forms ---------- */
.form-grid {
  display: grid; gap: 18px;
  grid-template-columns: 1fr 1fr;
}
.form-grid .full { grid-column: 1 / -1; }
.field { display: block; }
.field label {
  display: block; font-size: 13px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 8px; color: var(--muted);
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--sans); font-size: 16px;
  background: var(--paper); color: var(--ink);
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0; border-color: var(--blue-ink);
  box-shadow: 0 0 0 4px rgba(143,206,229,.25);
}
.field .hint { font-size: 12.5px; color: var(--muted); margin-top: 6px; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

/* Contact two-col */
.contact-grid {
  display: grid; gap: clamp(30px, 5vw, 60px);
  grid-template-columns: 1.3fr 1fr;
}
.contact-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px;
}
.contact-card h3 { font-size: 22px; margin-bottom: 10px; }
.contact-card.is-dark {
  background: var(--ink); border-color: var(--ink);
  color: var(--bone);
}
.contact-card.is-dark h3 { color: var(--bone); }
.contact-card.is-dark p  { color: rgba(246,243,238,.72); }
.contact-card.is-dark a  { color: var(--blue); }
.contact-list { margin-top: 22px; display: grid; gap: 14px; }
.contact-list a { color: var(--ink); font-weight: 500; border-bottom: 1px solid var(--line); padding-bottom: 10px; display: block; }
.contact-list a:hover { color: var(--blue-ink); }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

/* Areas pill list */
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.pill-list span {
  display: inline-block; padding: 7px 14px; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--line);
  color: var(--ink);                /* explicit — never inherit a light colour */
  font-size: 13px; font-weight: 500;
}
section.dark .pill-list span,
.is-dark .pill-list span {
  background: rgba(255,255,255,.06);
  border-color: var(--line-dk);
  color: var(--bone);
}

/* ---------- FAQ accordion ---------- */
.faq-acc { display: block; }
.faq-acc .acc-group { border-bottom: 1px solid var(--line); }
.faq-acc .acc-group:first-child { border-top: 1px solid var(--line); }

.faq-acc .acc-header {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 4px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: color .22s var(--ease);
}
.faq-acc .acc-header:hover { color: var(--blue-ink); }
.faq-acc .acc-header:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; border-radius: 4px; }
.faq-acc .acc-title { flex: 1; }
.faq-acc .acc-chevron {
  font-family: var(--sans); font-weight: 300; font-size: 30px; line-height: 1;
  color: var(--blue-ink);
  transition: transform .25s var(--ease);
  display: inline-block;
}
.faq-acc .acc-group.open .acc-chevron { transform: rotate(45deg); }

.faq-acc .acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease);
}
.faq-acc .acc-group.open .acc-body { grid-template-rows: 1fr; }
.faq-acc .acc-body-inner { overflow: hidden; }
.faq-acc .acc-body p {
  margin: 0 0 22px;
  color: var(--muted);
  max-width: 70ch;
  line-height: 1.6;
}

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media img { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Reviews marquee ---------- */
.reviews-strip {
  position: relative;
  padding: clamp(70px, 9vw, 110px) 0;
  background: var(--cream);
  overflow: hidden;
}
.reviews-strip .sec-head { text-align: center; margin: 0 auto 48px; }
.reviews-strip .sec-head .eyebrow { justify-content: center; }

.marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex; gap: 22px;
  width: max-content;
  animation: marqueeScroll 55s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .review-card { scroll-snap-align: start; }
}

.review-card {
  flex: 0 0 360px;
  padding: 30px 28px 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  box-shadow: 0 1px 2px rgba(17,20,24,.04), 0 12px 30px -18px rgba(17,20,24,.25);
}
.review-card .stars {
  color: var(--brass);
  letter-spacing: 3px;
  font-size: 16px;
  margin-bottom: 14px;
}
.review-card blockquote {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 19px; line-height: 1.45;
  font-style: italic;
  color: var(--ink);
  flex: 1;
}
.review-card cite {
  font-style: normal;
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 10px;
}
.review-card cite strong { color: var(--ink); font-weight: 600; letter-spacing: .08em; }
.review-card cite .src {
  margin-left: auto;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(21,144,203,.08);
  color: var(--blue-ink);
  letter-spacing: .1em;
  font-size: 11px;
}
@media (max-width: 600px) {
  .review-card { flex: 0 0 82vw; padding: 26px 22px 22px; }
  .marquee-track { gap: 14px; }
}

/* ---------- Pull quote ---------- */
.pull {
  max-width: 960px; margin: 0 auto; text-align: center;
}
.pull p {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(24px, 3.2vw, 42px); line-height: 1.3;
  letter-spacing: -.01em;
}
.pull footer { margin-top: 22px; font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
section.dark .pull footer { color: var(--blue); }

/* ---------- Page hero breadcrumbs ---------- */
.crumbs {
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(246,243,238,.65);
  margin-bottom: 18px;
}
.crumbs a { border-bottom: 1px solid rgba(246,243,238,.25); padding-bottom: 2px; }
.crumbs span { margin: 0 10px; opacity: .5; }
