/* ==========================================================================
   Code Lime Photography – Phase 4 mockup stylesheet
   Implements 03-design/design-system.md exactly.
   Display: Bricolage Grotesque · Body: Spline Sans (both Google Fonts).
   border-radius: 0 everywhere. No backdrop-filter. No ambient animation.
   ========================================================================== */

/* ---- 9. Tokens (single :root block) ------------------------------------ */
:root {
  /* Fonts */
  --font-display: "Bricolage Grotesque", "Arial Narrow", system-ui, sans-serif;
  --font-body:    "Spline Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --fw-regular: 400; --fw-medium: 500; --fw-semibold: 600; --fw-bold: 700; --fw-extra: 800;

  /* Type scale */
  --fs-display: clamp(2.5rem, 1.4rem + 4.9vw, 4.5rem);
  --fs-h1:      clamp(2.125rem, 1.5rem + 2.8vw, 3.25rem);
  --fs-h2:      clamp(1.75rem, 1.4rem + 1.6vw, 2.375rem);
  --fs-h3:      clamp(1.4375rem, 1.3rem + 0.6vw, 1.75rem);
  --fs-h4: 1.3125rem; --fs-h5: 1.0625rem; --fs-h6: 0.9375rem;
  --fs-lead: clamp(1.0625rem, 1rem + 0.4vw, 1.25rem);
  --fs-body: 1rem; --fs-small: 0.875rem; --fs-xs: 0.75rem; --fs-overline: 0.75rem;

  --lh-display: 1.02; --lh-h1: 1.06; --lh-h2: 1.1; --lh-h3: 1.16; --lh-h4: 1.25;
  --lh-tight: 1.3; --lh-lead: 1.55; --lh-body: 1.65;
  --ls-display: -0.02em; --ls-h1: -0.018em; --ls-h2: -0.015em; --ls-h3: -0.01em;
  --ls-h4: -0.005em; --ls-body: 0; --ls-overline: 0.14em;

  /* Colour: backgrounds & surfaces */
  --bg: #F6F5F1; --bg-sunk: #EFEDE6; --surface: #FFFFFF; --surface-dark: #16150F;
  /* Colour: ink */
  --ink: #16150F; --ink-2: #3A382F; --muted: #6E6B60;
  --ink-invert: #F6F5F1; --muted-invert: #B9B5A7;
  /* Colour: lines */
  --line: #D9D6CC; --line-strong: #B9B5A7; --line-invert: #36342B;
  /* Colour: accent (olive-lime) */
  --accent: #5E6B2F; --accent-ink: #48531F; --accent-wash: #EBEDDF; --accent-hover: #4B5626;
  /* Colour: terracotta (Fine Art) */
  --terracotta: #9E5234; --terracotta-ink: #7E4026;
  /* Focus & status */
  --focus-ring: #48531F; --success: #3F6B2B; --error: #9A2D1F;

  /* Spacing */
  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem; --space-4: 1rem;
  --space-5: 1.5rem; --space-6: 2rem; --space-7: 3rem; --space-8: 4rem;
  --space-9: 6rem; --space-10: 8rem;
  --section-y: clamp(3rem, 6vw, 6rem);

  /* Layout */
  --container: 1280px; --container-pad: clamp(1rem, 4vw, 2.5rem);
  --gutter: clamp(1rem, 2.5vw, 2rem);

  /* Elevation */
  --shadow-card: 0 1px 0 rgba(22,21,15,0.04);
  --shadow-hover: 0 8px 24px rgba(22,21,15,0.10);

  /* Motion */
  --t-fast: 120ms; --t-base: 180ms; --t-slow: 260ms;
  --ease: cubic-bezier(0.2, 0, 0, 1);
}

/* ---- 4.4 Global reset --------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  border-radius: 0 !important;   /* hard constraint, enforced globally */
}
* { margin: 0; }

html { font-size: 100%; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: var(--fw-regular);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

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

a { color: var(--accent-ink); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--accent-hover); }

button { font-family: inherit; }

ul, ol { margin: 0; padding: 0; }

