:root {
  --bg: #f6f4f0;
  --bg-dark: #1a2030;
  --surface: #ffffff;
  --text: #141a28;
  --text-body: #1e2433;
  --text-muted: #3a4255;
  --text-on-dark: #f4f6fa;
  --text-on-dark-muted: #d8deea;
  --accent: #2dd4a8;
  --accent-dark: #0c5a3e;
  --gold: #6d5228;
  --gold-on-dark: #e8c878;
  --border: rgba(26, 32, 48, 0.14);
  --shadow: 0 18px 50px rgba(26, 32, 48, 0.08);
  --radius: 14px;
  --radius-lg: 22px;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --max: 1180px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent-dark); text-underline-offset: 0.18em; }
a:hover { color: var(--accent-dark); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

.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;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--bg-dark);
  color: #fff;
  text-decoration: none;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 244, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 10px;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  font: inherit;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin-bottom: 4px;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-list a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  background: rgba(45, 212, 168, 0.22);
  color: #0a4a34;
}

.nav-cta {
  background: var(--bg-dark) !important;
  color: #fff !important;
}

.nav-cta:hover { background: #2a3348 !important; color: #fff !important; }

.section {
  padding: 4.5rem 1.25rem;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.section-dark a { color: #5eecc0; }
.section-dark a:hover { color: #fff; }
.section-dark p,
.section-dark li { color: var(--text-on-dark-muted); }
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: #fff; }
.section-dark .eyebrow { color: var(--gold-on-dark); }
.section-dark .feature-list { color: var(--text-on-dark-muted); }
.section-dark .split-text h3 { color: #fff; }
.section-dark .split-media img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

.lead {
  font-size: 1.18rem;
  color: var(--text-muted);
  max-width: 62ch;
}

.section p,
.section-inner > p,
.split-text p,
.timeline-item p,
.phase-card-body p,
.bento-card p,
.service-card p,
.work-item-body p,
.contact-details-inner p,
.contact-details-inner address {
  color: var(--text-body);
}

.photo-caption {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0.65rem 0 0;
  line-height: 1.5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.78rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s, background 0.15s;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: var(--bg-dark);
}

.btn-primary:hover { background: var(--accent-dark); color: #fff; }

.btn-outline {
  background: transparent;
  border-color: #6b7488;
  color: var(--text-body);
}

.btn-outline:hover { border-color: var(--accent-dark); color: var(--accent-dark); }

.btn-text {
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 0.5rem;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: calc(100vh - var(--header-h));
  max-height: 820px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2.5rem 3rem  max(1.25rem, calc((100vw - var(--max)) / 2 + 1.25rem));
  background: var(--bg);
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin: 0 0 1.25rem;
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero-visual {
  position: relative;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,32,48,0.15), rgba(45,212,168,0.12));
}

.hero-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(255,255,255,0.94);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 260px;
}

.hero-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--accent-dark);
}

.hero-badge span {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.45;
  margin-top: 0.25rem;
}

.contact-details-inner strong {
  color: var(--text);
}

.contact-details-inner a {
  color: var(--accent-dark);
}

.split-text h2,
.split-text h3 {
  color: var(--text);
}

/* Dark surfaces — overrides must follow light-theme utilities above */
.section-dark .split-text h2,
.section-dark .split-text h3,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #fff;
}

.section.section-dark p,
.section-dark .split-text p,
.section-dark .section-inner > p,
.section-dark p,
.section-dark li,
.section-dark .feature-list,
.section-dark .feature-list li {
  color: var(--text-on-dark-muted);
}

.section-dark .stat-box span {
  color: #fff;
}

.page-hero .split-text h2,
.page-hero .split-text h3 {
  color: #fff;
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.bento-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.bento-with-photo {
  padding: 0;
  overflow: hidden;
}

.bento-with-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.bento-card-content {
  padding: 1.35rem 1.75rem 1.75rem;
}

.bento-card-content span {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.5rem;
}

.bento-card span {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.5rem;
}

.bento-card h3 { margin: 0 0 0.65rem; font-size: 1.25rem; color: var(--text); }
.bento-card p { margin: 0; color: var(--text-muted); font-size: 0.98rem; }

.bento-a { grid-column: span 5; }
.bento-b { grid-column: span 4; }
.bento-c { grid-column: span 3; }
.bento-d { grid-column: span 4; }
.bento-e { grid-column: span 5; }
.bento-f { grid-column: span 3; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.feature-list {
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.feature-list li { margin-bottom: 0.45rem; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.stat-box {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.16);
}

.stat-box strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--accent);
}

.stat-box span {
  font-size: 0.88rem;
  color: #fff;
  display: block;
}

.cta-band {
  background-color: var(--bg-dark);
  background-image: linear-gradient(120deg, var(--bg-dark), #243044);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
}

.cta-band h2 { margin: 0; color: #fff; }

.cta-band p {
  margin: 0.5rem 0 0;
  color: #fff;
}

.cta-band .btn-primary {
  background: var(--accent);
  color: var(--bg-dark);
}

.cta-band .btn-primary:hover {
  background: #fff;
  color: var(--bg-dark);
}

.cta-band .btn-outline {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}

.cta-band .btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}

.page-hero {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 4rem 1.25rem 3rem;
}

.page-hero-split {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.page-hero-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.page-banner {
  margin-bottom: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.page-banner img {
  width: 100%;
  aspect-ratio: 21 / 6;
  object-fit: cover;
}

.content-photo {
  margin: 2rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.content-photo img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.page-hero .legal-content p,
.page-hero .legal-updated {
  color: var(--text-on-dark-muted);
}

.page-hero a {
  color: #5eecc0;
}

.page-hero a:hover {
  color: #fff;
}

.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 1rem;
  color: #fff;
}

.page-hero .eyebrow {
  color: var(--gold-on-dark);
}

.page-hero .lead { color: #fff; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.phase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0 2.5rem;
}

.phase-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.phase-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.phase-card-body {
  padding: 1.35rem 1.5rem 1.5rem;
}

.phase-card h3 { margin: 0 0 0.5rem; font-size: 1.12rem; color: var(--text); }
.phase-card p { margin: 0; color: var(--text-muted); font-size: 0.98rem; }

.service-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.service-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }

.service-card-body { padding: 1.5rem 1.75rem 1.75rem; }

.service-card h3 { margin: 0 0 0.65rem; color: var(--text); }

.service-card p { margin: 0; color: var(--text-muted); }

.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--accent);
  margin: 2rem 0;
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.45rem;
  top: 0.35rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
}

.timeline-item h3 { margin: 0 0 0.5rem; }

.work-masonry {
  columns: 2;
  column-gap: 1.5rem;
}

.work-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.work-item img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

.work-item-body { padding: 1.35rem 1.5rem 1.5rem; }

.work-item h3 { margin: 0 0 0.4rem; font-size: 1.15rem; color: var(--text); }

.work-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.work-item-body p {
  margin: 0;
  color: var(--text-muted);
}

.section-note {
  margin-top: 2rem;
  color: var(--text-muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-details-box {
  background: var(--surface);
  padding: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.contact-details-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.contact-details-inner {
  padding: 2rem;
}

.contact-details-box address { font-style: normal; line-height: 1.7; }

.contact-form {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: grid;
  gap: 1.1rem;
}

.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  background: var(--surface);
  color: var(--text-body);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent-dark);
}

.form-required { font-weight: 400; color: var(--text-muted); font-size: 0.85rem; }

.form-notice {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.form-notice-success {
  background: rgba(45, 212, 168, 0.15);
  border: 1px solid rgba(45, 212, 168, 0.4);
  color: var(--text-body);
}

.form-notice-success p {
  color: var(--text-body);
  margin: 0;
}

.map-heading { font-size: 1.5rem; margin: 0 0 0.5rem; color: var(--text); }

.map-intro { color: var(--text-muted); max-width: 60ch; }

.map-placeholder {
  padding: 2.5rem;
  text-align: center;
  color: var(--text-body);
}

.map-placeholder p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.map-frame {
  margin-top: 1.25rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.map-section { margin-top: 3rem; }

.map-iframe { display: block; border: 0; width: 100%; }

.legal-content p,
.legal-content li {
  color: var(--text-body);
}

.legal-content h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}

.legal-content h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; color: var(--text); }

.legal-updated { color: var(--text-muted); font-size: 0.95rem; }

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.legal-content table th,
.legal-content table td {
  padding: 0.65rem 0.5rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
  text-align: left;
}

.form-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.form-note a {
  color: var(--accent-dark);
}

.site-footer {
  background: var(--bg-dark);
  color: var(--text-on-dark-muted);
  padding: 3.5rem 1.25rem 0;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: #fff;
}

.footer-tagline { margin: 0 0 1rem; color: var(--text-on-dark); }

.footer-disclaimer {
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
  line-height: 1.55;
}

.footer-heading {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-on-dark);
  margin: 0 0 0.85rem;
}

.footer-links {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.footer-links a {
  color: var(--text-on-dark);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 2;
}

.footer-links a:hover { color: #5eecc0; }

.footer-contact address {
  font-style: normal;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  color: var(--text-on-dark-muted);
}

.footer-contact a { color: var(--text-on-dark); text-decoration: none; }
.footer-contact a:hover { color: #5eecc0; }

.footer-bottom {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding: 1.25rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.88rem;
  color: var(--text-on-dark-muted);
}

.footer-bottom p {
  margin: 0;
  color: var(--text-on-dark-muted);
}

.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 200;
  background: rgba(26, 32, 48, 0.98);
  color: #f5f7fb;
  padding: 1.25rem;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.2);
}

.cookie-banner-inner { max-width: var(--max); margin: 0 auto; }

.cookie-banner p,
.cookie-banner strong,
.cookie-banner .cookie-option div {
  color: #f5f7fb;
}

.cookie-eyebrow {
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: var(--accent);
}

#cookie-desc,
.cookie-banner .cookie-option p {
  color: #fff;
  margin: 0;
}

.cookie-banner .btn-outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  background: transparent;
}

.cookie-banner .btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.cookie-banner .btn-text {
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid transparent;
}

.cookie-banner .btn-text:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}

.cookie-banner .btn-primary {
  background: var(--accent);
  color: var(--bg-dark);
}

.cookie-banner .btn-primary:hover {
  background: #fff;
  color: var(--bg-dark);
}

.cookie-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.cookie-panel {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}

.switch { position: relative; display: inline-flex; align-items: center; cursor: pointer; }

.switch input { position: absolute; opacity: 0; width: 0; height: 0; }

.switch-slider {
  width: 44px;
  height: 24px;
  background: rgba(255,255,255,0.2);
  border-radius: 999px;
  position: relative;
  transition: background 0.2s;
}

.switch-slider::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.2s;
}

.switch input:checked + .switch-slider { background: var(--accent); }
.switch input:checked + .switch-slider::after { transform: translateX(20px); }

.error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 1.25rem;
}

.error-page-inner {
  max-width: 520px;
}

.error-page-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow);
}

@media (max-width: 960px) {
  .hero-split { grid-template-columns: 1fr; max-height: none; }
  .hero-copy { padding: 2.5rem 1.25rem; }
  .hero-visual { min-height: 320px; }
  .page-hero-split { grid-template-columns: 1fr; }
  .page-hero-media { order: -1; }
  .bento-a, .bento-b, .bento-c, .bento-d, .bento-e, .bento-f { grid-column: span 12; }
  .split, .service-grid, .contact-layout, .footer-grid, .phase-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .work-masonry { columns: 1; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; align-items: center; gap: 0.5rem; }
  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1.25rem 1.25rem;
    display: none;
  }
  .site-nav.is-open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; }
  .nav-list a { display: block; padding: 0.65rem 0.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}
