/* ==========================================================================
   DJT Property Services — homepage
   ========================================================================== */

:root {
  /* Brand */
  --ink: #2C4A57;
  --ink-deep: #15262C;
  --accent: #3A7C98;
  --accent-soft: #AEC6CF;
  --accent-pale: #E0E9EC;
  --gold: #E8A33D;

  /* Surfaces */
  --bg: #F6F5F0;
  --surface: #FFFFFF;
  --surface-muted: #E9EEF0;
  --hairline: rgba(44, 74, 87, 0.08);
  --hairline-strong: rgba(44, 74, 87, 0.22);

  /* Text */
  --text: #232824;
  --text-strong: #2C363B;
  --text-muted: #48535A;
  --text-soft: #68767D;
  --text-faint: #78868D;
  --on-dark: #F4F6F8;
  --on-dark-muted: #B2C4CB;

  /* Shape & motion */
  --radius-btn: 12px;
  --radius-card: 16px;
  --radius-panel: 20px;
  --shadow-card: 0 18px 40px rgba(17, 33, 40, 0.12);
  --shadow-lift: 0 22px 50px rgba(17, 33, 40, 0.14);
  --shadow-panel: 0 20px 50px rgba(17, 33, 40, 0.08);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --marquee-state: running;

  /* Layout */
  --container: 1220px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(72px, 9vw, 120px);

  /* Header metrics — updated on scroll by main.js */
  --header-pad: 12px;
  --header-logo-h: 76px;
  --header-shadow: none;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Instrument Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--accent); }
::selection { background: #D8E3E7; }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* A plain band on the page background, matching the homepage's section rhythm. */
.section { padding-block: var(--section-y); }

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 200;
  background: var(--ink);
  color: var(--on-dark);
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-btn) 0;
}
.skip-link:focus { left: 0; top: 0; color: var(--on-dark); }

/* --------------------------------------------------------------------------
   Typography primitives
   -------------------------------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', 'Instrument Sans', sans-serif;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

h2 {
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

p { margin: 0; text-wrap: pretty; }

.eyebrow {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-head h2 { margin-bottom: 16px; }
.section-head > p:last-child {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
}

.link-arrow {
  font-weight: 600;
  font-size: 16px;
  color: var(--accent);
  white-space: nowrap;
}
.link-arrow span { display: inline-block; transition: transform 0.25s var(--ease); }
.link-arrow:hover span { transform: translateX(4px); }

.tag {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.tag--light { background: var(--accent-pale); color: var(--ink); }
.tag--dark { background: var(--ink); color: #E5EDEF; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font: inherit;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-btn);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn--lg { font-size: 17px; padding: 16px 30px; }

.btn--accent { background: var(--accent); color: #FFFFFF; }
.btn--accent:hover {
  background: color-mix(in oklab, var(--accent), black 14%);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(44, 74, 87, 0.24);
}

.btn--ghost { border-color: rgba(244, 246, 248, 0.5); color: var(--on-dark); }
.btn--ghost:hover {
  background: rgba(244, 246, 248, 0.14);
  color: var(--on-dark);
  transform: translateY(-2px);
}

.btn--outline {
  border-color: var(--hairline-strong);
  color: var(--ink);
  font-size: 15.5px;
  padding: 13px 22px;
  width: fit-content;
}
.btn--outline:hover { background: rgba(44, 74, 87, 0.06); color: var(--ink); }

.btn:disabled { opacity: 0.6; cursor: progress; transform: none; }

/* --------------------------------------------------------------------------
   Photo placeholders
   Swap these blocks for real <img> elements once photography is shot.
   -------------------------------------------------------------------------- */

.photo-note {
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  margin: 0;
  border-radius: 6px;
  padding: 5px 10px;
}
.photo-note--hero {
  position: absolute;
  bottom: 18px;
  right: 22px;
  z-index: 2;
  color: rgba(240, 243, 246, 0.55);
  border: 1px dashed rgba(240, 243, 246, 0.35);
}
.photo-note--frame {
  position: absolute;
  bottom: 14px;
  left: 14px;
  color: #40525C;
  background: rgba(246, 245, 240, 0.85);
  border: 1px dashed rgba(44, 74, 87, 0.35);
}

