:root {
  --color-primary: #1C1C1E;
  --color-primary-deep: #151517;
  --color-accent: #1D3511;
  --color-accent-light: #3E5334;
  --color-highlight: #B88C43;
  --color-ivory: #fafafa;
  --color-bone: #ebe7df;
  --color-ink: #1c1c1e;
  --color-muted: #55504a;
  --color-line: rgba(28, 28, 30, 0.14);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  --shadow-lg: 0 30px 80px -20px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 18px 45px -24px rgba(0, 0, 0, 0.36);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 2px;
  --container-max: 1180px;
  --section-pad: clamp(4rem, 9vw, 8rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-ink);
  background: var(--color-ivory);
  line-height: 1.7;
  letter-spacing: 0.006em;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }

.container {
  width: min(100% - 2rem, var(--container-max));
  margin-inline: auto;
}
.narrow { max-width: 840px; }
.section { padding: var(--section-pad) 0; }
.section-soft { background: var(--color-bone); }
.section-dark {
  color: var(--color-ivory);
  background: var(--color-primary);
  position: relative;
  isolation: isolate;
}
.section-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  pointer-events: none;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.38'/%3E%3C/svg%3E");
}

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--color-highlight);
  color: var(--color-ink);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
:focus-visible {
  outline: 3px solid var(--color-highlight);
  outline-offset: 4px;
}

h1, h2, h3, blockquote {
  font-family: var(--font-display);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 1rem;
  font-weight: 600;
}
/* Even out heading line lengths so no single word is stranded on the last line. */
h1, h2, h3 { text-wrap: balance; }
h1 { font-size: clamp(2.7rem, 14vw, 5.75rem); max-width: 11ch; }
h2 { font-size: clamp(2.1rem, 8vw, 4.2rem); max-width: 12ch; }
h3 { font-size: clamp(1.35rem, 4vw, 1.8rem); }
.eyebrow {
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-dark .eyebrow { color: var(--color-highlight); }
.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-heading p:last-child { color: var(--color-muted); font-size: 1.08rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* flex drops whitespace between items, so a label + trailing arrow needs an explicit gap */
  gap: 0.45em;
  min-height: 46px;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background-color: var(--color-highlight);
  border-color: var(--color-highlight);
  color: var(--color-ink);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--color-ink);
  border-color: var(--color-highlight);
  color: var(--color-highlight);
}
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--color-ivory);
}
.btn-small { min-height: 40px; padding: 0.62rem 1rem; font-size: 0.92rem; }
.btn-large { min-height: 58px; padding: 1rem 1.6rem; font-size: 1.05rem; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-primary);
  font-weight: 800;
  border-bottom: 2px solid var(--color-highlight);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 237, 0.94);
  border-bottom: 1px solid var(--color-line);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  min-height: 44px;
}
.brand img { width: 44px; height: 44px; object-fit: contain; }
.site-header .brand { min-height: 66px; }
.site-header .brand img { width: 66px; height: 66px; }
.site-nav {
  margin-left: auto;
  display: none;
  gap: 1.3rem;
  align-items: center;
  font-weight: 800;
  font-size: 0.94rem;
}
.site-nav a { position: relative; padding: 1rem 0; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.6rem;
  width: 0;
  height: 2px;
  background: var(--color-highlight);
  transition: width 0.3s var(--ease);
}
.site-nav a:hover::after,
.site-nav a[aria-current="location"]::after { width: 100%; }
.nav-toggle {
  margin-left: auto;
  border: 0;
  background: var(--color-primary);
  color: var(--color-ivory);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 1.1rem;
}
.nav-cta { display: none; }

.hero {
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 7rem 0 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--color-primary-deep);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-primary);
  opacity: 0.82;
}
.hero-bg span {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 32s infinite;
  filter: saturate(0.85);
}
.hero-bg span:nth-child(1) { animation-delay: 0s; }
.hero-bg span:nth-child(2) { animation-delay: 8s; }
.hero-bg span:nth-child(3) { animation-delay: 16s; }
.hero-bg span:nth-child(4) { animation-delay: 24s; }

/* Hero slides ship in two crops. The hero is 100svh, so viewport aspect swings from
   ~0.46:1 (phone) to ~1.78:1 (desktop) and one crop cannot serve both: a 16:9 image
   on a phone would show ~26% of its width. Swap on viewport shape, not width. */
