
/* =============================================================
   TM&Co Property Maintenance — Stylesheet
   Merged from: colors_and_type.css + website/styles.css
   Organization: variables → base → typography → layout →
   components → sections → utilities → media queries
   ============================================================= */


/* -----------------------------------------------------------
   VARIABLES
   ----------------------------------------------------------- */
:root {
  /* Brand palette */
  --gold:            #B8893E;
  --gold-dark:       #9A7232;
  --gold-soft:       #D9B575;

  --charcoal:        #4A4A4A;
  --charcoal-deep:   #2A2A2A;
  --charcoal-near:   #1A1A1A;

  --cream:           #FAF8F5;
  --white:           #FFFFFF;
  --border-tone:     #E8E2D5;
  --border-deep:     #2F2F2F;

  /* Status — only in form states */
  --success: #2F7D5B;
  --error:   #B23A3A;

  /* Semantic colors */
  --bg:               var(--cream);
  --bg-elevated:      var(--white);
  --bg-inverse:       var(--charcoal-near);

  --fg:               var(--charcoal-deep);
  --fg-muted:         var(--charcoal);
  --fg-subtle:        rgba(74, 74, 74, 0.7);
  --fg-on-dark:       var(--cream);
  --fg-on-dark-muted: rgba(250, 248, 245, 0.72);

  --accent:           var(--gold);
  --accent-hover:     var(--gold-dark);
  --accent-on-dark:   var(--gold);

  --border:           var(--border-tone);
  --border-strong:    #D7CFBE;
  --rule:             var(--gold);

  /* Type */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-display: 'Bebas Neue', 'Inter', Arial, sans-serif;

  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;

  --fs-display:  clamp(72px, 12vw, 200px);
  --fs-h1:       clamp(36px, 5vw, 64px);
  --fs-h2:       clamp(28px, 3.4vw, 44px);
  --fs-h3:       clamp(20px, 1.8vw, 24px);
  --fs-h4:       18px;
  --fs-body-lg:  18px;
  --fs-body:     17px;
  --fs-small:    14px;
  --fs-eyebrow:  12px;

  --lh-tight: 0.95;
  --lh-snug:  1.15;
  --lh-base:  1.6;
  --lh-loose: 1.75;

  --tracking-tight:   -0.02em;
  --tracking-snug:    -0.01em;
  --tracking-normal:   0;
  --tracking-wide:     0.08em;
  --tracking-eyebrow:  0.14em;

  /* Spacing scale */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  48px;
  --space-8:  64px;
  --space-9:  80px;
  --space-10: 96px;
  --space-11: 128px;

  --section-y-desktop: clamp(96px, 10vw, 128px);
  --section-y-mobile:  clamp(64px, 14vw, 80px);
  --card-pad:          clamp(28px, 3.2vw, 48px);
  --page-pad:          clamp(20px, 4vw, 48px);
  --container-max:     1440px;

  /* Radii */
  --radius-0:    0px;
  --radius-1:    2px;
  --radius-2:    4px;
  --radius-pill: 999px;

  /* Borders */
  --bw-hairline: 1px;
  --bw-rule:     1px;
  --bw-card:     1px;
  --bw-focus:    2px;

  /* Elevation */
  --shadow-card:       0 1px 2px rgba(42, 42, 42, 0.04), 0 1px 1px rgba(42, 42, 42, 0.03);
  --shadow-card-hover: 0 6px 18px rgba(42, 42, 42, 0.08), 0 2px 4px rgba(42, 42, 42, 0.04);
  --shadow-sticky:     0 -2px 12px rgba(42, 42, 42, 0.08);

  /* Motion */
  --dur-fast: 120ms;
  --dur-base: 150ms;
  --dur-slow: 240ms;
  --ease:     cubic-bezier(.2, .6, .2, 1);
}


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

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-base);
  color: var(--fg);
  background: var(--bg);
  font-weight: var(--fw-regular);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Dark body so overscroll/bounce shows charcoal, not white */
html, body { background: var(--charcoal-near); }

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


/* -----------------------------------------------------------
   TYPOGRAPHY
   ----------------------------------------------------------- */
.display, h1.display {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--fg);
  margin: 0;
}

h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-snug);
  color: var(--fg);
  margin: 0 0 var(--space-5);
}

h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
  letter-spacing: var(--tracking-snug);
  color: var(--fg);
  margin: 0 0 var(--space-5);
}

