/* ==========================================================================
   Melbourne Structural Engineers — shared stylesheet
   Palette verified against live /o/ computed styles (navy #101828 / yellow #FFCE08)
   ========================================================================== */

:root {
  --navy: #101828;
  --navy-2: #1a2f50;
  --navy-3: #0d1f3c;
  --yellow: #FFCE08;
  --yellow-2: #e6b800;
  --slate: #475467;
  --text: #1D2939;
  --muted: #667085;
  --light: #F9FAFB;
  --border: #E4E7EC;
  --white: #ffffff;

  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(16, 24, 40, .08);
  --shadow-lg: 0 12px 48px rgba(16, 24, 40, .14);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --wrap: 1200px;
  --gutter: 20px;
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

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

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--navy);
  font-weight: 800;
}

h1 { font-size: clamp(2rem, 5.2vw, 3.4rem); }
h2 { font-size: clamp(1.65rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 700; }

p { margin: 0 0 1.1em; }
a { color: var(--navy); text-decoration-color: rgba(16, 24, 40, .3); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }

/* --- Accessibility ------------------------------------------------------ */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--yellow);
  color: var(--navy);
  padding: 12px 20px;
  font-weight: 700;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
  border-radius: 4px;
}
.on-navy :focus-visible { outline-color: var(--yellow); }

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

/* --- Layout primitives -------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding: clamp(48px, 7vw, 88px) 0; }
.section--light { background: var(--light); }
.section--navy { background: var(--navy); color: rgba(255, 255, 255, .88); }
.section--navy h2, .section--navy h3 { color: var(--white); }

.section-head { max-width: 760px; margin: 0 auto clamp(28px, 4vw, 48px); text-align: center; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin-bottom: 0; }
.section--navy .section-head p { color: rgba(255, 255, 255, .78); }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 12px;
}
.section--navy .eyebrow, .hero .eyebrow, .page-hero .eyebrow { color: var(--yellow); }

/* --- Buttons ------------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 28px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--yellow); color: var(--navy); box-shadow: 0 4px 16px rgba(255, 206, 8, .3); }
.btn--primary:hover { background: var(--yellow-2); }

.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-2); }

.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, .45); }
.btn--ghost:hover { background: rgba(255, 255, 255, .1); border-color: var(--white); }

.btn--outline { background: var(--white); color: var(--navy); border-color: var(--border); }
.btn--outline:hover { border-color: var(--navy); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* --- Floating CTA (all breakpoints) -------------------------------------
   Matches the client's /o/ landing page: a stacked pair of pill buttons
   fixed to the bottom-right corner, collapsing to icon-only circles on
   small screens. */

.floating-cta {
  position: fixed;
  right: 28px; bottom: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: .92rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .2);
  transition: transform .15s ease, box-shadow .15s ease;
}
.float-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0, 0, 0, .28); }
.float-btn svg { flex-shrink: 0; }
.float-quote { background: var(--navy); color: var(--white); border: 2px solid var(--yellow); }
.float-phone { background: var(--yellow); color: var(--navy); }

@media (max-width: 768px) {
  .floating-cta { right: 16px; bottom: 16px; }
  .float-btn { padding: 14px; border-radius: 50%; }
  .float-btn span { display: none; }
}

/* --- Header ------------------------------------------------------------- */