/* ---- 1.5 Base type rules ----------------------------------------------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: var(--fw-bold); margin: 0; }
h4, h5, h6 { font-family: var(--font-body); font-weight: var(--fw-semibold); margin: 0; }

.display  { font-family: var(--font-display); font-weight: var(--fw-extra);
            font-size: var(--fs-display); line-height: var(--lh-display);
            letter-spacing: var(--ls-display); }
h1, .h1   { font-size: var(--fs-h1); line-height: var(--lh-h1); letter-spacing: var(--ls-h1); }
h2, .h2   { font-size: var(--fs-h2); line-height: var(--lh-h2); letter-spacing: var(--ls-h2); }
h3, .h3   { font-size: var(--fs-h3); line-height: var(--lh-h3); letter-spacing: var(--ls-h3); }
h4, .h4   { font-size: var(--fs-h4); line-height: var(--lh-h4); letter-spacing: var(--ls-h4); font-family: var(--font-body); font-weight: var(--fw-semibold); }
h5, .h5   { font-size: var(--fs-h5); line-height: var(--lh-tight); }
h6, .h6   { font-size: var(--fs-h6); line-height: var(--lh-tight); letter-spacing: 0.01em; }

.lead  { font-size: var(--fs-lead); line-height: var(--lh-lead); color: var(--ink-2); }
small, .small { font-size: var(--fs-small); line-height: 1.55; }
.xs    { font-size: var(--fs-xs); line-height: 1.5; letter-spacing: 0.01em; }

.overline {
  font-family: var(--font-body);
  font-size: var(--fs-overline);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-overline);
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--accent-ink);
  display: inline-block;
}

p { margin: 0 0 1rem; max-width: 68ch; }
p:last-child { margin-bottom: 0; }

strong, b { font-weight: var(--fw-semibold); }

/* ---- 6. Accessibility baseline ----------------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--ink-invert);
  padding: var(--space-3) var(--space-5);
  z-index: 1000;
  font-weight: var(--fw-semibold);
  text-decoration: none;
}
.skip-link:focus {
  left: var(--space-4);
  top: var(--space-4);
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 2px; }
:focus:not(:focus-visible) { outline: none; }

.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;
}

/* ---- 4.2 Container, sections, grid ------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.container--narrow { max-width: 880px; }

.section { padding-block: var(--section-y); }
.section--sunk { background: var(--bg-sunk); }
.section--accent { background: var(--accent-wash); }
.section--dark { background: var(--surface-dark); color: var(--ink-invert); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--ink-invert); }
.section--dark .lead { color: var(--muted-invert); }
.section--dark .overline { color: #BFC79B; }

.grid { display: grid; gap: var(--gutter); grid-template-columns: 1fr; }
@media (min-width: 480px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px)  { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1080px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* ---- 7.8 Section heads / rules ----------------------------------------- */
.section-head { display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-7); max-width: 60ch; }
.section-head .overline { color: var(--accent-ink); }
.rule { height: 1px; background: var(--line); border: 0; margin: var(--space-7) 0; }

/* ---- 3. Motif: crop-mark corner bracket -------------------------------- */
.crop { position: relative; }
.crop::before, .crop::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid var(--accent);
  pointer-events: none;
  z-index: 2;
}
.crop::before { top: -2px; left: -2px; border-right: 0; border-bottom: 0; }
.crop::after  { right: -2px; bottom: -2px; border-left: 0; border-top: 0; }
.crop--art::before, .crop--art::after { border-color: var(--terracotta); }
.crop--lg::before, .crop--lg::after { width: 40px; height: 40px; border-width: 3px; }

/* Section divider tick */
.divider {
  display: block;
  width: 18px; height: 18px;
  margin: clamp(2.5rem, 5vw, 4.5rem) auto;
  border-left: 2px solid var(--line-strong);
  border-bottom: 2px solid var(--line-strong);
}
.divider--start { margin-left: 0; border-left-color: var(--accent); border-bottom-color: var(--accent); }