h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: var(--fw-medium);
  line-height: 1.35;
  color: var(--fg);
  margin: 0 0 var(--space-4);
}

h4 {
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  line-height: 1.4;
  color: var(--fg);
  margin: 0 0 var(--space-3);
}

p { margin: 0 0 var(--space-4); }

.body-lg { font-size: var(--fs-body-lg); line-height: var(--lh-base); }
.body    { font-size: var(--fs-body);    line-height: var(--lh-base); }
.small   { font-size: var(--fs-small);   color: var(--fg-subtle); }

.eyebrow {
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
}

a {
  color: var(--fg);
  text-decoration: none;
  transition: color var(--dur-base) var(--ease);
}

a.link-gold {
  color: var(--gold);
  font-weight: var(--fw-medium);
  width: fit-content;
  display: inline-block;
}

.rule-gold {
  height: 1px;
  background: var(--gold);
  border: 0;
  width: 100%;
  display: block;
}
.rule-gold--2 { height: 2px; }

.rule-tone {
  height: 1px;
  background: var(--border);
  border: 0;
}


/* -----------------------------------------------------------
   LAYOUT
   ----------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

.section         { padding-block: var(--section-y-desktop); }
.section--cream  { background: var(--cream); }
.section--white  { background: var(--white); }


/* -----------------------------------------------------------
   COMPONENTS
   ----------------------------------------------------------- */

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 28px;
  font: var(--fw-semibold) 20px/1 var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-2);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease),
              color var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn--sm { height: 40px; padding: 0 18px; font-size: 13px; }
.btn--lg { height: 60px; padding: 0 36px; }

.btn--gold        { background: var(--gold); color: var(--white); }
.btn--gold:hover  { background: var(--gold-dark); }
.btn--gold:active { transform: translateY(1px); }

.btn--ghost-light       { background: transparent; color: var(--cream); border-color: rgba(250,248,245,.4); }
.btn--ghost-light:hover { border-color: var(--gold); color: var(--gold); }

.btn--ghost       { background: transparent; color: var(--fg); border-color: var(--border-strong); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---- Brandmark ---- */
.brandmark { display: inline-flex; }
.brandmark__box {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: inherit;
}
.brandmark__amp {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

/* ---- Navigation ---- */
.nav {
  display: flex;
  gap: 2px;
}
.nav a {
  position: relative;
  color: inherit;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 12px;
  transition: color var(--dur-base) var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease);
}
.nav a:hover,
.nav a.nav--active { color: var(--gold); }
.nav a:hover::after,
.nav a.nav--active::after { transform: scaleX(1); }

/* ---- Phone link / header right ---- */
.header-right { display: flex; align-items: center; gap: 28px; }

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.06em;
}
.phone-link:hover { color: var(--gold); }
.phone-link .i { stroke: var(--gold); }

.header-right .btn--sm { height: 36px; padding: 0 14px; font-size: 12px; }

/* ---- Hamburger ---- */
.hamburger {
  display: none;
  background: none;
  border: 1px solid currentColor;
  padding: 8px;
  cursor: pointer;
  color: inherit;
  opacity: 0.55;
}
.hamburger span { display: block; width: 16px; height: 2px; background: currentColor; margin: 3px 0; }

/* ---- Form fields ---- */
.form { display: flex; flex-direction: column; gap: 24px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.04em;
}
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 16px;
  padding: 14px 16px;
  border: 1px solid var(--border-strong);
  background: var(--white);
  color: var(--fg);
  border-radius: var(--radius-2);
  transition: border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
  width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: var(--fg-subtle); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 137, 62, 0.15);
}
.field textarea { resize: vertical; min-height: 120px; }

