/* ==========================================================================
   FCC MANAGEMENT LTD
   Design system — derived from the client's logo, business card and mockups.

   Motifs:
   · gold corner brackets lifted from the logo, reused as a framing device
   · hairline rules and wide-tracked capitals for structure
   · high-contrast serif display against a geometric sans
   · warm paper surfaces, no shadows, no rounded corners
   ========================================================================== */

/* --------------------------------------------------------------- 1. Tokens */

:root {
  /* Palette sampled directly from the supplied brand artwork */
  --ivory:        #F7F4EF;
  --ivory-2:      #F2EDE5;
  --sand:         #E6DED2;
  --sand-2:       #D2C7B7;
  --taupe:        #6E6155;
  --brown:        #5F5244;
  --numeral:      #93826B;

  /* Warm charcoal rather than black. A true black reads cold and heavy against
     this ivory palette; this keeps the weight without the harshness. */
  --ink:          #332E29;
  --ink-2:        #423C35;

  /* The brand gold sampled from the logo is only 3.7:1 on ivory — fine for
     rules, brackets and large display italics, but short of WCAG AA for small
     text. --gold-text is the same hue taken darker for anything set small. */
  --gold:         #A47541;
  --gold-text:    #8A6132;
  --gold-2:       #CDA97B;

  --text:         #4E463D;
  --text-soft:    #6E6459;
  --on-dark:      #EDE8DF;
  --on-dark-soft: #B6AD9F;

  --line:         rgba(51, 46, 41, .18);
  --line-soft:    rgba(51, 46, 41, .10);
  --line-dark:    rgba(237, 232, 223, .20);

  --ff-display: "Playfair Display", "Times New Roman", Times, serif;
  --ff-accent:  "Cormorant Garamond", Georgia, serif;
  --ff-sans:    "Jost", "Century Gothic", "Helvetica Neue", Arial, sans-serif;

  --pad:  clamp(1.25rem, 5vw, 4.5rem);
  --maxw: 1320px;

  --t-fast: .28s cubic-bezier(.22, .61, .36, 1);
  --t-slow: .75s cubic-bezier(.22, .61, .36, 1);

  --header-h: 7rem;
}

/* ----------------------------------------------------------- 2. Foundation */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--text);
  font: 300 1rem/1.75 var(--ff-sans);
  letter-spacing: .012em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -.012em;
  line-height: 1.08;
}

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

::selection { background: var(--gold-text); color: var(--ivory); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-110%);
  z-index: 200;
  padding: .85rem 1.4rem;
  background: var(--ink);
  color: var(--ivory);
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
}
.skip:focus { transform: none; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------- 3. Layout */

.wrap {
  width: min(100% - (var(--pad) * 2), var(--maxw));
  margin-inline: auto;
}

/* Grid children default to min-width:auto, so intrinsic content — notably an
   <img> inside an aspect-ratio'd parent — can inflate a track past the
   viewport and cause sideways scrolling. Everything here may shrink instead. */
.hero > *,
.split > *,
.sec-head--split > *,
.phero__grid > *,
.packs > *,
.svc-grid > *,
.steps > *,
.pillars > *,
.menu-list > *,
.feature-panel > *,
.ftr__grid > *,
.field--half > *,
.svc__body > * {
  min-width: 0;
}

.section { padding-block: clamp(4.5rem, 9vw, 8.5rem); }
.section--tight { padding-block: clamp(3.25rem, 6vw, 5.5rem); }

.section--sand { background: var(--ivory-2); }

.section--dark {
  background: var(--ink) url("../img/band-dark.jpg") center / cover no-repeat;
  color: var(--on-dark);
}
.section--dark h2,
.section--dark h3 { color: var(--ivory); }

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

/* ---------------------------------------------------------- 4. Type styles */

.eyebrow {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin: 0 0 1.6rem;
  /* line-height must clear 1 — these labels wrap onto two lines on narrow
     screens and would otherwise overlap each other. */
  font: 400 .68rem/1.45 var(--ff-sans);
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold-text);
}
.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: currentColor;
  flex: none;
}
.eyebrow--plain::before { display: none; }
.section--dark .eyebrow { color: var(--gold-2); }

.display-xl {
  font-size: clamp(2.9rem, 7.6vw, 6rem);
  line-height: .98;
  letter-spacing: -.022em;
}
.display-l  { font-size: clamp(2.2rem, 5vw, 3.9rem); }
.display-m  { font-size: clamp(1.75rem, 3.2vw, 2.65rem); }
.display-s  { font-size: clamp(1.3rem, 2vw, 1.6rem); line-height: 1.2; }

.accent {
  font-family: var(--ff-accent);
  font-style: italic;
  font-weight: 300;
  /* Always large display type, so the lighter brand gold is legible here. */
  color: var(--gold);
  letter-spacing: 0;
}

.lead {
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.72;
  color: var(--text-soft);
  max-width: 46ch;
}
.section--dark .lead { color: var(--on-dark-soft); }

.micro {
  font-size: .7rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--taupe);
}

.idx {
  font-family: var(--ff-sans);
  font-size: .72rem;
  letter-spacing: .2em;
  color: var(--gold-text);
  font-variant-numeric: tabular-nums;
}

/* ------------------------------------------------------- 5. Bracket device */
/* The gold corner brackets from the logo, reused to frame content. */

