/* ============================================================
   PAVEx Development Inc. — Design System
   Based on Figma site design
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600;1,700&family=Inter:wght@300;400;500;600&display=swap');

/* ─── Tokens ─────────────────────────────────────────────── */
:root {
  --white:          #ffffff;
  --bg:             #ffffff;
  --hero-grad-top:  #c2dce8;
  --hero-grad-mid:  #ddeef5;
  --teal:           #1e4e6d;
  --teal-mid:       #2a6685;
  --teal-light:     #3a7a9e;
  --red:            #c41e2e;
  --red-dark:       #9d1825;
  --text:           #1a1a1a;
  --text-mid:       #3a3a3a;
  --text-body:      #4a4a4a;
  --text-light:     #7a7a7a;
  --border:         #e0e0e0;
  --surface:        #f4f7f9;
  --stone:          #b8a890;
  --stone-dark:     #a89880;
  --card-shadow:    0 2px 20px rgba(0,0,0,0.08);
  --card-shadow-lg: 0 8px 40px rgba(0,0,0,0.10);
  --nav-h:          112px;
  --display:        'Poppins', system-ui, sans-serif;
  --body:           'Inter', system-ui, sans-serif;
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--body); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── Utility ────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }

/* ─── Reveal Animations ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.24s; }
.reveal.delay-3 { transition-delay: 0.36s; }
.reveal.delay-4 { transition-delay: 0.48s; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(-36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0; transform: scale(0.96);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-scale.revealed { opacity: 1; transform: scale(1); }

/* ─── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: height 0.4s ease;
}
.nav::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -1;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  height: 84px;
}
.nav.scrolled::before {
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border-bottom: 1px solid rgba(200, 225, 240, 0.45);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
}
.nav__inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  position: relative;
  transition: padding-top 0.4s ease;
}
.nav.scrolled .nav__inner {
  padding-top: 0;
}
.nav__logo {
  flex-shrink: 0;
}
.nav__logo img { height: 44px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}
.nav__link {
  position: relative;
  display: inline-block;
  padding: 6px 16px;
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 400;
  color: var(--text-body);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__link:hover { color: var(--teal); }
.nav__link.active { color: var(--teal); font-weight: 500; }

/* Works dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__dropdown-toggle svg {
  width: 10px; height: 10px;
  transition: transform 0.2s;
  stroke: currentColor;
}
.nav__dropdown:hover .nav__dropdown-toggle svg { transform: rotate(180deg); }

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  padding-top: 8px;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px;
  min-width: 170px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  pointer-events: none;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav__dropdown-menu a {
  display: block;
  padding: 7px 14px;
  font-size: 12.5px;
  color: var(--text-body);
  border-radius: 5px;
  transition: background 0.15s, color 0.15s;
}
.nav__dropdown-menu a:hover { background: #f0f6fa; color: var(--teal); }

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99;
  padding: var(--nav-h) 40px 40px;
  overflow-y: auto;
}
.nav__mobile.open { display: block; }
.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 24px;
}
.nav__mobile-links a {
  font-size: 26px;
  font-family: var(--display);
  font-weight: 600;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav__mobile-links a:hover { color: var(--teal); }
.nav__mobile-links a.active { color: var(--teal); }
.nav__mobile-works { padding: 4px 0; }
.nav__mobile-works-label {
  font-size: 26px;
  font-family: var(--display);
  font-weight: 600;
  color: var(--text-light);
  display: block;
  padding: 8px 0 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.nav__mobile-sub { padding: 4px 0 8px 20px; border-bottom: 1px solid var(--border); }
.nav__mobile-sub a { font-size: 20px; font-weight: 500; color: var(--teal); border-bottom: none; padding: 8px 0; display: block; }
.nav__mobile-sub a:not(:last-child) { border-bottom: 1px solid rgba(0,0,0,0.07); }

/* ─── Hero Section ───────────────────────────────────────── */
.hero {
  padding-top: var(--nav-h);
  transition: padding-top 0.4s ease;
  min-height: 700px;
  background:
    linear-gradient(180deg,
      rgba(200,224,234,1)   0%,
      rgba(218,238,245,1)   16%,
      rgba(240,249,253,1)   32%,
      rgba(252,254,255,1)   46%,
      rgba(255,255,255,1)   54%,
      rgba(255,255,255,0.7) 62%,
      rgba(255,255,255,0.2) 69%,
      rgba(255,255,255,0)   74%),
    url('../images/hero-road.png') top center / cover no-repeat;
  overflow: hidden;
}

