/* =========================================================
   ACASSA CONSTRUCTION — Design System
   Editorial / Premium / Photo-led / Asymmetric
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Color */
  --ink: #181731;
  --ink-80: rgba(24, 23, 49, 0.8);
  --ink-60: rgba(24, 23, 49, 0.6);
  --ink-40: rgba(24, 23, 49, 0.4);
  --ink-12: rgba(24, 23, 49, 0.12);
  --ink-08: rgba(24, 23, 49, 0.08);
  --canvas: #ffffff;
  --stone: #c8c7c3;
  --stone-soft: #d9d8d4;
  --cream: #eef0ef;
  --cream-deep: #e3e7e7;
  --accent: #0f9aa3;        /* bright teal — pulled from logo wave */
  --accent-deep: #0a7d85;   /* deeper teal for hover */
  --accent-soft: #3eb6bd;   /* lighter teal for tints */

  /* Typography */
  --serif: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Type scale */
  --display-xl: clamp(3rem, 7vw, 6.5rem);
  --display-lg: clamp(2.5rem, 5.5vw, 4.75rem);
  --display-md: clamp(2rem, 4vw, 3.25rem);
  --display-sm: clamp(1.75rem, 3vw, 2.5rem);
  --body-lg: clamp(1.075rem, 1.2vw, 1.25rem);
  --body: 1rem;
  --eyebrow: 0.75rem;
  --label: 0.8125rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --max-content: 1440px;
  --max-text: 62ch;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: var(--body);
  line-height: 1.55;
  color: var(--ink);
  background: var(--canvas);
  font-feature-settings: 'kern' 1, 'liga' 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ---------- Typography ---------- */
.serif { font-family: var(--serif); font-weight: 400; }
.eyebrow {
  font-family: var(--sans);
  font-size: var(--eyebrow);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.eyebrow--accent { color: var(--accent); }
.eyebrow--rule {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}
.eyebrow--rule::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--ink-40);
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}
h1 { font-size: var(--display-xl); }
h2 { font-size: var(--display-lg); }
h3 { font-size: var(--display-md); }
h4 { font-size: var(--display-sm); }

.h-italic { font-style: italic; }
.h-fine { font-weight: 300; }

p { max-width: var(--max-text); }
.lead {
  font-size: var(--body-lg);
  line-height: 1.55;
  color: var(--ink-80);
}

/* ---------- Layout ---------- */
.shell {
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: var(--space-24) 0; }
.section--tight { padding: var(--space-16) 0; }
.section--xl { padding: var(--space-32) 0; }
.section--cream { background: var(--cream); }
.section--ink { background: var(--ink); color: var(--canvas); }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: var(--canvas); }
.section--ink .eyebrow { color: rgba(255,255,255,0.6); }
.section--ink .lead { color: rgba(255,255,255,0.78); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 1.05rem 1.75rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "→";
  font-family: var(--serif);
  font-size: 1.125rem;
  margin-left: var(--space-2);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:hover::after { transform: translateX(4px); }
.btn--solid { background: var(--ink); color: var(--canvas); border-color: var(--ink); }
.btn--solid:hover { background: transparent; color: var(--ink); }
.section--ink .btn--solid { background: var(--canvas); color: var(--ink); border-color: var(--canvas); }
.section--ink .btn--solid:hover { background: transparent; color: var(--canvas); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--canvas); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom-color: var(--ink-08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.nav__logo img {
  height: 80px;
  width: auto;
  transition: height 0.3s ease;
}
.site-header.is-scrolled .nav__logo img {
  height: 60px;
}
.nav__logo-text {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}
.nav__links {
  display: flex;
  gap: var(--space-8);
  align-items: center;
  list-style: none;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  padding: var(--space-2) 0;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--accent); }
.nav__dropdown {
  position: relative;
}
.nav__dropdown > a::after {
  content: "+";
  margin-left: 6px;
  font-weight: 400;
  color: var(--ink-60);
}
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: -1.25rem;
  background: var(--canvas);
  border: 1px solid var(--ink-08);
  min-width: 240px;
  padding: var(--space-4) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.22s ease;
  box-shadow: 0 24px 60px rgba(24,23,49,0.08);
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-menu li { list-style: none; }
.nav__dropdown-menu a {
  display: block;
  padding: var(--space-2) var(--space-6);
  font-size: 0.875rem;
  font-weight: 400;
}
.nav__dropdown-menu a:hover { background: var(--cream); color: var(--ink); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75rem 1.25rem;
  background: var(--ink);
  color: var(--canvas);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.24s ease;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--accent); }

