@charset "UTF-8";
/* ==========================================================================
   Global Hub LLC — globalhubllc.com
   Design system + page styles

   Colours, typography, spacing and button treatments are all derived from
   the previous WordPress/Avada site (see SITE-AUDIT.md §6) so the brand
   identity carries over intact. Layout, hierarchy and responsiveness are new.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. FONT — Roboto Slab, self-hosted.
   Roboto Slab is a variable font: one file covers weights 100–900, so the
   400 and 700 used across the site cost a single 34 KB request.
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/roboto-slab-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/roboto-slab-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --------------------------------------------------------------------------
   2. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand colours — measured from the live site's computed styles.
     --color-primary is the exact brand teal and is used for DECORATIVE
     elements only (rules, borders, focus rings), where WCAG sets no text
     contrast requirement. Anywhere teal carries text — links, eyebrows, solid
     buttons — uses --color-primary-dk, which reaches 5.23:1 against both white
     and white-on-teal. The original #25afb4 managed only 2.67:1 with white
     text, which would have failed AA outright. */
  --color-primary:    #25afb4;  /* teal — decorative accents                  */
  --color-primary-dk: #18787c;  /* teal for text + solid buttons (AA)         */
  --color-secondary:  #4c5166;  /* slate — headings, solid buttons, footer    */
  --color-accent:     #2a3d6c;  /* navy, from the logo mark                   */

  /* Surfaces */
  --color-bg:         #ffffff;
  --color-bg-alt:     #f7f8fa;
  --color-bg-dark:    #4c5166;

  /* Text */
  --color-text:       #4c5166;
  --color-heading:    #4c5166;
  --color-muted:      #6b7089;  /* darkened from the old #858a9f, which failed
                                   WCAG AA at 3.06:1 — this is 4.6:1          */
  --color-muted-dark: #c8cbd8;  /* muted text on the dark footer (4.85:1)     */
  --color-on-dark:    #ffffff;
  --color-border:     #e3e5ea;
  --color-border-dark:#5a617a;

  /* Type scale — fluid, so the old fixed 50px H1 no longer swamps a phone */
  --font-body: "Roboto Slab", Georgia, "Times New Roman", serif;
  --step-h1:   clamp(2rem, 1.35rem + 2.9vw, 3.125rem);   /* 32 → 50px */
  --step-h2:   clamp(1.6rem, 1.2rem + 1.8vw, 2.5rem);    /* 25.6 → 40px */
  --step-h3:   clamp(1.25rem, 1.08rem + 0.75vw, 1.5625rem); /* 20 → 25px */
  --step-h4:   clamp(1.125rem, 1.05rem + 0.35vw, 1.375rem);
  --step-lead: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  --step-body: 1rem;
  --step-sm:   0.875rem;
  --step-xs:   0.8125rem;

  --lh-tight: 1.15;
  --lh-snug:  1.35;
  --lh-body:  1.75;   /* the old site used 2.13 — generous, kept airy but readable */

  --ls-wide:  0.06em;
  --ls-btn:   0.07em;

  /* Spacing scale */
  --space-2xs: 0.25rem;
  --space-xs:  0.5rem;
  --space-sm:  0.75rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Section rhythm — fluid, preserving the old site's spacious feel */
  --section-y:    clamp(3.5rem, 2rem + 6vw, 7rem);
  --section-y-lg: clamp(4.5rem, 2rem + 9vw, 10rem);

  /* Layout */
  --container:      1170px;   /* matches the old site exactly */
  --container-pad:  clamp(1.25rem, 4vw, 2.5rem);
  --header-h:       76px;
  --header-h-lg:    92px;

  /* Square corners are a defining trait of this brand — kept at 0 */
  --radius: 0;

  --shadow-sm: 0 1px 3px rgba(44, 48, 66, .08);
  --shadow-md: 0 6px 24px rgba(44, 48, 66, .10);

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

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h-lg) + 1rem);
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: var(--step-body);
  font-weight: 400;
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;   /* belt-and-braces against the old blockquote overflow */
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--space-md);
  color: var(--color-heading);
  font-weight: 700;
  line-height: var(--lh-tight);
  text-wrap: balance;
}

h1 { font-size: var(--step-h1); font-weight: 400; letter-spacing: .02em; }
h2 { font-size: var(--step-h2); }
h3 { font-size: var(--step-h3); }
h4 { font-size: var(--step-h4); }