.photo-frame {
  border-radius: var(--radius-panel);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(17, 33, 40, 0.14);
}
.photo-frame--team {
  aspect-ratio: 4 / 3.2;
  background:
    repeating-linear-gradient(135deg, rgba(44, 74, 87, 0.08) 0 2px, transparent 2px 15px),
    linear-gradient(155deg, #D3CEC4 0%, #B0A899 60%, #948D7E 100%);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(246, 245, 240, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
  box-shadow: var(--header-shadow);
  transition: box-shadow 0.3s ease;
}

.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--header-pad) var(--gutter);
  display: flex;
  align-items: center;
  gap: 28px;
  transition: padding 0.3s ease;
}

.site-header__logo { flex-shrink: 0; }
.site-header__logo img {
  height: var(--header-logo-h);
  width: auto;
  transition: height 0.3s ease;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
  margin-left: auto;
}
.site-nav a { font-size: 15px; font-weight: 500; }
.site-nav a[aria-current="page"],
.mobile-menu a[aria-current="page"] { color: var(--accent); font-weight: 600; }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.phone-link {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s ease, width 0.3s var(--ease);
}
.menu-toggle span:last-child { width: 14px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { width: 22px; transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  background: var(--bg);
  border-top: 1px solid var(--hairline);
  padding: 18px var(--gutter) 26px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 20px 40px rgba(17, 33, 40, 0.12);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu > a {
  padding: 12px 4px;
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid rgba(44, 74, 87, 0.07);
}
.mobile-menu > a:last-of-type { border-bottom: none; }
.mobile-menu__cta {
  margin-top: 14px;
  font-size: 16px;
  padding: 14px 20px;
  border-bottom: none;
}

@media (max-width: 1079px) {
  .site-nav,
  .site-header__cta { display: none; }
  .menu-toggle { display: flex; }
  .site-header__actions { margin-left: auto; gap: 16px; }
}
@media (min-width: 1080px) {
  .mobile-menu { display: none; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #1B2C33;
}

.hero__bg {
  position: absolute;
  inset: -4%;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 2px, transparent 2px 16px),
    radial-gradient(120% 90% at 75% 20%, #4A6875 0%, #334E5A 45%, #1E343D 100%);
  animation: heroZoom 32s ease-in-out infinite alternate;
  animation-play-state: var(--marquee-state);
}

/* Homepage hero slideshow: cross-fading image layers over the .hero__bg
   gradient fallback. Only the first is loaded eagerly; the rest are swapped
   in by JS. The .hero__scrim above keeps text readable over every image. */
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  will-change: opacity;
}
.hero__slide.is-active { opacity: 1; }

/* Per-image focal points. On desktop the hero crops vertically, so these set
   the vertical anchor to keep each subject in frame. */
.hero__slide--pergola   { object-position: center 30%; } /* pergola roof & posts */
.hero__slide--driveway  { object-position: center 72%; } /* the block paving */
.hero__slide--garden    { object-position: center 78%; } /* the finished lawn */
.hero__slide--shopfront { object-position: center 42%; } /* the shopfront fascia */

/* On phones the hero crops horizontally instead, so shift X where it helps;
   the Y is kept so the in-between (portrait tablet) range stays correct. */
@media (max-width: 720px) {
  .hero__slide--driveway { object-position: 58% 72%; }
  .hero__slide--garden   { object-position: 55% 78%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide { transition: none; }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(12, 22, 26, 0.30) 0%,
    rgba(10, 20, 25, 0.55) 55%,
    rgba(8, 17, 21, 0.82) 100%);
}

.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 180px var(--gutter) clamp(64px, 9vh, 110px);
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(244, 246, 248, 0.28);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(244, 246, 248, 0.88);
  margin: 0 0 26px;
}
.eyebrow-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.hero h1 {
  font-weight: 800;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--on-dark);
  margin: 0 0 22px;
  max-width: 15ch;
}