.brk { position: relative; }
.brk::before,
.brk::after {
  content: "";
  position: absolute;
  width: clamp(1.75rem, 4vw, 3.25rem);
  height: clamp(1.75rem, 4vw, 3.25rem);
  border: 0 solid var(--gold);
  pointer-events: none;
}
.brk::before {
  top: 0; left: 0;
  border-top-width: 1px;
  border-left-width: 1px;
}
.brk::after {
  bottom: 0; right: 0;
  border-bottom-width: 1px;
  border-right-width: 1px;
}
.brk--inset::before { top: -.9rem; left: -.9rem; }
.brk--inset::after  { bottom: -.9rem; right: -.9rem; }

/* Top-left bracket only — used where a caption card occupies the
   bottom-right corner and would otherwise sit on top of the second bracket. */
.brk--tl::after { display: none; }
.brk--light::before,
.brk--light::after { border-color: var(--gold-2); }

/* -------------------------------------------------------------- 6. Buttons */

.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--ivory);
  --btn-bd: var(--ink);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: 1.05rem 2.1rem;
  border: 1px solid var(--btn-bd);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font: 400 .72rem/1 var(--ff-sans);
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.btn > * { position: relative; z-index: 1; }
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Ivory label sits on this fill, so it must clear AA in the hover state too. */
  background: var(--gold-text);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--t-fast);
  z-index: 0;
}
.btn:hover::after,
.btn:focus-visible::after { transform: scaleX(1); }
.btn:hover, .btn:focus-visible {
  color: var(--ivory);
  border-color: var(--gold-text);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: var(--line);
}
.btn--light {
  --btn-bg: var(--ivory);
  --btn-fg: var(--ink);
  --btn-bd: var(--ivory);
}
.btn--onDark {
  --btn-bg: transparent;
  --btn-fg: var(--ivory);
  --btn-bd: var(--line-dark);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2.4rem;
}

/* Text link with a rule that draws in on hover */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding-bottom: .35rem;
  font: 400 .72rem/1 var(--ff-sans);
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;
  transition: color var(--t-fast), background-size var(--t-fast);
}
.tlink:hover, .tlink:focus-visible {
  color: var(--gold-text);
  background-size: 40% 1px;
}
.tlink .arw { transition: transform var(--t-fast); }
.tlink:hover .arw { transform: translateX(.3rem); }
.section--dark .tlink { color: var(--ivory); }

/* --------------------------------------------------------------- 7. Header */

.hdr {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--t-fast), box-shadow var(--t-fast), height var(--t-fast);
}
.hdr::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line-soft);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.hdr.is-stuck {
  background: rgba(247, 244, 239, .92);
  backdrop-filter: saturate(1.2) blur(12px);
  height: 5.4rem;
}
.hdr.is-stuck::after { opacity: 1; }
.hdr.is-stuck .logo__word { font-size: 2.15rem; }
.hdr.is-stuck .logo__sub  { font-size: .54rem; }
.hdr .logo__word,
.hdr .logo__sub { transition: font-size var(--t-fast); }


.hdr__in {
  width: min(100% - (var(--pad) * 2), var(--maxw));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo, set in live text so it always matches the page typography */
.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
}
.logo__mark { position: relative; padding: .42rem 1.35rem; }
.logo__mark::before,
.logo__mark::after {
  content: "";
  position: absolute;
  width: .95rem;
  height: .95rem;
  border: 0 solid var(--gold);
}
.logo__mark::before {
  top: 0; left: 0;
  border-top-width: 1px; border-left-width: 1px;
}
.logo__mark::after {
  bottom: 0; right: 0;
  border-bottom-width: 1px; border-right-width: 1px;
}
.logo__word {
  font-family: var(--ff-display);
  font-size: 3rem;
  letter-spacing: .04em;
}
.logo__sub {
  font-size: .62rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--text-soft);
}
@media (max-width: 30rem) {
  .logo__word { font-size: 2.3rem; }
  .logo__sub  { font-size: .54rem; letter-spacing: .28em; }
}
.logo--light { color: var(--ivory); }
.logo--light .logo__sub { color: var(--on-dark-soft); }

.nav { display: none; }
@media (min-width: 62rem) {
  .nav {
    display: flex;
    align-items: center;
    gap: clamp(1.4rem, 2.6vw, 2.6rem);
  }
}
.nav a {
  position: relative;
  padding: .35rem 0;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  transition: color var(--t-fast);
}
.nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform var(--t-fast);
}
.nav a:hover, .nav a:focus-visible { color: var(--ink); }
.nav a:hover::after, .nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}
.nav a[aria-current="page"] { color: var(--ink); }
.nav a[aria-current="page"]::after { transform: scaleX(1); }

.hdr__cta { display: none; }
@media (min-width: 62rem) {
  .hdr__cta { display: inline-flex; padding: .85rem 1.6rem; }
}

/* Burger */
.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: .34rem;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
@media (min-width: 62rem) { .burger { display: none; } }
.burger span {
  display: block;
  width: 1.5rem;
  height: 1px;
  margin-inline: auto;
  background: var(--ink);
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(.35rem) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-.35rem) rotate(-45deg); }

