/* ==========================================================================
   CORE.CSS — layout system
   Colours and fonts are NOT in this file. They live in theme.css.
   Everything here is spacing, structure and rhythm — the stuff that makes
   the page read as symmetrical. Change numbers here and every section moves
   together.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS — one spacing scale, used everywhere. No arbitrary pixel values
   anywhere else in the stylesheet. This is what keeps the page even.
   -------------------------------------------------------------------------- */
:root {
  --s-1:  4px;
  --s-2:  8px;
  --s-3:  12px;
  --s-4:  16px;
  --s-5:  24px;
  --s-6:  32px;
  --s-7:  48px;
  --s-8:  64px;
  --s-9:  96px;
  --s-10: 128px;

  /* One container width for the whole site. Every section uses it, so every
     left edge on the page lines up vertically. */
  --container:        1240px;
  --container-text:   720px;
  --gutter:           clamp(20px, 5vw, 48px);

  /* Vertical rhythm between sections — every section gets exactly this. */
  --section-y:        clamp(72px, 11vw, 148px);
  --section-y-tight:  clamp(56px, 8vw, 104px);

  /* Uniform grid gap. Used by every grid on the page. */
  --gap:      clamp(16px, 2.2vw, 28px);
  --gap-wide: clamp(28px, 4.5vw, 72px);

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

  --header-h: 76px;

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

@media (max-width: 720px) {
  :root { --header-h: 64px; }
}

/* --------------------------------------------------------------------------
   2. RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Anchor links land below the sticky header instead of under it. */
  scroll-padding-top: calc(var(--header-h) + var(--s-5));
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; }

/* --------------------------------------------------------------------------
   3. TYPE SCALE
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.015em;
  color: var(--ink-strong);
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.9rem, 7.4vw, 5.6rem); }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); line-height: 1.2; }
h4 { font-size: 1.08rem; line-height: 1.3; }

p { margin: 0 0 var(--s-4); }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 var(--s-4);
}

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.62;
  color: var(--ink-soft);
}

.fine {
  font-size: .84rem;
  line-height: 1.55;
  color: var(--ink-mute);
}

.italic { font-style: italic; }

/* --------------------------------------------------------------------------
   4. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--tight { padding-block: var(--section-y-tight); }
.section--alt { background: var(--bg-alt); }
.section--ink { background: var(--ink-strong); color: var(--on-dark); }
.section--ink h2, .section--ink h3 { color: var(--on-dark); }
.section--ink .eyebrow { color: var(--on-dark-mute); }

/* Section header. Always the same three parts in the same order, always the
   same max width, so every section on the page starts identically. */
.sec-head {
  max-width: var(--container-text);
  margin-bottom: var(--s-8);
}
.sec-head--center {
  margin-inline: auto;
  text-align: center;
}
.sec-head p { margin-top: var(--s-4); }

/* Grids. All of them share --gap. */
.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.stack > * + * { margin-top: var(--s-4); }
.center { text-align: center; }

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 52px;
  padding: 0 var(--s-6);
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s var(--ease), background-color .25s var(--ease),
              color .25s var(--ease), border-color .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--ink-strong);
  color: var(--on-ink);
}
.btn--primary:hover { background: var(--accent-deep); }

.btn--outline {
  background: transparent;
  color: var(--ink-strong);
  border-color: var(--line-strong);
}
.btn--outline:hover { border-color: var(--ink-strong); background: var(--surface); }

.btn--light {
  background: var(--on-dark);
  color: var(--ink-strong);
}

.btn--sm { min-height: 42px; padding: 0 var(--s-5); font-size: .74rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}
.btn-row--center { justify-content: center; }

/* Text link with an underline that grows on hover */
.link {
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line-strong);
  transition: border-color .25s var(--ease);
}
.link:hover { border-color: var(--ink-strong); }

/* --------------------------------------------------------------------------
   6. HEADER + NAV
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--header-bg);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.header.is-stuck { border-bottom-color: var(--line); }

.header__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--s-4);
}

.brandmark {
  font-family: var(--font-display);
  font-size: 1.22rem;
  letter-spacing: .04em;
  text-decoration: none;
  color: var(--ink-strong);
  white-space: nowrap;
}

/* Centre column: the jump links */
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-6);
}
.nav a {
  position: relative;
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  padding-block: var(--s-2);
  transition: color .25s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--ink-strong);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s var(--ease);
}
.nav a:hover { color: var(--ink-strong); }
.nav a:hover::after,
.nav a.is-active::after { transform: scaleX(1); }
.nav a.is-active { color: var(--ink-strong); }