p { margin: 0 0 var(--space-md); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--color-primary-dk);
  text-decoration-thickness: 1px;
  text-underline-offset: .2em;
  transition: color var(--dur) var(--ease);
}
a:hover { color: var(--color-secondary); }

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

ul, ol { margin: 0 0 var(--space-md); padding-left: 1.25rem; }

strong, b { font-weight: 700; color: var(--color-secondary); }

blockquote { margin: 0; }

hr {
  height: 1px;
  margin: var(--space-2xl) 0;
  border: 0;
  background: var(--color-border);
}

/* Visible focus for every interactive element — the old site had none */
:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
}

::selection { background: var(--color-primary); color: #fff; }

/* --------------------------------------------------------------------------
   4. LAYOUT HELPERS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.container--narrow { max-width: 820px; }

.section { padding-block: var(--section-y); }
.section--lg { padding-block: var(--section-y-lg); }
.section--alt { background: var(--color-bg-alt); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-md);
  z-index: 200;
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-secondary);
  color: #fff;
  font-size: var(--step-sm);
  text-decoration: none;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: var(--space-md); color: #fff; }

/* Eyebrow label — mirrors the old "WORKING TOGETHER" treatment */
.eyebrow {
  display: block;
  margin-bottom: var(--space-sm);
  color: var(--color-primary-dk);
  font-size: var(--step-xs);
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-head { max-width: 780px; margin-bottom: var(--space-2xl); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--color-muted); font-size: var(--step-lead); }

/* Short accent rule under headings */
.rule {
  width: 56px; height: 3px;
  margin: var(--space-lg) 0 0;
  background: var(--color-primary);
}
.section-head--center .rule { margin-inline: auto; }

/* --------------------------------------------------------------------------
   5. BUTTONS
   Square, uppercase, letter-spaced — carried over from the old site.
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--color-secondary);
  --btn-fg: #fff;
  --btn-bd: var(--color-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.95rem 2rem;
  border: 1px solid var(--btn-bd);
  border-radius: var(--radius);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: inherit;
  font-size: var(--step-sm);
  font-weight: 400;
  letter-spacing: var(--ls-btn);
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn:hover {
  --btn-bg: var(--color-accent);
  --btn-bd: var(--color-accent);
  color: #fff;
  transform: translateY(-2px);
}
.btn:active { transform: translateY(0); }

.btn--lg { padding: 1.1rem 2.5rem; font-size: 1rem; }
.btn--sm { padding: 0.7rem 1.4rem; font-size: var(--step-xs); }

/* Teal solid button. Uses the darkened teal so white label text clears AA. */
.btn--primary { --btn-bg: var(--color-primary-dk); --btn-bd: var(--color-primary-dk); }
.btn--primary:hover { --btn-bg: #12615f; --btn-bd: #12615f; }

/* Ghost button — the old CTA had teal text on a white outline over imagery */
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: #fff;
  --btn-bd: rgba(255, 255, 255, .75);
}
.btn--ghost:hover {
  --btn-bg: #fff;
  --btn-bd: #fff;
  color: var(--color-secondary);
}

.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--color-secondary);
  --btn-bd: var(--color-border);
}
.btn--outline:hover {
  --btn-bg: var(--color-secondary);
  --btn-bd: var(--color-secondary);
  color: #fff;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.btn-group--center { justify-content: center; }

/* --------------------------------------------------------------------------
   6. HEADER / NAVIGATION
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid transparent;
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  transition: box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              background var(--dur) var(--ease);
}
.header.is-scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  min-height: var(--header-h);
}

.header__logo { flex: 0 0 auto; line-height: 0; }
.header__logo img { width: 200px; height: 39px; }

.nav { display: none; }

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.25rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__link {
  position: relative;
  display: inline-block;
  padding: var(--space-xs) 0;
  color: var(--color-secondary);
  font-size: 0.9375rem;
  letter-spacing: .02em;
  text-decoration: none;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav__link:hover,
.nav__link[aria-current="page"],
.nav__link.is-active { color: var(--color-primary-dk); }
.nav__link:hover::after,
.nav__link[aria-current="page"]::after,
.nav__link.is-active::after { transform: scaleX(1); }

.header__cta { display: none; }

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;   /* 44px minimum touch target */
  margin-right: -8px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--color-secondary);
  cursor: pointer;
}
.nav-toggle__box {
  position: relative;
  width: 24px; height: 16px;
}
.nav-toggle__bar {
  position: absolute;
  left: 0;
  width: 100%; height: 2px;
  background: currentColor;
  transition: transform var(--dur) var(--ease), opacity .18s var(--ease);
}
.nav-toggle__bar:nth-child(1) { top: 0; }
.nav-toggle__bar:nth-child(2) { top: 7px; }
.nav-toggle__bar:nth-child(3) { top: 14px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 99;
  max-height: 0;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: max-height .34s var(--ease), border-color var(--dur) var(--ease);
}
.mobile-nav.is-open {
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-md);
}
.mobile-nav__list {
  margin: 0;
  padding: var(--space-xs) var(--container-pad) var(--space-xl);
  list-style: none;
}
.mobile-nav__list li { border-bottom: 1px solid var(--color-border); }
.mobile-nav__list li:last-child { border-bottom: 0; }
.mobile-nav__link {
  display: block;
  padding: var(--space-md) 0;
  color: var(--color-secondary);
  font-size: 1.0625rem;
  text-decoration: none;
}
.mobile-nav__link:hover { color: var(--color-primary-dk); }
.mobile-nav .btn { width: 100%; margin-top: var(--space-lg); }

