@charset "UTF-8";

:root {
  --ink: #172624;
  --muted: #61706d;
  --paper: #f5f3ec;
  --paper-deep: #ebe7dc;
  --white: #fff;
  --green: #123d3b;
  --green-light: #1d5a56;
  --mint: #a9d8ca;
  --gold: #d8a85f;
  --gold-pale: #f2dbb5;
  --line: rgba(23, 38, 36, .14);
  --shadow: 0 24px 80px rgba(15, 43, 40, .13);
  --radius: 1.25rem;
  --display: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 1rem; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open, body.dialog-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
address { font-style: normal; }
::selection { color: var(--green); background: var(--mint); }
.shell { width: min(100% - 2rem, 1180px); margin-inline: auto; }
.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; }
.skip-link { position: fixed; top: .5rem; left: .5rem; z-index: 1000; padding: .7rem 1rem; color: var(--green); background: var(--white); border-radius: .5rem; transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
.section { padding: clamp(5rem, 9vw, 8.5rem) 0; }
.eyebrow { display: flex; gap: .65rem; align-items: center; margin: 0 0 1.15rem; color: var(--mint); font-size: .75rem; font-weight: 750; letter-spacing: .16em; line-height: 1.2; text-transform: uppercase; }
.eyebrow span { width: 2.25rem; height: 1px; background: currentColor; }
.eyebrow.dark { color: var(--green-light); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--display); font-weight: 400; letter-spacing: -.035em; line-height: 1.04; }
h1 em, h2 em { color: var(--gold); font-style: italic; }
h2 { margin-bottom: 1.4rem; font-size: clamp(2.45rem, 5vw, 4.75rem); }
h3 { line-height: 1.2; }
.lead { font-size: clamp(1.18rem, 2vw, 1.5rem); line-height: 1.5; }
.button { display: inline-flex; gap: .8rem; align-items: center; justify-content: center; min-height: 3.25rem; padding: .8rem 1.3rem; border: 1px solid transparent; border-radius: 999px; font-size: .86rem; font-weight: 760; text-decoration: none; transition: transform .2s, color .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--green); background: var(--gold-pale); }
.button-primary:hover { background: #ffe4b9; }
.button-quiet { color: var(--white); border-color: rgba(255,255,255,.28); }
.button-quiet:hover { border-color: var(--mint); color: var(--mint); }
.button-light { color: var(--green); background: var(--white); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; color: var(--white); border-bottom: 1px solid transparent; transition: background .3s, border-color .3s, box-shadow .3s; }
.site-header.scrolled { color: var(--ink); background: rgba(245,243,236,.92); border-color: var(--line); box-shadow: 0 8px 24px rgba(16,47,44,.06); backdrop-filter: blur(14px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 5rem; }
.brand { display: inline-flex; gap: .7rem; align-items: center; text-decoration: none; }
.brand-mark { display: grid; width: 2.55rem; aspect-ratio: 1; place-items: center; color: var(--green); background: var(--gold-pale); border-radius: 50%; }
.brand-mark svg { width: 1.35rem; fill: currentColor; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: var(--display); font-size: 1.35rem; font-weight: 600; }
.brand-copy small { margin-top: .28rem; font-size: .59rem; letter-spacing: .16em; text-transform: uppercase; opacity: .72; }
.primary-nav { display: flex; gap: clamp(.65rem, 2vw, 1.7rem); align-items: center; }
.primary-nav a { position: relative; font-size: .78rem; font-weight: 700; text-decoration: none; }
.primary-nav a:not(.nav-cta)::after { position: absolute; right: 0; bottom: -.45rem; left: 0; height: 1px; content: ""; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.primary-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.primary-nav .nav-cta { padding: .65rem 1rem; color: var(--green); background: var(--gold-pale); border-radius: 999px; }
.menu-button { display: none; width: 2.75rem; height: 2.75rem; padding: .65rem; background: transparent; border: 0; cursor: pointer; }
.menu-button span:not(.sr-only) { display: block; width: 100%; height: 1px; margin: .35rem 0; background: currentColor; transition: transform .25s, opacity .25s; }

.hero { position: relative; display: grid; min-height: min(860px, 100svh); overflow: hidden; color: var(--white); background: var(--green); place-items: center; }
.hero::after { position: absolute; inset: 0; pointer-events: none; content: ""; background: linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, transparent, #000 25%, transparent 95%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(1px); opacity: .18; }
.hero-glow-one { top: -20rem; right: -8rem; width: 52rem; height: 52rem; border: 1px solid var(--mint); box-shadow: 0 0 0 7rem rgba(169,216,202,.05), 0 0 0 14rem rgba(169,216,202,.03); }
.hero-glow-two { bottom: -16rem; left: -16rem; width: 35rem; height: 35rem; background: rgba(216,168,95,.2); filter: blur(100px); }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(340px, .97fr); gap: clamp(3rem, 7vw, 7.5rem); align-items: center; padding-top: 7.5rem; padding-bottom: 5rem; }
.hero-copy h1 { max-width: 770px; margin-bottom: 1.5rem; font-size: clamp(3.5rem, 7vw, 6.75rem); }
.hero-intro { max-width: 650px; margin-bottom: 2rem; color: rgba(255,255,255,.77); font-size: clamp(1.05rem, 1.8vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-facts { display: flex; gap: clamp(1.5rem, 4vw, 3.5rem); margin: 3.4rem 0 0; padding: 1.6rem 0 0; border-top: 1px solid rgba(255,255,255,.14); }
.hero-facts div { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: .6rem; align-items: center; }
.hero-facts dt { font-family: var(--display); font-size: 2rem; line-height: 1; }
.hero-facts dd { max-width: 5.5rem; margin: 0; color: rgba(255,255,255,.58); font-size: .68rem; line-height: 1.3; text-transform: uppercase; }
.hero-visual { position: relative; }
.hero-image-wrap { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 50% 50% 1.25rem 1.25rem / 35% 35% 1.25rem 1.25rem; box-shadow: var(--shadow); }
.hero-image-wrap::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 20%, rgba(4,24,22,.55)); }
.hero-image-wrap img { width: 100%; height: clamp(340px, 46vw, 565px); object-fit: cover; object-position: 82% center; transform: scale(1.08); }
.floating-note { position: absolute; right: -1rem; bottom: 2rem; display: flex; gap: .75rem; align-items: center; width: min(280px, 80%); padding: 1rem; color: var(--ink); background: rgba(255,255,255,.92); border-radius: .8rem; box-shadow: 0 18px 45px rgba(0,0,0,.18); backdrop-filter: blur(8px); }
.floating-note p { margin: 0; font-size: .72rem; line-height: 1.5; }
.floating-note strong { font-size: .83rem; }
.floating-icon { display: grid; flex: 0 0 2.4rem; aspect-ratio: 1; color: var(--green); background: var(--gold-pale); border-radius: 50%; place-items: center; }
.scroll-cue { position: absolute; z-index: 3; bottom: 1.2rem; left: 50%; width: 1.5rem; height: 2.5rem; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; transform: translateX(-50%); }
.scroll-cue span { position: absolute; top: .45rem; left: 50%; width: 3px; height: 6px; background: var(--mint); border-radius: 4px; transform: translateX(-50%); animation: scroll 1.8s infinite; }
@keyframes scroll { 0% { transform: translate(-50%,0); opacity: 0; } 30% { opacity: 1; } 100% { transform: translate(-50%,13px); opacity: 0; } }

.trust-strip { padding: 1.15rem 0; border-bottom: 1px solid var(--line); background: var(--paper-deep); }
.trust-inner { display: flex; gap: 2rem; align-items: center; justify-content: space-between; }
.trust-inner p { margin: 0; color: var(--muted); font-size: .67rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.trust-inner div { display: flex; gap: clamp(.8rem, 3vw, 2.8rem); align-items: center; font-family: var(--display); font-size: clamp(1rem, 2vw, 1.3rem); font-style: italic; }
.trust-inner i { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

.split-layout { display: grid; grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr); gap: clamp(3rem, 9vw, 8.5rem); align-items: center; }
.portrait-stack { position: relative; min-height: 590px; }
.portrait-main { position: absolute; inset: 0 12% 4rem 0; overflow: hidden; border-radius: 44% 44% 1rem 1rem / 32% 32% 1rem 1rem; }
.portrait-main img { width: 100%; height: 100%; object-fit: cover; image-rendering: auto; }
.portrait-detail { position: absolute; right: 0; bottom: 0; width: 39%; overflow: hidden; border: .6rem solid var(--paper); border-radius: 1rem; box-shadow: var(--shadow); }
.portrait-detail img { width: 100%; aspect-ratio: 1; object-fit: cover; transform: scale(2.2); }
.portrait-caption { position: absolute; top: 11%; right: -1.5rem; display: grid; width: 6.7rem; aspect-ratio: 1; margin: 0; color: var(--green); background: var(--gold-pale); border-radius: 50%; place-content: center; text-align: center; transform: rotate(8deg); }
.portrait-caption span { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.portrait-caption strong { font-family: var(--display); font-size: 1.65rem; }
.section-copy > p { color: var(--muted); }
.section-copy .lead { color: var(--ink); }
blockquote { margin: 2.2rem 0 0; }
.section-copy blockquote { padding-left: 1.4rem; border-left: 2px solid var(--gold); }
.section-copy blockquote p { margin-bottom: .55rem; color: var(--ink); font-family: var(--display); font-size: 1.35rem; font-style: italic; line-height: 1.4; }
.section-copy cite { color: var(--muted); font-size: .72rem; font-style: normal; }

.services { background: var(--white); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(270px, .7fr); gap: 3rem; align-items: end; margin-bottom: 3rem; }
.section-heading h2 { max-width: 760px; margin-bottom: 0; }
.section-heading > p { max-width: 470px; margin: 0; color: var(--muted); }
.instrument-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.instrument-card { overflow: hidden; background: var(--paper); border: 1px solid rgba(23,38,36,.08); border-radius: var(--radius); transition: transform .3s, box-shadow .3s; }
.instrument-card:hover { box-shadow: 0 20px 50px rgba(18,61,59,.11); transform: translateY(-6px); }
.instrument-image { height: 225px; overflow: hidden; background: #dcd9cf; }
.instrument-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75) contrast(1.04); transition: transform .6s; }
.instrument-card:hover img { transform: scale(1.04); }
.instrument-body { position: relative; padding: 1.4rem; }
.card-number { position: absolute; top: 1.45rem; right: 1.4rem; color: var(--gold); font-size: .68rem; }
.instrument-body h3 { margin-bottom: .55rem; font-family: var(--display); font-size: 1.7rem; font-weight: 400; }
.instrument-body p { min-height: 4.9rem; color: var(--muted); font-size: .84rem; }
.text-button { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: .8rem 0 0; color: var(--green); background: transparent; border: 0; border-top: 1px solid var(--line); font-size: .75rem; font-weight: 750; cursor: pointer; }
.service-levels { margin-top: 3.5rem; border-top: 1px solid var(--line); }
.service-levels article { display: grid; grid-template-columns: 3rem minmax(0, 1fr) auto; gap: 1.5rem; align-items: center; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.level-icon { display: grid; width: 2.65rem; aspect-ratio: 1; color: var(--green); background: var(--gold-pale); border-radius: 50%; font-size: .68rem; place-items: center; }
.service-levels h3 { margin: 0 0 .25rem; font-family: var(--display); font-size: 1.35rem; font-weight: 400; }
.service-levels p { margin: 0; color: var(--muted); font-size: .82rem; }
.service-levels strong { color: var(--green-light); font-size: .8rem; white-space: nowrap; }

.process { position: relative; overflow: hidden; color: var(--white); background: var(--green); }
.process::before { position: absolute; top: -20%; left: -10%; width: 48rem; aspect-ratio: 1; content: ""; border: 1px solid rgba(169,216,202,.12); border-radius: 50%; box-shadow: 0 0 0 6rem rgba(169,216,202,.03), 0 0 0 12rem rgba(169,216,202,.02); }
.process-layout { position: relative; display: grid; grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr); gap: clamp(4rem, 10vw, 9rem); }
.process-copy { align-self: start; position: sticky; top: 7rem; }
.process-copy h2 { max-width: 570px; font-size: clamp(2.5rem, 4.5vw, 4.2rem); }
.process-copy > p:not(.eyebrow) { max-width: 530px; margin-bottom: 2rem; color: rgba(255,255,255,.68); }
.process-steps { margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.process-steps li { display: grid; grid-template-columns: 3.5rem minmax(0, 1fr); gap: 1.5rem; padding: 0 0 2rem; }
.process-steps li:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,.13); margin-bottom: 2rem; }
.process-steps li > span { display: grid; width: 3.5rem; aspect-ratio: 1; color: var(--mint); border: 1px solid rgba(169,216,202,.34); border-radius: 50%; font-size: .68rem; place-items: center; }
.process-steps h3 { margin: .2rem 0 .5rem; font-family: var(--display); font-size: 1.55rem; font-weight: 400; }
.process-steps p { margin: 0; color: rgba(255,255,255,.62); font-size: .88rem; }

.gallery-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-template-rows: repeat(2, 220px); gap: 1rem; }
.gallery-grid figure { position: relative; margin: 0; overflow: hidden; background: #d7d3c9; border-radius: var(--radius); }
.gallery-grid figure:first-child { grid-row: 1 / span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72); transition: transform .6s, filter .6s; }
.gallery-grid figure:hover img { filter: saturate(1); transform: scale(1.04); }
.gallery-grid figcaption { position: absolute; inset: auto 0 0; display: flex; flex-wrap: wrap; gap: .25rem .6rem; justify-content: space-between; padding: 1.5rem; color: var(--white); background: linear-gradient(transparent, rgba(8,30,28,.88)); }
.gallery-grid figcaption strong { font-family: var(--display); font-size: 1.1rem; font-weight: 400; }
.gallery-grid figcaption span { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; }
.gallery-grid figcaption p { width: 100%; margin: .4rem 0 0; color: rgba(255,255,255,.7); font-size: .76rem; }
.gallery-feature figcaption { padding: 2rem; }
.gallery-feature figcaption strong { width: 100%; font-size: 1.8rem; }

.testimonials { background: var(--paper-deep); }
.testimonial-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.testimonial-heading h2 { font-size: clamp(2.6rem, 4.5vw, 4rem); }
.testimonial-controls { display: flex; gap: .5rem; margin-top: 2rem; }
.testimonial-controls button { width: 3rem; aspect-ratio: 1; color: var(--green); background: transparent; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; transition: background .2s, color .2s; }
.testimonial-controls button:hover { color: var(--white); background: var(--green); }
.testimonial-stage { position: relative; min-height: 330px; }
.testimonial { position: absolute; inset: 0; display: grid; margin: 0; padding: clamp(2rem, 4vw, 3.5rem); background: var(--white); border-radius: var(--radius); box-shadow: 0 18px 55px rgba(18,61,59,.08); opacity: 0; transform: translateX(1rem); transition: opacity .4s, transform .4s; pointer-events: none; align-content: space-between; }
.testimonial::before { content: "“"; color: var(--gold); font-family: var(--display); font-size: 5rem; line-height: .5; }
.testimonial.is-active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.testimonial p { margin: 1.3rem 0 2rem; font-family: var(--display); font-size: clamp(1.4rem, 2.8vw, 2.1rem); line-height: 1.35; }
.testimonial footer { display: grid; }
.testimonial footer strong { font-size: .82rem; }
.testimonial footer span { color: var(--muted); font-size: .7rem; }

.care-layout { display: grid; grid-template-columns: minmax(330px, .85fr) minmax(0, 1.15fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.care-image { position: relative; min-height: 600px; overflow: hidden; border-radius: 50% 50% var(--radius) var(--radius) / 34% 34% var(--radius) var(--radius); }
.care-image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(transparent 45%, rgba(9,38,35,.74)); }
.care-image img { width: 100%; height: 100%; min-height: 600px; object-fit: cover; filter: saturate(.65); }
.care-image span { position: absolute; z-index: 1; right: 2rem; bottom: 2rem; left: 2rem; color: var(--white); font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1.1; }
.care-content h2 { max-width: 650px; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 0; font-weight: 700; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { font-family: var(--display); font-size: 1.5rem; font-weight: 400; transition: transform .2s; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { max-width: 660px; padding: 0 2rem 1.35rem 0; color: var(--muted); font-size: .9rem; }

.contact { padding: clamp(5rem, 9vw, 8rem) 0; color: var(--white); background: #0c302e; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(350px, .9fr); gap: clamp(3rem, 8vw, 7.5rem); align-items: center; }
.contact-intro h2 { max-width: 700px; font-size: clamp(3rem, 6vw, 5.5rem); }
.contact-intro > p:not(.eyebrow) { max-width: 590px; color: rgba(255,255,255,.66); }
.contact-actions { margin-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.16); }
.contact-actions a { display: grid; grid-template-columns: 6rem minmax(0, 1fr) auto; gap: 1rem; align-items: center; padding: 1.15rem 0; border-bottom: 1px solid rgba(255,255,255,.16); text-decoration: none; }
.contact-actions small { color: var(--mint); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.contact-actions strong { overflow: hidden; font-family: var(--display); font-size: clamp(1rem, 2vw, 1.35rem); font-weight: 400; text-overflow: ellipsis; }
.contact-actions span { color: var(--gold); }
.contact-card { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 420px; overflow: hidden; color: var(--ink); background: var(--paper); border-radius: var(--radius); box-shadow: 0 25px 70px rgba(0,0,0,.22); }
.contact-card > img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.65); }
.contact-card-copy { display: flex; flex-direction: column; padding: 2rem; }
.contact-card-copy p strong { font-family: var(--display); font-size: 1.5rem; font-weight: 400; }
.contact-card address { color: var(--muted); font-size: .86rem; }
.social-links { display: flex; gap: .5rem; margin-top: auto; }
.social-links a { display: grid; width: 2.5rem; aspect-ratio: 1; color: var(--white); background: var(--green); border-radius: 50%; font-size: .7rem; font-weight: 750; text-decoration: none; place-items: center; }

.site-footer { color: var(--white); background: #071f1e; }
.footer-main { display: grid; grid-template-columns: 1fr 1.4fr auto; gap: 3rem; align-items: center; padding-top: 3rem; padding-bottom: 3rem; }
.footer-brand .brand-mark { color: var(--gold-pale); background: rgba(255,255,255,.08); }
.footer-main > p { max-width: 510px; margin: 0; color: rgba(255,255,255,.55); font-size: .8rem; }
.back-to-top { color: var(--mint); font-size: .75rem; text-decoration: none; }
.footer-legal { display: flex; gap: 1.5rem; align-items: center; padding-top: 1.2rem; padding-bottom: 1.2rem; color: rgba(255,255,255,.43); border-top: 1px solid rgba(255,255,255,.1); font-size: .65rem; }
.footer-legal p { margin: 0; }
.footer-legal a { color: inherit; }
.prototype-note { margin-left: auto !important; }

.service-dialog { width: min(900px, calc(100% - 2rem)); max-height: min(820px, calc(100dvh - 2rem)); padding: clamp(1.5rem, 4vw, 3.5rem); color: var(--ink); background: var(--paper); border: 0; border-radius: var(--radius); box-shadow: 0 30px 90px rgba(0,0,0,.35); }
.service-dialog::backdrop { background: rgba(4,24,22,.78); backdrop-filter: blur(5px); }
.service-dialog h2 { font-size: clamp(2.3rem, 5vw, 4rem); }
.service-dialog > p:not(.eyebrow) { max-width: 640px; color: var(--muted); }
.dialog-close { position: absolute; top: 1rem; right: 1rem; display: grid; width: 2.8rem; aspect-ratio: 1; background: transparent; border: 1px solid var(--line); border-radius: 50%; font-size: 1.5rem; cursor: pointer; place-items: center; }
.dialog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 2rem 0; }
.dialog-grid > div { padding: 1.25rem; background: var(--white); border: 1px solid var(--line); border-radius: .8rem; }
.dialog-grid h3 { margin-bottom: .7rem; font-family: var(--display); font-size: 1.3rem; font-weight: 400; }
.dialog-grid ul { margin: 0; padding-left: 1.1rem; color: var(--muted); font-size: .8rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay, .reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .28s; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } .reveal { opacity: 1; transform: none; } }

@media (max-width: 1000px) {
  .instrument-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 380px 220px 220px; }
  .gallery-grid figure:first-child { grid-column: 1 / -1; grid-row: auto; }
  .primary-nav { gap: .8rem; }
  .primary-nav a { font-size: .72rem; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-card > img { height: 250px; }
}

@media (max-width: 800px) {
  html { scroll-padding-top: 4.8rem; }
  .header-inner { min-height: 4.7rem; }
  .menu-button { display: block; }
  .primary-nav { position: fixed; inset: 4.7rem 0 auto; display: grid; gap: 0; padding: .7rem 1rem 1.2rem; color: var(--ink); background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 16px 30px rgba(18,61,59,.1); opacity: 0; transform: translateY(-1rem); visibility: hidden; transition: opacity .25s, transform .25s, visibility .25s; }
  .primary-nav.open { opacity: 1; transform: none; visibility: visible; }
  .primary-nav a { padding: .8rem .25rem; border-bottom: 1px solid var(--line); font-size: .86rem; }
  .primary-nav .nav-cta { margin-top: .7rem; text-align: center; border: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(4) { transform: translateY(-6px) rotate(-45deg); }
  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; gap: 3.5rem; padding-top: 8rem; padding-bottom: 5.5rem; }
  .hero-copy h1 { font-size: clamp(3.35rem, 13vw, 5.8rem); }
  .hero-visual { width: min(90%, 540px); margin-inline: auto; }
  .hero-image-wrap img { height: 400px; }
  .scroll-cue { display: none; }
  .split-layout, .process-layout, .care-layout, .contact-layout { grid-template-columns: 1fr; }
  .portrait-stack { min-height: 550px; }
  .section-heading { grid-template-columns: 1fr; gap: 1.2rem; }
  .process-copy { position: static; }
  .testimonial-layout { grid-template-columns: 1fr; gap: 2rem; }
  .testimonial-stage { min-height: 360px; }
  .care-image { width: min(100%, 540px); min-height: 500px; }
  .care-image img { min-height: 500px; }
  .contact-card { grid-template-columns: .8fr 1.2fr; }
  .contact-card > img { height: 100%; }
  .footer-main { grid-template-columns: 1fr auto; }
  .footer-main > p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 580px) {
  .shell { width: min(100% - 1.25rem, 1180px); }
  .section { padding: 4.5rem 0; }
  .brand-copy strong { font-size: 1.18rem; }
  .hero-layout { padding-top: 7.2rem; }
  .hero-actions { display: grid; }
  .hero-facts { gap: 1rem; justify-content: space-between; }
  .hero-facts div { display: block; }
  .hero-facts dd { margin-top: .35rem; }
  .hero-visual { width: 100%; }
  .hero-image-wrap img { height: 330px; }
  .floating-note { right: .7rem; bottom: .7rem; }
  .trust-inner { display: block; overflow: hidden; }
  .trust-inner p { margin-bottom: .65rem; }
  .trust-inner div { gap: 1rem; overflow-x: auto; padding-bottom: .2rem; }
  .trust-inner span { white-space: nowrap; }
  .portrait-stack { min-height: 430px; }
  .portrait-main { right: 8%; }
  .portrait-caption { right: -.2rem; width: 5.7rem; }
  .instrument-grid { grid-template-columns: 1fr; }
  .instrument-image { height: 240px; }
  .instrument-body p { min-height: auto; }
  .service-levels article { grid-template-columns: 2.7rem 1fr; gap: 1rem; }
  .service-levels strong { grid-column: 2; }
  .process-layout { gap: 3.2rem; }
  .process-steps li { grid-template-columns: 2.8rem 1fr; gap: 1rem; }
  .process-steps li > span { width: 2.8rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 390px repeat(4, 240px); }
  .gallery-grid figure:first-child { grid-column: auto; }
  .testimonial-stage { min-height: 430px; }
  .care-image, .care-image img { min-height: 430px; }
  .contact-actions a { grid-template-columns: 4.6rem minmax(0, 1fr) auto; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-card > img { height: 300px; }
  .footer-main { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-main > p { grid-column: auto; grid-row: auto; }
  .footer-legal { flex-wrap: wrap; }
  .prototype-note { width: 100%; margin-left: 0 !important; }
  .dialog-grid { grid-template-columns: 1fr; }
}