.header__cta { display: flex; justify-content: flex-end; }

/* The CTA inside .nav is for the mobile drawer only — the desktop header
   already has one on the right, and two would be sloppy. */
.nav > .btn { display: none; }

.burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  cursor: pointer;
}
.burger span {
  display: block;
  width: 17px; height: 1.5px;
  background: var(--ink-strong);
  position: relative;
  transition: background-color .2s var(--ease);
}
.burger span::before, .burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 17px; height: 1.5px;
  background: var(--ink-strong);
  transition: transform .3s var(--ease);
}
.burger span::before { top: -5px; }
.burger span::after  { top: 5px; }
.burger.is-open span { background: transparent; }
.burger.is-open span::before { transform: translateY(5px) rotate(45deg); }
.burger.is-open span::after  { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 1000px) {
  .header__inner { grid-template-columns: 1fr auto; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: var(--s-3) var(--gutter) var(--s-6);
    transform: translateY(-120%);
    transition: transform .38s var(--ease);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a {
    width: 100%;
    text-align: center;
    padding-block: var(--s-4);
    font-size: .9rem;
    border-bottom: 1px solid var(--line);
  }
  .nav a::after { display: none; }
  .nav > .btn { display: inline-flex; margin-top: var(--s-5); width: 100%; }
  .header__cta { display: none; }
  .burger { display: flex; }
}

/* --------------------------------------------------------------------------
   7. REVEAL ON SCROLL
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   8. MEDIA HELPERS
   Every image on the page sits in a locked aspect ratio box. This is the
   single biggest reason the grids stay even — a stray tall photo can never
   push one column out of line.
   -------------------------------------------------------------------------- */
.media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--media-bg);
}
.media > img, .media > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media--portrait { aspect-ratio: 3 / 4; }
.media--vertical { aspect-ratio: 9 / 16; }
.media--square   { aspect-ratio: 1 / 1; }
.media--wide     { aspect-ratio: 4 / 3; }

/* --------------------------------------------------------------------------
   9. HERO
   Two columns on desktop: text left, portrait right. Both columns are the
   same height, and the text block is vertically centred against the photo.
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(40px, 5vw, 68px) clamp(56px, 8vw, 100px);
  overflow: hidden;
}
.hero::before {
  /* Soft warm wash behind the whole hero */
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-wash);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: var(--gap-wide);
  align-items: center;
}
.hero__title { margin-bottom: var(--s-5); }
.hero__title .line { display: block; }
.hero__tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.3vw, 1.75rem);
  line-height: 1.35;
  color: var(--accent-deep);
  margin-bottom: var(--s-5);
  max-width: 22ch;
}
.hero__copy { max-width: 46ch; margin-bottom: var(--s-6); }

/* Niche chips */
.chips { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-bottom: var(--s-6); }
.chip {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 var(--s-4);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: var(--surface);
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Hero photo — one portrait, framed */
.hero__media { position: relative; }
/* 3:4. The solo portrait is a taller 2:3, so it crops a little off the top
   and bottom — she stays centred in frame either way. Keeping the box at 3:4
   rather than matching the photo exactly is deliberate: a taller box makes
   the hero outgrow the text column and pushes the contact strip below the
   fold. */
.hero__media .media { aspect-ratio: 3 / 4; border-radius: var(--radius-lg); }
.hero__media .media > img { object-position: center 28%; }
.hero__frame {
  /* Thin outline offset behind the photo. Pure decoration, but it is what
     makes the hero look designed rather than dropped in. */
  position: absolute;
  inset: var(--s-5) calc(var(--s-5) * -1) calc(var(--s-5) * -1) var(--s-5);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  z-index: -1;
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--s-7); }
  .hero__media { order: -1; max-width: 460px; margin-inline: auto; width: 100%; }
  .hero__frame { display: none; }
  .hero__copy, .hero__tag { max-width: none; }
}