.nav__toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.24s ease, opacity 0.24s ease, background 0.24s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Hero — full-bleed photo with overlay ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: calc(-1 * var(--header-h, 88px)); /* slot under transparent header */
  padding: calc(var(--space-32) + 80px) 0 var(--space-24);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}
/* Light overlay — lifts the image and softens it for dark text */
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(255, 255, 255, 0.78) 0%,
      rgba(255, 255, 255, 0.55) 35%,
      rgba(255, 255, 255, 0.32) 65%,
      rgba(255, 255, 255, 0.2) 100%
    );
  pointer-events: none;
}
@media (max-width: 1024px) {
  .hero__bg::after {
    background:
      linear-gradient(to bottom,
        rgba(255, 255, 255, 0.65) 0%,
        rgba(255, 255, 255, 0.55) 40%,
        rgba(255, 255, 255, 0.45) 100%
      );
  }
}
.hero .shell {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__content {
  max-width: 720px;
}
.hero__eyebrow {
  margin-bottom: var(--space-8);
}
.hero h1 {
  font-size: clamp(2.5rem, 6.5vw, 6rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-8);
  color: var(--ink);
  text-shadow: 0 1px 30px rgba(255, 255, 255, 0.4);
}
.hero h1 .accent-word {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.hero__lead {
  font-size: var(--body-lg);
  max-width: 38ch;
  margin-bottom: var(--space-8);
  color: var(--ink);
  text-shadow: 0 1px 24px rgba(255, 255, 255, 0.6);
}
.hero__meta {
  display: flex;
  gap: var(--space-8);
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid var(--ink-40);
  max-width: 620px;
}
.hero__meta-item .label {
  font-size: var(--eyebrow);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.78;
  display: block;
  margin-bottom: var(--space-1);
}
.hero__meta-item .value {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
}
.hero__caption {
  position: absolute;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 3;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.8125rem;
  color: var(--ink);
  opacity: 0.6;
}

/* Featured media image */
.featured__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured__media { overflow: hidden; }

/* ---------- Portfolio strip (symmetric) ---------- */
.portfolio-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink-12);
  padding: 1px 0;
}
.portfolio-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--cream);
  margin: 0;
}
.portfolio-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.portfolio-tile:hover img { transform: scale(1.04); }
.portfolio-tile figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-6);
  color: var(--canvas);
  font-family: var(--serif);
  font-size: 0.9375rem;
  font-style: italic;
  background: linear-gradient(to top, rgba(24,23,49,0.78) 0%, rgba(24,23,49,0) 100%);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.portfolio-tile figcaption .num {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.7;
}
/* Photo band — full-bleed wide band of two images */
.photo-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--ink-12);
}
.photo-band__tile {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.photo-band__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.photo-band__tile:hover img { transform: scale(1.03); }

@media (max-width: 1024px) {
  .portfolio-strip { grid-template-columns: 1fr 1fr; }
  .photo-band { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .portfolio-strip { grid-template-columns: 1fr; }
}

/* Photo placeholder treatment */
.placeholder {
  background:
    linear-gradient(135deg, var(--cream-deep) 0%, var(--cream) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder::before {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(24,23,49,0.06);
  pointer-events: none;
}
.placeholder__label {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-40);
  font-size: 0.875rem;
  text-align: center;
  padding: var(--space-4);
  max-width: 24ch;
}

/* ---------- Design Center feature ---------- */
.design-center-feature {
  background: var(--ink);
  color: var(--canvas);
}
.design-center-feature h2,
.design-center-feature h3 { color: var(--canvas); }
.design-center-feature .eyebrow { color: var(--accent-soft); }
.design-center-feature .eyebrow::before { background: rgba(255,255,255,0.3); }
.design-center-feature h2 em { color: var(--accent-soft); }
.design-center-feature .lead { color: rgba(255,255,255,0.82); }
.design-center-feature .btn--solid {
  background: var(--canvas);
  color: var(--ink);
  border-color: var(--canvas);
}
.design-center-feature .btn--solid:hover {
  background: transparent;
  color: var(--canvas);
}
.design-center-feature .btn--ghost { color: var(--canvas); border-color: rgba(255,255,255,0.4); }
.design-center-feature .btn--ghost:hover { background: var(--canvas); color: var(--ink); border-color: var(--canvas); }

.dcf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.dcf-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.dcf-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dcf-caption {
  position: absolute;
  bottom: var(--space-4);
  left: var(--space-4);
  color: var(--canvas);
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.875rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.dcf-body h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.875rem);
  font-weight: 300;
  line-height: 1.05;
}
.dcf-list {
  list-style: none;
  margin-top: var(--space-12);
  border-top: 1px solid rgba(255,255,255,0.16);
}
.dcf-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  align-items: start;
}
.dcf-list__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--accent-soft);
  line-height: 1.2;
}
.dcf-list li strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-style: normal;
  font-size: 1.0625rem;
  color: var(--canvas);
  margin-bottom: var(--space-1);
}
.dcf-list li span {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}
@media (max-width: 1024px) {
  .dcf-grid { grid-template-columns: 1fr; gap: var(--space-12); }
  .dcf-media { aspect-ratio: 16 / 10; }
}
.trust {
  border-top: 1px solid var(--ink-12);
  border-bottom: 1px solid var(--ink-12);
  padding: var(--space-8) 0;
}
.trust__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  align-items: center;
}
.trust__item {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.trust__item .label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.trust__item .value {
  font-family: var(--serif);
  font-size: 1.125rem;
}

/* ---------- Credentials band ---------- */
.credentials {
  border-top: 1px solid var(--ink-12);
  border-bottom: 1px solid var(--ink-12);
  padding: var(--space-12) 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-8);
  align-items: center;
}
.credential {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: 0 var(--space-2);
  border-right: 1px solid var(--ink-12);
}
.credential:last-child { border-right: none; }
.credential__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.credential__icon svg {
  width: 100%;
  height: 100%;
}
.credential__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.credential__title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}
.credential__meta {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-60);
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .credentials {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    padding: var(--space-8) 0;
  }
  .credential { border-right: none; }
  .credential:nth-child(odd) { border-right: 1px solid var(--ink-12); }
  .credential:last-child {
    grid-column: span 2;
    justify-content: center;
    border-right: none;
  }
}
@media (max-width: 600px) {
  .credentials { grid-template-columns: 1fr; }
  .credential, .credential:nth-child(odd) { border-right: none; border-bottom: 1px solid var(--ink-12); padding-bottom: var(--space-4); }
  .credential:last-child { border-bottom: none; grid-column: auto; justify-content: flex-start; }
}