.hero__content {
  padding: 52px 0 24px;
}

.hero__headline {
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  color: #0f2235;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease) 0.1s forwards;
}

.hero__body {
  font-size: 13.5px;
  line-height: 1.85;
  color: #222;
  max-width: 860px;
  text-align: justify;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease) 0.28s forwards;
}

.hero__body strong {
  font-weight: 700;
  color: #111;
}

.hero__cta {
  margin-top: 32px;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease) 0.44s forwards;
}

/* ─── Our Story Card ─────────────────────────────────────── */
.story-section {
  padding: 52px 0;
  background: var(--white);
}
.story-card {
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  box-shadow: var(--card-shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 340px 1fr;
}
.story-card__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}
.story-card__photo {
  overflow: hidden;
  background: #ccc;
  min-height: 140px;
}
.story-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.4s;
}
.story-card__photo:hover img { filter: grayscale(60%); }
.story-card__text {
  padding: 32px 40px;
}
.story-card__title {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 24px;
  line-height: 1.1;
}
.story-card__body p {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 16px;
}
.story-card__body p:last-child { margin-bottom: 0; }
.story-card__body .hl-name { color: var(--teal-mid); font-weight: 600; }
.story-card__body .hl-term { color: var(--teal-mid); font-weight: 600; }

/* ─── Stone/Concrete Section ─────────────────────────────── */
.stone-section {
  position: relative;
  background:
    linear-gradient(rgba(235, 242, 246, 0.82), rgba(235, 242, 246, 0.82)),
    url('../images/hero-road.png') center / cover no-repeat;
}

/* Brand Statement */
.brand-statement {
  padding: 60px 0;
  text-align: center;
}
.brand-statement__text {
  font-family: var(--display);
  font-size: clamp(26px, 4vw, 52px);
  line-height: 1.3;
  color: var(--text);
}
.brand-statement__text .line1 {
  font-weight: 400;
  display: block;
  margin-bottom: 4px;
}
.brand-statement__text .line2 {
  font-weight: 700;
  font-style: italic;
  display: block;
}
.brand-statement__text .brand-name { color: var(--teal-mid); }

/* Mission + Vision cards on stone bg */
.mv-section {
  padding: 0 0 60px;
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mv-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.mv-card__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid #d0d0d0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--teal);
}
.mv-card__title {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.mv-card__body {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-body);
}

/* ─── Page Hero (inner pages) ────────────────────────────── */
.page-hero-wrap {
  padding-top: var(--nav-h);
  transition: padding-top 0.4s ease;
  background: linear-gradient(180deg, var(--hero-grad-top) 0%, var(--hero-grad-mid) 50%, #f0f8fb 80%, var(--white) 100%);
  padding-bottom: 28px;
}
.page-hero {
  padding-top: 40px;
}
.page-hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 12px;
}
.page-hero__title {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 800;
  color: var(--teal);
  line-height: 1.05;
  margin-bottom: 20px;
}
.page-hero__body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 600px;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--teal);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--teal-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30,78,109,0.28);
}
.btn--outline {
  border: 1.5px solid var(--border);
  color: var(--text-mid);
}
.btn--outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-1px);
}
.btn--ghost {
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  padding: 0;
}
.btn--ghost::after {
  content: ' →';
  display: inline-block;
  transition: transform 0.2s;
}
.btn--ghost:hover::after { transform: translateX(4px); }

/* ─── Section Utilities ──────────────────────────────────── */
.section { padding: 56px 0; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-light);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  color: var(--teal);
  line-height: 1.1;
}
.section-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
  margin-top: 16px;
  max-width: 580px;
}

