/* =====================================================
   Brunettes With Brushes — brand design system
   Shared by every mock-up page. Single source of truth.
   ===================================================== */

:root {
  /* Brand colours */
  --cream:  #F7F1EB;
  --blush:  #F6DDE3;
  --rose:   #D94E78;
  --rose-dark: #B93A61;
  --ink:    #111111;
  --grey:   #262626;
  --taupe:  #B7A69A;
  --white:  #FFFFFF;
  --paper:  #FDFBF9;          /* warm near-white for cards */
  --line:   #E9DFD5;          /* hairline borders on cream */

  /* Type */
  --serif:  "Playfair Display", Georgia, serif;
  --script: "Kaushan Script", cursive;
  --sans:   "Montserrat", -apple-system, Helvetica, Arial, sans-serif;

  /* Rhythm */
  --container: 1200px;
  --section-y: clamp(64px, 8vw, 112px);
  --radius: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 40px -18px rgba(17, 17, 17, .18);
  --shadow-card: 0 10px 30px -14px rgba(17, 17, 17, .14);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--grey);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); line-height: 1.12; margin: 0 0 .5em; font-weight: 700; }
p { margin: 0 0 1em; }
a { color: var(--rose); }
:focus-visible { outline: 3px solid var(--rose); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--white); padding: 10px 18px;
}
.skip-link:focus { left: 12px; top: 12px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: block;
  font: 700 12px/1.4 var(--sans);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}
.h-xl { font-size: clamp(2.4rem, 4.4vw, 3.6rem); letter-spacing: -.01em; }
.h-lg { font-size: clamp(1.9rem, 3vw, 2.6rem); }
.h-md { font-size: clamp(1.3rem, 2vw, 1.55rem); }
.script {
  font-family: var(--script);
  color: var(--rose);
  font-weight: 400;
  line-height: 1.25;
}
.lede { font-size: 1.06rem; max-width: 46ch; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }

/* Small pink swash under script lines */
.swash { width: 130px; height: 14px; color: var(--rose); margin-top: 6px; }
.center .swash { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font: 700 12.5px/1 var(--sans);
  letter-spacing: .14em; text-transform: uppercase;
  padding: 17px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
  cursor: pointer;
}
.btn .arrow { width: 18px; height: 10px; flex: none; transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--rose); color: var(--white); box-shadow: 0 10px 24px -10px rgba(217, 78, 120, .55); }
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline-light:hover { background: var(--white); color: var(--ink); }
.btn-white { background: var(--white); color: var(--rose-dark); box-shadow: var(--shadow-card); }
.btn-white:hover { transform: translateY(-2px); }

