:root {
  --ink: #17211b;
  --espresso: #14251c;
  --paper: #fbfbf7;
  --cream: #f0f3ed;
  --blush: #dfe6dd;
  --line: rgba(23, 33, 27, 0.15);
  --muted: #667168;
  --sage: #536b5b;
  --rose: #b56f67;
  --text-min: 0.875rem;
  --serif: "Italiana", "Times New Roman", serif;
  --sans: "Poppins", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { display: inline-block; flex: 0 0 auto; width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; vertical-align: middle; }
.icon-right { width: 19px; }
.page-shell { width: 100%; margin: 0; overflow: hidden; background: var(--paper); }
.section-pad { padding-inline: clamp(28px, 7vw, 110px); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.site-header {
  --header-bg: rgba(15, 24, 18, .2);
  --header-solid: rgba(20, 31, 24, .96);
  --header-ink: #fff;
  --header-muted: rgba(255,255,255,.78);
  --header-line: rgba(255,255,255,.24);
  --header-stroke: linear-gradient(115deg, rgba(255,255,255,.3) 0%, rgba(255,255,255,.07) 22%, rgba(255,255,255,.02) 52%, rgba(255,255,255,.18) 78%, rgba(255,255,255,.05) 100%);
  --header-cta-bg: #fff;
  --header-cta-ink: var(--ink);
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 32px), 1400px);
  min-height: 66px;
  padding: 0 clamp(22px, 3vw, 42px);
  color: var(--header-ink);
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--header-bg);
  box-shadow: 0 8px 30px rgba(8, 18, 11, .08);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  transform: translateX(-50%);
  transition: color .35s ease, background-color .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.site-header::before { content: ""; position: absolute; inset: -1px; padding: 1px; border-radius: inherit; background: var(--header-stroke); pointer-events: none; -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }
.site-header[data-theme="light"] {
  --header-bg: rgba(251, 251, 247, .86);
  --header-solid: rgba(251, 251, 247, .98);
  --header-ink: var(--ink);
  --header-muted: rgba(23, 33, 27, .68);
  --header-line: rgba(23, 33, 27, .13);
  --header-stroke: linear-gradient(115deg, rgba(255,255,255,.32) 0%, rgba(23,33,27,.06) 25%, rgba(255,255,255,.22) 57%, rgba(23,33,27,.08) 82%, rgba(255,255,255,.28) 100%);
  --header-cta-bg: var(--ink);
  --header-cta-ink: #fff;
}
.site-header[data-theme="sage"] {
  --header-bg: rgba(225, 233, 224, .88);
  --header-solid: rgba(225, 233, 224, .98);
  --header-ink: #17251c;
  --header-muted: rgba(23, 37, 28, .68);
  --header-line: rgba(23, 37, 28, .14);
  --header-stroke: linear-gradient(115deg, rgba(255,255,255,.3) 0%, rgba(38,61,49,.08) 28%, rgba(255,255,255,.18) 58%, rgba(38,61,49,.1) 84%, rgba(255,255,255,.25) 100%);
  --header-cta-bg: #263d31;
  --header-cta-ink: #fff;
}
.site-header[data-theme="glass"] {
  --header-bg: rgba(15, 24, 18, .2);
  --header-solid: rgba(20, 31, 24, .96);
  --header-stroke: linear-gradient(115deg, rgba(255,255,255,.3) 0%, rgba(255,255,255,.06) 21%, rgba(255,255,255,.015) 52%, rgba(255,255,255,.2) 78%, rgba(255,255,255,.04) 100%);
}
.site-header[data-theme="dark"] {
  --header-bg: rgba(17, 31, 23, .82);
  --header-solid: rgba(17, 31, 23, .98);
  --header-stroke: linear-gradient(115deg, rgba(255,255,255,.24) 0%, rgba(255,255,255,.045) 25%, rgba(255,255,255,.015) 55%, rgba(190,218,198,.16) 80%, rgba(255,255,255,.035) 100%);
}
.brand { font-size: 1.0625rem; font-weight: 600; letter-spacing: -0.04em; }
.site-nav { display: flex; gap: clamp(20px, 3vw, 46px); align-items: center; }
.site-nav a { position: relative; color: var(--header-muted); font-size: var(--text-min); font-weight: 300; transition: color .35s ease; }
.site-nav a::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: var(--header-ink); transform: scaleX(0); transition: transform .25s ease, background-color .35s ease; }
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }
.header-cta { justify-self: end; padding: 10px 21px; color: var(--header-cta-ink); background: var(--header-cta-bg); border-radius: 999px; font-size: var(--text-min); font-weight: 400; letter-spacing: 0; transition: color .35s ease, background-color .35s ease, transform .2s ease; }
.header-cta:hover { transform: translateY(-1px); }
.menu-toggle { display: none; border: 0; background: transparent; }