/* ---------- Section heads ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
  align-items: end;
}
.section-head h2 {
  font-size: var(--display-lg);
  font-weight: 300;
  line-height: 1.0;
}
.section-head .eyebrow { margin-bottom: var(--space-6); }
.section-head__intro {
  font-size: var(--body-lg);
  color: var(--ink-80);
  max-width: 50ch;
}

/* ---------- Services grid (symmetric 3x3) ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-12);
  border: 1px solid var(--ink-12);
}
.service-card {
  padding: var(--space-12) var(--space-8) var(--space-8);
  background: var(--canvas);
  transition: background 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
}
.service-card:hover {
  background: var(--cream);
}
.service-card__media {
  height: 200px;
  margin: calc(-1 * var(--space-12)) calc(-1 * var(--space-8)) var(--space-8);
  overflow: hidden;
  position: relative;
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover .service-card__media img {
  transform: scale(1.04);
}
.service-card__index {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--accent);
  margin-bottom: var(--space-4);
  display: block;
}
.service-card h3 {
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: var(--space-4);
}
.service-card p {
  font-size: 0.9375rem;
  color: var(--ink-80);
  margin-bottom: var(--space-6);
}
.service-card__link {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: auto;
  color: var(--accent);
}
.service-card__link::after {
  content: "→";
  font-family: var(--serif);
  transition: transform 0.24s ease;
}
.service-card:hover .service-card__link::after { transform: translateX(4px); }

/* ---------- Featured project (balanced split) ---------- */
.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 620px;
}
.featured__media {
  position: relative;
  background: var(--cream-deep);
  min-height: 540px;
  overflow: hidden;
}
.featured__body {
  padding: var(--space-16) var(--space-12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--canvas);
}
.featured__eyebrow { margin-bottom: var(--space-6); }
.featured h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: var(--space-6);
}
.featured h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.featured__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin: var(--space-8) 0;
  padding: var(--space-6) 0;
  border-top: 1px solid var(--ink-12);
  border-bottom: 1px solid var(--ink-12);
}
.featured__meta-item .label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-60);
  display: block;
  margin-bottom: var(--space-1);
}
.featured__meta-item .value {
  font-family: var(--serif);
  font-size: 1rem;
}
.featured__body p {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink-80);
  margin-bottom: var(--space-4);
}