/* On a phone the photo has to stay small enough that her name and the
   tagline are still above the fold. A brand opening this from a DM should
   not have to scroll to find out whose site it is. */
@media (max-width: 560px) {
  .hero { padding-block: var(--s-5) var(--s-8); }
  .hero__inner { gap: var(--s-5); }
  .hero__media { max-width: 240px; }
  .hero__media .media { border-radius: var(--radius); }
  .hero__tag { margin-bottom: var(--s-3); }

  /* On a phone the buttons and the paragraph push the contact details off
     the first screen, so pull them up directly under the tagline. Same
     markup, just reordered — brands see the handles, the email and the
     location without scrolling. */
  .hero__text { display: flex; flex-direction: column; }
  .hero__text > .eyebrow  { order: 1; }
  .hero__text > .hero__title   { order: 2; }
  .hero__text > .hero__tag     { order: 3; }
  .hero__text > .hero__contact { order: 4; margin-top: 0; margin-bottom: var(--s-6); }
  .hero__text > .hero__copy    { order: 5; }
  .hero__text > .chips         { order: 6; }
  .hero__text > .btn-row       { order: 7; }
}

/* Hero contact strip — socials, email and location right under the buttons.
   Brands should never have to scroll to find out how to reach her or where
   she is based. */
.hero__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-4) var(--s-5);
  margin-top: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--line);
}

.socials { display: flex; gap: var(--s-3); }
.social {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ink-strong);
  text-decoration: none;
  transition: background-color .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease);
}
.social svg { width: 17px; height: 17px; }
.social:hover {
  background: var(--ink-strong);
  border-color: var(--ink-strong);
  color: var(--on-ink);
  transform: translateY(-2px);
}

.meta { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-3) var(--s-5); }
.meta__item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-ui);
  font-size: .88rem;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .25s var(--ease);
}
.meta__item svg { width: 15px; height: 15px; color: var(--accent); flex: none; }
a.meta__item:hover { color: var(--ink-strong); }

@media (max-width: 560px) {
  .hero__contact { gap: var(--s-4); }
  .meta { gap: var(--s-2) var(--s-4); }
}

/* --------------------------------------------------------------------------
   10. BRAND STRIP
   -------------------------------------------------------------------------- */
.brandstrip { border-block: 1px solid var(--line); background: var(--bg-alt); }
.brandstrip__inner { padding-block: var(--s-7); }
.brandstrip__label {
  text-align: center;
  margin-bottom: var(--s-6);
}
.brandstrip__row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--gap);
  align-items: center;
}
.brandstrip__row img {
  width: 100%;
  height: 34px;
  object-fit: contain;
  opacity: .55;
  filter: grayscale(100%);
  transition: opacity .3s var(--ease), filter .3s var(--ease);
}
.brandstrip__row img:hover { opacity: 1; filter: none; }

/* Text fallback while the real logos are still placeholders */
.brandstrip__name {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(.95rem, 1.5vw, 1.2rem);
  letter-spacing: .02em;
  color: var(--ink-mute);
}

@media (max-width: 900px) { .brandstrip__row { grid-template-columns: repeat(3, 1fr); row-gap: var(--s-6); } }
@media (max-width: 480px) { .brandstrip__row { grid-template-columns: repeat(2, 1fr); } }

/* --------------------------------------------------------------------------
   11. WORK GRID — vertical video cards
   -------------------------------------------------------------------------- */
/* Flex rather than grid, so a row that doesn't fill centres itself instead
   of leaving a hole on the right. The number of videos will keep changing;
   this stays balanced at any count. */
.work-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.work-grid > .work { flex: 0 1 calc((100% - 4 * var(--gap)) / 5); }

@media (max-width: 1180px) { .work-grid > .work { flex-basis: calc((100% - 3 * var(--gap)) / 4); } }
@media (max-width: 900px)  { .work-grid > .work { flex-basis: calc((100% - 2 * var(--gap)) / 3); } }
@media (max-width: 640px)  { .work-grid > .work { flex-basis: calc((100% - var(--gap)) / 2); } }