/* ---- 7.1 Buttons ------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 48px;
  padding: 0 var(--space-5);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.005em;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--ink-invert);
  transition: background var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease),
              color var(--t-base) var(--ease),
              transform var(--t-fast) var(--ease);
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: var(--ink-invert); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 3px; }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--ink-invert); }

.btn--call { background: transparent; color: var(--ink); border-color: var(--accent); }
.btn--call:hover { background: var(--accent); color: var(--ink-invert); border-color: var(--accent); transform: translateY(-1px); }
.btn--call .tick { color: var(--accent); }
.btn--call:hover .tick { color: var(--ink-invert); }

.btn--invert { background: var(--ink-invert); color: var(--ink); border-color: var(--ink-invert); }
.btn--invert:hover { background: var(--accent); color: var(--ink-invert); border-color: var(--accent); }

@media (max-width: 480px) { .btn--block-sm { width: 100%; } }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-3); }

/* ---- 7.2 Navigation (desktop) ------------------------------------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.nav.is-condensed { box-shadow: 0 1px 0 rgba(22,21,15,0.08), 0 6px 16px rgba(22,21,15,0.06); border-bottom-color: var(--line-strong); }
.nav__inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  min-height: 72px;
  padding-inline: var(--container-pad);
  max-width: var(--container);
  margin-inline: auto;
  transition: min-height var(--t-base) var(--ease);
}
.nav.is-condensed .nav__inner { min-height: 60px; }
.nav__logo { margin-right: auto; display: inline-flex; align-items: center; }
.nav__logo svg { height: 30px; width: auto; display: block; }

.nav__list { display: flex; gap: var(--space-5); list-style: none; margin: 0; padding: 0; }
.nav__item { position: relative; }
.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 var(--space-1);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 8px;
  height: 2px;
  background: var(--accent);
  transition: right var(--t-base) var(--ease);
}
.nav__link:hover::after { right: 0; }
.nav__link[aria-current="page"] { color: var(--accent-ink); }
.nav__link[aria-current="page"]::after { right: 0; background: var(--accent); }

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-hover);
  padding: var(--space-3);
  display: none;
  z-index: 120;
}
.nav__item:hover > .nav__dropdown,
.nav__item:focus-within > .nav__dropdown { display: block; }
.nav__dropdown a {
  display: block;
  min-height: 44px;
  line-height: 44px;
  padding-inline: var(--space-3);
  color: var(--ink);
  text-decoration: none;
  font-size: var(--fs-small);
}
.nav__dropdown a:hover { background: var(--bg-sunk); color: var(--accent-ink); }
.nav__dropdown a.is-divider { border-top: 1px solid var(--line); margin-top: var(--space-2); padding-top: var(--space-2); color: var(--accent-ink); font-weight: var(--fw-semibold); }

.nav__toggle { display: none; }
.nav__cta-desktop { white-space: nowrap; }

@media (max-width: 900px) {
  .nav__list, .nav__cta-desktop { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__mobile-call { display: inline-flex; }
}
.nav__mobile-actions { display: none; align-items: center; gap: var(--space-2); }
@media (max-width: 900px) { .nav__mobile-actions { display: inline-flex; } }
.nav__icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; min-height: 44px;
  border: 2px solid var(--accent);
  background: transparent; color: var(--ink);
  text-decoration: none;
  transition: background var(--t-base) var(--ease), color var(--t-base) var(--ease);
}
.nav__icon-btn:hover { background: var(--accent); color: var(--ink-invert); }
.nav__icon-btn svg { width: 20px; height: 20px; }

/* ---- 7.3 Navigation (mobile) ------------------------------------------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  padding: var(--space-6) var(--container-pad);
  display: none;
  overflow-y: auto;
}
.mobile-menu[data-open="true"] { display: block; }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-6); }
.mobile-menu__top svg { height: 30px; width: auto; }
.mobile-menu__close {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 48px; min-height: 48px;
  border: 2px solid var(--ink); background: transparent; color: var(--ink);
  font-family: var(--font-body); font-weight: var(--fw-semibold); cursor: pointer;
}
.mobile-menu__close:hover { background: var(--ink); color: var(--ink-invert); }
.mobile-menu__list { list-style: none; margin: 0; padding: 0; }
.mobile-menu__list > li > a,
.mobile-menu__acc-btn {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 56px;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  background: transparent; border-left: 0; border-right: 0; border-top: 0;
  cursor: pointer; text-align: left;
  justify-content: space-between; gap: var(--space-3);
}
.mobile-menu__list > li > a:hover,
.mobile-menu__acc-btn:hover { color: var(--accent-ink); }
.mobile-menu__acc-btn .chev { transition: transform var(--t-base) var(--ease); font-size: 1rem; }
.mobile-menu__acc-btn[aria-expanded="true"] .chev { transform: rotate(180deg); }
.mobile-menu__sub { list-style: none; margin: 0; padding-left: var(--space-4); display: none; }
.mobile-menu__sub[data-open="true"] { display: block; }
.mobile-menu__sub a {
  display: flex; align-items: center; min-height: 48px;
  font-family: var(--font-body); font-size: var(--fs-h5); font-weight: var(--fw-medium);
  color: var(--ink-2); text-decoration: none; border-bottom: 1px solid var(--line);
}
.mobile-menu__sub a:hover { color: var(--accent-ink); }
.mobile-menu__cta { display: grid; gap: var(--space-3); margin-top: var(--space-6); }

/* ---- 7.4 Hero ---------------------------------------------------------- */
.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(420px, 70vh, 720px);
  background: var(--bg-sunk);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(22,21,15,0.66) 0%, rgba(22,21,15,0.34) 46%, rgba(22,21,15,0.06) 78%);
}
.hero__inner {
  position: relative;
  max-width: var(--container);
  margin-inline: auto;
  width: 100%;
  padding: var(--space-8) var(--container-pad);
}
.hero__content { max-width: 40rem; color: var(--ink-invert); }
.hero__eyebrow { color: var(--ink-invert); opacity: 0.88; margin-bottom: var(--space-4); }
.hero h1 { color: var(--ink-invert); margin-bottom: var(--space-4); }
.hero__sub { color: var(--ink-invert); opacity: 0.94; margin-bottom: var(--space-6); max-width: 36rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.hero__actions .btn { border-color: var(--ink-invert); }
.hero__actions .btn:not(.btn--call) { background: var(--ink-invert); color: var(--ink); }
.hero__actions .btn:not(.btn--call):hover { background: var(--accent); color: var(--ink-invert); border-color: var(--accent); }
.hero__actions .btn--call { color: var(--ink-invert); border-color: var(--ink-invert); }
.hero__actions .btn--call .tick { color: #BFC79B; }
.hero__actions .btn--call:hover { background: var(--ink-invert); color: var(--ink); }
.hero__actions .btn--call:hover .tick { color: var(--accent-ink); }

/* Compact page hero (interior pages, no big image) */
.page-hero { position: relative; background: var(--bg-sunk); border-bottom: 1px solid var(--line); overflow: hidden; }
.page-hero__inner { position: relative; padding-block: clamp(2.5rem, 6vw, 5rem); }
.page-hero .overline { margin-bottom: var(--space-3); }
.page-hero h1 { margin-bottom: var(--space-4); max-width: 22ch; }
.page-hero .lead { max-width: 60ch; }
.page-hero__actions { margin-top: var(--space-6); }
.page-hero--media { background: var(--surface-dark); border-bottom: 0; }
.page-hero--media .page-hero__bg { position: absolute; inset: 0; }
.page-hero--media .page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero--media .page-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(22,21,15,0.78) 0%, rgba(22,21,15,0.5) 50%, rgba(22,21,15,0.2) 100%);
}
.page-hero--media .overline { color: #BFC79B; }
.page-hero--media h1, .page-hero--media .lead { color: var(--ink-invert); }
.page-hero--media .lead { opacity: 0.94; }

/* ---- Breadcrumbs ------------------------------------------------------- */
.crumbs { font-size: var(--fs-small); color: var(--muted); padding-block: var(--space-4); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: var(--space-2); list-style: none; margin: 0; padding: 0; }
.crumbs a { color: var(--ink-2); text-decoration: none; }
.crumbs a:hover { color: var(--accent-ink); }
.crumbs [aria-current="page"] { color: var(--muted); }
.crumbs .sep { color: var(--line-strong); }

/* ---- 7.5 Service / product cards --------------------------------------- */
.card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: border-color var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease),
              transform var(--t-fast) var(--ease);
}
.card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.card:focus-within { box-shadow: var(--shadow-hover); }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-sunk); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.card:hover .card__media img { transform: scale(1.03); }
.card__body { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-2); flex: 1; }
.card__kicker { color: var(--muted); }
.card__title { color: var(--ink); }
.card:hover .card__title { color: var(--accent-ink); }
.card__desc { color: var(--ink-2); font-size: var(--fs-small); }
.card__meta { margin-top: auto; padding-top: var(--space-3); color: var(--muted); font-size: var(--fs-small); }