/* Mobile menu */
.menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  align-content: center;
  padding: 6rem var(--pad) 3rem;
  background: var(--ivory);
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--t-fast), visibility var(--t-fast);
}
.menu.is-open { visibility: visible; opacity: 1; }
.menu a {
  display: block;
  padding: .55rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 9vw, 2.9rem);
  text-decoration: none;
  color: var(--ink);
}
.menu a .idx { margin-right: 1rem; vertical-align: middle; }
.menu__foot {
  margin-top: 2.6rem;
  display: grid;
  gap: .5rem;
  font-size: .85rem;
}
.menu__foot a:not(.btn) {
  font-family: var(--ff-sans);
  font-size: .85rem;
  padding: 0;
  border: 0;
  color: var(--text);
}
/* The menu's links are large serif blocks; the button must opt out of all of it. */
.menu__foot .btn {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  padding: 1.05rem 2.1rem;
  border: 1px solid var(--ink);
  font-family: var(--ff-sans);
  font-size: .72rem;
  line-height: 1;
  letter-spacing: .22em;
  color: var(--ivory);
}

/* ------------------------------------------------------------------ 8. Hero */

.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  padding-inline-start: max(var(--pad), calc((100% - var(--maxw)) / 2));
  padding-inline-end: var(--pad);
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 60rem) {
  .hero {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
    /* stretch, so the photograph fills the full height of the band rather
       than leaving dead space beneath it */
    align-items: stretch;
    padding-inline-end: 0;
    min-height: min(78vh, 42rem);
  }
  .hero__copy { align-self: center; }
}

.hero__copy { max-width: 40rem; }
.hero__title { margin-bottom: 1.9rem; }
.hero__title .ln { display: block; }

.hero__media {
  position: relative;
  aspect-ratio: 4 / 3;
}
@media (min-width: 60rem) {
  .hero__media { aspect-ratio: auto; height: min(74vh, 40rem); }
}

.hero__foot {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-soft);
}

/* Compact hero for interior pages */
.phero {
  padding-top: calc(var(--header-h) + clamp(3rem, 7vw, 6rem));
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  position: relative;
}
.phero__grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
}
@media (min-width: 56rem) {
  .phero__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: end;
  }
}
/* Interior headings sit a step below the home hero so the homepage keeps the
   single loudest statement on the site. */
.phero h1 { font-size: clamp(2.5rem, 5.6vw, 4.4rem); }

.phero__media {
  position: relative;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  aspect-ratio: 21 / 6.5;
}
@media (max-width: 46rem) { .phero__media { aspect-ratio: 16 / 9; } }
.phero__media img { width: 100%; height: 100%; object-fit: cover; }
.phero__media .plate__mono { font-size: clamp(4rem, 9vw, 7.5rem); }

.phero__caption {
  position: absolute;
  inset: auto 0 clamp(1rem, 3vw, 2rem);
  text-align: center;
  font-family: var(--ff-display);
  font-size: clamp(.7rem, 1.1vw, .85rem);
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--brown);
}

/* --------------------------------------------------------------- 9. Ticker */

.ticker {
  overflow: hidden;
  padding-block: 1.15rem;
  border-block: 1px solid var(--line-soft);
  background: var(--ivory-2);
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: slide 42s linear infinite;
}
.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 2.4rem;
  padding-right: 2.4rem;
  font-family: var(--ff-display);
  font-size: clamp(.95rem, 1.5vw, 1.2rem);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--taupe);
  white-space: nowrap;
}
.ticker span::after {
  content: "";
  width: .3rem; height: .3rem;
  background: var(--gold);
  transform: rotate(45deg);
  flex: none;
}
@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* ------------------------------------------------------- 10. Generic grids */

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
}
@media (min-width: 56rem) {
  .split { grid-template-columns: minmax(0, .82fr) minmax(0, 1fr); }
  .split--even   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split--flip   { grid-template-columns: minmax(0, 1fr) minmax(0, .82fr); }
  .split--center { align-items: center; }
}

.sec-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sec-head--split {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 56rem) {
  .sec-head--split {
    grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
    align-items: end;
    gap: clamp(2rem, 5vw, 4rem);
  }
}

.media-frame { position: relative; }
.media-frame img { width: 100%; }

/* --- Plate ---------------------------------------------------------------
   A brand surface used as an image panel. The ghosted monogram and the
   overlapping caption card are what make the panel read as art direction
   rather than as a photograph that failed to load. */

.plate {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.plate img {
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
}
.plate__mono {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--ff-display);
  font-size: clamp(5.5rem, 15vw, 12rem);
  line-height: 1;
  letter-spacing: .08em;
  text-indent: .08em;
  color: rgba(51, 46, 41, .06);
  user-select: none;
}

/* Line-art still life sitting on the paper surface. `multiply` lets the light
   and grain of the backdrop read through the strokes, so the drawing looks
   printed onto the surface rather than pasted over it. */