.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  font: 700 12px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase;
  color: var(--rose); text-decoration: none;
}
.text-link .arrow { width: 16px; height: 9px; transition: transform .18s ease; }
.text-link:hover { color: var(--rose-dark); }
.text-link:hover .arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 30px -18px rgba(17,17,17,.25); border-color: var(--line); }
.header-inner { display: flex; align-items: center; gap: 28px; min-height: 84px; }
.brand { display: flex; align-items: center; text-decoration: none; flex: none; }
.brand img { height: 62px; width: auto; }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: clamp(16px, 2.2vw, 30px); list-style: none; margin: 0; padding: 0; }
.main-nav a {
  font: 700 12px/1 var(--sans);
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  padding: 10px 2px; position: relative;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px;
  background: var(--rose); transform: scaleX(0); transform-origin: left;
  transition: transform .2s ease;
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.main-nav a[aria-current="page"] { color: var(--rose); }

.header-social { display: flex; gap: 10px; }
.header-social a {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  color: var(--white); background: var(--rose);
  transition: background .18s ease, transform .18s ease;
}
.header-social a:hover { background: var(--ink); transform: translateY(-2px); }
.header-social svg { width: 15px; height: 15px; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none; border: 0; padding: 10px; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 26px; height: 2.5px; background: var(--ink);
  margin: 5px 0; border-radius: 2px; transition: transform .25s ease, opacity .25s ease;
}

/* ---------- Placeholder photo panels ----------
   Stand-ins for real photography: soft duotone washes in
   brand-adjacent tones + discreet caption. Swap for <img> later. */
.ph {
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
  background:
    radial-gradient(120% 90% at 18% 8%, rgba(255,255,255,.5), transparent 55%),
    radial-gradient(130% 110% at 85% 95%, rgba(17,17,17,.16), transparent 60%),
    linear-gradient(150deg, var(--ph-a, #E8DCCE) 0%, var(--ph-b, #C9B6A4) 100%);
}
.ph::after { /* fine grain so panels don't look flat */
  content: ""; position: absolute; inset: 0; opacity: .35; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.5 0 0 0 0 0.47 0 0 0 0 0.44 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
.ph-tag {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center; padding: 16px;
  color: rgba(17,17,17,.42);
}
.ph-tag svg { width: 34px; height: 34px; opacity: .75; }
.ph-tag span { font: 600 10.5px/1.5 var(--sans); letter-spacing: .18em; text-transform: uppercase; max-width: 24ch; }
.ph--dark .ph-tag { color: rgba(255,255,255,.55); }

/* Duotone variants */
.ph--warm  { --ph-a: #EBDCCB; --ph-b: #C6AE97; }   /* warm living room */
.ph--sage  { --ph-a: #DFE3D6; --ph-b: #A9B39D; }   /* sage bedroom */
.ph--blush { --ph-a: #F3DCE1; --ph-b: #D3A3B0; }   /* blush hallway */
.ph--stone { --ph-a: #E7E3DD; --ph-b: #B4ACA1; }   /* kitchen neutrals */
.ph--dark  { --ph-a: #4A4642; --ph-b: #1D1B1A; }   /* charcoal feature */
.ph--rose  { --ph-a: #E9B7C4; --ph-b: #C4708C; }

/* Rough paint-edge masks */
.mask-left {
  -webkit-mask-image: url("brush-edge-left.svg?v=3");
  mask-image: url("brush-edge-left.svg?v=3");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

/* ---------- Sections ---------- */
.section { padding-block: var(--section-y); }
.section--white { background: var(--white); }
.section--blush { background: var(--blush); }
.section--ink { background: var(--ink); color: #CFC9C2; }
.section--ink h2, .section--ink h3 { color: var(--white); }

.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #B9B2AA; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: clamp(28px, 4vw, 56px);
  padding-block: clamp(48px, 6vw, 72px);
}
.site-footer h4 {
  color: var(--white); font: 700 12.5px/1.4 var(--sans);
  letter-spacing: .2em; text-transform: uppercase; margin-bottom: 18px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: #B9B2AA; text-decoration: none; transition: color .15s ease; }
.site-footer a:hover { color: var(--white); }
.footer-logo img { height: 84px; width: auto; }
.footer-logo .logo-chip {
  display: inline-block;
  background: var(--cream);
  border-radius: 14px;
  padding: 12px 18px;
  margin-bottom: 18px;
}
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  display: grid; place-items: center; width: 36px; height: 36px;
  border-radius: 50%; border: 1px solid #3A3733; color: #B9B2AA;
}
.footer-social a:hover { background: var(--rose); border-color: var(--rose); color: var(--white); }
.footer-social svg { width: 15px; height: 15px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; flex: none; margin-top: 5px; color: var(--rose); }
.footer-bottom {
  border-top: 1px solid #2B2825;
  padding-block: 22px;
  display: flex; flex-wrap: wrap; gap: 8px 28px; justify-content: center;
  font-size: 13px;
}
.footer-bottom a { text-decoration: none; }

/* Script ribbon above footer */
.ribbon {
  background: var(--ink);
  border-bottom: 1px solid #2B2825;
  text-align: center;
  padding-block: 26px;
}
.ribbon .script { color: var(--white); font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.ribbon .heart { color: var(--rose); font-size: 1.1em; margin-inline: 14px; }

/* =====================================================
   Page sections (shared component layouts)
   ===================================================== */

/* Hero */
.hero { overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1.2fr;
  align-items: stretch; gap: clamp(32px, 4vw, 60px);
}
.hero-copy { align-self: center; padding-block: clamp(40px, 5vw, 72px); }
.hero-copy h1 { font-size: clamp(2.15rem, 3.3vw, 2.9rem); }
.hero-logo { width: min(340px, 74%); height: auto; margin-bottom: 8px; }
.hero-script { display: block; font-size: .82em; margin-top: .18em; }
.hero-copy .lede { margin-top: 18px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; }
.hero-media {
  --bleed: calc((100vw - min(var(--container), 100vw)) / 2 + clamp(20px, 4vw, 40px));
  min-height: clamp(380px, 42vw, 600px);
  border-radius: 0;
  /* bleed past the container to the viewport's right edge */
  margin-right: calc(-1 * var(--bleed));
}
img.hero-media {
  display: block;
  width: calc(100% + var(--bleed)); max-width: none; /* beat the global img max-width cap */
  height: 100%;
  object-fit: cover; object-position: 68% 50%; /* keep the decorators in frame on narrow crops */
}

/* Trust strip */
.trust { background: var(--ink); color: #C9C2BA; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: clamp(28px, 3vw, 44px) clamp(16px, 2vw, 32px);
  border-left: 1px solid #2B2825;
}
.trust-item:first-child { border-left: 0; }
.trust-item > svg { width: 46px; height: 46px; flex: none; color: var(--rose); }
.trust-item h3 { color: var(--white); font: 700 13.5px/1.4 var(--sans); letter-spacing: .1em; text-transform: uppercase; margin: 2px 0 6px; }
.trust-item p { font-size: 13.5px; line-height: 1.6; margin: 0; }

/* Two-column split (about etc.) */
.split {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 5vw, 72px); align-items: center;
}
.split-media { min-height: clamp(320px, 34vw, 460px); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.split-copy .btn { margin-top: 12px; }
.split-copy .swash { margin-bottom: 22px; }

/* Services grid */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2vw, 28px); }
.service-card .ph { aspect-ratio: 4 / 3; }
.card-body { padding: 24px 26px 28px; }
.card-body h3 { margin-bottom: 8px; }
.card-body p { font-size: 14px; line-height: 1.65; min-height: 4.4em; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.gallery-item {
  aspect-ratio: 3 / 4; margin: 0;
  border-radius: var(--radius); box-shadow: var(--shadow-card);
  align-content: end; justify-items: start;
}
.gallery-item:nth-child(even) { transform: translateY(22px); }
.gallery-cap {
  position: relative; z-index: 1;
  margin: 0 0 18px 18px; padding: 10px 16px;
  background: color-mix(in srgb, var(--white) 88%, transparent);
  backdrop-filter: blur(4px);
  border-radius: 10px;
  display: grid; gap: 0;
}
.gallery-cap strong { font-family: var(--serif); font-size: 15.5px; color: var(--ink); }
.gallery-cap span { font: 600 10px/1.6 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--rose); }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 28px); }
.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 30px 26px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
}
.stars { display: flex; gap: 4px; color: var(--rose); margin-bottom: 16px; }
.stars svg { width: 17px; height: 17px; }
.review-card blockquote { margin: 0 0 20px; font-size: 15px; line-height: 1.75; font-style: italic; color: var(--grey); flex: 1; }
.review-card footer { font-size: 13.5px; color: var(--ink); }
.review-card footer span { display: block; font: 600 10.5px/1.8 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--taupe); }

/* Final CTA */
.cta-final { position: relative; overflow: hidden; }
.cta-final .swash { margin-bottom: 20px; }
.cta-contact {
  list-style: none; margin: 8px 0 32px; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px;
}
.cta-contact li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; }
.cta-contact svg { width: 19px; height: 19px; color: var(--rose); flex: none; }
.cta-contact a { color: var(--ink); text-decoration: none; }
.cta-contact a:hover { color: var(--rose-dark); }

/* =====================================================
   Inner-page components
   ===================================================== */

/* Page hero banner */
.page-hero { position: relative; display: grid; align-items: end; min-height: clamp(320px, 34vw, 440px); overflow: hidden; }
.page-hero .ph { position: absolute; inset: 0; }
.page-hero::after { /* legibility wash */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(10deg, rgba(17,17,17,.72) 0%, rgba(17,17,17,.28) 55%, rgba(17,17,17,.05) 100%);
}
.page-hero .container { position: relative; z-index: 1; padding-block: clamp(36px, 4vw, 56px); }
.page-hero .eyebrow { color: var(--blush); }
.page-hero h1 { color: var(--white); font-size: clamp(2.1rem, 3.6vw, 3rem); max-width: 18ch; margin-bottom: .35em; }
.page-hero h1 .script { color: var(--blush); }
.page-hero p { color: rgba(255,255,255,.88); max-width: 56ch; margin: 0; }
.page-hero .ph-tag { position: absolute; right: 24px; top: 24px; z-index: 1; color: rgba(255,255,255,.5); }
.page-hero .ph-tag svg { display: none; }

/* Anchor pill navigation */
.pill-nav { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-nav a {
  font: 700 11.5px/1 var(--sans); letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  padding: 12px 18px; border-radius: var(--radius-pill);
  background: var(--white); border: 1px solid var(--line);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.pill-nav a:hover { border-color: var(--rose); color: var(--rose-dark); }

/* Value / icon cards */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2vw, 28px); }
.value-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow-card);
}
.value-card svg { width: 44px; height: 44px; color: var(--rose); margin-bottom: 16px; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.value-card p { font-size: 14px; margin: 0; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 28px); }
.team-card .ph { aspect-ratio: 4 / 5; }
.team-card figcaption, .team-card .card-body { padding: 22px 24px 26px; }
.team-card h3 { margin-bottom: 2px; }
.team-card .role { font: 700 10.5px/1.6 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--rose); display: block; margin-bottom: 10px; }
.team-card p { font-size: 14px; margin: 0; }

/* Process timeline */
.timeline { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); counter-reset: step; }
.timeline li { position: relative; text-align: center; padding-top: 78px; }
.timeline li::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 58px; height: 58px; display: grid; place-items: center;
  font: 700 1.35rem/1 var(--serif); color: var(--rose);
  background: var(--white); border: 2px solid var(--rose); border-radius: 50%;
  box-shadow: var(--shadow-card); z-index: 1;
}
.timeline li::after { /* connector */
  content: ""; position: absolute; top: 29px; left: calc(50% + 40px); right: calc(-50% + 40px);
  border-top: 2px dashed color-mix(in srgb, var(--rose) 45%, transparent);
}
.timeline li:last-child::after { display: none; }
.timeline h3 { font-size: 1.15rem; margin-bottom: 6px; }
.timeline p { font-size: 13.5px; margin: 0; }