/* ---- 7.6 Category cards (three streams) -------------------------------- */
.cat-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  padding: var(--space-6);
  text-decoration: none; color: var(--ink);
  min-height: 220px;
  transition: border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), transform var(--t-fast) var(--ease);
}
.cat-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.cat-card__kicker { color: var(--muted); margin-bottom: var(--space-3); }
.cat-card__title { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: var(--fw-bold); margin-bottom: var(--space-3); line-height: var(--lh-h3); letter-spacing: var(--ls-h3); }
.cat-card__desc { color: var(--ink-2); }
.cat-card__cta { margin-top: auto; padding-top: var(--space-4); font-weight: var(--fw-semibold); color: var(--accent-ink); }
.cat-card:hover .cat-card__cta { color: var(--accent-hover); }
.cat-card--art { border-left-color: var(--terracotta); }
.cat-card--art .cat-card__cta { color: var(--terracotta-ink); }

/* ---- 7.7 Course-grid row ----------------------------------------------- */
.course-list { border-top: 1px solid var(--line); }
.course-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-2) var(--space-5);
  align-items: center;
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--line);
}
.course-row__name { font-family: var(--font-body); font-size: var(--fs-h4); font-weight: var(--fw-semibold); color: var(--ink); }
.course-row__meta { color: var(--muted); font-size: var(--fs-small); }
.course-row__price { font-weight: var(--fw-semibold); color: var(--ink); font-size: var(--fs-h5); }
.course-row__chip {
  display: inline-flex; align-items: center; min-height: 28px; padding: 0 var(--space-3);
  border: 1px solid var(--line-strong); font-size: var(--fs-xs); font-weight: var(--fw-medium); color: var(--ink-2);
}
.course-row .btn { min-height: 44px; padding: 0 var(--space-4); }
@media (min-width: 768px) { .course-row { grid-template-columns: 2.4fr 0.8fr 0.9fr auto; } }

