/* ------------------------------------------------------------------
   NALU ARCHITECTURE — brand tokens
   ------------------------------------------------------------------ */
:root {
  --navy:        #1D2B4F;
  --navy-deep:   #131E3B;
  --navy-ink:    #0B1226;
  --cream:       #F4EDDF;
  --cream-warm:  #EFE4CE;
  --sand:        #C9B79A;
  --line:        rgba(255,255,255,0.14);
  --line-dark:   rgba(11,18,38,0.14);
  --text-on-dark:        #F4EDDF;
  --text-on-dark-muted:  rgba(244,237,223,0.72);
  --text-on-light:       #131E3B;
  --text-on-light-muted: rgba(19,30,59,0.72);
  --accent:      #A9C0D6;              /* soft cyan-blue */
  --shadow:      0 30px 60px -30px rgba(11,18,38,0.55);

  /* One display + one body. Abel matches the trademarked Nalu wordmark. */
  --f-display: 'Abel', 'Helvetica Neue', Arial, sans-serif;
  --f-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --brass:     #C9A96A;                 /* single warm accent, used sparingly */

  --measure: 62ch;
  --wrap:    1240px;
  --wrap-narrow: 880px;
  --pad-x:   clamp(20px, 4vw, 48px);
  --pad-y:   clamp(72px, 10vw, 140px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-on-light);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.75; }

/* ------------------------------------------------------------------
   Typography
   ------------------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 0.6em;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
h1 { font-size: clamp(2.2rem, 5.4vw, 4rem); letter-spacing: 0.05em; }
h2 { font-size: clamp(1.65rem, 3vw, 2.35rem); letter-spacing: 0.06em; }
h3 {
  font-size: clamp(1.05rem, 1.55vw, 1.25rem);
  letter-spacing: 0.14em;
}
h4 {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}
p  { margin: 0 0 1em; max-width: var(--measure); }

.eyebrow {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-on-light-muted);
  margin-bottom: 1.25rem;
  display: inline-block;
}
.on-dark .eyebrow { color: var(--text-on-dark-muted); }

/* ------------------------------------------------------------------
   Header / nav
   ------------------------------------------------------------------ */
.header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 50;
  padding: 18px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}
.header--scrolled {
  background: rgba(11,18,38,0.85);
  backdrop-filter: blur(12px);
  padding-top: 12px; padding-bottom: 12px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.brand {
  color: var(--cream);
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: 0.28em;
  display: flex; align-items: center; gap: 12px;
}
.brand .brand-wordmark {
  display: block;
  height: 46px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 720px) {
  .brand .brand-wordmark { height: 40px; }
}

.nav {
  display: flex; gap: 34px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
}
.nav a { position: relative; padding: 4px 0; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: var(--cream);
  transition: width 0.25s ease;
}
.nav a:hover { opacity: 1; }
.nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: transparent; border: 0; color: var(--cream);
  font-size: 22px; padding: 4px 8px; cursor: pointer;
}

@media (max-width: 780px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
  .nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(11,18,38,0.96);
    padding: 24px var(--pad-x) 32px;
    gap: 22px;
  }
}

/* ------------------------------------------------------------------
   Sections
   ------------------------------------------------------------------ */
section { position: relative; }
.section-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: var(--pad-y) var(--pad-x);
}
.section-inner--narrow { max-width: var(--wrap-narrow); }

.on-dark  { background: var(--navy-ink); color: var(--text-on-dark); }
.on-cream { background: var(--cream);    color: var(--text-on-light); }
.on-navy  { background: var(--navy);     color: var(--text-on-dark); }

.on-dark p,  .on-navy p  { color: var(--text-on-dark-muted); }
.on-cream p              { color: var(--text-on-light-muted); }

/* ------------------------------------------------------------------
   HERO — full-bleed Night Section background
   ------------------------------------------------------------------ */