/* ---- Mobile bar ---- */
.mobile-bar {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  gap: 12px;
  z-index: 40;
  box-shadow: var(--shadow-sticky);
}
.mobile-bar__btn {
  flex: 1;
  height: 52px;
  border-radius: var(--radius-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mobile-bar__btn--ghost { border: 1px solid var(--charcoal); color: var(--fg); }
.mobile-bar__btn--gold  { background: var(--gold); color: var(--white); }


/* -----------------------------------------------------------
   SECTIONS
   ----------------------------------------------------------- */

/* ---- Header ---- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  padding-block: 14px;
  color: var(--cream);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--dur-slow) var(--ease),
              color var(--dur-slow) var(--ease),
              border-color var(--dur-slow) var(--ease),
              padding var(--dur-slow) var(--ease);
}
.site-header.is-scrolled {
  background: var(--cream);
  color: var(--fg);
  border-bottom-color: var(--border);
  padding-block: 10px;
}

/* Explicit child colours for transparent vs scrolled states */
.site-header .brandmark__box,
.site-header .nav a,
.site-header .phone-link {
  color: var(--cream);
  transition: color var(--dur-slow) var(--ease);
}
.site-header.is-scrolled .brandmark__box,
.site-header.is-scrolled .nav a,
.site-header.is-scrolled .phone-link {
  color: var(--fg);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}
.site-header__inner .nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* ---- Hero ---- */
.hero {
  background: var(--charcoal-near);
  color: var(--cream);
  position: relative;
  min-height: 100vh;
  padding-top: clamp(160px, 20vh, 240px);
  padding-bottom: 72px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero .container,
.site-header .container {
  max-width: 90%;
}
.hero__inner {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(80px, 12vh, 140px);
}
.hero__title-block {
  position: relative;
  padding-top: clamp(40px, 7vh, 96px);
  margin-inline-start: calc(-1 * var(--page-pad));
}
.hero__display {
  font-family: var(--font-display);
  font-size: clamp(88px, 17vw, 280px);
  line-height: 0.86;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--cream);
  margin: 0;
  text-align: left;
  font-feature-settings: "ss01" on;
}
.hero__display .amp {
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  padding: 0 0.02em;
}
.hero__overlay-label {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: var(--fg-on-dark-muted);
  text-transform: uppercase;
  text-align: right;
  pointer-events: none;
}
.hero__copy {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: end;
  padding-bottom: 48px;
}
.hero__lede {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0;
}
.hero__copy-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 32px;
  padding-left: 40px;
  border-left: 1px solid rgba(184, 137, 62, 0.3);
}
.hero__sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-on-dark-muted);
  white-space: nowrap;
  margin: 0;
}
.hero__rule {
  height: 1px;
  background: var(--gold);
  width: 100%;
  opacity: 0.7;
}

/* ---- Trust strip ---- */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding-block: 20px;
}
.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid var(--border);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 16px 28px;
  border-right: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--fg);
}
.trust-item svg { stroke: var(--gold); flex-shrink: 0; }

/* ---- Section head ---- */
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head .eyebrow { display: block; margin-bottom: 16px; }
.section-head__lede {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 60ch;
  margin: 0;
}
.section-head--row {
  display: flex;
  flex-direction: column;
  max-width: none;
  gap: 12px;
}
.section-head--row__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.section-head--row__body h2 { margin: 0; }
.section-head--row .section-head__lede { max-width: 38ch; margin: 0; }

/* ---- About intro ---- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-intro__content .eyebrow { display: block; margin-bottom: 16px; }
.about-intro__content h2 { margin-bottom: 20px; }
.about-intro__content > p { color: var(--fg-muted); font-size: 18px; max-width: 40ch; margin-bottom: 32px; }
.about-intro__content .btn { margin-bottom: 48px; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  background: var(--border);
  gap: 1px;
}
.about-stat {
  background: var(--white);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-stat__num {
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1;
}
.about-stat__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}

.about-intro__photo {
  aspect-ratio: 4/5;
  background: var(--charcoal-deep);
  position: sticky;
  top: 100px;
  display: flex;
  align-items: flex-start;
  padding: 16px;
}

/* ---- Services accordion split ---- */
.services-split {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.services-split__aside {
  position: sticky;
  top: 100px;
}
.services-split__aside .eyebrow { display: block; margin-bottom: 16px; }
.services-split__aside h2 { margin-bottom: 20px; }
.services-split__aside > p { color: var(--fg-muted); font-size: 18px; margin-bottom: 32px; }

.services-split__list {
  border-top: 1px solid var(--border);
}

.sacc { border-bottom: 1px solid var(--border); }

.sacc__head {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--fg);
  font-family: var(--font-sans);
}
.sacc__head:hover .sacc__head h3 { color: var(--gold); }
.sacc__head:hover h3 { color: var(--gold); }

.sacc__num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  flex-shrink: 0;
}

.sacc__head h3 {
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 600;
  flex: 1;
  margin: 0;
  transition: color var(--dur-base) var(--ease);
  color: var(--fg);
}