.topbar {
  background: var(--navy);
  color: #fff;
  font-size: .85rem;
  border-bottom: 3px solid var(--yellow);
  padding-block: 10px;
}
.topbar .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 20px;
}
.topbar-left { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: #98A2B3; }
.topbar-left svg { flex-shrink: 0; }
@media (max-width: 900px) {
  .topbar-left { display: none; }
  .topbar .wrap { justify-content: center; }
}

.topbar-phone { display: flex; align-items: center; gap: 12px; }
.topbar-phone a {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar-phone a:hover { color: #fff; }

.site-header {
  position: relative;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding-block: 10px;
}
/* The brand logo is white-on-transparent, so it sits on a navy chip
   (the same treatment the client uses on their own landing page). */
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  background: var(--navy);
  padding: 8px 14px;
  border-radius: 10px;
}
.brand img { width: 210px; height: 51px; object-fit: contain; }
@media (max-width: 480px) {
  .brand { padding: 7px 11px; }
  .brand img { width: 158px; height: 39px; }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--navy);
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle-bars { display: block; width: 24px; height: 2px; background: currentColor; border-radius: 2px; position: relative; transition: background-color .2s ease; }
.nav-toggle-bars::before, .nav-toggle-bars::after {
  content: ""; position: absolute; left: 0; width: 24px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .2s ease, top .2s ease;
}
.nav-toggle-bars::before { top: -7px; }
.nav-toggle-bars::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { top: 0; transform: rotate(-45deg); }

.site-nav ul { list-style: none; margin: 0; padding: 0; }
.site-nav > ul { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  display: block;
  padding: 10px 13px;
  border-radius: 9px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--slate);
  white-space: nowrap;
}
.site-nav a:hover { background: var(--light); color: var(--navy); }
.site-nav a[aria-current="page"] { color: var(--navy); background: var(--light); box-shadow: inset 0 -3px 0 var(--yellow); }
.site-nav .nav-cta a { background: var(--yellow); color: var(--navy); font-weight: 700; padding-inline: 20px; }
.site-nav .nav-cta a:hover { background: var(--yellow-2); }

/* Desktop nav only switches on at 1180px — at 1024px the eight nav items
   plus the logo chip overflow the header and cause horizontal scroll. */
@media (max-width: 1179px) {
  .site-nav {
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 10px var(--gutter) 20px;
    display: none;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }
  .site-nav.is-open { display: block; }
  .site-nav > ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .site-nav a { padding: 14px 12px; font-size: 1rem; }
  .site-nav .nav-cta a { text-align: center; margin-top: 8px; }
}
@media (min-width: 1180px) { .nav-toggle { display: none; } }

/* --- Breadcrumbs -------------------------------------------------------- */

.breadcrumbs { background: var(--light); border-bottom: 1px solid var(--border); font-size: .85rem; }
.breadcrumbs ol {
  list-style: none; margin: 0; padding: 11px 0;
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
  color: var(--muted);
}
.breadcrumbs li:not(:last-child)::after { content: "›"; margin-left: 6px; color: var(--border); }
.breadcrumbs a { color: var(--slate); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: var(--navy); font-weight: 600; }

/* --- Hero --------------------------------------------------------------- */

.hero {
  background-color: var(--navy);
  background-image:
    radial-gradient(1100px 520px at 78% 8%, rgba(255, 206, 8, .13), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 52%, var(--navy-3) 100%);
  color: rgba(255, 255, 255, .88);
  padding: clamp(44px, 6.5vw, 84px) 0 clamp(40px, 5vw, 68px);
}
.hero h1 { color: var(--white); margin-bottom: .45em; }
.hero h1 .accent { color: var(--yellow); }
.hero-grid { display: grid; gap: clamp(32px, 4vw, 56px); align-items: start; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.15fr .85fr; } }

.hero-abn {
  display: inline-flex; flex-wrap: wrap; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 20px;
}
.hero-abn a { color: var(--yellow); text-decoration: none; font-weight: 700; }
.hero-abn a:hover { text-decoration: underline; }

/* --- Interior page hero (About, Services, pillar & area pages) ---------- */

.page-hero {
  background-color: var(--navy);
  background-image:
    radial-gradient(1100px 420px at 78% 0%, rgba(255, 206, 8, .1), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, var(--navy-3) 100%);
  color: rgba(255, 255, 255, .88);
  padding: clamp(36px, 5vw, 56px) 0;
}
.page-hero h1 { color: var(--white); margin-bottom: .35em; }
.page-hero p { color: rgba(255, 255, 255, .82); max-width: 68ch; margin: 0; font-size: clamp(1rem, 1.6vw, 1.1rem); }
.page-hero .btn-row { margin-top: 22px; }
.hero-abn-sep { color: rgba(255, 255, 255, .35); margin: 0 2px; }

.hero-lede { font-size: clamp(1.02rem, 1.6vw, 1.15rem); color: rgba(255, 255, 255, .84); max-width: 62ch; }
.hero-callnote {
  font-size: .95rem;
  color: var(--yellow);
  font-weight: 600;
  margin: 18px 0 0;
}

.hero-badges { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.hero-badges li {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 100px;
  padding: 7px 15px;
  font-size: .84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .92);
}