.hero {
  min-height: 100vh;
  display: flex; align-items: flex-end;
  /* Official Nalu Night Section background from Drive: section-cut cliffside home + breaking wave curl */
  background: #0B0F16 url('../img/bg_night_section.jpg') center center / cover no-repeat;
  color: var(--cream);
  position: relative;
}
/* Keep both the house section (left) and the wave curl (right) visible across breakpoints */
@media (min-width: 1200px) { .hero { background-position: 55% center; } }
@media (min-width: 1600px) { .hero { background-position: 50% center; } }
.hero::before {
  content: "";
  position: absolute; inset: 0;
  /* Left-anchored scrim so the headline holds over the section drawing without darkening the wave */
  background:
    linear-gradient(90deg, rgba(11,15,22,0.7) 0%, rgba(11,15,22,0.25) 40%, rgba(11,15,22,0) 70%),
    linear-gradient(180deg, rgba(11,15,22,0.3) 0%, rgba(11,15,22,0) 25%, rgba(11,15,22,0) 55%, rgba(11,15,22,0.85) 100%);
}
@media (max-width: 900px) {
  .hero { background-position: 70% center; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(11,15,22,0.55) 0%, rgba(11,15,22,0.15) 25%, rgba(11,15,22,0.4) 55%, rgba(11,15,22,0.9) 100%);
  }
}
.hero-inner {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(60px, 10vw, 110px);
  width: 100%;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.8vw, 4.6rem);
  letter-spacing: 0.03em;
  max-width: 18ch;
  margin-bottom: 0.4em;
}
.hero-lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  max-width: 46ch;
  color: rgba(244,237,223,0.86);
  margin-bottom: 2.2rem;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 12px 28px;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(244,237,223,0.65);
}
.hero-meta span { white-space: nowrap; }

/* Buttons — brass ghost, editorial style */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 28px;
  border: 1.5px solid var(--brass);
  color: var(--brass);
  font-family: var(--f-body);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  background: transparent;
}
.btn:hover { background: var(--brass); color: var(--navy-ink); }
.on-cream .btn:hover { color: var(--cream); }
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ------------------------------------------------------------------
   Wordmark watermark behind intro copy
   ------------------------------------------------------------------ */
.intro-section { position: relative; overflow: hidden; }
.wordmark-watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 92%;
  max-width: 1200px;
  height: auto;
  max-height: 78%;
  object-fit: contain;
  opacity: 0.055;
  pointer-events: none;
  z-index: 0;
  filter: blur(0.4px);
}
.intro-section .section-inner { position: relative; z-index: 1; }

/* ------------------------------------------------------------------
   Intro / one-liner
   ------------------------------------------------------------------ */
.intro { text-align: left; }
.intro h2 { max-width: 22ch; font-size: clamp(1.75rem, 3.3vw, 2.55rem); }
.intro-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 780px) { .intro-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------
   Services — Blueprint background band
   ------------------------------------------------------------------ */
.services {
  background:
    linear-gradient(180deg, rgba(19,30,59,0.82), rgba(19,30,59,0.92)),
    url('../img/bg_coastal_blueprint.jpg') center/cover no-repeat;
  background-attachment: scroll;
  color: var(--text-on-dark);
}
/* editorial services grid: images take primacy, hairlines between columns */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 0;
  row-gap: 64px;
  margin-top: 4rem;
  border-top: 1px solid var(--line);
  padding-top: 56px;
}
@media (max-width: 1400px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 1000px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .services-grid { grid-template-columns: 1fr; row-gap: 56px; padding-top: 40px; } }
.service {
  display: flex; flex-direction: column;
  padding: 0 32px;
  border-right: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 400ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.service:hover { transform: translateY(-4px); }
.service:last-child { border-right: none; }
/* 2x2 layout: remove right border on every 2nd item, add bottom border on top row */
@media (max-width: 1200px) and (min-width: 701px) {
  .service { padding: 0 32px 40px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .service:nth-child(2n) { border-right: none; }
  .service:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }
}
@media (max-width: 700px) {
  .service { border-right: none; border-bottom: 1px solid var(--line); padding: 0 0 48px; }
  .service:last-child { border-bottom: none; padding-bottom: 0; }
}
/* Cover: monochrome by default, full color on hover, subtle zoom */
.service-cover {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 32px;
  position: relative;
  background: #0a0d18;
}
.service-hero {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 500ms ease;
  will-change: transform;
}
.service:hover .service-hero,
.service:focus-visible .service-hero {
  transform: scale(1.06);
  filter: brightness(1.03);
}
/* subtle vignette so cover reads as a hero, not a stock photo */
.service-cover::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,13,24,0) 55%, rgba(10,13,24,0.35) 100%);
  pointer-events: none;
  transition: opacity 400ms ease;
}
.service:hover .service-cover::after { opacity: 0.6; }
.service:focus-visible { outline: 2px solid var(--brass); outline-offset: 4px; }
.service-body {
  display: flex; flex-direction: column;
  flex: 1;
}
.service-num {
  font-family: var(--f-display);
  font-size: 12px; letter-spacing: 0.3em;
  color: rgba(201,169,106,0.85); /* brass */
  margin-bottom: 18px;
}
.service h3 {
  color: var(--cream);
  margin-bottom: 18px;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 2.15rem;
  line-height: 1.05;
  letter-spacing: 0.005em;
  text-transform: none;
}
.service p  {
  margin-bottom: 26px;
  color: rgba(244,237,223,0.75);
  font-size: 15px;
  line-height: 1.55;
  max-width: 34ch;
}
.service ul { list-style: none; padding: 0; margin: 0 0 20px; font-size: 13px; color: rgba(244,237,223,0.6); }
.service ul li { padding: 10px 0; border-top: 1px solid var(--line); letter-spacing: 0.02em; }
.service-cta {
  display: inline-block;
  margin-top: auto;
  padding-top: 8px;
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  transition: transform 300ms ease, letter-spacing 300ms ease;
}
.service:hover .service-cta { transform: translateX(4px); letter-spacing: 0.32em; }