.hero-slide--1 { background-image: url('../images/hero-1-wide.jpg'); }
.hero-slide--2 { background-image: url('../images/hero-2-wide.jpg'); }
.hero-slide--3 { background-image: url('../images/hero-3-wide.jpg'); }
.hero-slide--4 { background-image: url('../images/hero-4-wide.jpg'); }
@media (max-aspect-ratio: 1/1) {
  .hero-slide--1 { background-image: url('../images/hero-1-tall.jpg'); }
  .hero-slide--2 { background-image: url('../images/hero-2-tall.jpg'); }
  .hero-slide--3 { background-image: url('../images/hero-3-tall.jpg'); }
  .hero-slide--4 { background-image: url('../images/hero-4-tall.jpg'); }
}
.hero-grid {
  display: grid;
  gap: 2rem;
}
.hero-text {
  max-width: 620px;
  font-size: clamp(1.05rem, 3vw, 1.3rem);
  color: rgba(247, 244, 237, 0.86);
}
.cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.6rem; }
.hero-card {
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.09);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-radius: calc(var(--radius) + 12px);
  padding: clamp(1.5rem, 4vw, 2.1rem);
  max-width: 380px;
}
.hero-card span {
  color: var(--color-highlight);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
}
.hero-card p {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 7vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0.8rem 0 0;
}
.scroll-cue { display: none; }

/* Hero without the promise card: single centred column */
.hero-grid--single { justify-items: center; text-align: center; }
.hero-grid--single .hero-copy { max-width: 900px; min-width: 0; }
/* Scale from the viewport so long words still fit a 320px screen without clipping. */
/* Deliberate exception to the no-stranded-word rule: "Communications Strategy" needs
   ~1020px at the hero display size but the column caps at 900px, so "Strategy" takes
   its own line by design rather than shrinking the headline to avoid it. */
.hero-grid--single h1 {
  max-width: 18ch;
  margin-inline: auto;
  font-size: clamp(1.95rem, 11vw, 5.75rem);
  overflow-wrap: break-word;
}
.hero-grid--single .hero-text { margin-inline: auto; }
.hero-grid--single .cta-row { justify-content: center; }