/* ---- 7.9 Testimonials -------------------------------------------------- */
.quote {
  border-top: 2px solid var(--accent);
  padding-top: var(--space-5);
  max-width: 46rem;
}
.quote--art { border-top-color: var(--terracotta); }
.quote__text {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: var(--fw-regular);
  line-height: 1.3;
  letter-spacing: var(--ls-h3);
  color: var(--ink);
  margin: 0 0 var(--space-4);
  max-width: none;
}
.quote__cite { font-style: normal; color: var(--ink-2); font-size: var(--fs-small); }
.quote__cite b { color: var(--ink); font-weight: var(--fw-semibold); }
.quote-strip { display: grid; gap: var(--space-7); }
@media (min-width: 768px) { .quote-strip { grid-template-columns: 1fr 1fr; gap: var(--space-8); } }

/* ---- 7.10 Client wall -------------------------------------------------- */
.client-wall { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
@media (min-width: 480px) { .client-wall { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .client-wall { grid-template-columns: repeat(4, 1fr); } }
.client-wall__item {
  display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: 84px; padding: var(--space-4);
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  font-weight: var(--fw-medium); color: var(--ink-2); font-size: var(--fs-small);
  transition: color var(--t-base) var(--ease), background var(--t-base) var(--ease);
}
.client-wall__item:hover { color: var(--accent-ink); background: var(--accent-wash); }

/* ---- Feature list (checklist with crop ticks) -------------------------- */
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-4); }
.feature-list li { position: relative; padding-left: var(--space-6); color: var(--ink-2); max-width: 64ch; }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 0.45em;
  width: 12px; height: 12px;
  border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
}
.feature-list li strong { color: var(--ink); }