.work {
  display: flex;
  flex-direction: column;
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
.work__media {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--media-bg);
}
.work__media img,
.work__media .work__vid {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.work:hover .work__media img,
.work:hover .work__media .work__vid { transform: scale(1.045); }

/* A card whose video file has not been uploaded yet: the <video> is hidden
   and the warm gradient behind it shows instead, so the grid still reads as
   finished while the files are still coming in. */
.work.is-empty { cursor: default; }
.work.is-empty .work__play,
.work.is-empty .work__veil { display: none; }

.work__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,19,15,0) 45%, rgba(23,19,15,.55) 100%);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.work:hover .work__veil { opacity: 1; }

.work__play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(.9);
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: var(--ink-strong);
  opacity: 0;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.work:hover .work__play { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.work__play svg { width: 17px; height: 17px; margin-left: 3px; }

.work__tag {
  position: absolute;
  top: var(--s-3); left: var(--s-3);
  height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 var(--s-3);
  border-radius: var(--radius-pill);
  background: rgba(255,253,250,.92);
  font-family: var(--font-ui);
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-strong);
}

/* Caption block under each card. Fixed min-height so all four captions in a
   row end at the same baseline even when one brand name wraps. */
.work__body {
  padding-top: var(--s-4);
  min-height: 76px;
}
.work__brand {
  font-family: var(--font-ui);
  font-size: .93rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--ink-strong);
  margin: 0 0 2px;
}
.work__note {
  font-size: .85rem;
  line-height: 1.5;
  color: var(--ink-mute);
  margin: 0;
}

/* --------------------------------------------------------------------------
   12. LIGHTBOX
   -------------------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: var(--s-5);
  background: rgba(18, 15, 12, .88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }

.lightbox__box { position: relative; }

.lightbox__stage {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 9 / 16;
  max-height: calc(100vh - var(--s-9));
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}
.lightbox__stage iframe,
.lightbox__stage video {
  width: 100%; height: 100%;
  border: 0;
  object-fit: contain;
  background: #000;
}
.lightbox__close {
  position: absolute;
  top: calc(var(--s-5) * -1 - 8px);
  right: 0;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  color: #fff;
  cursor: pointer;
}
.lightbox__caption {
  margin-top: var(--s-4);
  text-align: center;
  color: rgba(255,255,255,.82);
  font-size: .88rem;
}

/* --------------------------------------------------------------------------
   13. ABOUT
   -------------------------------------------------------------------------- */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-wide);
  align-items: center;
}
/* One family photo, with the same thin offset frame the hero uses so the
   two sections feel like they were drawn by the same hand. */
.about__photos { position: relative; }
.about__photos .media { aspect-ratio: 3 / 4; border-radius: var(--radius-lg); }
.about__frame {
  position: absolute;
  inset: var(--s-5) var(--s-5) calc(var(--s-5) * -1) calc(var(--s-5) * -1);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about__list {
  list-style: none;
  margin: var(--s-6) 0 0;
  padding: 0;
  display: grid;
  gap: var(--s-3);
}
.about__list li {
  position: relative;
  padding-left: var(--s-6);
  font-size: .97rem;
  color: var(--ink-soft);
}
.about__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 14px; height: 1px;
  background: var(--accent);
}

@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; gap: var(--s-8); }
  .about__photos { max-width: 440px; margin-inline: auto; width: 100%; }
  .about__frame { display: none; }
}

/* --------------------------------------------------------------------------
   14. STAT BAR
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.stat { text-align: center; padding-inline: var(--s-3); }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--on-dark);
  margin-bottom: var(--s-3);
}
.stat__label {
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--on-dark-mute);
}
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); row-gap: var(--s-7); } }

/* --------------------------------------------------------------------------
   15. SERVICES
   Equal-height cards. The price row is pushed to the bottom of every card
   with margin-top:auto so all three prices sit on one line.
   -------------------------------------------------------------------------- */