.proof-strip {
  background: var(--color-primary-deep);
  color: var(--color-ivory);
  padding: clamp(2rem, 4vw, 3.25rem) 0;
}
.proof-strip-inner {
  display: grid;
  gap: clamp(1.15rem, 3vw, 2rem);
  align-items: center;
}
.rating-badge, .trust-signal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.stars { color: var(--color-highlight); letter-spacing: 0.08em; white-space: nowrap; }
.rating-number {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}
.proof-statement {
  grid-column: 1 / -1;
  margin: 0 auto;
  max-width: 34ch;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 5vw, 2.3rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.proof-statement strong { color: var(--color-highlight); font-weight: 600; }
.trust-grid { display: grid; gap: 0.75rem; }
.trust-signal {
  border: 1px solid rgba(255,255,255,0.16);
  padding: 0.9rem 1rem;
  border-radius: calc(var(--radius) + 8px);
}

.split-grid, .proof-grid, .contact-grid {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.section-copy > p:not(.eyebrow) { color: var(--color-muted); font-size: 1.04rem; }
.image-frame {
  border-radius: calc(var(--radius) + 18px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-bone);
}
.image-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.image-frame.tall img { aspect-ratio: 3.5 / 5; }
/* About with no photo: copy runs the full width as heading | body, no dead space */
.about-textonly { display: grid; gap: clamp(1.5rem, 4vw, 2.5rem); }
.about-textonly .about-head h2 { max-width: 20ch; }
.about-textonly .about-body > p { max-width: 64ch; }
.about-textonly .about-body > p:first-child {
  font-size: 1.18rem;
  color: var(--color-ink);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.6rem 0;
}
.stat {
  padding: 1rem;
  border: 1px solid var(--color-line);
  border-radius: calc(var(--radius) + 10px);
  background: rgba(255, 255, 255, 0.42);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}
.stat span { color: var(--color-muted); font-weight: 700; font-size: 0.9rem; }

.card-grid { display: grid; gap: 1rem; }
.service-card, .review-card {
  background: var(--color-ivory);
  border: 1px solid var(--color-line);
  border-radius: calc(var(--radius) + 14px);
  padding: 1.35rem;
  box-shadow: 0 16px 34px -30px rgba(0,0,0,0.5);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.service-card:hover,
.service-card:focus-within,
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.icon-pill {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--color-primary);
  color: var(--color-highlight);
  margin-bottom: 1rem;
}
.service-card p, .review-card p { color: var(--color-muted); }
.service-card a { color: var(--color-primary); font-weight: 900; }
.section-action { margin-top: 2rem; }

.credential-list { display: grid; gap: 0.75rem; margin: 1.5rem 0; }
.credential {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0.95rem;
  border: 1px solid var(--color-line);
  border-radius: calc(var(--radius) + 10px);
  background: rgba(255,255,255,0.54);
}
.credential i { color: var(--color-accent); margin-top: 0.25rem; }
.credential strong { display: block; line-height: 1.2; }
.credential span { color: var(--color-muted); font-size: 0.92rem; }
blockquote {
  border-left: 4px solid var(--color-highlight);
  padding-left: 1rem;
  font-style: italic;
  color: var(--color-primary);
  font-size: clamp(1.6rem, 5vw, 2.5rem);
}

.reviews-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(82%, 1fr);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}
.review-card { scroll-snap-align: start; }
.review-card .quote-icon { color: var(--color-accent); font-size: 1.4rem; margin-bottom: 0.7rem; }
/* The quote is running text, not a headline: undo the h1/h2/h3 leading, tracking and
   weight so it reads as prose. Italic stays — Playfair ships a real italic at 400. */
.review-card blockquote {
  border: 0;
  padding: 0;
  margin: 0 0 1.15rem;
  font-size: 1.4rem;
  color: var(--color-ink);
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.005em;
}
/* Attribution stays Oswald, upright. Weights capped at 700 — nothing heavier is loaded. */
.review-meta {
  font-weight: 700;
  line-height: 1.3;
}
.review-source {
  display: block;
  color: var(--color-muted);
  font-size: 0.95rem;
  font-weight: 500;
}
.review-embed {
  border: 1px dashed var(--color-accent);
  border-radius: calc(var(--radius) + 14px);
  padding: 1rem;
  background: var(--color-ivory);
}
.review-cta { margin-top: 1.5rem; }

.faq-list details {
  border-bottom: 1px solid var(--color-line);
  padding: 1.15rem 0;
}
/* Oswald is condensed, so an inherited 1rem reads far smaller than it measures. */
.faq-list summary {
  cursor: pointer;
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  font-weight: 700;
  line-height: 1.3;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  min-height: 44px;
  align-items: center;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  color: var(--color-highlight);
  font-size: 1.6rem;
  line-height: 1;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { color: var(--color-muted); padding-right: 1.5rem; font-size: 1.05rem; line-height: 1.55; }
.faq-callout {
  margin-top: 2rem;
  padding: 1.3rem;
  border-radius: calc(var(--radius) + 14px);
  background: var(--color-bone);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.faq-callout p { margin: 0; font-weight: 900; }

.final-cta {
  text-align: center;
  padding: clamp(5rem, 12vw, 9rem) 0;
}
.final-cta__inner { max-width: 880px; }
/* Wider measure + balance so the last word never drops alone onto its own line */
.final-cta h2 { margin-inline: auto; max-width: 20ch; text-wrap: balance; }
.final-cta p { color: rgba(247,244,237,0.82); font-size: 1.08rem; }
.final-cta__sub {
  max-width: 720px;
  margin-inline: auto;
}
.final-cta__form-wrap {
  max-width: 780px;
  margin: clamp(1.5rem, 4vw, 2.4rem) auto 0;
  text-align: left;
}
.support-line { margin-top: 1rem; font-size: 0.95rem !important; }
.support-line a {
  color: var(--color-highlight);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.1rem, 4vw, 1.6rem);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: calc(var(--radius) + 14px);
  background: rgba(255,255,255,0.08);
  box-shadow: var(--shadow-md);
}
.contact-form__grid { display: grid; gap: 1rem; }
.contact-form__label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--color-ivory);
  font-weight: 800;
  letter-spacing: 0;
}
.contact-form__input,
.contact-form__textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: calc(var(--radius) + 8px);
  background: rgba(255,255,255,0.96);
  color: var(--color-ink);
  font: inherit;
  font-weight: 400;
  letter-spacing: 0;
  padding: 0.88rem 1rem;
}
.contact-form__input::placeholder,
.contact-form__textarea::placeholder { color: rgba(28,28,30,0.58); }
.contact-form__textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-form__actions {
  display: flex;
  justify-content: center;
}
.contact-form__submit { width: 100%; }
.contact-form__botcheck { display: none; }
.contact-form__submit[disabled] { opacity: 0.65; cursor: progress; }
.contact-form__status {
  margin: 0;
  min-height: 1.35em;
  color: var(--color-ivory);
  font-size: 0.94rem;
  line-height: 1.45;
  letter-spacing: 0;
  text-align: center;
}
.contact-form__status:empty { display: none; }
.contact-form__status[data-state='pending'] { opacity: 0.75; }
.contact-form__status[data-state='success'] {
  color: #d8e6cd;
  font-weight: 700;
}
.contact-form__status[data-state='error'] { color: #f3c9c2; }

.contact-list { display: grid; gap: 0.85rem; margin-top: 1.5rem; }
.contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--color-line);
  border-radius: calc(var(--radius) + 12px);
  background: rgba(255,255,255,0.45);
}
.contact-item i { color: var(--color-accent); font-size: 1.15rem; }
.contact-item strong { display: block; line-height: 1.2; }
.contact-item span, .contact-item a { color: var(--color-muted); font-weight: 700; }
.contact-panel {
  background: var(--color-bone);
  border-radius: calc(var(--radius) + 16px);
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--color-line);
}
.contact-panel iframe { width: 100%; min-height: 360px; border: 0; display: block; }
.service-area-panel {
  min-height: 100%;
  padding: clamp(1.4rem, 4vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-area-kicker {
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
}
.service-area-panel h3 {
  max-width: 16ch;
  margin-bottom: 0.85rem;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  letter-spacing: -0.025em;
}
.service-area-panel p {
  max-width: 40rem;
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 1.15rem;
}
.service-area-list {
  display: grid;
  gap: 0.75rem;
}
.service-area-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem;
  border: 1px solid var(--color-line);
  border-radius: calc(var(--radius) + 10px);
  background: rgba(255,255,255,0.48);
}
.service-area-item i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-highlight);
  font-size: 0.95rem;
}
.service-area-item strong {
  display: block;
  line-height: 1.2;
}
.service-area-item span {
  display: block;
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.45;
  margin-top: 0.18rem;
}
.pill-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pill { border: 1px solid var(--color-line); border-radius: 999px; padding: 0.5rem 0.75rem; background: var(--color-ivory); font-weight: 800; }