.sacc__toggle {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-strong);
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  transition: border-color var(--dur-base) var(--ease);
  font-family: var(--font-sans);
  font-weight: 400;
}
.sacc--open .sacc__toggle {
  border-color: var(--gold);
}

.sacc__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.sacc--open .sacc__body {
  max-height: 600px;
}

.sacc__body-inner {
  padding-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sacc__photo {
  aspect-ratio: 16/9;
  background: var(--charcoal-deep);
  overflow: hidden;
}
.sacc__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sacc__body-inner p {
  color: var(--fg-muted);
  font-size: 15px;
  margin: 0;
}

/* ---- Areas covered ---- */
.areas {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.areas__left .eyebrow { display: block; margin-bottom: 16px; }
.areas__left p { color: var(--fg-muted); font-size: 18px; max-width: 38ch; }

.postcode-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.postcode-list li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--border);
  font-size: 18px;
  font-weight: 500;
}
.postcode-list li:nth-child(odd)  { border-right: 1px solid var(--border); padding-right: 24px; }
.postcode-list li:nth-child(even) { padding-left: 24px; }
.postcode-list .pc {
  font-weight: 700;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.08em;
  min-width: 48px;
}

/* ---- Recent work / before-after ---- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.work-card:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
}
.work-card:first-child .work-card__media {
  flex: 1;
  aspect-ratio: unset;
}
.work-card {
  margin: 0;
  background: var(--border-tone);
}
.work-card__media {
  aspect-ratio: 16/10;
  background: var(--charcoal-deep);
  position: relative;
  overflow: hidden;
}
/* ---- Before/After 50/50 split ---- */
.ba-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ba-slider__before,
.ba-slider__after {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.ba-slider__after {
  clip-path: inset(0 0 0 50%);
}
.ba-slider__tag {
  position: absolute;
  bottom: 12px;
  z-index: 5;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(0,0,0,.5);
  padding: 5px 10px;
  pointer-events: none;
}
.ba-slider__tag--before { left: 12px; bottom: 12px; }
.ba-slider__tag--after  { left: calc(50% + 12px); bottom: 12px; }
.work-card figcaption { padding: 24px 28px; }
.work-card h4 { margin: 0 0 4px; font-size: 26px; font-weight: 600; }
.work-card .small { margin: 0; }

/* ---- Testimonials — editorial dark layout ---- */
.section--dark {
  background: var(--charcoal-near);
  color: var(--cream);
}
.section-head--on-dark h2 { color: var(--cream); }

.testimonials {
  display: flex;
  flex-direction: column;
}

.testimonial {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 56px;
  padding-block: 48px;
  border-bottom: 1px solid var(--border-deep);
  align-items: start;
}
.testimonials .testimonial:first-child { border-top: 1px solid var(--border-deep); }

.testimonial__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}
.testimonial__idx {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}
.testimonial__meta .stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 13px;
}