/* Accreditation badges (placeholder slots) */
.badge-strip { display: flex; flex-wrap: wrap; gap: 14px; }
.badge {
  display: flex; align-items: center; gap: 10px;
  border: 1.5px dashed var(--taupe); border-radius: 12px;
  padding: 14px 20px; color: var(--grey);
  font: 600 12px/1.5 var(--sans); letter-spacing: .08em; text-transform: uppercase;
  background: var(--paper);
}
.badge svg { width: 22px; height: 22px; color: var(--taupe); flex: none; }

/* Quote banner */
.quote-banner { background: var(--ink); text-align: center; padding-block: clamp(56px, 7vw, 88px); }
.quote-banner h2 { color: var(--white); }
.quote-banner .script { color: var(--blush); }
.quote-banner p { color: #B9B2AA; max-width: 52ch; margin: 0 auto 28px; }

/* Service detail sections */
.service-section { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 4vw, 64px); align-items: center; padding-block: clamp(40px, 5vw, 64px); border-top: 1px solid var(--line); }
.service-section:first-of-type { border-top: 0; }
.service-section .ph { min-height: clamp(300px, 30vw, 420px); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.service-section.flip .service-media { order: 2; }
.check-list { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 9px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; }
.check-list svg { width: 18px; height: 18px; flex: none; color: var(--rose); margin-top: 3px; }
.suits { font-size: 13px; color: var(--taupe); font-weight: 600; letter-spacing: .04em; margin-bottom: 20px; }
.suits strong { color: var(--grey); text-transform: uppercase; font-size: 11px; letter-spacing: .16em; display: block; margin-bottom: 4px; }

/* Accordions */
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 4px;
  font-family: var(--serif); font-size: 1.12rem; font-weight: 700; color: var(--ink);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+"; flex: none;
  width: 34px; height: 34px; display: grid; place-items: center;
  font: 400 22px/1 var(--sans); color: var(--rose);
  border: 1.5px solid var(--rose); border-radius: 50%;
  transition: transform .2s ease;
}
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion .acc-body { padding: 0 4px 24px; font-size: 15px; max-width: 68ch; }
.acc-cat { margin-top: 40px; }
.acc-cat:first-of-type { margin-top: 0; }
.acc-cat h3 { font: 700 13px/1.4 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--rose); margin-bottom: 10px; }