/* Hero entrance animation — disabled under prefers-reduced-motion above */
.fade-up { animation: fadeUp .6s cubic-bezier(.22, .8, .3, 1) backwards; }
.fade-up:nth-child(1) { animation-delay: .04s; }
.fade-up:nth-child(2) { animation-delay: .12s; }
.fade-up:nth-child(3) { animation-delay: .2s; }
.fade-up:nth-child(4) { animation-delay: .28s; }
.fade-up:nth-child(5) { animation-delay: .36s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* --- Hero form ---------------------------------------------------------- */

.quote-card {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(22px, 3vw, 30px);
}
.quote-card h2 { font-size: 1.4rem; margin-bottom: 4px; }
.quote-card .quote-sub { font-size: .88rem; color: var(--muted); margin-bottom: 18px; }

.field { margin-bottom: 13px; }
.field label { display: block; font-size: .85rem; font-weight: 700; color: var(--slate); margin-bottom: 5px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: .95rem;
  line-height: 1.3;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 90px; resize: vertical; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23475467' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--navy-2);
  box-shadow: 0 0 0 3px rgba(26, 47, 80, .12);
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] {
  border-color: #b42318;
}
.field-error { display: none; color: #b42318; font-size: .8rem; font-weight: 600; margin-top: 4px; }
.field-error.is-visible { display: block; }
.field-row { display: grid; gap: 13px; }
@media (min-width: 520px) { .field-row { grid-template-columns: 1fr 1fr; } }

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

.quote-card .form-note { font-size: .8rem; color: var(--muted); text-align: center; margin: 12px 0 0; }
.quote-card .form-note a { color: var(--navy); }
.form-status {
  display: none;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 600;
}
.form-status.is-visible { display: block; }
.form-status--error { background: #FEF3F2; color: #912018; border: 1px solid #FDA29B; }
.form-status--error a { color: #912018; font-weight: 800; }

.btn--block { width: 100%; }

/* --- Trust strip -------------------------------------------------------- */

.trust {
  background: var(--navy-3);
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 18px 0;
}
.trust ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px;
  color: rgba(255, 255, 255, .9);
  font-size: .88rem;
  font-weight: 600;
}
.trust li { display: flex; align-items: center; gap: 8px; }
.trust .tick { color: var(--yellow); font-weight: 900; }

.certified-by {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.certified-by .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 28px;
}
.certified-by-label {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.certified-by-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 26px; }
.certified-by-logos img { height: 34px; width: auto; display: block; }

/* --- Card grids --------------------------------------------------------- */

.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--2, .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cfd6e0; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--slate); font-size: .95rem; }

.card-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--yellow);
  border-radius: 12px;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.card-icon svg { width: 24px; height: 24px; stroke: var(--navy); fill: none; stroke-width: 2; }