.testimonial__body blockquote {
  font-family: var(--font-display);
  margin: 0 0 24px;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.testimonial__body footer {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.testimonial__body footer strong { font-size: 14px; font-weight: 600; color: var(--cream); }
.testimonial__body footer span   { font-size: 13px; color: var(--fg-on-dark-muted); }

/* ---- Steps ---- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.step {
  padding: 0 40px 0 0;
  border-right: 1px solid var(--border);
  position: relative;
}
.step:last-child { border-right: 0; }
.step + .step { padding-left: 40px; }
.step__num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1;
}
.step h3 { margin: 0 0 8px; font-size: 32px; font-weight: 600; }
.step p { color: var(--fg-muted); margin: 0; }

/* ---- CTA band ---- */
.cta-band {
  background: var(--charcoal-near);
  color: var(--cream);
  padding-block: clamp(64px, 8vw, 112px);
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-band__line {
  margin: 0;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--cream);
  max-width: 22ch;
}
.cta-band__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-band__phone {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.01em;
  border-bottom: 1px solid transparent;
  transition: color var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
}
.cta-band__phone:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* ---- Contact (for future pages) ---- */
.contact {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__form-wrap .eyebrow { display: block; margin-bottom: 16px; }
.contact__form-wrap .section-head__lede { margin-bottom: 40px; }
.contact__aside {
  border: 1px solid var(--border);
  padding: 36px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__block .eyebrow { display: block; margin-bottom: 8px; }
.contact__phone {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.contact__phone:hover  { color: var(--gold); }
.contact__email        { font-size: 18px; font-weight: 500; color: var(--fg); }
.contact__email:hover  { color: var(--gold); }
.contact__strong       { font-size: 18px; font-weight: 600; color: var(--fg); margin: 0 0 8px; }
.map-placeholder {
  aspect-ratio: 4/3;
  background:
    repeating-linear-gradient(0deg, transparent 0 19px, var(--border) 19px 20px),
    repeating-linear-gradient(90deg, transparent 0 19px, var(--border) 19px 20px),
    var(--white);
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 16px;
}
.map-placeholder .placeholder-tag {
  background: var(--white);
  color: var(--fg-muted);
  border-color: var(--border-strong);
}
.map-placeholder__pin {
  position: absolute;
  left: 52%;
  top: 48%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(184,137,62,0.25);
}

/* ---- Footer ---- */
.footer {
  background: var(--charcoal-near);
  color: var(--fg-on-dark);
  padding-top: 80px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--cream);
  margin-bottom: 16px;
}
.footer__tag { color: var(--fg-on-dark-muted); margin: 0; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { color: var(--fg-on-dark-muted); }
.footer__col a:hover { color: var(--gold); }
.footer__col li { color: var(--fg-on-dark-muted); line-height: 1.5; font-size: 15px; }
.footer__base {
  display: flex;
  justify-content: space-between;
  padding-block: 24px;
}
.footer__base .small { margin: 0; color: var(--fg-on-dark-muted); }


/* -----------------------------------------------------------
   UTILITIES
   ----------------------------------------------------------- */
.eyebrow--on-dark { color: var(--gold); }

.placeholder-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,248,245,.7);
  border: 1px dashed rgba(250,248,245,.45);
  padding: 6px 10px;
}

.text-gold { color: var(--gold); }


/* -----------------------------------------------------------
   MEDIA QUERIES
   ----------------------------------------------------------- */

/* 1023px — tablet landscape and below */
@media (max-width: 1023px) {
  .nav { display: none; }
  .nav.nav--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    color: var(--charcoal-deep);
    border-top: 1px solid var(--border);
    padding: 8px var(--page-pad) 16px;
    gap: 0;
  }
  .nav.nav--open a {
    color: var(--charcoal-deep);
    border-color: transparent;
    padding: 12px 0;
  }
  .header-right .btn { display: none; }
  .hamburger { display: block; }

  .hero__display  { font-size: clamp(72px, 18vw, 180px); }
  .hero__copy     { grid-template-columns: 1fr; gap: 40px; }
  .hero__copy-right { border-left: 0; padding-left: 0; }
}

/* 900px */
@media (max-width: 900px) {
  .about-intro {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-intro__photo {
    position: static;
    aspect-ratio: 3/2;
  }
  .services-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .services-split__aside {
    position: static;
  }
  .areas          { grid-template-columns: 1fr; gap: 32px; }
  .testimonial { grid-template-columns: 80px 1fr; gap: 32px; }
  .steps { grid-template-columns: 1fr; }
  .step  { border-right: 0; border-bottom: 1px solid var(--border); padding: 0 0 32px; }
  .step + .step { padding-left: 0; padding-top: 32px; }
  .contact { grid-template-columns: 1fr; gap: 48px; }
  .form__row { grid-template-columns: 1fr; }
}

/* 768px */
@media (max-width: 768px) {
  .work-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__base  { flex-direction: column; gap: 8px; }
}

/* 767px */
@media (max-width: 767px) {
  body           { font-size: 16px; padding-bottom: 80px; }
  .section       { padding-block: var(--section-y-mobile); }
  .mobile-bar    { display: flex; }
}

/* 700px — trust strip collapses to 2-col */
@media (max-width: 700px) {
  .trust-list { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 14px 20px; }
}

/* 640px — mobile */
@media (max-width: 640px) {
  .work-grid { grid-template-columns: 1fr; }
  .work-card:first-child { grid-column: auto; grid-row: auto; display: block; }
  .work-card:first-child .work-card__media { flex: unset; aspect-ratio: 16/10; }
  .phone-link span { display: none; }
  .hero              { padding-top: 80px; padding-bottom: 40px; min-height: 100vh; }
  .hero__title-block { padding-top: 16px; }
  .hero__display     { font-size: clamp(56px, 22vw, 120px); }
  .hero__lede        { font-size: 28px; }
  .hero__overlay-label { font-size: 9px; letter-spacing: 0.2em; }
  .hero__copy        { padding-bottom: 32px; }
}

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