/* Proof band: bordered cells */
.proof-grid { display: grid; gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
@media (min-width: 600px)  { .proof-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .proof-grid { grid-template-columns: repeat(4, 1fr); } }
.proof-cell { padding: var(--space-6); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-cell h3 { font-size: var(--fs-h4); margin-bottom: var(--space-3); }
.proof-cell p { color: var(--ink-2); font-size: var(--fs-small); margin: 0; }

/* Two-column split (text + media) */
.split { display: grid; gap: var(--space-7); align-items: start; }
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr 0.95fr; gap: var(--space-8); align-items: center; } .split--text-right { direction: rtl; } .split--text-right > * { direction: ltr; } }
.split__media { position: relative; background: var(--bg-sunk); }
.split__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.split__media figcaption { font-size: var(--fs-xs); color: var(--muted); padding-top: var(--space-2); }

/* Portrait placeholder (no confirmed headshot of Serena; CSS-only motif) */
.portrait-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  aspect-ratio: 4 / 5;
  background:
    repeating-linear-gradient(45deg, var(--bg-sunk) 0, var(--bg-sunk) 14px, #E8E5DC 14px, #E8E5DC 28px);
  border: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  padding: var(--space-6);
}
.portrait-placeholder__mark {
  width: 56px; height: 56px;
  border-left: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
}
.portrait-placeholder__label {
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  color: var(--ink-2);
  line-height: 1.3;
}

/* Portfolio mosaic */
.mosaic { display: grid; gap: var(--gutter); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px)  { .mosaic { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1080px) { .mosaic { grid-template-columns: repeat(4, 1fr); } }
.mosaic__item { position: relative; display: block; overflow: hidden; background: var(--bg-sunk); border: 1px solid var(--line); }
.mosaic__item img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.mosaic__item:hover img { transform: scale(1.04); }
.mosaic__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: var(--space-3) var(--space-4);
  background: linear-gradient(0deg, rgba(22,21,15,0.78), rgba(22,21,15,0));
  color: var(--ink-invert);
  font-size: var(--fs-xs); font-weight: var(--fw-semibold); letter-spacing: 0.04em; text-transform: uppercase;
  opacity: 0; transform: translateY(6px);
  transition: opacity var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.mosaic__item:hover .mosaic__cap, .mosaic__item:focus-visible .mosaic__cap { opacity: 1; transform: translateY(0); }

/* Gallery strip (real estate page) */
.gallery { display: grid; gap: var(--gutter); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery figure { margin: 0; }
.gallery img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border: 1px solid var(--line); }

/* ---- 7.12 Forms -------------------------------------------------------- */
.form { background: var(--surface); border: 1px solid var(--line); padding: clamp(1.5rem, 4vw, 2.5rem); }
.field { display: grid; gap: var(--space-2); margin-bottom: var(--space-5); }
.field label { font-weight: var(--fw-semibold); font-size: var(--fs-small); color: var(--ink); }
.field .req { color: var(--terracotta-ink); }
.field-row { display: grid; gap: var(--space-5); }
@media (min-width: 600px) { .field-row { grid-template-columns: 1fr 1fr; } }
.input, .textarea, .select {
  width: 100%;
  min-height: 48px;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-strong);
}
.textarea { min-height: 140px; padding-top: var(--space-3); resize: vertical; }
.input::placeholder, .textarea::placeholder { color: var(--muted); }
.input:hover, .textarea:hover, .select:hover { border-color: var(--ink-2); }
.input:focus-visible, .textarea:focus-visible, .select:focus-visible {
  outline: 2px solid var(--focus-ring); outline-offset: 1px; border-color: var(--accent);
}
.field--error .input, .field--error .textarea { border-color: var(--error); }
.field__error { color: var(--error); font-size: var(--fs-small); }
.field__error::before { content: "! "; font-weight: var(--fw-bold); }
.field__hint { color: var(--muted); font-size: var(--fs-small); }
.form__success {
  display: none;
  border-left: 3px solid var(--success); background: var(--accent-wash);
  padding: var(--space-5); margin-bottom: var(--space-5); color: var(--ink);
}
.form__success.is-visible { display: block; }
.form__success::before { content: "\2713  "; color: var(--success); font-weight: var(--fw-bold); }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Contact info card */
.info-card { background: var(--surface); border: 1px solid var(--line); padding: clamp(1.5rem, 4vw, 2rem); }
.info-card h2 { font-size: var(--fs-h3); margin-bottom: var(--space-4); }
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-4); }
.info-list li { display: grid; gap: var(--space-1); }
.info-list .k { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: var(--fw-semibold); }
.info-list .v { color: var(--ink); font-size: var(--fs-body); }
.info-list a { color: var(--accent-ink); }