.plate__art {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 7%, 3.5rem);
}
.plate__art img {
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.plate-wrap { position: relative; }

.plate__card {
  position: relative;
  z-index: 2;
  margin: -2.75rem 1.25rem 0;
  padding: 1.5rem 1.65rem;
  background: var(--ink);
  color: var(--on-dark);
}
@media (min-width: 56rem) {
  .plate__card {
    position: absolute;
    bottom: 0;
    margin: 0;
    width: min(84%, 21rem);
  }
  .plate__card--bl { left: 0;  transform: translate(-9%, 24%); }
  .plate__card--br { right: 0; transform: translate(9%, 24%); }
}
.plate__card--light {
  background: var(--ivory);
  color: var(--text);
  border: 1px solid var(--line);
}
.plate__kicker {
  margin: 0 0 .7rem;
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.plate__card--light .plate__kicker { color: var(--gold-text); }
.plate__text {
  margin: 0;
  font-family: var(--ff-display);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.4;
  color: var(--ivory);
}
.plate__card--light .plate__text { color: var(--ink); }
.plate__sub {
  margin: .55rem 0 0;
  font-size: .78rem;
  letter-spacing: .06em;
  color: var(--on-dark-soft);
}
.plate__card--light .plate__sub { color: var(--text-soft); }

/* -------------------------------------------------------- 11. Pillar band */

.pillars {
  display: grid;
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
@media (min-width: 40rem) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem) { .pillars { grid-template-columns: repeat(4, 1fr); } }

.pillar {
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  background: rgba(51, 46, 41, .62);
}
.pillar__ico {
  width: 2rem; height: 2rem;
  margin-bottom: 1.4rem;
  stroke: var(--gold-2);
  stroke-width: 1;
  fill: none;
}
.pillar h3 {
  margin-bottom: .7rem;
  font-family: var(--ff-sans);
  font-size: .74rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ivory);
}
.pillar p {
  font-size: .92rem;
  line-height: 1.7;
  color: var(--on-dark-soft);
}

/* ------------------------------------------------------ 12. Services list */

.svc-list { border-top: 1px solid var(--line); }

.svc {
  border-bottom: 1px solid var(--line);
}
.svc__btn {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  width: 100%;
  padding: clamp(1.3rem, 2.6vw, 1.9rem) 0;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
  transition: color var(--t-fast);
}
.svc__btn:hover { color: var(--gold-text); }
.svc__num {
  font-size: .72rem;
  letter-spacing: .16em;
  color: var(--gold-text);
  font-variant-numeric: tabular-nums;
}
.svc__name {
  font-family: var(--ff-display);
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  color: var(--ink);
  transition: color var(--t-fast);
  letter-spacing: -.01em;
}
.svc__btn:hover .svc__name,
.svc__btn[aria-expanded="true"] .svc__name { color: var(--gold-text); }

.svc__sign {
  position: relative;
  width: 1.05rem; height: 1.05rem;
  flex: none;
}
.svc__sign::before,
.svc__sign::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 1px;
  background: var(--ink);
  transition: transform var(--t-fast), background var(--t-fast);
}
.svc__sign::after { transform: rotate(90deg); }
.svc__btn[aria-expanded="true"] .svc__sign::before,
.svc__btn[aria-expanded="true"] .svc__sign::after { background: var(--gold); }
.svc__btn[aria-expanded="true"] .svc__sign::after { transform: rotate(0deg); }

.svc__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-slow);
}
.svc__panel[data-open="true"] { grid-template-rows: 1fr; }
.svc__panelIn { overflow: hidden; }
.svc__body {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: 0 0 clamp(1.75rem, 3vw, 2.5rem);
}
@media (min-width: 52rem) {
  .svc__body {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    padding-left: clamp(2.5rem, 6vw, 5.5rem);
  }
}

.ticks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .6rem;
  column-gap: 1.75rem;
}
@media (min-width: 34rem) { .ticks { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.ticks li {
  position: relative;
  padding-left: 1.5rem;
  font-size: .93rem;
  line-height: 1.6;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: .5rem; height: .28rem;
  border-left: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(-45deg);
}

/* --------------------------------------------------------- 13. Package set */

.packs {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}
@media (min-width: 52rem) { .packs { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.pack {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 3.5vw, 2.9rem);
  border: 1px solid var(--line);
  background: var(--ivory);
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.pack:hover { border-color: var(--gold-text); }
@media (min-width: 52rem) {
  .pack:hover { transform: translateY(-4px); }
}

.pack--feature {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--on-dark);
}
.pack--feature .pack__name,
.pack--feature .pack__price { color: var(--ivory); }
.pack--feature .pack__note { color: var(--on-dark-soft); }
.pack--feature .ticks li { color: var(--on-dark); }
.pack--feature .pack__hr { background: var(--line-dark); }

.pack__name {
  font-family: var(--ff-sans);
  font-size: .74rem;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-text);
}
.pack--feature .pack__name { color: var(--gold-2); }

.pack__price {
  margin: 1.1rem 0 .35rem;
  font-family: var(--ff-display);
  font-size: clamp(2.1rem, 3.6vw, 2.75rem);
  line-height: 1;
  color: var(--ink);
}
.pack__price small {
  font-family: var(--ff-sans);
  font-size: .78rem;
  font-weight: 300;
  letter-spacing: .1em;
  color: var(--text-soft);
}
.pack--feature .pack__price small { color: var(--on-dark-soft); }

.pack__note {
  font-size: .93rem;
  color: var(--text-soft);
  margin-bottom: 1.6rem;
}
.pack__hr {
  height: 1px;
  background: var(--line);
  margin-bottom: 1.6rem;
}
.pack .ticks {
  grid-template-columns: minmax(0, 1fr);
  margin-bottom: 2rem;
}
.pack .btn { margin-top: auto; width: 100%; }

/* ---------------------------------------------- 13a. Discovery-call callout */

.callout {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.6rem, 3vw, 2.35rem) clamp(1.6rem, 3vw, 2.6rem);
  border: 1px solid var(--gold);
  background: rgba(164, 117, 65, .05);
}
@media (min-width: 52rem) {
  .callout { grid-template-columns: minmax(0, 1fr) auto; gap: 2.5rem; }
}
.callout__title {
  margin: 0 0 .35rem;
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2.1vw, 1.6rem);
  line-height: 1.22;
  color: var(--ink);
}
.callout__sub {
  margin: 0;
  font-size: .92rem;
  color: var(--text-soft);
}
.callout .btn { white-space: nowrap; }