/* ------------------------------------------------------------------
   Work — portfolio grid
   ------------------------------------------------------------------ */
/* Work portfolio grid: caption sits BELOW image on the cream page,
   works for both white-paper sketches and color photographs. */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 20px;
  margin-top: 3rem;
}
.work-item {
  display: flex; flex-direction: column;
  text-decoration: none;
  background: transparent;
}
.work-item .work-image {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #FBF7EE;
  border: 1px solid rgba(29, 43, 79, 0.10);
}
.work-item .work-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.work-item:hover .work-image img { transform: scale(1.03); }

/* Photo/rendered images get a light navy duotone so they harmonize
   with the pen sketches on the cream page. */
.work-item--photo .work-image img {
  filter: saturate(0.72) contrast(1.02) brightness(0.98);
  transition: filter 0.35s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.work-item--photo:hover .work-image img { filter: saturate(0.95) contrast(1.02) brightness(1); }

.work-caption {
  padding: 14px 2px 0;
  color: var(--navy);
}
.work-caption h4 {
  font-family: var(--f-display); font-size: 1.15rem; font-weight: 400;
  letter-spacing: 0.04em; margin: 0 0 4px; color: var(--navy);
}
.work-caption span {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(29, 43, 79, 0.55);
}

/* Feature the first item across 2 columns and give it a wider aspect */
.work-item--wide { grid-column: span 2; }
.work-item--wide .work-image { aspect-ratio: 16 / 9; }
.work-item--std, .work-item--tall { grid-column: span 1; }

@media (max-width: 900px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; }
  .work-item--wide { grid-column: span 2; }
  .work-item--wide .work-image { aspect-ratio: 16 / 9; }
}
@media (max-width: 520px) {
  .work-grid { grid-template-columns: 1fr; }
  .work-item--wide { grid-column: span 1; }
  .work-item--wide .work-image { aspect-ratio: 4 / 3; }
}

/* ------------------------------------------------------------------
   Land + Passive Design — Editorial band on cream
   ------------------------------------------------------------------ */
.land-passive {
  background: var(--cream);
  color: var(--navy-ink);
  position: relative;
}
.land-passive .eyebrow { color: rgba(19,30,59,0.60); }

.land-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.land-head h2 {
  margin: 12px 0 0;
  max-width: 22ch;
  font-size: clamp(1.75rem, 3.3vw, 2.55rem);
  color: var(--navy-ink);
}
.land-lede {
  margin: 0;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.65;
  color: rgba(19,30,59,0.78);
  max-width: 44ch;
  padding-top: 8px;
}
@media (max-width: 780px) {
  .land-head { grid-template-columns: 1fr; }
  .land-lede { padding-top: 0; }
}

.land-hero {
  margin: 0 0 clamp(48px, 6vw, 80px);
  width: 100%;
  border-top: 1px solid rgba(19,30,59,0.10);
  border-bottom: 1px solid rgba(19,30,59,0.10);
  padding: clamp(20px, 3vw, 40px) 0;
}
.land-hero img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.land-triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 0;
  border-top: 1px solid rgba(19,30,59,0.14);
  padding-top: clamp(40px, 4vw, 56px);
  margin-bottom: clamp(56px, 7vw, 96px);
}
@media (max-width: 900px)  { .land-triptych { grid-template-columns: 1fr; } }
.land-block {
  padding: 0 clamp(20px, 2.5vw, 32px);
  border-right: 1px solid rgba(19,30,59,0.14);
}
.land-block:last-child { border-right: none; }
@media (max-width: 900px) {
  .land-block { border-right: none; border-bottom: 1px solid rgba(19,30,59,0.14); padding: 0 0 40px; margin-bottom: 40px; }
  .land-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
}
.land-block-num {
  font-family: var(--f-display);
  font-size: 12px; letter-spacing: 0.3em;
  color: rgba(154, 122, 62, 0.9);
  display: block;
  margin-bottom: 16px;
}
.land-block h3 {
  color: var(--navy-ink);
  margin: 0 0 16px;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 1.1;
  letter-spacing: 0.005em;
}
.land-block p {
  margin: 0;
  color: rgba(19,30,59,0.75);
  font-size: 15px;
  line-height: 1.6;
  max-width: 34ch;
}