/* Filter bar + project cards */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: clamp(28px, 4vw, 44px); }
.filter-bar button {
  font: 700 11.5px/1 var(--sans); letter-spacing: .1em; text-transform: uppercase;
  padding: 12px 18px; border-radius: var(--radius-pill); cursor: pointer;
  background: var(--white); color: var(--ink); border: 1px solid var(--line);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.filter-bar button:hover { border-color: var(--rose); color: var(--rose-dark); }
.filter-bar button.active { background: var(--ink); color: var(--white); border-color: var(--ink); }

.projects { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px, 3vw, 36px); }
.project-card[hidden] { display: none; }
.ba { display: grid; grid-template-columns: 1fr 1fr; }
.ba .ph { aspect-ratio: 4 / 3.2; }
.ba-label {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  font: 700 10px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase;
  padding: 8px 12px; border-radius: var(--radius-pill);
  background: rgba(17,17,17,.72); color: var(--white);
}
.ba .ph:last-child .ba-label { background: var(--rose); }
.project-body { padding: 26px 28px 30px; }
.project-meta { display: flex; flex-wrap: wrap; gap: 6px 18px; font: 600 11px/1.6 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--taupe); margin-bottom: 10px; }
.project-meta .loc { color: var(--rose); }
.project-body h3 { margin-bottom: 8px; }
.project-body p { font-size: 14.5px; }
.swatches { display: flex; align-items: center; gap: 8px; margin: 14px 0 20px; }
.swatches span { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--white); box-shadow: 0 0 0 1px var(--line), var(--shadow-card); }
.swatches .swatch-label { width: auto; height: auto; border: 0; box-shadow: none; border-radius: 0; font: 600 10.5px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--taupe); margin-right: 4px; }