.callout--dark {
  border-color: var(--line-dark);
  background: rgba(232, 226, 216, .06);
}
.callout--dark .callout__title { color: var(--ivory); }
.callout--dark .callout__sub { color: var(--on-dark-soft); }

/* ------------------------------------------------ 13b. On-page jump links */

.jump {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
}
.jump a {
  display: inline-flex;
  align-items: baseline;
  gap: .55rem;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  transition: color var(--t-fast);
}
.jump a:hover { color: var(--gold-text); }

/* ------------------------------------------------- 13c. Service cards grid */

.svc-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 46rem) { .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 72rem) { .svc-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.svc-card {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--ivory);
}
.section--sand .svc-card { background: var(--ivory-2); }
.svc-card__n {
  margin: 0;
  font-size: .72rem;
  letter-spacing: .2em;
  color: var(--gold-text);
  font-variant-numeric: tabular-nums;
}
.svc-card h3 { margin: 0; }
.svc-card p { margin: 0; font-size: .95rem; }
.svc-card .ticks { margin-top: .35rem; grid-template-columns: minmax(0, 1fr); }
.svc-card--quote { background: var(--ink); color: var(--on-dark); }
.section--sand .svc-card--quote { background: var(--ink); }
.svc-card--quote h3 { color: var(--ivory); }
.svc-card--quote p { color: var(--on-dark-soft); }
.svc-card--quote .svc-card__n { color: var(--gold-2); }
.svc-card--quote .tlink { color: var(--ivory); }

/* ------------------------------------------------------- 14. Price "menu" */

.price-list { margin: 0; padding: 0; list-style: none; }

.menu-list {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
}
@media (min-width: 56rem) { .menu-list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.price-row {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  padding: .82rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.price-row__name {
  flex: 0 1 auto;
  font-size: .97rem;
  color: var(--ink);
}
.price-row__dots {
  flex: 1 1 auto;
  min-width: 1.5rem;
  height: 0;
  border-bottom: 1px dotted var(--sand-2);
  transform: translateY(-.24em);
}
.price-row__val {
  flex: none;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--gold-text);
  font-variant-numeric: tabular-nums;
}

/* Feature panel for the website product */
.feature-panel {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  padding: clamp(2rem, 4vw, 3.25rem);
  border: 1px solid var(--line);
  background: var(--ivory);
}
@media (min-width: 56rem) {
  .feature-panel {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    align-items: center;
  }
}
.feature-panel__price {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  color: var(--ink);
}

/* --------------------------------------------------------- 15. Process set */

.steps {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
@media (min-width: 40rem) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 62rem) { .steps { grid-template-columns: repeat(4, 1fr); } }

.step {
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.25rem, 2.5vw, 2rem);
  background: var(--ivory);
}
.section--sand .step { background: var(--ivory-2); }
.step__n {
  display: block;
  margin-bottom: 1.1rem;
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.6vw, 2.7rem);
  line-height: 1;
  color: var(--numeral);
}
.step h3 {
  margin-bottom: .6rem;
  font-family: var(--ff-sans);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.step p { font-size: .92rem; line-height: 1.68; }

/* ---------------------------------------------------------- 16. Audience */

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.chips li {
  padding: .62rem 1.15rem;
  border: 1px solid var(--line);
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brown);
}

/* ------------------------------------------------------------- 17. Stat/FAQ */

.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.4rem 0;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  color: var(--ink);
  transition: color var(--t-fast);
}
.faq__btn:hover { color: var(--gold-text); }
.faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-slow);
}
.faq__panel[data-open="true"] { grid-template-rows: 1fr; }
.faq__panelIn { overflow: hidden; }
.faq__body {
  padding-bottom: 1.5rem;
  max-width: 62ch;
  font-size: .95rem;
  color: var(--text-soft);
}

/* ------------------------------------------------------------ 18. CTA band */

.cta {
  position: relative;
  background: var(--ivory-2) url("../img/cta-still.jpg") center / cover no-repeat;
}
.cta__in {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 0;
}
.cta .eyebrow { justify-content: center; }
.cta h2 { margin-bottom: 1.3rem; }
.cta .lead { max-width: 52ch; }
.cta .btn-row { justify-content: center; }
.cta__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem 2rem;
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-soft);
  width: min(100%, 34rem);
  font-size: .8rem;
}
.cta__meta a { text-decoration: none; color: var(--brown); }
.cta__meta a:hover { color: var(--gold-text); }

/* --------------------------------------------------------------- 19. Form */