.hero__lede {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.6;
  color: rgba(238, 241, 245, 0.85);
  margin: 0 0 36px;
  max-width: 54ch;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 42px;
}

.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: rgba(238, 241, 245, 0.75);
}
.hero__points li { display: inline-flex; align-items: center; gap: 8px; }
.hero__points li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-soft);
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

/* --------------------------------------------------------------------------
   Page hero — the compact inner-page counterpart to .hero
   -------------------------------------------------------------------------- */

.page-hero {
  position: relative;
  overflow: hidden;
  background: #1B2C33;
}
.page-hero .hero__bg { animation: none; }

.page-hero__inner {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(150px, 16vw, 200px) var(--gutter) clamp(56px, 7vw, 88px);
}
.page-hero h1 {
  font-weight: 800;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--on-dark);
  margin: 0 0 20px;
  max-width: 18ch;
}
.page-hero__lede {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
  color: rgba(238, 241, 245, 0.85);
  margin: 0;
  max-width: 58ch;
}
.page-hero .eyebrow { color: var(--accent-soft); }
.page-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* --------------------------------------------------------------------------
   Service feature — a full-width block for the headline services
   -------------------------------------------------------------------------- */

.service-feature {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--hairline);
}
.service-feature:first-of-type { border-top: none; padding-top: 0; }

/* Alternate which side the media sits on, without reordering the DOM.
   Only once the block is genuinely two columns — stacked, media always leads. */
@media (min-width: 900px) {
  .service-feature:nth-of-type(even) .service-feature__media { order: 2; }
}

.service-feature__media { position: relative; }