.site-footer {
  background: var(--color-primary-deep);
  color: var(--color-ivory);
  padding: 3rem 0 1rem;
}
.footer-grid { display: grid; gap: 2rem; }
.footer-grid a, .footer-grid span { display: block; color: rgba(247,244,237,0.76); margin-bottom: 0.45rem; }
.footer-brand span { color: var(--color-ivory); }
.footer-heading {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.social-icons { display: flex; gap: 0.7rem; }
.social-icons a {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  margin: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.16);
  margin-top: 2rem;
  padding-top: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  color: rgba(247,244,237,0.64);
  font-size: 0.9rem;
}
.footer-bottom p { margin: 0; }
.site-credit {
  grid-column: 2;
  text-align: center;
}
.site-credit a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3em;
  color: rgba(247,244,237,0.78);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.site-credit a:hover,
.site-credit a:focus-visible { color: var(--color-highlight); }
.site-credit__prefix {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0;
}
.site-credit__brand {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.02rem;
  font-weight: 400;
  letter-spacing: 0;
}

.floating-cta {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 45;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--color-accent);
  box-shadow: 0 18px 40px -14px rgba(0,0,0,0.55);
  font-size: 1.45rem;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.floating-cta.is-hidden { transform: translateY(120%); opacity: 0; pointer-events: none; }

/* Footer wordmark: invert the black logo so it reads on the dark footer */
.footer-brand img { filter: brightness(0) invert(1); }

/* Service sub-items (the 3-column architecture) */
.service-list {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.service-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--color-ink);
  font-size: 0.98rem;
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-highlight);
}

/* Client-logo proof strip */
.proof-strip-label {
  margin: 0 0 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--color-highlight);
}
.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.client-logo {
  background: #fff;
  border-radius: calc(var(--radius) + 10px);
  padding: 0.95rem 1.35rem;
  min-width: clamp(138px, 18vw, 190px);
  height: 102px;
  display: inline-grid;
  place-items: center;
  box-shadow: 0 14px 34px -22px rgba(0, 0, 0, 0.72);
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.client-logo img {
  max-width: 158px;
  max-height: 70px;
  width: auto;
  object-fit: contain;
  transform-origin: center;
  transition: transform 0.3s var(--ease);
}
.client-logo:hover,
.client-logo:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px -16px rgba(0, 0, 0, 0.75);
}
.client-logo:hover img,
.client-logo:focus-within img {
  transform: scale(1.06);
}
@media (prefers-reduced-motion: reduce) {
  .client-logo, .client-logo img { transition: none; }
  .client-logo:hover,
  .client-logo:focus-within,
  .client-logo:hover img,
  .client-logo:focus-within img { transform: none; }
}