.form {
  display: grid;
  gap: 1.25rem;
}
.field { display: grid; gap: .55rem; }
.field label {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brown);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .95rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--ivory);
  font: 300 .97rem/1.6 var(--ff-sans);
  color: var(--ink);
  transition: border-color var(--t-fast), background var(--t-fast);
  appearance: none;
}
.field textarea { min-height: 9.5rem; resize: vertical; }
.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--brown) 50%),
                    linear-gradient(135deg, var(--brown) 50%, transparent 50%);
  background-position: calc(100% - 1.3rem) 55%, calc(100% - 1rem) 55%;
  background-size: .32rem .32rem, .32rem .32rem;
  background-repeat: no-repeat;
  padding-right: 2.6rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-text);
  background: #fff;
}
.field--half { display: grid; gap: 1.25rem; }
@media (min-width: 40rem) {
  .field--half { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form__consent {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .84rem;
  line-height: 1.6;
  color: var(--text-soft);
}
.form__consent input {
  width: 1rem; height: 1rem;
  margin-top: .28rem;
  flex: none;
  accent-color: var(--gold-text);
}
.form__consent a { color: var(--gold-text); }

.form__note {
  font-size: .78rem;
  color: var(--taupe);
}

.form__status {
  display: none;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  font-size: .9rem;
}
.form__status.is-ok {
  display: block;
  border-color: var(--gold-text);
  background: rgba(164, 117, 65, .07);
  color: var(--brown);
}
.form__status.is-err {
  display: block;
  border-color: #A6472F;
  background: rgba(166, 71, 47, .06);
  color: #8A3A25;
}

.contact-aside { display: grid; gap: 2.25rem; align-content: start; }
.contact-item { display: grid; gap: .35rem; }
.contact-item a {
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  color: var(--ink);
  text-decoration: none;
  transition: color var(--t-fast);
  word-break: break-word;
}
.contact-item a:hover { color: var(--gold-text); }

/* -------------------------------------------------------------- 20. Footer */

.ftr {
  background: var(--ink);
  color: var(--on-dark-soft);
  padding-block: clamp(3rem, 6vw, 4.75rem) 2rem;
  font-size: .88rem;
}
.ftr__grid {
  display: grid;
  gap: clamp(2.25rem, 5vw, 3.5rem);
  padding-bottom: clamp(2.25rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--line-dark);
}
@media (min-width: 44rem) { .ftr__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 68rem) {
  .ftr__grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
}
.ftr h4 {
  margin-bottom: 1.25rem;
  font-family: var(--ff-sans);
  font-size: .66rem;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.ftr ul { margin: 0; padding: 0; list-style: none; display: grid; gap: .6rem; }
.ftr a { color: var(--on-dark-soft); text-decoration: none; transition: color var(--t-fast); }
.ftr a:hover { color: var(--ivory); }
.ftr__tag {
  margin-top: 1.4rem;
  font-family: var(--ff-display);
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}
.ftr__base {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 2rem;
  justify-content: space-between;
  padding-top: 1.75rem;
  font-size: .78rem;
  color: var(--on-dark-soft);
}
.ftr__legal { display: flex; flex-wrap: wrap; gap: 1.25rem; }

/* ------------------------------------------------------------- 21. Reveal */

.r {
  opacity: 0;
  transform: translateY(20px);
}
.r.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .85s cubic-bezier(.22,.61,.36,1) var(--d, 0s),
              transform .85s cubic-bezier(.22,.61,.36,1) var(--d, 0s);
}
@media (prefers-reduced-motion: reduce) {
  .r { opacity: 1; transform: none; }
  .r.is-in { transition: none; }
}
.no-js .r { opacity: 1; transform: none; }

/* ---------------------------------------------------- 21b. Line reveal
   Display headings are split into lines by main.js and each line rises out
   from behind a mask. Without JS the markup is untouched and simply shows. */

.lines .lnw {
  display: block;
  overflow: hidden;
  /* These headings run tight line-heights, so the mask needs a little room
     top and bottom or it clips ascenders and descenders. The negative margin
     cancels the padding so layout is unchanged. */
  padding: .12em 0 .16em;
  margin: -.12em 0 -.16em;
}
.lines .lni {
  display: block;
  transform: translateY(110%);
}
.lines.is-in .lni {
  transform: none;
  transition: transform 1s cubic-bezier(.16, 1, .3, 1) var(--ld, 0s);
}

@media (prefers-reduced-motion: reduce) {
  .lines .lni { transform: none; }
  .lines.is-in .lni { transition: none; }
}

/* ------------------------------------------------- 21c. Page transitions
   Cross-document view transitions: a soft cross-fade between pages in
   browsers that support it, and ordinary navigation everywhere else. */

@view-transition { navigation: auto; }

@media (prefers-reduced-motion: no-preference) {
  ::view-transition-old(root) {
    animation: vt-leave .28s cubic-bezier(.4, 0, 1, 1) both;
  }
  ::view-transition-new(root) {
    animation: vt-enter .42s cubic-bezier(0, 0, .2, 1) both;
  }
}
@keyframes vt-leave {
  to { opacity: 0; transform: translateY(-10px); }
}
@keyframes vt-enter {
  from { opacity: 0; transform: translateY(14px); }
}

/* --------------------------------------------- 21d. Scroll-linked parallax
   The paper surface behind each illustration drifts as the plate crosses the
   viewport. Purely decorative and only where the browser supports it. */

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .plate > img {
      animation: plate-drift linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 100%;
      will-change: transform;
    }
    @keyframes plate-drift {
      from { transform: scale(1.14) translateY(-2.4%); }
      to   { transform: scale(1.14) translateY(2.4%); }
    }
  }
}