.service-feature__copy h3 {
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.15;
  margin-bottom: 14px;
}
.service-feature__copy p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.service-feature__who {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 24px 0 10px;
}
.service-feature__copy .tick-list { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* Compact variant for the supporting services. */
.service-feature--compact { align-items: start; }
.service-feature--compact .photo-frame { aspect-ratio: 16 / 10; }

/* Photo placeholder tones — replace each with real photography. */
.photo-frame--building     { aspect-ratio: 4 / 3.2; background:
  repeating-linear-gradient(135deg, rgba(44, 74, 87, 0.08) 0 2px, transparent 2px 15px),
  linear-gradient(155deg, #C3C8CB 0%, #9AA5AB 60%, #77858D 100%); }
.photo-frame--maintenance  { aspect-ratio: 4 / 3.2; background:
  repeating-linear-gradient(135deg, rgba(44, 74, 87, 0.08) 0 2px, transparent 2px 15px),
  linear-gradient(155deg, #D3CEC4 0%, #AFAEA2 60%, #8C9089 100%); }
.photo-frame--waste        { background:
  repeating-linear-gradient(135deg, rgba(60, 58, 50, 0.09) 0 2px, transparent 2px 15px),
  linear-gradient(155deg, #B9B4A6 0%, #8E8C80 100%); }
.photo-frame--landscaping  { aspect-ratio: 4 / 3.2; background:
  repeating-linear-gradient(135deg, rgba(44, 74, 87, 0.08) 0 2px, transparent 2px 15px),
  linear-gradient(155deg, #A9C4A2 0%, #7C9E7E 60%, #5F8265 100%); }
.photo-frame--trees        { background:
  repeating-linear-gradient(135deg, rgba(44, 74, 87, 0.08) 0 2px, transparent 2px 15px),
  linear-gradient(155deg, #9FBC9B 0%, #6E9271 100%); }

/* Founder-story placeholder — a clearly-marked block for real copy later. */
.founder-placeholder {
  border: 1px dashed var(--hairline-strong);
  border-radius: var(--radius-card);
  padding: clamp(22px, 3vw, 32px);
  background: rgba(44, 74, 87, 0.03);
}
.founder-placeholder__tag {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.founder-placeholder p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.founder-placeholder ul {
  margin: 0 0 12px;
  padding-left: 20px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}
.founder-placeholder li { margin-bottom: 6px; }

/* --------------------------------------------------------------------------
   Stats strip
   -------------------------------------------------------------------------- */

.stats {
  background: var(--surface);
  border-bottom: 1px solid var(--hairline);
}
.stats__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(44px, 6vw, 72px) var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: clamp(28px, 4vw, 48px);
}
.stat { text-align: center; }
.stat__value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(42px, 4.5vw, 62px);
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat__suffix { color: var(--accent); }
.stat__star { color: var(--gold); font-size: 0.55em; vertical-align: 0.35em; }
.stat__label {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* --------------------------------------------------------------------------
   Why choose us
   -------------------------------------------------------------------------- */

.about { scroll-margin-top: 96px; }
.about__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--section-y) var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}

.about__media { position: relative; }
.about__badge {
  position: absolute;
  top: -16px;
  right: -10px;
  background: var(--ink);
  color: var(--on-dark);
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 14px 34px rgba(17, 33, 40, 0.28);
  transform: rotate(2deg);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.15;
}
.about__badge span { display: block; }
.about__badge span:last-child { color: var(--accent-soft); }

.about__copy h2 { margin-bottom: 20px; }
.about__copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.about__copy p:last-of-type { margin-bottom: 30px; }

.tick-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tick-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--text-strong);
}
.tick-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-pale);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}

/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */

.services {
  scroll-margin-top: 96px;
  background: var(--surface);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding-block: var(--section-y);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(440px, 100%), 1fr));
  gap: clamp(28px, 3.5vw, 44px);
  align-items: start;
}

.services__col-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 22px;
}
.services__col-head h3 { font-weight: 700; font-size: 24px; }
.services__col-head .tag { font-size: 12px; letter-spacing: 0.12em; padding: 6px 13px; }

.services__list { display: grid; gap: 16px; }

.service-card {
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: 24px 26px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }

.service-card h4 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
}
.service-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
}

.service-card__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card--dark {
  background: var(--ink);
  border-color: transparent;
}
.service-card--dark:hover { box-shadow: 0 18px 40px rgba(17, 33, 40, 0.28); }
.service-card--dark h4 { color: var(--on-dark); }
.service-card--dark p { color: var(--on-dark-muted); }
.service-card--dark .service-card__icon { background: rgba(230, 237, 240, 0.12); }

/* Abstract service glyphs — echo the design's geometric icon set. */
.glyph { display: block; }
.glyph--ring    { width: 16px; height: 16px; border-radius: 50%; border: 2.5px solid var(--accent-soft); }
.glyph--diamond { width: 15px; height: 15px; background: var(--accent-soft); border-radius: 3px; transform: rotate(45deg); }
.glyph--square  { width: 16px; height: 16px; background: var(--accent-soft); border-radius: 4px; }
.glyph--skip    { width: 16px; height: 8px;  background: var(--accent-soft); border-radius: 2px 2px 6px 6px; }

.services__contract {
  border: 1px dashed rgba(44, 74, 87, 0.3);
  border-radius: var(--radius-card);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.services__contract p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-muted);
}
.services__contract .link-arrow { font-size: 15px; }

/* --------------------------------------------------------------------------
   Coverage
   -------------------------------------------------------------------------- */

.coverage__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--section-y) var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}

.coverage h2 { margin-bottom: 18px; }
.coverage__lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.coverage__counties {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px 32px;
}
.coverage__counties h3 {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.coverage__counties h3::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.coverage__counties p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-soft);
}