/* ─── Announcements ───────────────────────────────────────── */
.announcement-article { max-width: 700px; }
.announcement-article__title {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 700;
  color: var(--teal);
  line-height: 1.15;
  margin-bottom: 10px;
}
.announcement-article__date {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 32px;
}
.announcement-article__figure { margin: 0 0 36px; }
.announcement-article__figure img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.announcement-article__figure figcaption {
  font-size: 12.5px;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.6;
  margin-top: 10px;
}
.announcement-article__body p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 20px;
}
.announcement-article__body .announcement-article__lede {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 8px;
}
.announcement-article__quote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 500;
  color: var(--teal-mid);
  line-height: 1.5;
  border-left: 3px solid var(--red);
  padding: 4px 0 4px 24px;
  margin: 32px 0;
}
.announcement-article__body .announcement-article__signoff {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--teal-mid);
  margin-bottom: 0;
}
.announcement-article__footer {
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.announcement-article__source {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}
.announcement-article__source a { color: var(--teal-mid); text-decoration: underline; }
@media (max-width: 600px) {
  .announcement-article__figure img { aspect-ratio: 4/3; }
}

.announcement-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 28px;
}
.announcement-back:hover { color: var(--teal); }

.announcement-list { display: flex; flex-direction: column; gap: 24px; max-width: 780px; }
.announcement-teaser {
  display: grid;
  grid-template-columns: 260px 1fr;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.announcement-teaser:hover {
  box-shadow: var(--card-shadow-lg);
  border-color: var(--teal-light);
  transform: translateY(-2px);
}
.announcement-teaser__img { overflow: hidden; background: #ddd; }
.announcement-teaser__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}
.announcement-teaser:hover .announcement-teaser__img img { filter: grayscale(0%); }
.announcement-teaser__body { padding: 24px 28px; }
.announcement-teaser__title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.25;
  margin: 4px 0 6px;
}
.announcement-teaser__date { font-size: 12.5px; color: var(--text-light); margin-bottom: 12px; }
.announcement-teaser__excerpt { font-size: 14px; line-height: 1.75; color: var(--text-body); margin-bottom: 14px; }
.announcement-teaser__link { font-size: 13.5px; font-weight: 600; color: var(--teal); }
.announcement-teaser:hover .announcement-teaser__link { color: var(--teal-mid); }
@media (max-width: 700px) {
  .announcement-teaser { grid-template-columns: 1fr; }
  .announcement-teaser__img img { aspect-ratio: 16/9; }
  .announcement-teaser__body { padding: 20px 22px; }
}

/* ─── Legal / Privacy Page ───────────────────────────────── */
.legal-content { max-width: 760px; }
.legal-content h2 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  color: var(--teal);
  margin: 36px 0 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 14px;
}
.legal-content ul { margin: 0 0 14px 20px; }
.legal-content li {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 6px;
}
.legal-content a { color: var(--teal); }
.legal-content .legal-updated {
  font-size: 12.5px;
  color: var(--text-light);
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ─── Story Page (full content) ──────────────────────────── */
.story-full {
  padding: 44px 0;
}
.story-full__card {
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  box-shadow: var(--card-shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 340px 1fr;
}
.story-full__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}
.story-full__photo {
  overflow: hidden;
  background: #ccc;
  min-height: 140px;
}
.story-full__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); }
.story-full__text {
  padding: 32px 44px;
}
.story-full__text p {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 18px;
  text-align: justify;
}
.story-full__text .hl { color: var(--teal-mid); font-weight: 600; }
.story-full__text .hl-inline { color: var(--teal-mid); font-weight: 600; }

/* ─── Values / Mission+Vision standalone ─────────────────── */
.values-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
}
.values-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: var(--card-shadow);
}
.values-card--teal { background: var(--teal); color: var(--white); }
.values-card--teal .mv-card__title { color: var(--white); }
.values-card--teal .mv-card__body { color: rgba(255,255,255,0.85); }
.values-card--teal .mv-card__icon { border-color: rgba(255,255,255,0.3); color: var(--white); }
.values-card__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--teal);
}
.values-card__title {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.values-card__body {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-body);
}