/* -------------------------------------------------------------- 22. Legal */

.prose { max-width: 68ch; }
.prose h2 {
  margin: 2.6rem 0 .9rem;
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
}
.prose h3 {
  margin: 1.9rem 0 .6rem;
  font-family: var(--ff-sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brown);
}
.prose ul { padding-left: 1.15rem; margin: 0 0 1.15em; }
.prose li { margin-bottom: .45rem; }
.prose a { color: var(--gold-text); }

/* ==========================================================================
   23. PAGE COMPONENTS — built to the client's own website mockups
   (FCC Website Template.PNG: home, about, services, portfolio, contact)
   ========================================================================== */

/* --- Hero photo -----------------------------------------------------------
   The mockup runs the photograph off the right edge and dissolves its left
   side into the cream, so the type sits on paper rather than on the image. */

.hero__photo {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
}
@media (min-width: 60rem) {
  .hero__photo::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg,
      var(--ivory) 0%,
      rgba(247, 244, 239, .82) 16%,
      rgba(247, 244, 239, 0) 46%);
  }
}

/* --- Four-up trait row (home: Strategic / Practical / Organised / Personal) */

.traits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem 1rem;
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding-top: clamp(1.75rem, 3vw, 2.25rem);
  border-top: 1px solid var(--line-soft);
}
@media (min-width: 34rem) { .traits { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.trait svg {
  width: 1.85rem;
  height: 1.85rem;
  margin-bottom: .75rem;
  stroke: var(--gold);
  stroke-width: 1.1;
  fill: none;
}
.trait span {
  display: block;
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--ink);
}

/* --- Service cards (home, five across) ------------------------------------ */

.cards {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 40rem) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 62rem) { .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 82rem) { .cards { grid-template-columns: repeat(5, minmax(0, 1fr)); } }

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
  padding: clamp(1.9rem, 3vw, 2.6rem) clamp(1.1rem, 2vw, 1.6rem);
  background: var(--ivory);
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: background var(--t-fast);
}
.section--sand .card { background: var(--ivory-2); }
.card:hover { background: var(--ivory-2); }
.section--sand .card:hover { background: var(--sand); }

.card svg {
  width: 2.2rem;
  height: 2.2rem;
  stroke: var(--gold);
  stroke-width: 1.05;
  fill: none;
}
.card h3 { margin: 0; font-size: clamp(1rem, 1.4vw, 1.12rem); }
.card p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.65;
  color: var(--text-soft);
}

/* --- Service rows (services page) ----------------------------------------- */

.rows { border: 1px solid var(--line); }

.row-svc {
  display: grid;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}
.row-svc:last-child { border-bottom: 0; }
@media (min-width: 52rem) {
  .row-svc { grid-template-columns: minmax(0, 1fr) minmax(0, .82fr); }
}

.row-svc__body {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.25rem clamp(1.25rem, 3vw, 2.25rem);
  align-items: start;
  padding: clamp(1.9rem, 3.5vw, 2.9rem);
}
.row-svc__ico {
  width: 2.5rem;
  height: 2.5rem;
  stroke: var(--gold);
  stroke-width: 1.05;
  fill: none;
  grid-row: span 3;
}
.row-svc h2 { margin: 0 0 .6rem; font-size: clamp(1.2rem, 2vw, 1.55rem); }
.row-svc p {
  margin: 0 0 1.4rem;
  font-size: .95rem;
  max-width: 44ch;
  color: var(--text-soft);
}
.row-svc .btn { justify-self: start; padding: .85rem 1.7rem; }

.row-svc__media { position: relative; min-height: 13rem; }
.row-svc__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
}
@media (max-width: 51.99rem) {
  .row-svc__media { order: -1; aspect-ratio: 16 / 9; min-height: 0; }
}

/* --- Dark call-to-action bar --------------------------------------------- */

.ctabar {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.9rem, 3.5vw, 2.6rem) clamp(1.6rem, 3.5vw, 3rem);
  background: var(--ink);
  color: var(--on-dark);
}
@media (min-width: 46rem) {
  .ctabar { grid-template-columns: minmax(0, 1fr) auto; gap: 2.5rem; }
}
.ctabar h2 {
  margin: 0 0 .4rem;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  color: var(--ivory);
}
.ctabar p { margin: 0; font-size: .95rem; color: var(--on-dark-soft); }
.ctabar .btn { white-space: nowrap; }

/* --- Founder card (about) ------------------------------------------------- */