.land-case {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid rgba(19,30,59,0.14);
  margin-bottom: clamp(56px, 7vw, 96px);
}
.land-case-copy .eyebrow { display: block; margin-bottom: 14px; }
.land-case-copy h3 {
  margin: 0 0 22px;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 2.6vw, 2.15rem);
  line-height: 1.1;
  color: var(--navy-ink);
}
.land-case-copy p {
  margin: 0 0 16px;
  color: rgba(19,30,59,0.78);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 42ch;
}
.land-case-copy p:last-child { margin-bottom: 0; }
.land-case-plan { margin: 0; }
.land-case-plan img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: contain;
}
@media (max-width: 900px) {
  .land-case { grid-template-columns: 1fr; }
  .land-case-plan { order: -1; }
}

.land-section {
  margin: 0;
  padding-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid rgba(19,30,59,0.14);
}
.land-section img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.land-section figcaption {
  margin-top: 20px;
  text-align: center;
  color: rgba(19,30,59,0.60);
  font-size: 13px;
  letter-spacing: 0.04em;
  font-style: italic;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

/* ------------------------------------------------------------------
   Testimonials — Google reviews on navy
   ------------------------------------------------------------------ */
.testimonials {
  background:
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
}
.testimonials-head {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 14px; margin-bottom: clamp(40px, 5vw, 64px);
}
.testimonials-head h2 { margin: 0; max-width: 22ch; }
.google-lockup {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  margin-top: 6px;
}
.g-mark { width: 18px; height: 18px; display: block; }
.g-label {
  font-family: var(--f-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-on-dark-muted);
}

.reviews-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 780px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
.review {
  margin: 0;
  padding: 28px 30px 26px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.review .stars {
  color: #FBBC05;                     /* Google review yellow */
  font-size: 15px; letter-spacing: 3px;
  line-height: 1;
}
.review p {
  margin: 0;
  color: var(--text-on-dark);
  font-family: var(--f-body);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: none;
}
.review cite {
  display: flex; flex-direction: column; gap: 2px;
  font-style: normal;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.review .reviewer {
  font-family: var(--f-display);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-on-dark);
}
.review .project {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}

/* ------------------------------------------------------------------
   About — Marker Studio soft cream
   ------------------------------------------------------------------ */
.about {
  background: var(--cream);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 780px) { .about-grid { grid-template-columns: 1fr; } }
.about-portrait {
  aspect-ratio: 4 / 5; overflow: hidden;
  filter: grayscale(20%);
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }

/* Second team card: flipped column order, sketch (not photo), no grayscale */
.about-grid--flip {
  margin-top: clamp(48px, 6vw, 96px);
  padding-top: clamp(40px, 5vw, 72px);
  border-top: 1px solid rgba(19, 30, 59, 0.14);
  grid-template-columns: 1.4fr 1fr;
}
@media (max-width: 780px) {
  .about-grid--flip { grid-template-columns: 1fr; }
  .about-grid--flip > div:last-child { order: -1; }
}
.about-portrait--sketch {
  aspect-ratio: 4 / 3;
  filter: none;
  background: transparent;
}
.about h2 { color: var(--navy-ink); }
.about-meta {
  margin-top: 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  font-size: 13px;
}
.about-meta dt { color: rgba(19,30,59,0.55); letter-spacing: 0.18em; text-transform: uppercase; font-size: 11px; margin-bottom: 6px; }
.about-meta dd { margin: 0; color: var(--navy-ink); font-family: var(--f-display); font-size: 1.1rem; letter-spacing: 0.02em; }

/* ------------------------------------------------------------------
   Contact — Cardiff South background band
   ------------------------------------------------------------------ */
.contact {
  background:
    linear-gradient(180deg, rgba(11,18,38,0.72), rgba(11,18,38,0.9)),
    url('../img/cardiff_south.jpg') center/cover no-repeat;
  color: var(--text-on-dark);
}
.contact h2 { color: var(--cream); max-width: 20ch; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px);
  align-items: start; margin-top: 2.5rem;
}
@media (max-width: 780px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info dt { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(244,237,223,0.6); margin-bottom: 6px; }
.contact-info dd { margin: 0 0 24px; font-family: var(--f-display); font-size: 1.35rem; color: var(--cream); letter-spacing: 0.02em; }
.contact-info a  { border-bottom: 1px solid rgba(244,237,223,0.4); padding-bottom: 2px; }

.field { display: flex; flex-direction: column; margin-bottom: 18px; }
.field label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(244,237,223,0.6); margin-bottom: 6px; }
.field input, .field textarea {
  background: rgba(11,18,38,0.65);
  border: 1px solid var(--line);
  padding: 14px 16px;
  color: var(--cream);
  font-family: var(--f-body); font-size: 15px;
  outline: none; transition: border-color 0.2s ease, background 0.2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(244,237,223,0.42); }
.field input:focus, .field textarea:focus { border-color: var(--cream); background: rgba(11,18,38,0.55); }
.field textarea { min-height: 120px; resize: vertical; }

/* ------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------ */
.footer {
  background: var(--navy-ink);
  color: var(--text-on-dark-muted);
  padding: 60px var(--pad-x) 32px;
  font-size: 13px;
}
.footer-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px;
}
@media (max-width: 780px) { .footer-inner { grid-template-columns: 1fr; gap: 32px; } }
.footer h5 {
  color: var(--cream);
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  font-family: var(--f-body); font-weight: 600;
  margin: 0 0 14px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { padding: 5px 0; }
.footer a:hover { color: var(--cream); opacity: 1; }
.footer-bottom {
  max-width: var(--wrap); margin: 40px auto 0;
  padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(244,237,223,0.4);
}
@media (max-width: 600px) { .footer-bottom { flex-direction: column; gap: 12px; text-align: center; } }

/* Utility */
.divider {
  height: 1px; background: var(--line-dark); margin: 0 auto; max-width: var(--wrap);
}
.on-dark .divider, .on-navy .divider { background: var(--line); }

/* ==============================================================
   Breakout pages — commercial / multifamily / residential /
   interiors / land-passive
   ============================================================== */
.page-breakout { background: var(--cream); color: var(--text-on-light); }

/* Header on breakout: same styling but starts scrolled/opaque */
.header--breakout {
  background: rgba(10, 13, 24, 0.94);
  backdrop-filter: blur(8px);
}

/* Hero */
.breakout-hero {
  position: relative;
  width: 100%;
  height: 68vh;
  min-height: 480px;
  max-height: 780px;
  overflow: hidden;
  background: #0a0d18;
}
.breakout-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.breakout-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,13,24,0.35) 0%, rgba(10,13,24,0.15) 40%, rgba(10,13,24,0.75) 100%);
}
.breakout-hero-copy {
  position: absolute;
  left: 6vw; right: 6vw; bottom: 8vh;
  color: var(--cream);
  max-width: 780px;
}
.breakout-hero-copy .eyebrow {
  color: rgba(201,169,106,0.9);
  margin-bottom: 20px;
}
.breakout-hero-copy h1 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0.005em;
  color: var(--cream);
  margin: 0 0 18px;
}
.breakout-tagline {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(244,237,223,0.85);
  max-width: 52ch;
  line-height: 1.5;
}