.card ul { list-style: none; margin: 0 0 18px; padding: 0; font-size: .9rem; color: var(--slate); }
.card ul li { position: relative; padding-left: 22px; margin-bottom: 6px; }
.card ul li::before {
  content: ""; position: absolute; left: 4px; top: .58em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--yellow);
}
.card-link {
  margin-top: auto;
  font-weight: 700;
  font-size: .93rem;
  text-decoration: none;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link:hover { color: var(--navy-2); }
.card-link::after { content: "→"; transition: transform .15s ease; }
.card-link:hover::after { transform: translateX(3px); }

/* --- Why us ------------------------------------------------------------- */

.why-grid { display: grid; gap: clamp(28px, 4vw, 52px); align-items: center; }
@media (min-width: 900px) { .why-grid { grid-template-columns: .9fr 1.1fr; } }
.why-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.why-list { display: grid; gap: 20px; }
@media (min-width: 620px) { .why-list { grid-template-columns: 1fr 1fr; } }
.why-item h3 { font-size: 1.08rem; margin-bottom: 6px; }
.why-item p { color: var(--muted); font-size: .93rem; margin: 0; }

/* --- Offer band --------------------------------------------------------- */

.offer {
  background: var(--yellow);
  color: var(--navy);
  padding: clamp(28px, 4vw, 40px) 0;
}
.offer .wrap {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px 28px; text-align: center;
}
.offer p { margin: 0; font-size: clamp(1.1rem, 2.3vw, 1.5rem); font-weight: 800; letter-spacing: -.01em; }
.offer-actions { display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 18px; }
.offer .btn--navy { flex-shrink: 0; }
.offer-phone { font-weight: 700; font-size: .95rem; color: var(--navy); text-decoration-color: rgba(16, 24, 40, .45); }

/* --- Process ------------------------------------------------------------ */

.steps { display: grid; gap: 22px; list-style: none; margin: 0; padding: 0; }
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.step-num {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--yellow); color: var(--navy);
  border-radius: 10px; font-weight: 900; font-size: 1.05rem;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { color: rgba(255, 255, 255, .78); font-size: .92rem; margin: 0; }

/* --- Reviews ------------------------------------------------------------ */

.review {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
}
/* Darker amber: #b98500 on white = 3.27:1, meets WCAG 1.4.11 non-text contrast. */
.stars { color: #b98500; font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; }
.review blockquote { margin: 0 0 18px; font-size: .97rem; color: var(--slate); }
.review figcaption { margin-top: auto; display: flex; align-items: center; gap: 11px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: var(--yellow);
  display: grid; place-items: center; font-weight: 800; flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: .93rem; color: var(--navy); }
.review-meta { font-size: .8rem; color: var(--muted); }

/* --- Projects ----------------------------------------------------------- */

.projects { display: grid; gap: 22px; }
@media (min-width: 600px) { .projects { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .projects { grid-template-columns: repeat(3, 1fr); } }

.project {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: transform .18s ease, box-shadow .18s ease;
}
.project:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.project img { width: 100%; height: 210px; object-fit: cover; background: var(--light); }
.project-body { padding: 18px 20px 22px; }
.project-tag {
  display: inline-block;
  background: var(--light);
  border: 1px solid var(--border);
  color: var(--slate);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 9px;
}
.project h3 { font-size: 1rem; margin: 0; line-height: 1.4; }

/* --- Areas -------------------------------------------------------------- */

.areas { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.areas a {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 9px 18px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--slate);
  text-decoration: none;
}
.areas a:hover { border-color: var(--navy); color: var(--navy); background: var(--light); }

/* --- FAQ ---------------------------------------------------------------- */

.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 18px 52px 18px 22px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--slate); line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq .faq-body { padding: 0 22px 20px; color: var(--slate); font-size: .95rem; }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* --- Prose -------------------------------------------------------------- */

.prose { max-width: 820px; margin-inline: auto; }
.prose h2 { text-align: left; }
.prose h3 { margin-top: 1.6em; font-size: 1.15rem; }
.prose p, .prose li { color: var(--slate); }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }

.prose-more.is-collapsed { display: none; }
.prose-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
  padding: 0;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy);
  cursor: pointer;
}
.prose-toggle:hover { color: var(--navy-2); text-decoration: underline; }
.prose-toggle svg { transition: transform .2s ease; }
.prose-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

/* --- CTA band ----------------------------------------------------------- */

.cta-band { text-align: center; }
.cta-band .btn-row { justify-content: center; }
.cta-band p { max-width: 620px; margin-inline: auto; }
.cta-note { font-size: .92rem; color: rgba(255, 255, 255, .78); margin-top: 18px; }

/* --- Footer ------------------------------------------------------------- */

.site-footer { background: var(--navy); color: rgba(255, 255, 255, .74); font-size: .93rem; padding: clamp(44px, 6vw, 68px) 0 0; }
.site-footer h2, .site-footer h3 { color: var(--white); font-size: 1rem; margin-bottom: 14px; letter-spacing: 0; }
.site-footer a { color: rgba(255, 255, 255, .78); text-decoration: none; }
.site-footer a:hover { color: var(--yellow); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer img.footer-logo { width: 210px; height: 51px; object-fit: contain; margin-bottom: 16px; }

.footer-grid { display: grid; gap: 34px; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }

.footer-nap p { margin-bottom: 10px; }
.footer-nap strong { color: var(--white); }
.footer-map { margin-top: 16px; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255, 255, 255, .14); }
.footer-map iframe { display: block; width: 100%; height: 220px; border: 0; }

.footer-bottom {
  margin-top: clamp(34px, 4vw, 48px);
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 20px 0 28px;
  font-size: .84rem;
  display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between;
}
@media (max-width: 899px) { .footer-bottom { padding-bottom: 76px; } }