/* ---------- Approach / philosophy ---------- */
.approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}
.approach__lead {
  position: sticky;
  top: 120px;
}
.approach__lead .eyebrow { margin-bottom: var(--space-6); }
.approach__lead h2 {
  font-size: var(--display-md);
  font-weight: 300;
  line-height: 1.0;
}
.approach__items {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}
.approach__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--ink-12);
}
.approach__item:last-child { border-bottom: none; padding-bottom: 0; }
.approach__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
}
.approach__item h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: var(--space-3);
}
.approach__item p {
  color: var(--ink-80);
  font-size: 1rem;
  line-height: 1.6;
}

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-12);
}
.testimonial {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  padding: var(--space-8);
  background: var(--canvas);
  border: 1px solid var(--ink-12);
  transition: transform 0.3s ease;
}
.testimonial:hover { transform: translateY(-4px); }
.testimonial__mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 4rem;
  color: var(--accent);
  line-height: 0.5;
  margin-top: var(--space-4);
}
.testimonial p {
  font-family: var(--serif);
  font-size: 1.125rem;
  line-height: 1.55;
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
}
.testimonial__attr {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--ink-12);
}
.testimonial__attr .name {
  font-size: 0.9375rem;
  font-weight: 500;
}
.testimonial__attr .meta {
  font-size: var(--eyebrow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-60);
}

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--ink-12);
}
.faq-item {
  border-bottom: 1px solid var(--ink-12);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-8) 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-6);
  align-items: center;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 400;
  transition: color 0.24s ease;
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.24s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body {
  padding: 0 0 var(--space-8) 0;
  max-width: 70ch;
}
.faq-item__body p {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink-80);
}

/* ---------- Locations strip ---------- */
.locations-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--ink-12);
}
.location-tile {
  padding: var(--space-8) var(--space-6);
  border-right: 1px solid var(--ink-12);
  border-bottom: 1px solid var(--ink-12);
  transition: background 0.24s ease;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.location-tile:nth-child(5n) { border-right: none; }
.location-tile:hover { background: var(--cream); }
.location-tile .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--ink-40);
}
.location-tile .city {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
}
.location-tile .state {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-60);
}