/* Concentric "reach" diagram */
.radar {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 520px;
  justify-self: center;
}
.radar__ring { position: absolute; border-radius: 50%; }
.radar__ring--1 {
  inset: 0;
  border: 1px solid rgba(44, 74, 87, 0.12);
  background: radial-gradient(circle, rgba(174, 198, 207, 0.14) 0%, rgba(174, 198, 207, 0.03) 70%);
}
.radar__ring--2 { inset: 16%; border: 1px dashed rgba(44, 74, 87, 0.2); }
.radar__ring--3 { inset: 33%; border: 1px dashed rgba(44, 74, 87, 0.28); }

.radar__base {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 5px rgba(44, 74, 87, 0.15), 0 0 0 12px rgba(44, 74, 87, 0.06);
}
.radar__base-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 20px);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  white-space: nowrap;
}

.radar__pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid rgba(44, 74, 87, 0.1);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(17, 33, 40, 0.1);
  white-space: nowrap;
}
.radar__pin::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.radar__pin--derbys { top: 13%; left: 12%; }
.radar__pin--notts  { top: 24%; right: 4%; }
.radar__pin--leics  { bottom: 16%; right: 10%; }
.radar__pin--staffs { bottom: 22%; left: 4%; }

/* --------------------------------------------------------------------------
   Featured work
   -------------------------------------------------------------------------- */

.work {
  scroll-margin-top: 96px;
  background: var(--surface);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding-block: var(--section-y);
}

.work__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(36px, 4.5vw, 56px);
}
.work__head > div { max-width: 560px; }

.work__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: clamp(20px, 2.5vw, 32px);
}

.work-card {
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.work-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }

.work-card__shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 230px;
}
.work-card__shot {
  position: relative;
  overflow: hidden;
  background-size: cover;
  transition: transform 1s var(--ease);
}
.work-card__shot--after { border-left: 3px solid var(--bg); }
.work-card:hover .work-card__shot { transform: scale(1.06); }