/* Intro paragraph on cream */
.breakout-intro { padding: 88px 0 32px; }
.breakout-blurb {
  font-size: 1.15rem;
  line-height: 1.65;
  max-width: 68ch;
  color: var(--text-on-light);
}

/* Gallery grid */
.breakout-gallery { padding: 32px 0 96px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 28px;
}
@media (max-width: 700px) { .gallery-grid { grid-template-columns: 1fr; gap: 32px; } }
.gallery-item {
  margin: 0;
  cursor: zoom-in;
}
.gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: #0a0d18;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 400ms ease;
}
.gallery-item:hover img { transform: scale(1.02); filter: brightness(1.03); }
.gallery-item figcaption {
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(10,13,24,0.55);
  margin-top: 14px;
}

/* Contact CTA strip */
.breakout-cta {
  background: var(--night);
  color: var(--text-on-dark);
  padding: 88px 0;
}
.breakout-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.breakout-cta h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.1;
  color: var(--cream);
  margin: 8px 0 0;
}

/* Back link */
.breakout-back { padding: 48px 0 96px; background: var(--cream); }
.back-link {
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-on-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(10,13,24,0.35);
  padding-bottom: 4px;
  transition: color 200ms ease, border-color 200ms ease;
}
.back-link:hover { color: var(--brass); border-color: var(--brass); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10,13,24,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 5vh 5vw;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  background: transparent;
  border: none;
  color: var(--cream);
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  padding: 8px 16px;
}
.lightbox-close:hover { color: var(--brass); }