/* ---------- CTA block ---------- */
.cta-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
.cta-block h2 {
  font-size: var(--display-md);
  font-weight: 300;
  line-height: 1.05;
}
.cta-block h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.cta-block__form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: var(--space-8);
}
.tally-placeholder {
  min-height: 360px;
  border: 1px dashed rgba(255,255,255,0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: var(--space-8);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  padding: var(--space-20) 0 var(--space-8);
}
.site-footer h4 {
  font-family: var(--sans);
  font-size: var(--eyebrow);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-4);
}
.site-footer a:hover { color: var(--canvas); }

.footer-grid {
  display: grid;
  grid-template-columns: 5fr 3fr 3fr 3fr;
  gap: var(--space-8);
  padding-bottom: var(--space-16);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .logo-text {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--canvas);
  margin-bottom: var(--space-4);
  display: block;
}
.footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: var(--space-4);
  display: block;
  /* If only colored logo present, can leave as-is — uses transparent PNG; on dark, looks fine */
}
.footer-brand p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  max-width: 36ch;
  margin-bottom: var(--space-6);
}
.footer-nap {
  font-size: 0.9375rem;
  font-style: normal;
  line-height: 1.7;
}
.footer-nap a { color: rgba(255,255,255,0.78); }
.footer-social {
  display: flex;
  gap: var(--space-3);
  list-style: none;
  margin-top: var(--space-6);
  padding: 0;
}
.footer-social li { list-style: none; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.78);
  transition: all 0.24s ease;
}
.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--canvas);
}
.footer-social svg {
  width: 18px;
  height: 18px;
}
.footer-list { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.footer-list a { font-size: 0.9375rem; }

.footer-map {
  padding: var(--space-12) 0;
}
.footer-map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  filter: grayscale(0.6) contrast(1.05);
  opacity: 0.85;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-8);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom__links { display: flex; gap: var(--space-6); list-style: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav__logo img { height: 68px; }
  .site-header.is-scrolled .nav__logo img { height: 56px; }
  .hero {
    min-height: 92vh;
    padding: 180px 0 var(--space-12);
  }
  .hero h1 { font-size: clamp(2.25rem, 9vw, 3.5rem); }
  .hero__meta { flex-wrap: wrap; gap: var(--space-6); }
  .eyebrow__long { display: none; }
  .nav.is-open .nav__links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--canvas);
    flex-direction: column;
    padding: var(--space-6) var(--gutter);
    gap: var(--space-4);
    align-items: flex-start;
    border-bottom: 1px solid var(--ink-12);
    box-shadow: 0 24px 60px rgba(24,23,49,0.08);
  }
  .nav.is-open .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: var(--space-2) 0 var(--space-2) var(--space-4);
    min-width: 0;
  }
  .hero__grid { grid-template-columns: 1fr; gap: var(--space-12); }
  .trust__row { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
  .section-head { grid-template-columns: 1fr; gap: var(--space-6); }
  .approach { grid-template-columns: 1fr; gap: var(--space-12); }
  .approach__lead { position: static; }
  .featured { grid-template-columns: 1fr; }
  .featured__body { padding: var(--space-12) var(--space-8); }
  .testimonials { grid-template-columns: 1fr; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 360px; }
  .locations-strip { grid-template-columns: repeat(2, 1fr); }
  .location-tile:nth-child(5n) { border-right: 1px solid var(--ink-12); }
  .location-tile:nth-child(2n) { border-right: none; }
  .cta-block { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .featured__meta { grid-template-columns: 1fr 1fr; }
  .services { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; }
  .locations-strip { grid-template-columns: 1fr; }
  .location-tile { border-right: none !important; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Focus */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