/* ─── Services Page ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}
.service-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s, background 0.25s;
  cursor: pointer;
}
.service-card:hover {
  background: var(--white);
  border-color: var(--teal-light);
  box-shadow: var(--card-shadow-lg);
  transform: translateY(-3px);
}
.service-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #ddd;
  border-radius: 12px 12px 0 0;
}
.service-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.service-card:hover .service-card__img img {
  filter: grayscale(0%);
  transform: scale(1.03);
}
.service-card__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(45deg, #e2e2e2, #e2e2e2 10px, #ececec 10px, #ececec 20px);
  border-bottom: 1.5px dashed #b8b8b8;
}
.service-card__img--placeholder span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a8a8a;
  background: rgba(255,255,255,0.85);
  padding: 5px 10px;
  border-radius: 4px;
}
.service-card__body { padding: 24px 28px; }
.service-card__num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text-light);
  margin-bottom: 10px;
}
.service-card__title {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 16px;
}
.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-mid);
}
.service-card__list li::before {
  content: '—';
  color: var(--teal-light);
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 2px;
}
.service-card__body p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 12px;
}
.service-card__body p:last-child { margin-bottom: 0; }
.service-card__more {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s var(--ease);
}
.service-card__more[aria-hidden="false"] { max-height: 600px; }
.service-card__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--teal);
  cursor: pointer;
}
.service-card__toggle:hover { color: var(--teal-mid); }
.service-card__toggle svg {
  width: 13px;
  height: 13px;
  transition: transform 0.3s var(--ease);
}
.service-card__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.services-intro {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.services-intro p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-body);
}

/* ─── Projects Page ──────────────────────────────────────── */
.projects-intro {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-body);
  max-width: 720px;
  margin-bottom: 32px;
  text-align: justify;
}
.projects-list { }
.project-item {
  display: grid;
  grid-template-columns: 72px 1fr 290px;
  gap: 40px;
  align-items: center;
  padding: 24px 0 24px 12px;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background 0.25s;
}
.project-item:first-child { border-top: 1px solid var(--border); }
.project-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--teal-mid);
  border-radius: 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.project-item:hover { background: transparent; }
.project-item:hover::before { opacity: 1; }
.project-item__num {
  font-family: var(--display);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(30, 78, 109, 0.13);
}
.project-item__title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.25;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.project-item:hover .project-item__title { color: var(--teal-mid); }
.project-item__desc {
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--text-body);
  text-align: justify;
}
.project-item__image {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  background: #ddd;
}
.project-item__image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: filter 0.4s ease, transform 0.4s ease; }
.project-item:hover .project-item__image img { filter: grayscale(0%); transform: scale(1.04); }
.project-item__image--logo { background: var(--surface); }
.project-item__image--logo img { object-fit: contain; padding: 16px; transform: none !important; }

/* ─── Experience Stats ───────────────────────────────────── */
.exp-intro { max-width: 620px; }

.exp-dark-section {
  position: relative;
  background:
    linear-gradient(rgba(10, 28, 46, 0.90), rgba(10, 28, 46, 0.90)),
    url('../images/hero-road.png') center / cover no-repeat;
  padding: 80px 0;
}
.exp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}
.exp-stat {
  padding: 52px 40px;
  text-align: center;
  background: transparent;
  position: relative;
}
.exp-stat::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.10);
}
.exp-stat:last-child::after { display: none; }
.exp-stat__num {
  font-family: var(--display);
  font-size: clamp(60px, 10vw, 96px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 20px;
  display: block;
}
.exp-stat__bar {
  width: 36px;
  height: 3px;
  background: var(--teal-mid);
  margin: 0 auto 20px;
  border-radius: 2px;
}
.exp-stat__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  line-height: 1.6;
}

/* ─── Experience Gallery ─────────────────────────────────── */
.exp-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 20px;
  margin-top: 44px;
}
.exp-gallery__item--wide { grid-column: span 2; }
.exp-gallery__item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  background: #ddd;
}
.exp-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.exp-gallery__item:hover img { transform: scale(1.05); }
.exp-gallery__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 32px 16px 12px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.72));
  color: #fff;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 800px) {
  .exp-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
}
@media (max-width: 560px) {
  .exp-gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .exp-gallery__item--wide { grid-column: span 1; }
}