.hero { position: relative; display: flex; align-items: flex-end; min-height: max(760px, 100svh); padding-top: 120px; padding-bottom: clamp(72px, 9vh, 112px); color: #fff; background: #27342d; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; animation: hero-image-settle 3.5s cubic-bezier(.22,.65,.38,1) both; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,12,8,.7) 0%, rgba(5,12,8,.35) 48%, rgba(5,12,8,.08) 76%), linear-gradient(0deg, rgba(5,12,8,.48) 0%, transparent 55%); }
.hero-copy { position: relative; z-index: 2; max-width: 720px; }
.hero-sequence > * { animation: hero-content-enter 1.8s cubic-bezier(.22,.65,.38,1) both; animation-delay: var(--hero-delay, 0s); }
h1, h2, h3, blockquote { margin: 0; font-family: var(--serif); font-weight: 400; }
h1 { font-size: clamp(4.25rem, 8vw, 7.75rem); line-height: .88; letter-spacing: -.035em; }
h1 em, h2 em, blockquote em { color: var(--sage); font-style: italic; font-weight: 400; }
.hero h1 em { color: #dce5d7; }
.hero-text { max-width: 510px; margin: 31px 0 0; color: rgba(255,255,255,.8); font-size: var(--text-min); }
.hero-actions { display: flex; gap: 28px; align-items: center; margin-top: 35px; }
.button { display: inline-flex; gap: 32px; align-items: center; justify-content: center; min-height: 50px; padding: 0 23px; font-size: var(--text-min); font-weight: 400; letter-spacing: 0; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button .icon, .text-link .icon, .underlined-link .icon, .story-meta .icon, .service-list .icon { transition: transform .25s ease; }
.button:hover .icon-up-right, .underlined-link:hover .icon-up-right, .story-meta a:hover .icon-up-right, .service-list article:hover .icon-up-right { transform: translate(2px, -2px); }
.text-link:hover .icon-right { transform: translateX(3px); }
.button-dark { color: var(--ink); background: #fff; }
.text-link, .underlined-link { display: inline-flex; gap: 9px; align-items: center; font-size: var(--text-min); font-weight: 400; letter-spacing: 0; }
.sound-toggle { position: absolute; right: clamp(28px, 4vw, 60px); bottom: clamp(28px, 4vw, 52px); z-index: 3; display: grid; place-items: center; width: 52px; height: 52px; padding: 0; color: #fff; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: rgba(12,24,16,.24); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); cursor: pointer; transition: background-color .2s ease, transform .2s ease; }
.sound-toggle:hover { background: rgba(12,24,16,.48); transform: scale(1.04); }
.hero-control { animation: hero-control-enter 1.5s 2.15s ease both; }
.sound-toggle .icon { width: 20px; height: 20px; }
.sound-toggle .sound-on { display: none; }
.sound-toggle[aria-pressed="true"] .sound-off { display: none; }
.sound-toggle[aria-pressed="true"] .sound-on { display: block; }
.sound-toggle:focus-visible, .menu-toggle:focus-visible, .header-cta:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }
.intro { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(55px, 7vw, 120px); align-items: center; min-height: 680px; padding-top: 100px; padding-bottom: 100px; }
.intro-copy { width: 100%; margin: 0; }
.intro-carousel { position: relative; height: clamp(460px, 43vw, 620px); overflow: hidden; background: var(--cream); }
.carousel-track { position: absolute; inset: 0; }
.carousel-slide { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.025); transition: opacity 1.4s ease, transform 2.1s cubic-bezier(.22,.65,.38,1); }
.carousel-slide.active { z-index: 1; opacity: 1; transform: scale(1); }
.carousel-dots { position: absolute; right: 0; bottom: 18px; left: 0; z-index: 2; display: flex; gap: 10px; justify-content: center; }
.carousel-dots button { width: 10px; height: 10px; padding: 0; border: 1px solid rgba(255,255,255,.92); border-radius: 50%; background: rgba(18,29,22,.28); box-shadow: 0 1px 8px rgba(8,18,11,.18); cursor: pointer; transition: background-color .25s ease, transform .25s ease; }
.carousel-dots button:hover { transform: scale(1.18); }
.carousel-dots button.active { background: #fff; }
.carousel-dots button:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.intro-copy h2, .section-heading h2, .services h2, .experience h2, .contact h2 { font-size: clamp(2.8125rem, 5.5vw, 4.875rem); line-height: 1.02; letter-spacing: -.025em; }
.intro-copy p { max-width: 600px; margin: 35px 0; color: var(--muted); font-size: 0.9375rem; line-height: 1.9; }
.underlined-link { padding-bottom: 5px; border-bottom: 1px solid var(--ink); }

.stories { padding-top: 100px; padding-bottom: 120px; background: var(--cream); }
.section-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 65px; }
.section-heading > p { width: 330px; margin: 0 0 6px; color: var(--muted); font-size: var(--text-min); }
.story-grid { display: grid; grid-template-columns: 1fr 1.18fr .76fr; gap: 22px; align-items: end; }
.story-card img { display: block; width: 100%; height: 310px; object-fit: cover; filter: saturate(.88); transition: filter .4s ease, transform .5s ease; }
.story-card-tall img { height: 500px; }
.story-card-wide img { height: 390px; }
.story-card:hover img { filter: saturate(1); transform: translateY(-4px); }
.story-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; }
.story-meta h3 { font-size: 1.5rem; }
.story-meta > a { display: grid; place-items: center; width: 37px; height: 37px; border: 1px solid var(--line); border-radius: 50%; }

.quote-banner { padding: 95px 30px 90px; color: #f5f1eb; background: var(--espresso); text-align: center; }
.quote-ornament { color: #a98e7d; font-family: var(--serif); font-size: 4.375rem; line-height: .7; }
.quote-banner blockquote { margin-top: 28px; font-size: clamp(1.9375rem, 4vw, 3.375rem); line-height: 1.25; }
.quote-banner blockquote em { color: #b8c8ba; }

.services { display: grid; grid-template-columns: .78fr 1.22fr; gap: 50px; padding-top: 120px; padding-bottom: 120px; }
.service-list { border-top: 1px solid var(--line); }
.service-list article { position: relative; display: grid; grid-template-columns: 1fr 1fr 30px; gap: 22px; align-items: center; min-height: 122px; border-bottom: 1px solid var(--line); }
.service-list h3 { font-size: 1.5rem; }
.service-list p { margin: 0; color: var(--muted); font-size: var(--text-min); line-height: 1.7; }
.service-list .arrow { justify-self: end; }

.experience { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(60px, 8vw, 135px); align-items: center; padding-top: 120px; padding-bottom: 120px; color: #f2f5f1; background: #17251d; }
.experience-visual { position: relative; min-height: 680px; overflow: hidden; }
.experience-visual::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(8,15,10,.7)); pointer-events: none; }
.experience-visual img { display: block; width: 100%; height: 680px; object-fit: cover; object-position: center 42%; filter: saturate(.88) contrast(.96); transition: transform 1.2s cubic-bezier(.22, 1, .36, 1), filter .5s ease; }
.experience-visual:hover img { filter: saturate(.98) contrast(.98); transform: scale(1.015); }
.experience-visual > p { position: absolute; right: 30px; bottom: 25px; left: 30px; z-index: 1; margin: 0; color: rgba(255,255,255,.76); font-family: var(--serif); font-size: 1.125rem; line-height: 1.55; }
.experience-content { max-width: 690px; }
.experience-kicker { margin: 0 0 24px; color: #a9b7ac; font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; }
.experience h2 em { color: #b9cabd; }
.experience-steps { margin-top: 55px; border-top: 1px solid rgba(255,255,255,.16); }
.experience-steps article { display: grid; grid-template-columns: 52px 1fr; gap: 22px; padding: 25px 0 27px; border-bottom: 1px solid rgba(255,255,255,.16); }
.experience-steps span { padding-top: 3px; color: #839187; font-size: .6875rem; letter-spacing: .12em; }
.experience-steps h3 { color: #fff; font-family: var(--sans); font-size: .9375rem; font-weight: 400; }
.experience-steps p { max-width: 480px; margin: 7px 0 0; color: #aeb9b0; font-size: var(--text-min); line-height: 1.75; }

.testimonial { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; padding-top: 70px; padding-bottom: 70px; background: #e2e9e1; }
.testimonial-photo { display: block; width: 80%; height: 480px; object-fit: cover; justify-self: center; filter: contrast(.96); }
.testimonial-copy { display: flex; flex-direction: column; justify-content: center; padding-right: 8vw; }
.large-quote { color: var(--sage); font-family: var(--serif); font-size: 4.375rem; line-height: .7; }
.testimonial blockquote { margin-top: 25px; font-size: clamp(1.875rem, 3vw, 2.75rem); line-height: 1.25; }
.testimonial-copy > p { margin-top: 35px; color: var(--muted); font-size: var(--text-min); text-transform: uppercase; letter-spacing: .12em; }
.testimonial-copy strong { color: var(--ink); font-weight: 500; }

.contact { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); gap: clamp(50px, 7vw, 110px); align-items: stretch; padding-top: 110px; padding-bottom: 110px; color: #f4f7f2; background: #274033; }
.contact-content { align-self: center; }
.contact h2 em { color: #c5d2c7; }
.contact-content > p { max-width: 580px; margin: 28px 0 42px; color: #cfcfc9; font-size: var(--text-min); }
.contact-form { width: 100%; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 28px; }
.contact-form label { display: grid; gap: 8px; color: #e5ebe6; font-size: var(--text-min); }
.contact-form input, .contact-form textarea { width: 100%; min-width: 0; padding: 11px 0 13px; color: #fff; border: 0; border-bottom: 1px solid rgba(255,255,255,.32); border-radius: 0; outline: none; background: transparent; font: inherit; font-size: 1rem; transition: border-color .2s ease; }
.contact-form input:focus, .contact-form textarea:focus { border-color: rgba(255,255,255,.95); }
.contact-form textarea { resize: vertical; }
.form-wide { grid-column: 1 / -1; }
.custom-field { position: relative; display: grid; gap: 8px; color: #e5ebe6; font-size: var(--text-min); }
.custom-select { position: relative; }
.custom-select-trigger { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 11px 0 13px; color: #fff; border: 0; border-bottom: 1px solid rgba(255,255,255,.32); background: transparent; cursor: pointer; text-align: left; transition: border-color .2s ease; }
.custom-select-trigger .icon { width: 18px; height: 18px; transition: transform .25s ease; }
.custom-select.open .custom-select-trigger { border-color: rgba(255,255,255,.95); }
.custom-select.open .custom-select-trigger .icon { transform: rotate(180deg); }
.custom-select-options { position: absolute; right: 0; top: calc(100% + 10px); left: 0; z-index: 10; display: grid; max-height: 280px; padding: 8px; overflow-y: auto; visibility: hidden; opacity: 0; border: 1px solid rgba(255,255,255,.15); border-radius: 14px; background: rgba(17,31,23,.98); box-shadow: 0 18px 45px rgba(5,12,8,.24); transform: translateY(-6px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
.custom-select.open .custom-select-options { visibility: visible; opacity: 1; transform: translateY(0); }
.custom-select-options button { width: 100%; padding: 12px 14px; color: #dce4de; border: 0; border-radius: 9px; background: transparent; cursor: pointer; text-align: left; }
.custom-select-options button:hover, .custom-select-options button:focus-visible, .custom-select-options button[aria-selected="true"] { color: #17211b; outline: none; background: #e6ece5; }
.select-error { display: none; color: #f1c8c3; }
.custom-field.invalid .select-error { display: block; }
.custom-field.invalid .custom-select-trigger { border-color: #f1c8c3; }
.button-light { color: var(--ink); background: #f5f1eb; }
.form-submit { margin-top: 34px; border: 0; cursor: pointer; }
.contact-image { display: block; width: 100%; height: 100%; min-height: 740px; object-fit: cover; }

.footer { padding: 90px clamp(28px, 7vw, 110px) 30px; color: #dce4de; background: #111a15; }
.footer-main { display: grid; grid-template-columns: minmax(230px, 1.35fr) repeat(4, minmax(145px, 1fr)); gap: clamp(35px, 5vw, 80px); }
.footer .brand { color: #fff; }
.footer-intro > p { max-width: 310px; margin: 24px 0; color: #94a097; font-family: var(--serif); font-size: 1.125rem; font-weight: 300; line-height: 1.55; }
.footer-email { display: inline-block; padding-bottom: 3px; color: #fff; border-bottom: 1px solid rgba(255,255,255,.3); font-size: var(--text-min); font-weight: 300; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-column h2 { margin: 0 0 12px; color: #fff; font: 600 var(--text-min)/1.4 var(--sans); }
.footer-column a { color: #8f9a92; font-size: var(--text-min); font-weight: 300; line-height: 1.5; transition: color .2s ease, transform .2s ease; }
.footer-column a:hover { color: #fff; transform: translateX(2px); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 75px; padding-top: 25px; color: #707b73; border-top: 1px solid rgba(255,255,255,.1); font-size: var(--text-min); }
.footer-bottom div { display: flex; gap: 25px; }
.footer-bottom a { font-weight: 300; transition: color .2s ease; }
.footer-bottom a:hover { color: #fff; }

@keyframes hero-content-enter {
  from { opacity: 0; filter: blur(3px); transform: translateY(26px); }
  to { opacity: 1; filter: blur(0); transform: translateY(0); }
}
@keyframes hero-image-settle {
  from { opacity: .82; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes hero-control-enter {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 1.55s ease, transform 1.8s cubic-bezier(.22,.65,.38,1); }
.reveal-left { transform: translateX(-20px); }
.reveal.visible { opacity: 1; transform: translate(0); }
.delay-1 { transition-delay: .3s; }
.delay-2 { transition-delay: .58s; }

@media (max-width: 1024px) {
  .site-header { grid-template-columns: 1fr auto; }
  .menu-toggle { display: grid; gap: 5px; padding: 10px 0 10px 15px; }
  .menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 1px; background: currentColor; transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }
  .site-nav { position: absolute; top: calc(100% + 10px); right: 0; left: 0; display: none; flex-direction: column; align-items: flex-start; padding: 26px; color: var(--header-ink); border: 1px solid var(--header-line); border-radius: 24px; background: var(--header-solid); box-shadow: 0 14px 35px rgba(8,18,11,.12); }
  .site-nav.open { display: flex; }
  .site-nav.open a { color: var(--header-ink); }
  .site-nav.open a::after { background: var(--header-ink); }
  .site-nav a { font-size: var(--text-min); }
  .header-cta { display: none; }
  .hero { padding-top: 110px; padding-bottom: clamp(72px, 9vh, 96px); }
  .hero-copy { max-width: 650px; }
  .intro, .services, .experience { grid-template-columns: 1fr; }
  .intro { gap: 55px; }
  .intro-carousel { width: min(72%, 650px); height: clamp(540px, 75vw, 680px); }
  .intro-copy { width: min(82%, 760px); }
  .story-grid { grid-template-columns: 1fr 1fr; }
  .story-card:last-child { grid-column: 2; }
  .testimonial-copy { padding-right: 0; }
  .contact { grid-template-columns: 1fr; }
  .experience-visual { width: min(78%, 650px); min-height: 620px; }
  .experience-visual img { height: 620px; }
  .contact-image { height: 680px; min-height: 0; }
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-intro { grid-row: span 2; }
}

@media (max-width: 767px) {
  body { background: var(--paper); }
  .site-header { top: 10px; width: calc(100% - 20px); min-height: 60px; padding-inline: 20px; }
  .hero { min-height: 100svh; padding-top: 96px; padding-bottom: 92px; }
  h1 { font-size: clamp(3.125rem, 16vw, 4.375rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-video { object-position: 58% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(5,12,8,.72) 0%, rgba(5,12,8,.24) 75%); }
  .sound-toggle { right: 22px; bottom: 24px; width: 48px; height: 48px; }
  .intro { min-height: 0; padding-top: 75px; padding-bottom: 80px; }
  .intro-copy { width: 100%; }
  .intro-carousel { width: 100%; height: min(128vw, 560px); }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 30px; }
  .section-heading > p { width: auto; }
  .stories { padding-top: 75px; padding-bottom: 80px; }
  .story-grid { grid-template-columns: 1fr; gap: 45px; }
  .story-card:last-child { grid-column: auto; }
  .story-card img, .story-card-wide img, .story-card-tall img { height: 118vw; max-height: 520px; }
  .quote-banner { padding: 80px 26px 75px; }
  .services { gap: 55px; padding-top: 80px; padding-bottom: 80px; }
  .service-list article { grid-template-columns: 1fr 25px; padding: 20px 0; }
  .service-list p { grid-column: 1 / 3; }
  .experience { gap: 65px; padding-top: 80px; padding-bottom: 85px; }
  .experience-visual { width: 100%; min-height: 0; height: min(125vw, 650px); }
  .experience-visual img { height: 100%; }
  .experience-steps { margin-top: 42px; }
  .experience-steps article { grid-template-columns: 40px 1fr; gap: 14px; }
  .testimonial { grid-template-columns: 1fr; gap: 55px; padding-top: 60px; padding-bottom: 80px; }
  .testimonial-photo { width: 100%; height: 120vw; max-height: 550px; }
  .contact { padding-top: 85px; padding-bottom: 90px; }
  .form-grid { grid-template-columns: 1fr; gap: 21px; }
  .form-wide { grid-column: auto; }
  .contact-image { height: 125vw; max-height: 620px; }
  .footer { padding-top: 70px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 48px 28px; }
  .footer-intro { grid-column: 1 / -1; grid-row: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 15px; margin-top: 55px; }
  .footer-bottom div { flex-wrap: wrap; gap: 12px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-video, .hero-sequence > *, .hero-control { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .experience-visual img { transition: none; }
}