/* Ways to work with us — booking / engagement paths */
.booking-block {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid var(--color-line);
}
/* No heading block: the first row's own top border is the only divider needed */
.booking-block--bare { border-top: 0; padding-top: 0; }
.booking-head { max-width: 640px; margin-bottom: clamp(1.6rem, 4vw, 2.4rem); }
.booking-head h3 { margin-bottom: 0.6rem; }
.booking-head p { color: var(--color-muted); margin: 0; }

.booking-row {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.6rem, 4vw, 2.6rem) 0;
  border-top: 1px solid var(--color-line);
}
.booking-rows > .booking-row:last-child { border-bottom: 1px solid var(--color-line); }
.booking-row__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--color-highlight);
  margin-bottom: 0.4rem;
}
.booking-row__label h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 3.6vw, 1.7rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 0.5rem;
}
.booking-row__sub {
  display: block;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 34ch;
}
.booking-row__body { display: grid; gap: 1rem; align-content: start; }
.booking-row__text { color: var(--color-muted); margin: 0; max-width: 54ch; }

.offer-row { display: grid; gap: 0.9rem; }
.offer-card,
.feature-card {
  background: var(--color-ivory);
  border: 1px solid var(--color-line);
  border-radius: calc(var(--radius) + 12px);
  padding: 1.25rem;
}
.offer-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.offer-card:hover,
.offer-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-highlight);
}
.offer-card h5,
.feature-card h5 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}
.offer-note { color: var(--color-muted); font-size: 0.92rem; }
.offer-action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.45rem;
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}
a.offer-action {
  justify-self: start;
  min-height: 44px;
  border-bottom: 2px solid var(--color-highlight);
  transition: color 0.25s var(--ease);
}
a.offer-action:hover { color: var(--color-accent); }

.feature-card { display: grid; gap: 0.85rem; padding: clamp(1.25rem, 3vw, 1.65rem); }
.feature-card p { color: var(--color-muted); margin: 0; max-width: 58ch; }
.feature-meta { display: grid; gap: 0.75rem; }
.feature-meta b {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 0.15rem;
}
.feature-meta span { display: block; font-size: 0.92rem; line-height: 1.4; }

.booking-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.booking-tags li {
  border: 1px solid var(--color-line);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  background: var(--color-ivory);
  font-size: 0.92rem;
  font-weight: 500;
}

@keyframes heroFade {
  0%, 100% { opacity: 0; }
  5%, 25% { opacity: 0.35; }
  30% { opacity: 0; }
}

@media (max-width: 979px) {
  .site-nav {
    position: fixed;
    inset: 92px 1rem auto;
    display: grid;
    background: var(--color-ivory);
    border: 1px solid var(--color-line);
    border-radius: calc(var(--radius) + 14px);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
  }
  .site-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .site-nav a { min-height: 44px; display: flex; align-items: center; }
}

@media (min-width: 540px) {
  .trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .reviews-scroll { grid-auto-columns: minmax(420px, 1fr); }
}
@media (min-width: 640px) {
  .offer-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-meta { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 768px) {
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .footer-col--bare { padding-top: 1.9rem; }
  .contact-form__grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-form__submit { width: auto; min-width: 180px; }
  .proof-strip-inner { grid-template-columns: minmax(180px, 0.24fr) 1fr; gap: clamp(1.8rem, 4vw, 3rem); }
  .proof-strip-label { margin: 0; }
}
@media (min-width: 980px) {
  .site-nav, .nav-cta { display: flex; }
  .nav-toggle { display: none; }
  .hero-grid, .split-grid, .proof-grid, .contact-grid { grid-template-columns: 1.08fr 0.92fr; }
  .hero-grid.hero-grid--single { grid-template-columns: minmax(0, 1fr); }
  .about-textonly {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: start;
  }
  .about-textonly .about-head h2 { max-width: 16ch; }
  .hero-card { justify-self: end; }
  .scroll-cue {
    display: block;
    position: absolute;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%);
    writing-mode: vertical-rl;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    color: rgba(247,244,237,0.65);
  }
  .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .reviews-scroll { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-flow: row; overflow: visible; }
  .booking-row {
    grid-template-columns: minmax(210px, 0.75fr) minmax(0, 1.65fr);
    gap: clamp(2rem, 5vw, 4rem);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .hero-bg span { animation: none; opacity: 0.25; }
  .hero-bg span:not(:first-child) { display: none; }
}