/* ─── Partnerships Page ──────────────────────────────────── */
.partners-intro {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-body);
  max-width: 640px;
  margin-bottom: 32px;
}
.partner-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.partner-card {
  display: flex;
  align-items: center;
  gap: 36px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px 40px;
  background: var(--white);
  box-shadow: var(--card-shadow);
  position: relative;
  transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}
.partner-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 2px solid var(--teal-mid);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.partner-card:hover {
  box-shadow: 0 16px 48px rgba(30,78,109,0.14);
  transform: translateY(-4px);
  border-color: transparent;
}
.partner-card:hover::after { opacity: 1; }
.partner-card__logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  transition: border-color 0.35s ease;
}
.partner-card:hover .partner-card__logo { border-color: var(--teal-mid); }
.partner-card__logo img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.4s ease;
}
.partner-card:hover .partner-card__logo img { filter: grayscale(0%) opacity(1); }
.partner-card__body { flex: 1; min-width: 0; }
.partner-card__abbr {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 10px;
}
.partner-card__name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.3;
  margin-bottom: 14px;
  transition: color 0.3s;
}
.partner-card:hover .partner-card__name { color: var(--teal-mid); }
.partner-card__desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-body);
}

/* ─── Location Page ──────────────────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
  margin-top: 16px;
}
.location-address {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.35;
  margin-bottom: 32px;
}
.location-detail {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.location-detail__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.location-detail__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
  font-size: 14px;
}
.location-detail__text {
  font-size: 14px;
  color: var(--text-body);
  padding-top: 7px;
  line-height: 1.6;
}
.location-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
}
.location-map iframe { width: 100%; height: 400px; border: none; display: block; }

/* ─── Contact Page ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
  margin-top: 16px;
}
.contact-tagline {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.2;
  margin-bottom: 20px;
}
.contact-body { font-size: 14px; line-height: 1.8; color: var(--text-body); }
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.form-field input,
.form-field textarea {
  font-family: var(--body);
  font-size: 14px;
  color: var(--text);
  background: #f8f8f8;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--teal);
  background: var(--white);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #aaa; }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-actions { display: flex; gap: 12px; padding-top: 4px; }
.form-success {
  display: none;
  padding: 14px 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 6px;
  font-size: 13px;
  color: #166534;
  margin-bottom: 16px;
}
.form-error {
  display: none;
  padding: 14px 16px;
  background: #fff5f5;
  border: 1px solid #fecaca;
  border-radius: 6px;
  font-size: 13px;
  color: #991b1b;
  margin-bottom: 16px;
}
.form-error a { color: #991b1b; text-decoration: underline; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* ─── Placeholder pages ──────────────────────────────────── */
.placeholder-section {
  min-height: 44vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
}
.placeholder-section__icon { font-size: 40px; margin-bottom: 20px; opacity: 0.3; }
.placeholder-section__title {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 14px;
}
.placeholder-section__body {
  font-size: 15px;
  color: var(--text-light);
  max-width: 400px;
  line-height: 1.7;
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 44px 0 28px;
  background: var(--white);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer__logo { height: 30px; margin-bottom: 6px; }
.footer__logo img { height: 100%; width: auto; }
.footer__logo-sub {
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1;
}
.footer__tagline { font-size: 13px; line-height: 1.7; color: var(--text-light); max-width: 240px; }
.footer__col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 9px; }
.footer__links a { font-size: 13.5px; color: var(--text-light); transition: color 0.2s; }
.footer__links a:hover { color: var(--teal); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer__copy { font-size: 12px; color: var(--text-light); }
.footer__red-bar { width: 28px; height: 2px; background: var(--red); border-radius: 2px; }

/* ─── Home Page Extras ───────────────────────────────────── */
.home-section-header { margin-bottom: 8px; }
.home-section-cta { margin-top: 44px; text-align: center; }

/* ─── Home Services Dark Section ─────────────────────────── */
.home-svc-dark {
  position: relative;
  background:
    linear-gradient(rgba(10, 28, 46, 0.91), rgba(10, 28, 46, 0.91)),
    url('../images/hero-road.png') center / cover no-repeat;
  padding: 80px 0;
}
.home-section-header--dark .section-label { color: rgba(255,255,255,0.45); }
.home-section-header--dark .section-title { color: #fff; }

.home-svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  margin-top: 52px;
  border-radius: 8px;
  overflow: hidden;
}
.home-svc-item {
  padding: 48px 32px;
  background: transparent;
  transition: background 0.3s;
}
.home-svc-item:hover { background: rgba(255,255,255,0.04); }
.home-svc-item__num {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  color: rgba(255,255,255,0.10);
  line-height: 1;
  margin-bottom: 18px;
}
.home-svc-item__bar {
  width: 32px;
  height: 3px;
  background: var(--teal-mid);
  border-radius: 2px;
  margin-bottom: 20px;
}
.home-svc-item__title {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.35;
}
.home-svc-item__list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.home-svc-item__list li {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.home-svc-item__list li::before {
  content: '—';
  color: var(--teal-mid);
  flex-shrink: 0;
  font-size: 10px;
  margin-top: 3px;
}

/* ─── Project DAAN Section ───────────────────────────────── */
.container--wide { max-width: 1320px; }

.daan-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.daan-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: center;
}
.daan-title {
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 800;
  color: var(--teal);
  line-height: 1.1;
  margin-bottom: 8px;
}
.daan-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-mid);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  line-height: 1.5;
}
.daan-body {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 32px;
}
.daan-btn { display: inline-flex; align-items: center; }