@media (min-width: 900px) {
  .header__inner { min-height: var(--header-h-lg); }
  .header__logo img { width: 240px; height: 47px; }
  .nav { display: block; }
  .header__cta { display: inline-flex; }
  .nav-toggle, .mobile-nav { display: none; }
}

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(500px, 78vh, 760px);
  padding-block: var(--section-y-lg);
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
/* <picture> must fill the box too, otherwise the image's height:100% has no
   resolved containing height and collapses to auto. */
.hero__media picture {
  display: block;
  width: 100%; height: 100%;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;   /* keeps the weaver's hands in frame */
}
/* Scrim: the source JPEG already carries a teal→indigo duotone; this only
   deepens the left side so the headline holds contrast at every width. */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(30, 38, 66, .72) 0%, rgba(30, 38, 66, .45) 55%, rgba(30, 38, 66, .28) 100%);
}
.hero__inner { max-width: 760px; }
.hero h1 {
  margin-bottom: var(--space-lg);
  color: #fff;
  line-height: 1.12;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .28);
}
.hero__lead {
  max-width: 620px;
  margin-bottom: var(--space-xl);
  color: rgba(255, 255, 255, .93);
  font-size: var(--step-h3);
  font-weight: 300;
  line-height: 1.55;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .25);
}

/* Scroll cue */
.hero__cue {
  position: absolute;
  left: 50%; bottom: var(--space-lg);
  display: none;
  color: rgba(255, 255, 255, .6);
  transform: translateX(-50%);
  animation: cue 2.4s var(--ease) infinite;
}
@media (min-width: 900px) and (min-height: 700px) { .hero__cue { display: block; } }
@keyframes cue {
  0%, 100% { transform: translate(-50%, 0); opacity: .55; }
  50%      { transform: translate(-50%, 8px); opacity: 1; }
}

/* --------------------------------------------------------------------------
   8. APPROACH — text + image, plus the three principles
   -------------------------------------------------------------------------- */
.approach__grid {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
}
@media (min-width: 900px) {
  .approach__grid {
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(3rem, 5vw, 5rem);
  }
}
.approach__media { position: relative; }
.approach__media img {
  width: 100%;
  aspect-ratio: 900 / 696;
  object-fit: cover;
}
/* Thin teal frame offset behind the photo — quiet, no drop shadow */
.approach__media::before {
  content: "";
  position: absolute;
  inset: auto -14px -14px auto;
  width: 62%; height: 62%;
  border-right: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
  z-index: -1;
}

.principles {
  margin: var(--space-xl) 0 var(--space-xl);
  padding: 0;
  list-style: none;
}
.principles li {
  position: relative;
  padding: 0 0 var(--space-md) 2.25rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-md);
}
.principles li:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.principles li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 14px; height: 2px;
  background: var(--color-primary);
}
.principles strong {
  display: block;
  color: var(--color-secondary);
  font-size: 1.0625rem;
}
.principles span { color: var(--color-muted); }

/* --------------------------------------------------------------------------
   9. PROCESS — four steps
   -------------------------------------------------------------------------- */
.process__grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 640px)  { .process__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-xl); } }
@media (min-width: 1024px) { .process__grid { grid-template-columns: repeat(4, 1fr); } }

.step {
  position: relative;
  padding: var(--space-xl) var(--space-lg) var(--space-xl);
  background: #fff;
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-primary);
  counter-increment: step;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.step__num {
  position: absolute;
  top: var(--space-md); right: var(--space-lg);
  color: var(--color-border);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
}
.step__num::before { content: "0" counter(step); }