.map-embed { border: 1px solid var(--line); width: 100%; aspect-ratio: 16 / 9; background: var(--bg-sunk); display: block; }

/* Newsletter inline form */
.newsletter-form { display: grid; gap: var(--space-3); }
@media (min-width: 520px) { .newsletter-form { grid-template-columns: 1fr auto; align-items: start; } }

/* ---- Pricing inline strip ---------------------------------------------- */
.pricing-row { display: flex; flex-wrap: wrap; gap: var(--space-5); align-items: baseline; }
.price-tag { font-family: var(--font-display); font-size: var(--fs-h2); font-weight: var(--fw-bold); color: var(--ink); }
.price-note { color: var(--muted); font-size: var(--fs-small); }

/* ---- 7.11 Footer ------------------------------------------------------- */
.footer { background: var(--surface-dark); color: var(--ink-invert); padding-block: var(--space-8); }
.footer__grid { display: grid; gap: var(--space-7); grid-template-columns: 1fr; }
@media (min-width: 600px)  { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer__brand svg { height: 30px; width: auto; margin-bottom: var(--space-4); }
.footer h6 { color: var(--ink-invert); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: var(--space-4); }
.footer p { color: var(--muted-invert); }
.footer a { color: var(--ink-invert); text-decoration: none; }
.footer a:hover { color: #BFC79B; }
.footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.footer__links a { display: inline-flex; min-height: 44px; align-items: center; }
.footer__badge { margin-bottom: var(--space-3); }
.footer__badge svg { height: 56px; width: auto; }
.footer__sub {
  margin-top: var(--space-7); padding-top: var(--space-5);
  border-top: 1px solid var(--line-invert);
  display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: space-between;
  color: var(--muted-invert); font-size: var(--fs-xs);
}
.footer__sub a { color: var(--muted-invert); }
.footer__sub a:hover { color: #BFC79B; }

/* ---- CTA band ---------------------------------------------------------- */
.cta-band { text-align: left; }
.cta-band__inner { max-width: 56ch; }
.cta-band h2 { margin-bottom: var(--space-4); }
.cta-band p { margin-bottom: var(--space-6); color: var(--muted-invert); }
.section--dark .cta-band .btn--call { color: var(--ink-invert); border-color: var(--ink-invert); }
.section--dark .cta-band .btn--call .tick { color: #BFC79B; }
.section--dark .cta-band .btn--call:hover { background: var(--ink-invert); color: var(--ink); }
.section--dark .cta-band .btn--call:hover .tick { color: var(--accent-ink); }

/* ---- Prose ------------------------------------------------------------- */
.prose p { color: var(--ink-2); margin-bottom: var(--space-5); }
.prose h2 { margin-bottom: var(--space-4); }
.prose h3 { margin-block: var(--space-6) var(--space-3); }
.prose > *:first-child { margin-top: 0; }

/* Note / callout */
.note { border-left: 3px solid var(--accent); background: var(--accent-wash); padding: var(--space-5); color: var(--ink-2); font-size: var(--fs-small); }
.note--art { border-left-color: var(--terracotta); }

/* Utility */
.stack > * + * { margin-top: var(--space-4); }
.text-center { text-align: center; }
.mt-6 { margin-top: var(--space-6); }
.mt-7 { margin-top: var(--space-7); }
.lede-max { max-width: 60ch; }

/* ---- 5. Motion: scroll-reveal ------------------------------------------ */
.reveal { opacity: 0; transform: translateY(8px); transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .card:hover .card__media img,
  .mosaic__item:hover img,
  .card:hover, .cat-card:hover, .btn:hover, .nav__link:hover { transform: none; }
}