.daan-video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 8px 40px rgba(0,0,0,0.18),
    0 0 60px rgba(30,78,109,0.10);
}
.daan-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── Footer Socials ─────────────────────────────────────── */
.footer__socials {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-light);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer__social:hover {
  color: var(--teal);
  border-color: var(--teal);
  background: rgba(30,78,109,0.06);
}

/* ─── Services Accordion (landing page) ─────────────────── */
.home-svc-accordion { margin-top: 52px; }
.svc-acc-item { border-bottom: 1px solid rgba(255,255,255,0.10); }
.svc-acc-item:first-child { border-top: 1px solid rgba(255,255,255,0.10); }
.svc-acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.svc-acc-num {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: rgba(255,255,255,0.10);
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
  transition: color 0.3s var(--ease);
}
.svc-acc-item.is-open .svc-acc-num { color: rgba(255,255,255,0.22); }
.svc-acc-title {
  font-family: var(--display);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  flex: 1;
  line-height: 1.25;
  transition: color 0.2s var(--ease);
}
.svc-acc-trigger:hover .svc-acc-title,
.svc-acc-item.is-open .svc-acc-title { color: #fff; }
.svc-acc-chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.30);
  transition: transform 0.35s var(--ease), color 0.2s;
}
.svc-acc-item.is-open .svc-acc-chevron {
  transform: rotate(180deg);
  color: var(--teal-mid);
}
.svc-acc-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s var(--ease);
}
.svc-acc-body[aria-hidden="false"] { max-height: 200px; }
.svc-acc-inner { padding: 0 0 32px 104px; }
.svc-acc-desc {
  font-size: 14.5px;
  line-height: 1.85;
  color: rgba(255,255,255,0.50);
  max-width: 600px;
  margin-bottom: 16px;
}
.svc-acc-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-mid);
  display: inline-flex;
  align-items: center;
  transition: color 0.2s, letter-spacing 0.2s;
}
.svc-acc-link:hover { color: #5aa8c8; letter-spacing: 0.01em; }

/* ─── PAVEx Field Demo Video Section ────────────────────── */
.pavex-field { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pavex-field__header { text-align: center; margin-bottom: 40px; }
.pavex-field__title {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--teal);
  line-height: 1.1;
  margin-bottom: 14px;
}
.pavex-field__body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
}
.pavex-field__video { width: 100%; }
.pavex-field__video .daan-video-frame { border-radius: 0; border-left: none; border-right: none; }