.founder {
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--ink);
  color: var(--on-dark);
  align-self: start;
}
.founder__role {
  margin: 0 0 .9rem;
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.founder h2 {
  margin: 0 0 1.3rem;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  color: var(--ivory);
}
.founder p { color: var(--on-dark-soft); font-size: .95rem; }
.founder__sign {
  display: block;
  margin-top: 1.6rem;
  font-family: var(--ff-accent);
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1;
  color: var(--gold-2);
}

/* --- Values (about, six-up) ---------------------------------------------- */

.values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.75rem, 3vw, 2.5rem) 1.5rem;
}
@media (min-width: 44rem) { .values { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 72rem) { .values { grid-template-columns: repeat(6, minmax(0, 1fr)); } }

.value { text-align: center; }
.value svg {
  width: 2.1rem;
  height: 2.1rem;
  margin: 0 auto .9rem;
  stroke: var(--gold);
  stroke-width: 1.05;
  fill: none;
}
.value h3 { margin: 0 0 .5rem; font-size: 1.02rem; }
.value p { margin: 0; font-size: .86rem; line-height: 1.6; color: var(--text-soft); }

/* --- Process band (about) ------------------------------------------------ */

.flow { display: grid; gap: clamp(2rem, 4vw, 2.5rem); }
@media (min-width: 40rem) { .flow { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 64rem) { .flow { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.flow__step { position: relative; }
.flow__n {
  display: block;
  margin-bottom: .9rem;
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  line-height: 1;
  color: var(--gold-2);
}
.flow__step h3 { margin: 0 0 .55rem; font-size: 1.05rem; color: var(--ivory); }
.flow__step p { margin: 0; font-size: .9rem; line-height: 1.65; color: var(--on-dark-soft); }

/* Connector between steps, echoing the hooked rules in the mockup */
@media (min-width: 64rem) {
  .flow__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: .55rem;
    right: -1.25rem;
    width: 1px;
    height: 2.6rem;
    background: var(--line-dark);
  }
}

/* --- Portfolio ------------------------------------------------------------ */

.filters { display: flex; flex-wrap: wrap; gap: .55rem; }
.filters button {
  padding: .62rem 1.25rem;
  border: 1px solid var(--line);
  background: none;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
  cursor: pointer;
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.filters button:hover { color: var(--ink); border-color: var(--sand-2); }
.filters button[aria-pressed="true"] {
  color: var(--ink);
  border-color: var(--gold);
  background: rgba(164, 117, 65, .06);
}

.work { display: grid; gap: clamp(1.25rem, 2.5vw, 1.75rem); }
@media (min-width: 40rem) { .work { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 62rem) { .work { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.work__item {
  border: 1px solid var(--line);
  background: var(--ivory);
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.work__item:hover { border-color: var(--gold); }
@media (min-width: 62rem) { .work__item:hover { transform: translateY(-4px); } }
.work__item[hidden] { display: none; }

.work__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ivory-2);
}
.work__media img { width: 100%; height: 100%; min-width: 0; object-fit: cover; }
.work__body { padding: 1.25rem 1.4rem 1.5rem; }
.work__body h3 { margin: 0 0 .3rem; font-size: 1.08rem; }
.work__body p { margin: 0; font-size: .85rem; color: var(--text-soft); }

/* --- Contact details list ------------------------------------------------- */

.details { display: grid; gap: 1.6rem; margin-top: clamp(2rem, 4vw, 2.75rem); }
.detail {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  margin: 0;
}
.detail svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: var(--gold);
  stroke-width: 1.15;
  fill: none;
}
.detail dt {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: .2rem;
}
.detail dd { margin: 0; font-size: .98rem; }
.detail a { color: var(--ink); text-decoration: none; }
.detail a:hover { color: var(--gold-text); }

/* --- Footer bar (replaces the earlier column footer) ---------------------- */

.ftr--bar { padding-block: clamp(2.25rem, 4vw, 3rem) 2rem; }
.ftr__row { display: grid; gap: 1.75rem; align-items: center; }
@media (min-width: 54rem) {
  .ftr__row { grid-template-columns: auto minmax(0, 1fr) auto; gap: 2.5rem; }
}
.ftr__motto {
  margin: 0;
  font-family: var(--ff-display);
  font-size: clamp(.95rem, 1.6vw, 1.15rem);
  letter-spacing: .06em;
  color: var(--on-dark);
}
.ftr__motto em { font-style: normal; color: var(--gold-2); }
.ftr__links { display: flex; flex-wrap: wrap; gap: .75rem 1.75rem; font-size: .82rem; }
@media (min-width: 54rem) { .ftr__links { justify-content: flex-end; } }
.ftr__copy {
  margin: 1.75rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  font-size: .76rem;
  color: var(--on-dark-soft);
}

/* --- Contact layout (details | photo | form), per the mockup ------------- */

.contact-3 {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 48rem) {
  .contact-3 { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}
@media (min-width: 68rem) {
  .contact-3 { grid-template-columns: minmax(0, .95fr) minmax(0, .7fr) minmax(0, 1.25fr); }
}
.contact-3 > * { min-width: 0; }

.contact-3__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  align-self: start;
}
.contact-3__photo img {
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
}

/* Interior heroes use a plain h1 rather than .hero__title, so give every hero
   heading the same breathing room before the paragraph that follows it. */
.hero__copy h1 { margin-bottom: 1.7rem; }

/* --- Form validation state ------------------------------------------------
   Native constraints stay on the markup so the form still validates without
   JavaScript; these styles dress the inline messages main.js adds. */

.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: #A6472F;
  background: rgba(166, 71, 47, .04);
}
.field__error {
  margin: 0;
  font-size: .8rem;
  line-height: 1.5;
  color: #8A3A25;
}
.field__error[hidden] { display: none; }
.form__consent.is-invalid > span { color: #8A3A25; }