/* Land + Passive homepage CTA */
.land-cta { margin-top: 56px; text-align: right; }
.land-cta-link { color: var(--cream); border-color: rgba(244,237,223,0.25); }
.land-cta-link:hover { color: var(--brass); border-color: var(--brass); }
@media (max-width: 700px) { .land-cta { text-align: left; } }

/* ==============================================================
   Immersive category gallery overlay
   ============================================================== */
.gallery-overlay {
  position: fixed; inset: 0;
  background: rgba(6, 8, 15, 0.985);
  z-index: 2000;
  display: none;
  flex-direction: column;
  color: var(--cream);
  opacity: 0;
  transition: opacity 300ms ease;
}
.gallery-overlay.open { display: flex; opacity: 1; }

.gallery-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 28px 40px 20px;
  gap: 24px;
}
.gallery-title { flex: 1; min-width: 0; }
.gallery-eyebrow {
  display: block;
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(201,169,106,0.9);
  margin-bottom: 6px;
}
.gallery-h {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1;
  letter-spacing: 0.005em;
  color: var(--cream);
  margin: 0;
}
.gallery-top-right {
  display: flex; align-items: center; gap: 20px;
}
.gallery-counter {
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244,237,223,0.65);
}
.gallery-deep {
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(244,237,223,0.25);
  padding-bottom: 3px;
  transition: color 200ms ease, border-color 200ms ease;
}
.gallery-deep:hover { color: var(--brass); border-color: var(--brass); }
.gallery-close {
  background: transparent; border: none;
  color: var(--cream); font-size: 34px; line-height: 1;
  cursor: pointer;
  padding: 0 8px;
  transition: color 200ms ease, transform 200ms ease;
}
.gallery-close:hover { color: var(--brass); transform: rotate(90deg); }

.gallery-stage {
  flex: 1; min-height: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 8px 96px 8px;
  position: relative;
  cursor: zoom-out;
}
.gallery-figure {
  margin: 0;
  max-width: 100%; max-height: 100%;
  display: flex; flex-direction: column; align-items: center;
  gap: 18px;
}
.gallery-figure img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 260px);
  object-fit: contain;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity 400ms ease;
  cursor: default;
}
.gallery-figure img.is-visible { opacity: 1; }
.gallery-caption {
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244,237,223,0.7);
  text-align: center;
}

.gallery-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(10,13,24,0.4);
  border: 1px solid rgba(244,237,223,0.15);
  color: var(--cream);
  width: 56px; height: 56px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.gallery-prev { left: 24px; }
.gallery-next { right: 24px; }
.gallery-nav:hover {
  background: rgba(201,169,106,0.15);
  border-color: var(--brass);
  color: var(--brass);
}