/* ─── Keyframes ──────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  .nav__inner { grid-template-columns: auto auto; justify-content: space-between; }
  .hero {
    background:
      linear-gradient(180deg,
        rgba(200,224,234,1)    0%,
        rgba(218,238,245,1)    20%,
        rgba(248,252,254,0.99) 50%,
        rgba(255,255,255,0.97) 75%,
        rgba(255,255,255,0.95) 100%),
      url('../images/hero-road.png') top center / cover no-repeat;
  }
  .hero__content { padding: 44px 0 32px; }
  .hero__body { text-align: left; }
  .story-card, .story-full__card { grid-template-columns: 1fr; }
  .story-card__photos, .story-full__photos { grid-template-columns: repeat(4, 1fr); min-height: 160px; }
  .story-card__photo, .story-full__photo { aspect-ratio: 1; }
  .story-card__text, .story-full__text { padding: 28px 24px; }
  .mv-grid, .values-split, .services-grid, .contact-grid, .location-grid { grid-template-columns: 1fr; }
  .partner-cards { grid-template-columns: 1fr; }
  .partner-card { flex-direction: column; gap: 20px; padding: 28px 24px; }
  .daan-inner { grid-template-columns: 1fr; gap: 32px; }
  .daan-video { order: -1; }
  .daan-video-frame { padding-bottom: 86%; }
  .exp-stats { grid-template-columns: 1fr; }
  .exp-stat { padding: 40px 24px; }
  .exp-stat::after { display: none; }
  .exp-dark-section { padding: 52px 0; }
  .home-svc-grid { grid-template-columns: 1fr 1fr; }
  .home-svc-item { padding: 36px 24px; }
  .home-svc-dark { padding: 60px 0; }
  .svc-acc-inner { padding-left: 56px; }
  .svc-acc-num { min-width: 56px; }
  .project-item { grid-template-columns: 48px 1fr; grid-template-rows: auto auto; }
  .project-item__image { display: block; grid-column: 1 / -1; grid-row: 2; aspect-ratio: 16/9; margin-top: 8px; }
  .footer__inner { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  /* Scroll-triggered card highlights — mirrors hover on touch */
  .service-card.mobile-active { background: var(--white); border-color: var(--teal-light); box-shadow: var(--card-shadow-lg); }
  .service-card.mobile-active .service-card__img img { filter: grayscale(0%); }
  .project-item.mobile-active::before { opacity: 1; }
  .project-item.mobile-active .project-item__title { color: var(--teal-mid); }
  .project-item.mobile-active .project-item__image img { filter: grayscale(0%); }
  .partner-card.mobile-active { box-shadow: 0 16px 48px rgba(30,78,109,0.14); border-color: transparent; }
  .partner-card.mobile-active::after { opacity: 1; }
  .partner-card.mobile-active .partner-card__name { color: var(--teal-mid); }
  .partner-card.mobile-active .partner-card__logo img { filter: grayscale(0%) opacity(1); }
  .announcement-teaser.mobile-active { box-shadow: var(--card-shadow-lg); border-color: var(--teal-light); }
  .announcement-teaser.mobile-active .announcement-teaser__img img { filter: grayscale(0%); }
  .announcement-teaser.mobile-active .announcement-teaser__link { color: var(--teal-mid); }
}
@media (max-width: 600px) {
  .hero { min-height: 500px; }
  .hero__content { padding: 36px 0 24px; }
  .home-svc-grid { grid-template-columns: 1fr; }
  .home-svc-item { padding: 28px 20px; }
  .svc-acc-inner { padding-left: 0; padding-bottom: 24px; }
  .svc-acc-trigger { gap: 16px; padding: 22px 0; }
  .nav__mobile { padding: var(--nav-h) 24px 32px; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 12px; }
  .story-card__photos, .story-full__photos { grid-template-columns: 1fr 1fr; }
  .brand-statement__text { font-size: 24px; }
}
/* ─── Nav-shrunk: hero follows nav height ────────────────── */
body.nav-shrunk .hero        { padding-top: 84px; }
body.nav-shrunk .page-hero-wrap { padding-top: 84px; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale { transition: none; opacity: 1; transform: none; }
  .hero__headline, .hero__body { animation: none; opacity: 1; }
}