.step__icon {
  height: 52px;
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: flex-end;
}
.step__icon img { width: auto; max-height: 52px; }

.step h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.3125rem;
}
.step p { color: var(--color-muted); font-size: 0.9375rem; line-height: 1.7; }

/* --------------------------------------------------------------------------
   10. QUOTE
   -------------------------------------------------------------------------- */
.quote { text-align: center; }
.quote blockquote {
  max-width: 860px;
  margin-inline: auto;
}
.quote__mark {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-primary);
  font-size: 3.5rem;
  line-height: 1;
}
.quote p {
  margin-bottom: var(--space-lg);
  color: var(--color-secondary);
  font-size: var(--step-h3);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
}
.quote cite {
  color: var(--color-muted);
  font-size: var(--step-sm);
  font-style: normal;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   11. PARTNERS
   -------------------------------------------------------------------------- */
.partners__grid {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
}
@media (min-width: 900px) {
  .partners__grid {
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(3rem, 5vw, 5rem);
  }
}
.partners__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* The one genuinely verifiable figure on the site */
.figure-stat {
  padding: var(--space-lg) 0 var(--space-lg) var(--space-lg);
  margin-bottom: var(--space-xl);
  border-left: 3px solid var(--color-primary);
}
.figure-stat__num {
  display: block;
  color: var(--color-secondary);
  font-size: clamp(2.5rem, 2rem + 2.4vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
}
.figure-stat__label {
  display: block;
  margin-top: var(--space-xs);
  color: var(--color-muted);
  font-size: var(--step-sm);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   12. CTA BAND
   -------------------------------------------------------------------------- */
.cta {
  position: relative;
  padding-block: var(--section-y-lg);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.cta__media { position: absolute; inset: 0; z-index: -2; }
.cta__media picture { display: block; width: 100%; height: 100%; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; }
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(30, 38, 66, .62), rgba(30, 38, 66, .74));
}
.cta h2 { color: #fff; }
.cta p {
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
  color: rgba(255, 255, 255, .92);
  font-size: var(--step-lead);
}
.cta .rule { margin-inline: auto; background: var(--color-primary); }

/* --------------------------------------------------------------------------
   13. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: var(--color-bg-dark);
  border-top: 4px solid var(--color-primary);
  color: var(--color-muted-dark);
}
.footer__main {
  display: grid;
  gap: var(--space-2xl);
  padding-block: var(--space-3xl) var(--space-2xl);
}
@media (min-width: 700px)  { .footer__main { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer__main { grid-template-columns: 1.4fr repeat(3, 1fr); gap: var(--space-xl); } }

.footer__brand img { width: 220px; height: 35px; margin-bottom: var(--space-md); }
.footer__brand p {
  max-width: 34ch;
  color: var(--color-muted-dark);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer__office h3 {
  margin-bottom: var(--space-md);
  color: #fff;
  font-size: var(--step-xs);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer__office address {
  color: var(--color-muted-dark);
  font-size: 0.9375rem;
  font-style: normal;
  line-height: 1.8;
}
.footer__office a {
  color: var(--color-muted-dark);
  text-decoration: none;
}
/* Brand teal is only 2.94:1 on the slate footer, so hover goes to white. */
.footer__office a:hover { color: #fff; }

.footer__tel {
  display: inline-block;
  margin-top: var(--space-xs);
  font-variant-numeric: tabular-nums;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: var(--space-lg);
  border-top: 1px solid var(--color-border-dark);
  font-size: var(--step-xs);
  letter-spacing: .04em;
}
.footer__bottom p { margin: 0; }
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__nav a { color: var(--color-muted-dark); text-decoration: none; }
.footer__nav a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   14. PAGE HEADER (inner pages) + BREADCRUMB
   -------------------------------------------------------------------------- */
.page-header {
  padding-block: clamp(3rem, 2rem + 4vw, 5rem);
  background: var(--color-secondary);
  color: #fff;
}
.page-header h1 { margin-bottom: var(--space-sm); color: #fff; }
.page-header p {
  max-width: 60ch;
  color: rgba(255, 255, 255, .85);
  font-size: var(--step-lead);
}

.breadcrumb {
  margin-bottom: var(--space-md);
  font-size: var(--step-xs);
  letter-spacing: .04em;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumb li + li::before { content: "/"; margin-right: var(--space-xs); opacity: .5; }
.breadcrumb a { color: rgba(255, 255, 255, .8); text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: rgba(255, 255, 255, .6); }

/* --------------------------------------------------------------------------
   15. CONTACT LAYOUT + FORM
   -------------------------------------------------------------------------- */
.contact__grid {
  display: grid;
  gap: var(--space-2xl);
  align-items: start;
}
@media (min-width: 960px) {
  .contact__grid {
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(3rem, 5vw, 5rem);
  }
}

.contact__offices {
  display: grid;
  gap: var(--space-lg);
}
.office-card {
  padding: var(--space-lg);
  background: var(--color-bg-alt);
  border-left: 3px solid var(--color-primary);
}
.office-card h3 {
  margin-bottom: var(--space-xs);
  color: var(--color-secondary);
  font-size: var(--step-xs);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.office-card address {
  color: var(--color-muted);
  font-size: 0.9375rem;
  font-style: normal;
  line-height: 1.75;
}
.office-card a { color: var(--color-secondary); text-decoration: none; font-weight: 700; }
.office-card a:hover { color: var(--color-primary-dk); text-decoration: underline; }

/* Form */
.form { display: grid; gap: var(--space-lg); }

.field { display: grid; gap: var(--space-2xs); }

.field label {
  color: var(--color-secondary);
  font-size: var(--step-sm);
  font-weight: 700;
  letter-spacing: .02em;
}
.field .req { color: var(--color-primary-dk); }

.field input,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--color-secondary);
  font-family: inherit;
  font-size: 1rem;   /* 16px — stops iOS zooming on focus */
  line-height: 1.5;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field textarea { min-height: 168px; resize: vertical; }

.field input::placeholder,
.field textarea::placeholder { color: #a7abbd; }

.field input:hover,
.field textarea:hover { border-color: #c9cdd8; }

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 175, 180, .16);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: #c0392b; }
.field input[aria-invalid="true"]:focus,
.field textarea[aria-invalid="true"]:focus { box-shadow: 0 0 0 3px rgba(192, 57, 43, .16); }

.field__error {
  min-height: 1.25em;
  color: #c0392b;
  font-size: var(--step-xs);
  line-height: 1.25;
}
.field__error:empty { min-height: 0; }

/* Honeypot — hidden from humans, left in the DOM for bots */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
}

.btn[data-loading="true"] { pointer-events: none; opacity: .75; }
.btn__spinner {
  display: none;
  width: 15px; height: 15px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.btn[data-loading="true"] .btn__spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form__note { color: var(--color-muted); font-size: var(--step-xs); line-height: 1.6; }

.form__status {
  padding: var(--space-md) var(--space-lg);
  border-left: 3px solid;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.form__status:empty { display: none; padding: 0; border: 0; }
.form__status[data-state="success"] {
  border-color: #1e8449;
  background: #eafaf1;
  color: #145a32;
}
.form__status[data-state="error"] {
  border-color: #c0392b;
  background: #fdedec;
  color: #922b21;
}

/* --------------------------------------------------------------------------
   16. BACK TO TOP
   -------------------------------------------------------------------------- */
.to-top {
  position: fixed;
  right: var(--space-lg); bottom: var(--space-lg);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 0;
  background: var(--color-secondary);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease),
              visibility var(--dur), background var(--dur) var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--color-primary-dk); }

/* --------------------------------------------------------------------------
   17. SCROLL REVEAL
   Content is visible by default and only animates once JS adds .reveal-ready.
   The old site rendered everything at opacity:0 and never showed it if JS
   failed — this inverts that so the page is readable without JavaScript.
   -------------------------------------------------------------------------- */
.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal-ready .reveal.is-visible { opacity: 1; transform: none; }
.reveal-ready .reveal[data-delay="1"] { transition-delay: .08s; }
.reveal-ready .reveal[data-delay="2"] { transition-delay: .16s; }
.reveal-ready .reveal[data-delay="3"] { transition-delay: .24s; }

/* --------------------------------------------------------------------------
   18. REDUCED MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-ready .reveal { opacity: 1 !important; transform: none !important; }
  .btn:hover, .step:hover { transform: none; }
  .hero__cue { animation: none; }
}

/* --------------------------------------------------------------------------
   19. PRINT
   -------------------------------------------------------------------------- */
@media print {
  .header, .mobile-nav, .to-top, .hero__cue, .cta, .form__actions { display: none !important; }
  body { color: #000; font-size: 12pt; }
  .hero, .footer { background: none !important; color: #000 !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
}