/* Case study */
.case-study { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.case-study .ba .ph { aspect-ratio: 16 / 9.5; }
.case-body { padding: clamp(28px, 4vw, 48px); display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(28px, 4vw, 56px); }
.case-facts { display: grid; gap: 18px; align-content: start; }
.case-facts h4 { font: 700 11px/1.5 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--rose); margin: 0 0 4px; }
.case-facts p { font-size: 14px; margin: 0; }
.case-quote { border-left: 3px solid var(--rose); padding-left: 20px; font-style: italic; color: var(--grey); margin: 18px 0 0; }
.case-quote cite { display: block; font-style: normal; font: 600 11px/2 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--taupe); }

/* Review score panel */
.score-panel { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(24px, 4vw, 56px); text-align: center; }
.score-num { font: 800 clamp(3.4rem, 6vw, 4.6rem)/1 var(--serif); color: var(--ink); }
.score-panel .stars svg { width: 24px; height: 24px; }
.score-panel .sub { font-size: 13.5px; color: var(--taupe); font-weight: 600; }
.score-links { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* Featured testimonial */
.featured-quote { position: relative; }
.featured-quote .bigmark { font: 800 7rem/0.6 var(--serif); color: var(--rose); opacity: .25; display: block; height: .45em; }
.featured-quote blockquote { margin: 0 0 22px; font: italic 600 clamp(1.25rem, 2.2vw, 1.7rem)/1.6 var(--serif); color: var(--ink); }
.featured-quote footer { font: 600 12px/1.8 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--taupe); }

/* Video placeholders */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 28px); }
.video-thumb .ph { aspect-ratio: 16 / 9; }
.play-btn {
  position: absolute; z-index: 1; width: 62px; height: 62px; border-radius: 50%;
  background: var(--rose); display: grid; place-items: center;
  box-shadow: 0 12px 28px -8px rgba(217,78,120,.6);
}
.play-btn svg { width: 20px; height: 20px; color: var(--white); margin-left: 3px; }
.video-thumb figcaption { padding: 14px 4px 0; font-size: 13.5px; font-weight: 600; color: var(--grey); }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font: 700 11.5px/1.4 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--ink); }
.form-field label .req { color: var(--rose); }
.form-field input, .form-field select, .form-field textarea {
  font: 500 15px/1.5 var(--sans); color: var(--grey);
  background: var(--white); border: 1.5px solid var(--line); border-radius: 12px;
  padding: 13px 16px; width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px color-mix(in srgb, var(--rose) 18%, transparent);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input[type="file"] { padding: 11px 14px; background: var(--paper); }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; }