.svc {
  display: flex;
  flex-direction: column;
  padding: var(--s-7) var(--s-6);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.svc:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.svc--feature { border-color: var(--accent-soft); background: var(--accent-tint); }

.svc__num {
  font-family: var(--font-ui);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  color: var(--ink-mute);
  margin-bottom: var(--s-5);
}
.svc h3 { margin-bottom: var(--s-3); }
.svc__copy { font-size: .95rem; color: var(--ink-soft); margin-bottom: var(--s-5); }

.svc__list {
  list-style: none;
  margin: 0 0 var(--s-6);
  padding: 0;
  display: grid;
  gap: var(--s-2);
}
.svc__list li {
  position: relative;
  padding-left: var(--s-5);
  font-size: .92rem;
  color: var(--ink-soft);
}
.svc__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .58em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* Pricing is deliberately off the page — this is the bottom row of every
   card instead. margin-top:auto keeps all three on one line no matter how
   much copy sits above them. */
.svc__cta {
  margin-top: auto;
  padding-top: var(--s-5);
  border-top: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-strong);
  transition: color .25s var(--ease), gap .25s var(--ease);
}
.svc__cta svg { width: 15px; height: 15px; color: var(--accent); flex: none; }
.svc__cta:hover { color: var(--accent-deep); gap: var(--s-3); }

/* Add-on row under the service cards */
.addons {
  margin-top: var(--gap);
  padding: var(--s-6);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s-3) var(--s-6);
}
.addons span {
  font-family: var(--font-ui);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   16. PROCESS
   -------------------------------------------------------------------------- */
.steps { counter-reset: step; }
.step { position: relative; padding-top: var(--s-6); border-top: 1px solid var(--line); }
.step__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--accent-soft);
  margin-bottom: var(--s-4);
}
.step h3 { margin-bottom: var(--s-3); font-size: 1.18rem; }
.step p { font-size: .93rem; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   17. TESTIMONIALS
   -------------------------------------------------------------------------- */
.quote {
  display: flex;
  flex-direction: column;
  padding: var(--s-7) var(--s-6);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.quote__mark {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: .7;
  color: var(--accent-soft);
  margin-bottom: var(--s-4);
}
.quote__text {
  font-family: var(--font-display);
  font-size: 1.16rem;
  line-height: 1.5;
  color: var(--ink-strong);
  margin-bottom: var(--s-6);
}
.quote__by {
  margin-top: auto;
  padding-top: var(--s-5);
  border-top: 1px solid var(--line);
}
.quote__name {
  font-family: var(--font-ui);
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-strong);
}
.quote__role { font-size: .82rem; color: var(--ink-mute); }

/* --------------------------------------------------------------------------
   18. CONTACT
   -------------------------------------------------------------------------- */
.contact__inner {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: var(--gap-wide);
  align-items: start;
}
.contact__aside .about__list { margin-top: var(--s-6); }

.form { display: grid; gap: var(--s-4); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }

.field { display: grid; gap: var(--s-2); }
.field label {
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: var(--s-3) var(--s-4);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 132px; resize: vertical; padding-top: var(--s-4); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.field--error input,
.field--error textarea,
.field--error select { border-color: var(--danger); }
.field__err {
  font-size: .78rem;
  color: var(--danger);
  display: none;
}
.field--error .field__err { display: block; }

.form__note { font-size: .8rem; color: var(--ink-mute); }

.form__ok {
  display: none;
  padding: var(--s-6);
  background: var(--accent-tint);
  border: 1px solid var(--accent-soft);
  border-radius: var(--radius);
  text-align: center;
}
.form__ok.is-on { display: block; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 900px) {
  .contact__inner { grid-template-columns: 1fr; gap: var(--s-8); }
}

/* --------------------------------------------------------------------------
   19. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: var(--ink-strong);
  color: var(--on-dark-mute);
  padding-block: var(--s-9) var(--s-7);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--gap-wide);
  padding-bottom: var(--s-8);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer h4 {
  color: var(--on-dark);
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.footer__name {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--on-dark);
  margin-bottom: var(--s-3);
}
.footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-3); }
.footer__links a {
  text-decoration: none;
  font-size: .92rem;
  color: var(--on-dark-mute);
  transition: color .25s var(--ease);
}
.footer__links a:hover { color: var(--on-dark); }

.footer__bottom {
  padding-top: var(--s-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
}

@media (max-width: 820px) {
  .footer__top { grid-template-columns: 1fr; gap: var(--s-7); }
  .footer__bottom { justify-content: center; text-align: center; }
}

/* --------------------------------------------------------------------------
   20. UTILITIES
   -------------------------------------------------------------------------- */
.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;
}
:where(a, button, input, textarea, select):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
::selection { background: var(--accent-soft); color: var(--ink-strong); }