/* Before/after placeholder tones — replace with real photography. */
.ba-1-before { background:
  repeating-linear-gradient(135deg, rgba(60, 58, 50, 0.1) 0 2px, transparent 2px 13px),
  linear-gradient(155deg, #B5AE9C 0%, #948D7B 100%); }
.ba-1-after  { background:
  repeating-linear-gradient(135deg, rgba(44, 74, 87, 0.09) 0 2px, transparent 2px 13px),
  linear-gradient(155deg, #A9C4A2 0%, #6F9573 100%); }
.ba-2-before { background:
  repeating-linear-gradient(135deg, rgba(60, 58, 50, 0.1) 0 2px, transparent 2px 13px),
  linear-gradient(155deg, #AFA69B 0%, #8A8177 100%); }
.ba-2-after  { background:
  repeating-linear-gradient(135deg, rgba(44, 74, 87, 0.09) 0 2px, transparent 2px 13px),
  linear-gradient(155deg, #C2CBBE 0%, #8FA491 100%); }
.ba-3-before { background:
  repeating-linear-gradient(135deg, rgba(60, 58, 50, 0.1) 0 2px, transparent 2px 13px),
  linear-gradient(155deg, #B0B3A3 0%, #86897B 100%); }
.ba-3-after  { background:
  repeating-linear-gradient(135deg, rgba(44, 74, 87, 0.09) 0 2px, transparent 2px 13px),
  linear-gradient(155deg, #9FBC9B 0%, #6E9271 100%); }

.work-card__stamp {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(35, 40, 36, 0.75);
  color: var(--on-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}
.work-card__stamp--after {
  left: auto;
  right: 12px;
  background: var(--accent);
  color: #FFFFFF;
}

.work-card__body { padding: 22px 24px 26px; }
.work-card__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
}
.work-card__title h3 { font-weight: 700; font-size: 19px; }
.work-card__body p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Reviews
   -------------------------------------------------------------------------- */

.reviews { background: var(--surface-muted); }
.reviews__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--section-y) var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.reviews__stage { min-height: 220px; }
.reviews__stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.reviews__quote {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: clamp(21px, 2vw, 26px);
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 22px;
  text-wrap: pretty;
}
.reviews__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.reviews__name { font-weight: 600; font-size: 16px; color: var(--text-strong); }
.reviews__loc { color: #87949B; font-size: 15px; }
.reviews__source {
  background: var(--surface);
  border: 1px solid rgba(44, 74, 87, 0.12);
  color: var(--text-muted);
  font-size: 12.5px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
}

.reviews__controls {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}
.reviews__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(44, 74, 87, 0.25);
  background: transparent;
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.25s ease;
}
.reviews__arrow:hover { background: rgba(44, 74, 87, 0.08); }

.reviews__dots {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: 6px;
}
.reviews__dot {
  width: 8px;
  height: 8px;
  border: none;
  padding: 0;
  border-radius: 999px;
  background: #C2D0D6;
  cursor: pointer;
  transition: width 0.3s var(--ease), background 0.3s ease;
}
.reviews__dot[aria-selected="true"] { width: 26px; background: var(--accent); }

.reviews__scores { display: grid; gap: 18px; align-content: center; }
.score-card {
  background: var(--surface);
  border: 1px solid rgba(44, 74, 87, 0.1);
  border-radius: 18px;
  padding: 28px 30px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 16px 40px rgba(17, 33, 40, 0.08);
}
.score-card--tilt-left { transform: rotate(-0.6deg); }
.score-card--tilt-right { transform: rotate(0.5deg); }

.score-card__badge {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.score-card__badge strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 24px;
}
.score-card__badge--checkatrade { background: #0A4B87; color: #FFFFFF; }
.score-card__badge--checkatrade span { font-size: 10px; letter-spacing: 0.08em; margin-top: 4px; opacity: 0.8; }
.score-card__badge--google {
  background: var(--bg);
  border: 1px solid rgba(44, 74, 87, 0.1);
  color: var(--ink);
}
.score-card__stars { font-size: 11px; color: var(--gold); margin-top: 4px; letter-spacing: 1px; }

.score-card h3 { font-weight: 700; font-size: 18px; margin-bottom: 4px; }
.score-card p { font-size: 14.5px; line-height: 1.5; color: var(--text-soft); }

/* --------------------------------------------------------------------------
   Trust marquee
   -------------------------------------------------------------------------- */

.trust {
  background: var(--surface);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  padding: 26px 0;
}
.trust__track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 34s linear infinite;
  animation-play-state: var(--marquee-state);
}
.trust:hover .trust__track { animation-play-state: paused; }

.trust__chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--bg);
  border: 1px solid rgba(44, 74, 87, 0.14);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-strong);
  white-space: nowrap;
}
.trust__chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
/* Hand-lettered wobble across the run of chips */
.trust__chip:nth-child(6n+1) { transform: rotate(-1deg); }
.trust__chip:nth-child(6n+2) { transform: rotate(0.8deg); }
.trust__chip:nth-child(6n+3) { transform: rotate(-0.6deg); }
.trust__chip:nth-child(6n+4) { transform: rotate(1deg); }
.trust__chip:nth-child(6n+5) { transform: rotate(-0.8deg); }
.trust__chip:nth-child(6n)   { transform: rotate(0.6deg); }

@keyframes marquee {
  to { transform: translateX(calc(-50% - 9px)); } /* half the track, plus half the gap */
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta-band { background: linear-gradient(150deg, #26424E 0%, #162A31 100%); }
.cta-band__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 90px) var(--gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-band__inner > div:first-child { max-width: 560px; }
.cta-band h2 {
  font-weight: 800;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.1;
  color: var(--on-dark);
  margin-bottom: 14px;
}
.cta-band p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--on-dark-muted);
}
.cta-band__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.cta-band .btn--accent:hover { background: color-mix(in oklab, var(--accent), white 12%); }
.cta-band__phone {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--on-dark);
}
.cta-band__phone:hover { color: var(--accent-soft); }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact {
  scroll-margin-top: 96px;
  padding-block: var(--section-y);
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

.contact-form {
  background: var(--surface);
  border: 1px solid rgba(44, 74, 87, 0.1);
  border-radius: var(--radius-panel);
  padding: clamp(26px, 3vw, 40px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  box-shadow: var(--shadow-panel);
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form label > span {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-strong);
}
.contact-form__wide { grid-column: 1 / -1; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #DAD8CC;
  border-radius: 10px;
  background: #FDFDFB;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(58, 124, 152, 0.18);
}
.contact-form input[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
  border-color: #C0574B;
  box-shadow: 0 0 0 3px rgba(192, 87, 75, 0.14);
}

.contact-form__footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.contact-form .btn { font-size: 16px; padding: 15px 32px; }
.contact-form__status {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--accent);
}
.contact-form__status[data-state="error"] { color: #C0574B; }

.contact__details { display: grid; gap: 26px; align-content: start; }
.contact__label {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 8px;
}
.contact__phone {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 2.6vw, 34px);
  color: var(--ink);
}
.contact__hours { font-size: 14.5px; color: var(--text-soft); margin-top: 6px; }
.contact__email { font-size: 17px; font-weight: 600; color: var(--ink); }
.contact__areas { font-size: 15.5px; line-height: 1.7; color: var(--text-muted); }

.fb-mark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--on-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.fb-mark--sm {
  width: 24px;
  height: 24px;
  font-size: 13px;
  background: rgba(244, 246, 248, 0.12);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--ink-deep);
  color: #A6B6BD;
}
.site-footer a { color: #A6B6BD; }
.site-footer a:hover { color: #E1E9EB; }

.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 72px) var(--gutter) 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}
.site-footer__logo {
  height: 96px;
  width: auto;
  margin-bottom: 14px;
}
.site-footer__inner p {
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 34ch;
}
.site-footer__heading {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #788F99;
  margin-bottom: 14px;
}
.site-footer__stack {
  display: grid;
  gap: 8px;
  font-size: 15px;
}
.site-footer__phone { color: #E1E9EB; font-weight: 600; }
.site-footer__phone:hover { color: #FFFFFF; }
.site-footer__social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.site-footer__bar {
  max-width: var(--container);
  margin: 44px auto 0;
  padding: 28px var(--gutter) 34px;
  border-top: 1px solid rgba(244, 246, 248, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 13.5px;
  color: #788F99;
}
.site-footer__bar a { color: #788F99; }

/* --------------------------------------------------------------------------
   Scroll reveal + reduced motion
   -------------------------------------------------------------------------- */

.reveal.is-hidden {
  opacity: 0;
  transform: translateY(26px);
}
.reveal {
  transition: opacity 0.8s ease, transform 0.8s var(--ease);
}

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

/* --------------------------------------------------------------------------
   Small screens
   -------------------------------------------------------------------------- */

@media (max-width: 720px) {
  .hero__inner { padding-top: 150px; }
  .about__badge { top: -12px; right: 0; padding: 12px 16px; font-size: 19px; }
  .work-card__shots { height: 190px; }
  .score-card { padding: 22px; gap: 18px; }
  .cta-band__actions { width: 100%; }
  .radar { max-width: 380px; }
  .radar__pin { font-size: 12px; padding: 6px 12px; }
}

/* --------------------------------------------------------------------------
   Rowells Group footer credit (dark-background variant)
   -------------------------------------------------------------------------- */
.rg-credit{--rg-sweep-dur:3.2s;position:relative;display:inline-flex;align-items:center;gap:0.5em;text-decoration:none;font:400 13px/1 -apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue",Arial,sans-serif;color:rgba(226,229,236,0.5);}
.rg-credit__c{font-size:0.95em;opacity:0.75;position:relative;z-index:2;}
.rg-credit__t{position:relative;z-index:2;}
.rg-orbit{position:absolute;inset:0;pointer-events:none;}
.rg-credit__mark{height:0.705em;width:auto;display:block;flex:none;line-height:0;opacity:0.9;transition:opacity 0.45s ease;position:relative;z-index:4;}
.rg-credit:hover .rg-credit__mark{opacity:1;}
.rg-credit__hero{font-weight:700;letter-spacing:0.015em;color:#AFB4C0;position:relative;display:inline-block;line-height:1;vertical-align:baseline;-webkit-text-fill-color:transparent;}
.rg-credit__hero-g{position:absolute;left:0;top:0;width:100%;height:100%;-webkit-text-fill-color:currentColor;-webkit-mask-image:linear-gradient(90deg,#000 25%,transparent 33%,transparent 67%,#000 75%);mask-image:linear-gradient(90deg,#000 25%,transparent 33%,transparent 67%,#000 75%);-webkit-mask-size:400% 100%;mask-size:400% 100%;-webkit-mask-position:100% 0;mask-position:100% 0;transition:-webkit-mask-position 2.4s linear,mask-position 2.4s linear;pointer-events:none;}
.rg-credit__hero-x{position:absolute;left:0;top:0;width:100%;height:100%;color:transparent;background-image:linear-gradient(90deg,#1915EB 0%,#1915EB 7%,#4A8FE7 14%,#4A8FE7 21%,#3FBFA0 29%,#3FBFA0 36%,#7BBE3F 43%,#7BBE3F 50%,#EFA227 57%,#EFA227 64%,#E23A97 71%,#E23A97 78%,#C8177B 86%,#C8177B 93%,#1915EB 100%);background-size:200% 100%;background-position:0% 50%;background-repeat:repeat-x;-webkit-background-clip:text;background-clip:text;animation:rg-sweep var(--rg-sweep-dur) linear infinite paused;-webkit-mask-image:linear-gradient(90deg,transparent 25%,#000 33%,#000 67%,transparent 75%);mask-image:linear-gradient(90deg,transparent 25%,#000 33%,#000 67%,transparent 75%);-webkit-mask-size:400% 100%;mask-size:400% 100%;-webkit-mask-position:100% 0;mask-position:100% 0;transition:-webkit-mask-position 2.4s linear,mask-position 2.4s linear;pointer-events:none;}
.rg-credit.rg-sweep-in .rg-credit__hero-x{-webkit-mask-position:50% 0;mask-position:50% 0;animation-play-state:running;}
.rg-credit.rg-sweep-out .rg-credit__hero-x{-webkit-mask-position:0% 0;mask-position:0% 0;animation-play-state:running;}
.rg-credit.rg-noanim .rg-credit__hero-x{transition:none;}
.rg-credit.rg-sweep-in .rg-credit__hero-g{-webkit-mask-position:50% 0;mask-position:50% 0;}
.rg-credit.rg-sweep-out .rg-credit__hero-g{-webkit-mask-position:0% 0;mask-position:0% 0;}
.rg-credit.rg-noanim .rg-credit__hero-g{transition:none;}
.rg-credit:focus-visible{outline:2px solid #4A8FE7;outline-offset:4px;border-radius:2px;}
@keyframes rg-sweep{from{background-position-x:0%;}to{background-position-x:-200%;}}
.rg-light .rg-credit{color:rgba(28,32,44,0.55);}
.rg-light .rg-credit__hero{color:#6B7080;}
@media (prefers-reduced-motion:reduce){.rg-credit__hero-x{animation:none;transition:none;}.rg-credit__hero-g{transition:none;}.rg-credit:hover .rg-credit__hero-x{-webkit-mask-image:none;mask-image:none;}.rg-credit:hover .rg-credit__hero-g{opacity:0;}}

/* ----------------------------------------------------------------------------
   Real photography — sizes <img> to fill the existing photo frames and the
   before/after cells. Additive only: rounding, shadow, aspect-ratio and the
   hover-zoom all come from the rules above; these just fit the image inside.
   -------------------------------------------------------------------------- */
.photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-card__shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