.consent input { width: 19px; height: 19px; margin-top: 2px; accent-color: var(--rose); flex: none; }
.form-success {
  grid-column: 1 / -1;
  background: var(--blush); border: 1px solid color-mix(in srgb, var(--rose) 35%, transparent);
  border-radius: 12px; padding: 16px 20px; font-size: 14.5px; font-weight: 600; color: var(--rose-dark);
}
.form-note { font-size: 12.5px; color: var(--taupe); margin-top: 10px; }

.enquiry-form {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-card); padding: clamp(28px, 4vw, 44px);
}
[id] { scroll-margin-top: 110px; } /* anchors clear the sticky header */

/* Contact page layout */
.contact-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(32px, 4vw, 64px); align-items: start; }
.contact-aside { display: grid; gap: 22px; }
.contact-aside .panel { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 30px; box-shadow: var(--shadow-card); }
.contact-aside h3 { font-size: 1.15rem; margin-bottom: 14px; }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; }
.contact-list svg { width: 17px; height: 17px; flex: none; color: var(--rose); margin-top: 4px; }
.contact-list a { color: var(--grey); text-decoration: none; }
.contact-list a:hover { color: var(--rose-dark); }

/* Kent map */
.kent-map { width: 100%; height: auto; }
.kent-map .land { fill: var(--blush); stroke: var(--rose); stroke-width: 1.5; stroke-dasharray: 6 5; }
.kent-map .dot { fill: var(--rose); }
.kent-map .ring { fill: none; stroke: var(--rose); opacity: .35; }
.kent-map text { font: 600 11px var(--sans); fill: var(--grey); letter-spacing: .04em; }
.kent-map .sea { font: italic 600 12px var(--serif); fill: var(--taupe); }

/* Reassurance strip */
.assure { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 28px); }
.assure-item { display: flex; gap: 14px; align-items: flex-start; }
.assure-item svg { width: 26px; height: 26px; flex: none; color: var(--rose); margin-top: 2px; }
.assure-item h3 { font-size: 1.05rem; margin-bottom: 4px; }
.assure-item p { font-size: 13.5px; margin: 0; }

/* Steps (what happens next) */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 28px); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .header-social { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .card-body p { min-height: 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(3) { border-left: 0; }
  .trust-item:nth-child(n+3) { border-top: 1px solid #2B2825; }
}
@media (max-width: 1024px) {
  .value-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .projects { grid-template-columns: 1fr; }
  .case-body { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .timeline li::after { display: none; }
}
@media (max-width: 900px) {
  .service-section { grid-template-columns: 1fr; }
  .service-section.flip .service-media { order: 0; }
  .contact-layout { grid-template-columns: 1fr; }
  .assure, .steps-grid { grid-template-columns: 1fr; }
  .filter-bar { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
  .filter-bar button { flex: none; }
  .hero-grid { grid-template-columns: 1fr; padding-block: 40px 0; }
  .hero-media {
    --bleed: 0px;
    min-height: clamp(280px, 52vw, 420px);
    border-radius: var(--radius);
    margin-inline: 0;
    -webkit-mask-image: none; mask-image: none;
  }
  .hero-logo { width: min(300px, 70%); }
  .split { grid-template-columns: 1fr; }
  .split-media { order: -1; }
}
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px -24px rgba(17,17,17,.3);
    display: none;
  }
  .site-header.nav-open .main-nav { display: block; }
  .site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .main-nav ul { flex-direction: column; gap: 0; padding: 12px 0; }
  .main-nav a { display: block; padding: 15px clamp(20px, 4vw, 40px); font-size: 13px; }
  .brand img { height: 52px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .services-grid, .gallery-grid, .trust-grid { grid-template-columns: 1fr; }
  .value-grid, .team-grid, .timeline, .form-grid, .ba { grid-template-columns: 1fr; }
  .form-field { grid-column: 1 / -1; }
  .timeline li { padding-top: 0; padding-left: 76px; text-align: left; }
  .timeline li::before { left: 0; transform: none; }
  .gallery-item:nth-child(even) { transform: none; }
  .trust-item { border-left: 0; border-top: 1px solid #2B2825; }
  .trust-item:first-child { border-top: 0; }
  .btn-row .btn { width: 100%; justify-content: center; }
}