.gallery-thumbs {
  display: flex; gap: 10px;
  padding: 16px 40px 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(244,237,223,0.2) transparent;
}
.gallery-thumbs::-webkit-scrollbar { height: 6px; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: rgba(244,237,223,0.2); }
.gallery-thumb {
  flex: 0 0 auto;
  background: transparent;
  border: 2px solid transparent;
  padding: 0;
  width: 96px; height: 64px;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.gallery-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-thumb:hover { opacity: 0.85; transform: translateY(-2px); }
.gallery-thumb.is-active {
  opacity: 1;
  border-color: var(--brass);
}

@media (max-width: 700px) {
  .gallery-top { padding: 16px 20px 12px; flex-wrap: wrap; }
  .gallery-top-right { gap: 12px; }
  .gallery-deep { display: none; }
  .gallery-stage { padding: 8px 12px; }
  .gallery-nav { width: 44px; height: 44px; font-size: 22px; }
  .gallery-prev { left: 8px; }
  .gallery-next { right: 8px; }
  .gallery-figure img { max-height: calc(100vh - 220px); }
  .gallery-thumb { width: 72px; height: 48px; }
  .gallery-thumbs { padding: 12px 16px 16px; }
}

/* ============================================================
   v43 EDITORIAL POLISH — appended, wins on cascade
   ============================================================ */

/* ---- Type refinement: quieter Abel, tighter tracking ---- */
h1, h2, h3, h4 {
  letter-spacing: -0.01em;
}
.hero-cinema-caption, .hero-cinema-index,
.eyebrow {
  font-family: var(--f-body);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
}

/* ---- HERO CINEMA (full-bleed cycling renders) ---- */
.hero-cinema {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  background: var(--night, #0a1a2b);
  overflow: hidden;
  color: var(--text-on-dark, #f4eddf);
  color: #f4eddf;
}
.hero-cinema .hero-slides {
  position: absolute;
  inset: 0;
}
.hero-cinema .hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1400ms cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.hero-cinema .hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero-cinema .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.88) saturate(1.02);
}
/* Bottom gradient so caption is legible without a slab */
.hero-cinema::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(to bottom, rgba(10,26,43,0) 0%, rgba(10,26,43,0.55) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-cinema-caption {
  position: absolute;
  left: clamp(24px, 5vw, 64px);
  bottom: clamp(28px, 5vw, 52px);
  z-index: 3;
  color: #f4eddf;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 60ch;
}
.hero-cinema-index {
  color: rgba(244,237,223,0.7);
}
.hero-cinema-project {
  font-family: var(--f-display, 'Abel', sans-serif);
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: 0.02em;
  color: #f4eddf;
}
.hero-cinema-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: transparent;
  border: none;
  color: rgba(244,237,223,0.6);
  font-size: 40px;
  line-height: 1;
  padding: 12px 20px;
  cursor: pointer;
  transition: color 300ms ease;
  font-family: var(--f-display);
}
.hero-cinema-nav:hover { color: #f4eddf; }
.hero-cinema-prev { left: clamp(8px, 2vw, 24px); }
.hero-cinema-next { right: clamp(8px, 2vw, 24px); }
.hero-cinema-dots {
  position: absolute;
  right: clamp(24px, 5vw, 64px);
  bottom: clamp(30px, 5vw, 54px);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-cinema-dots .dot {
  width: 24px;
  height: 1px;
  background: rgba(244,237,223,0.28);
  transition: background 400ms ease;
  cursor: pointer;
}
.hero-cinema-dots .dot.is-active {
  background: rgba(244,237,223,0.95);
}
@media (max-width: 700px) {
  .hero-cinema { height: 85vh; min-height: 500px; }
  .hero-cinema-nav { font-size: 32px; }
  .hero-cinema-dots { display: none; }
}

/* ---- PRACTICE ONE-LINER (Kundig-style single sentence) ---- */
.practice-line.on-dark {
  padding: clamp(72px, 12vw, 140px) 0;
  background: var(--night, #0a1a2b);
  color: var(--text-on-dark, #f4eddf);
}
.practice-line-h {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 4.2vw, 58px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  max-width: 24ch;
  color: #f4eddf;
}

/* ---- SERVICES: quieter headline, no number chips ---- */
.services-h {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.6vw, 46px) !important;
  letter-spacing: -0.01em;
}
.service-num { display: none !important; }

/* ---- TESTIMONIALS: quieter head ---- */
.testimonials-h {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.6vw, 46px) !important;
}
.google-lockup { display: none !important; }

/* ---- CONTACT: editorial variant ---- */
.contact-h {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.6vw, 46px);
  letter-spacing: -0.01em;
}
.contact-lede {
  color: rgba(244,237,223,0.72);
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.55;
  max-width: 60ch;
  margin: 14px 0 22px;
}
.contact-questionnaire {
  margin: 0 0 40px;
}
.btn-ghost {
  border: 1px solid rgba(244,237,223,0.35);
  color: #f4eddf;
  padding: 13px 22px;
  font-size: 11px;
  letter-spacing: 0.24em;
  transition: border-color 250ms ease, background 250ms ease, color 250ms ease;
}
.btn-ghost:hover {
  border-color: var(--brass);
  background: transparent;
  color: var(--brass);
}
.btn-ghost:hover .arrow { transform: translateX(4px); color: var(--brass); }
@media (max-width: 780px) {
  .contact-questionnaire { margin-bottom: 32px; }
  .contact-questionnaire .btn-ghost { width: 100%; justify-content: space-between; }
}
.contact--editorial .field input,
.contact--editorial .field textarea {
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  border-radius: 0;
  background: transparent;
  padding: 12px 0;
  color: #f4eddf;
  font-family: var(--f-body);
  transition: border-color 300ms ease;
}
.contact--editorial .field input:focus,
.contact--editorial .field textarea:focus {
  outline: none;
  border-bottom-color: rgba(255,255,255,0.85);
}
.contact--editorial .contact-submit {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.55);
  padding: 8px 0;
  color: #f4eddf;
  font-family: var(--f-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  align-self: flex-start;
  cursor: pointer;
  transition: border-color 300ms ease;
}
.contact--editorial .contact-submit:hover {
  border-bottom-color: #f4eddf;
}

/* ---- SECTION ENTRY FADE ---- */
/* Reveal-on-scroll effect disabled — was causing text to stay invisible
   (opacity: 0) when IntersectionObserver failed to fire on fast scroll,
   tab-return, or hash-anchor jumps. Sections now render fully visible. */
.reveal {
  opacity: 1;
  transform: none;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---- HERO CINEMA INTRO (upper-left context, quiet) ---- */
.hero-cinema-intro {
  position: absolute;
  left: clamp(24px, 5vw, 64px);
  top: clamp(92px, 12vh, 128px);
  z-index: 3;
  max-width: min(58ch, 62vw);
  color: #F4EDDF;
  display: flex;
  flex-direction: column;
  gap: 18px;
  pointer-events: none;
}
.hero-cinema-eyebrow {
  color: rgba(244, 237, 223, 0.85);
}
.hero-cinema-h1 {
  font-family: var(--f-display, 'Abel', sans-serif);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #F4EDDF;
  margin: 0;
  text-shadow: 0 2px 20px rgba(10, 26, 43, 0.25);
  text-wrap: balance;
  max-width: 24ch;
}
/* Top gradient so upper-left text reads over any hero image */
.hero-cinema::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 45%;
  background: linear-gradient(to bottom, rgba(10, 26, 43, 0.45) 0%, rgba(10, 26, 43, 0) 100%);
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 700px) {
  .hero-cinema-intro {
    top: clamp(80px, 14vh, 110px);
    left: 24px;
    right: 24px;
    max-width: none;
    gap: 12px;
  }
  .hero-cinema-h1 { font-size: clamp(26px, 8vw, 34px); }
}

/* ---- ABOUT TEASER — full-bleed dark band, clickable, link to about.html ---- */
.about-teaser {
  display: block;
  background: #0e1a3a;
  color: var(--cream, #f4eddf);
  padding: clamp(80px, 10vw, 140px) 0;
  text-decoration: none;
  transition: background 400ms ease;
}
.about-teaser:hover { background: #142147; }
.about-teaser-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
@media (min-width: 900px) {
  .about-teaser-inner {
    grid-template-columns: 1fr 1.35fr;
  }
}
.about-teaser-copy .eyebrow { color: rgba(244,237,223,0.55); }
.about-teaser-copy h2 {
  font-family: var(--f-display, 'Abel', sans-serif);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 10px 0 18px;
  color: var(--cream);
}
.about-teaser-copy p {
  font-family: var(--f-body, 'Inter', sans-serif);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  color: rgba(244,237,223,0.78);
  max-width: 46ch;
  margin: 0 0 28px;
}
.about-teaser-link {
  font-family: var(--f-body, 'Inter', sans-serif);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--cream);
  border-bottom: 1px solid rgba(244,237,223,0.4);
  padding-bottom: 4px;
  transition: border-color 300ms ease;
}
.about-teaser:hover .about-teaser-link { border-bottom-color: var(--cream); }
.about-teaser-sketch img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 60vh;
  object-fit: contain;
}


/* Credentials band — replaces testimonials during commercial + multifamily repositioning */
.credentials-band { padding: 96px 0; background: var(--cream-warm, #EFE4CE); color: var(--navy-ink, #0B1226); }
.credentials-band .lede { font-size: 1.125rem; line-height: 1.6; max-width: 60ch; margin: 0 0 3rem; color: var(--navy-ink, #0B1226); }
.credentials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
.credential { border-top: 1px solid rgba(11,18,38,0.15); padding-top: 1.25rem; }
.credential-label { font-family: 'Abel', sans-serif; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--navy, #1D2B4F); margin-bottom: 0.75rem; }
.credential-value { font-size: 1rem; line-height: 1.55; color: var(--navy-ink, #0B1226); }

/* SB 326 / SB 721 anchor section */
.sb-anchor { padding: 96px 0; background: var(--cream, #F4EDDF); color: var(--navy-ink, #0B1226); border-top: 1px solid rgba(11,18,38,0.08); }
.sb-anchor h2 { margin-bottom: 1.5rem; }
.sb-anchor p { font-size: 1.0625rem; line-height: 1.65; max-width: 68ch; margin-bottom: 1.25rem; }


/* Footer legal disclaimer */
.footer-legal { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.75rem; line-height: 1.5; color: rgba(255,255,255,0.5); max-width: 90ch; }
.footer-legal p { margin: 0 0 0.75rem; }
.footer-legal p:last-child { margin-bottom: 0; }
