@import url('https://fonts.bunny.net/css?family=dm-sans:400,500,600,700|libre-baskerville:400,700&display=swap');

:root {
  --ink: #142026;
  --ink-soft: #4f5b63;
  --blue: #5368ea;
  --blue-deep: #394fcf;
  --blue-pale: #eef1ff;
  --burgundy: #5b1748;
  --lavender: #f6f1fb;
  --blush: #fff4f8;
  --mist: #f7f8fb;
  --line: #e3e5ec;
  --dark: #10262d;
  --white: #fff;
  --shadow: 0 24px 70px rgba(35, 36, 70, .10);
  --shell: min(1180px, calc(100% - 64px));
  --reading: min(790px, calc(100% - 48px));
  --sans: 'DM Sans', Arial, sans-serif;
  --serif: 'Libre Baskerville', Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.shell { width: var(--shell); margin: 0 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; left: 12px; top: 8px; z-index: 999; padding: 10px 15px; color: white; background: var(--dark); transform: translateY(-150%); }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid rgba(83,104,234,.42); outline-offset: 4px; }

.hero-wash,
.page-wash {
  background:
    radial-gradient(circle at 12% 12%, rgba(223, 210, 248, .72), transparent 30%),
    radial-gradient(circle at 90% 62%, rgba(255, 220, 235, .62), transparent 34%),
    linear-gradient(118deg, #fbfaff 0%, #ffffff 51%, #fff9fc 100%);
}
.site-header {
  position: relative;
  z-index: 100;
  display: flex;
  width: var(--shell);
  min-height: 98px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  border-bottom: 1px solid rgba(91,23,72,.10);
}
.brand { flex: 0 0 auto; }
.brand img { width: 245px; height: auto; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 7px; border: 0; background: transparent; cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 6px auto; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.primary-nav { display: flex; align-items: center; gap: 29px; }
.primary-nav a { position: relative; color: rgba(20,32,38,.72); font-size: 15px; font-weight: 600; text-decoration: none; white-space: nowrap; }
.primary-nav a::after { position: absolute; right: 0; bottom: -9px; left: 0; height: 2px; content: ''; background: var(--burgundy); transform: scaleX(0); transition: transform .2s ease; }
.primary-nav a:hover,
.primary-nav a[aria-current='page'] { color: var(--burgundy); }
.primary-nav a:hover::after,
.primary-nav a[aria-current='page']::after { transform: scaleX(1); }

.home-hero { position: relative; min-height: 700px; overflow: visible; }
.home-hero .hero-copy { width: min(1050px, calc(100% - 64px)); margin: 0 auto; padding: 90px 0 300px; text-align: center; }
.home-hero h1 { max-width: 1020px; margin: 0 auto; font-family: var(--serif); font-size: clamp(3.1rem, 5.05vw, 4.9rem); font-weight: 700; line-height: 1.09; letter-spacing: -.045em; text-wrap: balance; }
.home-hero .subhead { max-width: 790px; margin: 27px auto 0; color: var(--ink-soft); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; padding: 0 30px; border: 1.5px solid var(--blue); border-radius: 999px; font-size: 14px; font-weight: 700; letter-spacing: .01em; text-decoration: none; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--blue); box-shadow: 0 12px 30px rgba(83,104,234,.20); }
.button-primary:hover { background: var(--blue-deep); border-color: var(--blue-deep); box-shadow: 0 16px 34px rgba(83,104,234,.25); }
.button-outline { color: var(--ink); background: rgba(255,255,255,.34); border-color: rgba(20,32,38,.65); }
.button-outline:hover { color: #fff; background: var(--ink); border-color: var(--ink); }
.button-small { min-height: 46px; padding: 0 23px; font-size: 13px; }
.sparkles { position: absolute; right: 6.5%; top: 44px; color: var(--blue); font-size: 58px; line-height: .5; opacity: .8; transform: rotate(9deg); }
.loop { position: absolute; left: 5%; top: 430px; width: 145px; height: 90px; border: 6px solid rgba(91,23,72,.11); border-top-color: transparent; border-right-color: transparent; border-radius: 50%; transform: rotate(-27deg); }
.hero-collage { position: absolute; left: 50%; bottom: -165px; z-index: 5; width: min(1160px, 94vw); height: 430px; transform: translateX(-50%); }
.hero-collage img { position: absolute; width: 29%; height: 375px; object-fit: cover; border: 8px solid #fff; border-radius: 9px; box-shadow: 0 24px 48px rgba(0,0,0,.20); will-change: transform; }
.hero-collage img:nth-child(1) { left: 0; bottom: 38px; animation: collage-float-one 7.4s ease-in-out infinite; }
.hero-collage img:nth-child(2) { left: 23.5%; bottom: 0; animation: collage-float-two 8.2s ease-in-out .35s infinite; }
.hero-collage img:nth-child(3) { left: 48%; bottom: 33px; animation: collage-float-three 7.8s ease-in-out .7s infinite; }
.hero-collage img:nth-child(4) { right: 0; bottom: -8px; animation: collage-float-four 8.6s ease-in-out 1s infinite; }

@keyframes collage-float-one {
  0%, 100% { transform: translateY(0) rotate(-3.5deg); }
  50% { transform: translateY(-10px) rotate(-2.7deg); }
}
@keyframes collage-float-two {
  0%, 100% { transform: translateY(0) rotate(1.5deg); }
  50% { transform: translateY(-12px) rotate(.8deg); }
}
@keyframes collage-float-three {
  0%, 100% { transform: translateY(0) rotate(3.5deg); }
  50% { transform: translateY(-9px) rotate(2.8deg); }
}
@keyframes collage-float-four {
  0%, 100% { transform: translateY(0) rotate(-2.5deg); }
  50% { transform: translateY(-11px) rotate(-1.7deg); }
}

.proof-rail { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.proof-item { padding: 34px 26px; border-right: 1px solid var(--line); text-align: center; }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; color: var(--burgundy); font-family: var(--serif); font-size: clamp(1.7rem,2.6vw,2.5rem); line-height: 1.15; }
.proof-item span { display: block; margin-top: 7px; color: var(--ink-soft); font-size: 13px; font-weight: 600; line-height: 1.35; }

.section { padding: 92px 0; }
.section-large { padding: 118px 0; }
.section-dark { color: #fff; background: var(--dark); }
.section-soft { background: var(--mist); }
.section-lavender { background: linear-gradient(125deg, var(--lavender), #fff 58%, var(--blush)); }
.eyebrow { margin: 0 0 16px; color: var(--blue); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; }
.section-dark .eyebrow { color: #bac3ff; }
.headline { margin: 0; font-family: var(--serif); font-size: clamp(2.35rem,4vw,4rem); line-height: 1.17; letter-spacing: -.04em; text-wrap: balance; }
.headline-serif { font-family: var(--serif); font-weight: 700; }
.lede { max-width: 820px; color: var(--ink-soft); font-size: 18px; line-height: 1.75; }
.section-dark .lede { color: rgba(255,255,255,.72); }
.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(45px,7vw,90px); align-items: center; }
.copy-stack > *:first-child { margin-top: 0; }
.copy-stack > *:last-child { margin-bottom: 0; }
.copy-stack p { margin: 0 0 18px; }
.copy-stack strong { color: var(--ink); }
.section-dark .copy-stack strong { color: #fff; }
.callout { padding: 34px 38px; color: #fff; background: var(--blue); }
.callout h2 { margin: 0; font-size: clamp(2rem, 3.6vw, 3.5rem); line-height: 1.1; }

.problem-section { position: relative; z-index: 1; padding: 255px 0 86px; color: #fff; background: var(--dark); }
.problem-section .split { grid-template-columns: .92fr 1.08fr; gap: 56px; }
.problem-section .headline { color: #fff; font-family: var(--sans); font-size: clamp(2.25rem,3.15vw,3.25rem); font-style: italic; font-weight: 700; line-height: 1.18; }
.problem-section .copy-stack { padding: 35px 38px; color: rgba(255,255,255,.76); background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.14); border-radius: 4px; box-shadow: 0 24px 70px rgba(0,0,0,.15); }
.problem-section .copy-stack strong { color: #fff; }
.statement { padding: 82px 0; text-align: center; background: linear-gradient(135deg, #f4effb, #fff 50%, #fff2f7); color: var(--ink); }
.statement h2 { max-width: 930px; margin: 0 auto 32px; font-family: var(--serif); font-size: clamp(2.35rem,3.8vw,3.8rem); line-height: 1.17; }
.statement .operator { color: var(--blue-deep); }
.statement p { max-width: 800px; margin: 12px auto; color: var(--ink-soft); font-size: 18px; }
.statement .no-list { margin-top: 29px; color: var(--burgundy); font-weight: 700; }
.statement .button { margin-top: 25px; }
.home-services { padding: 74px 0 82px; }
.home-services .service-grid { margin-top: 42px; }

.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 52px; }
.service-card { position: relative; display: flex; min-height: 430px; flex-direction: column; padding: 39px 34px 33px; overflow: hidden; color: var(--ink); background: #fff; border: 1px solid var(--line); border-top: 5px solid var(--blue); border-radius: 4px; box-shadow: 0 18px 50px rgba(35,36,70,.08); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card:nth-child(2) { border-top-color: var(--burgundy); }
.service-card:nth-child(3) { border-top-color: #8490d8; }
.service-card:hover { border-color: rgba(83,104,234,.55); box-shadow: 0 26px 65px rgba(35,36,70,.14); transform: translateY(-5px); }
.service-card .code { color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: .15em; }
.service-card:nth-child(2) .code { color: var(--burgundy); }
.service-card h3 { margin: 39px 0 13px; font-family: var(--serif); font-size: 1.78rem; line-height: 1.2; }
.service-card .sub { min-height: 82px; margin: 0 0 18px; color: var(--ink); font-weight: 600; }
.service-card p { color: var(--ink-soft); }
.service-card .card-link { margin-top: auto; padding-top: 20px; color: var(--blue-deep); border-top: 1px solid var(--line); font-size: 13px; font-weight: 700; }

.process-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0 70px; margin-top: 48px; counter-reset: process; }
.process-item { position: relative; min-height: 142px; padding: 29px 0 28px 56px; border-top: 1px solid rgba(255,255,255,.15); counter-increment: process; }
.process-item::before { position: absolute; left: 0; top: 27px; display: grid; width: 35px; height: 35px; place-items: center; content: counter(process, decimal-leading-zero); color: #fff; background: var(--blue); border-radius: 50%; font-size: 11px; font-weight: 700; }
.process-item h3 { display: block; margin: 0 0 7px; font-family: var(--serif); font-size: 17px; }
.process-item p { display: block; margin: 0; color: rgba(255,255,255,.68); line-height: 1.6; }

.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 48px; }
.review { min-height: 300px; padding: 31px 28px; background: #fff; border: 1px solid var(--line); border-radius: 4px; box-shadow: 0 15px 42px rgba(35,36,70,.08); }
.stars { color: #e9a914; letter-spacing: .14em; }
.review blockquote { margin: 19px 0; color: var(--ink-soft); font-family: var(--serif); font-size: 15px; font-style: italic; line-height: 1.72; }
.review cite { display: block; margin-top: 27px; color: var(--ink); font-size: 14px; font-style: normal; font-weight: 700; }
.review-score { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin: 70px 0 24px; padding: 0 28px; }
.review-score strong { font-size: 42px; }
.review-score p { margin: 0; font-size: 24px; font-weight: 700; }
.ai-summary { padding: 28px; border: 1px solid var(--line); border-radius: 4px; box-shadow: 0 7px 15px rgba(21,28,49,.08); }
.ai-summary strong { color: #6542c2; }

.team-intro { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(45px,7vw,90px); align-items: end; }
.team-section { padding: 54px 0 60px; }
.team-heading { display: grid; max-width: 950px; grid-template-columns: 1fr 1.15fr; gap: 16px 48px; margin: 0 auto; align-items: start; }
.team-heading .eyebrow { grid-column: 1/-1; margin-bottom: 0; }
.team-heading .headline { font-size: clamp(2.2rem,3vw,2.9rem); line-height: 1.18; }
.team-heading .lede { margin: 0; }
.team-grid { display: grid; max-width: 950px; grid-template-columns: repeat(2,1fr); gap: 22px; margin: 38px auto 0; }
.person { display: grid; min-height: 230px; grid-template-columns: 46% 54%; margin: 0; overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: 0 18px 45px rgba(35,36,70,.08); }
.person img { width: 100%; height: 230px; object-fit: cover; object-position: center 23%; filter: saturate(.88) contrast(1.03); }
.person figcaption { display: flex; flex-direction: column; justify-content: center; padding: 27px; border-left: 1px solid var(--line); }
.person h3 { margin: 0; font-family: var(--serif); font-size: 21px; line-height: 1.25; }
.person p { margin: 8px 0 0; color: var(--ink-soft); font-size: 14px; line-height: 1.45; }

.closing { padding: 92px 0; color: #fff; text-align: center; background: linear-gradient(135deg,#4a5fdf,#6378ed); }
.closing h2 { max-width: 1120px; margin: 0 auto; font-family: var(--serif); font-size: clamp(2.35rem,3.5vw,3.55rem); line-height: 1.14; letter-spacing: -.035em; }
.closing p { max-width: 720px; margin: 13px auto 0; color: rgba(255,255,255,.84); }
.closing .button { margin-top: 28px; color: var(--blue-deep); background: #fff; border-color: #fff; box-shadow: 0 12px 28px rgba(27,39,119,.22); }

.page-wash { min-height: 250px; }
.page-title { display: grid; min-height: 150px; place-items: center; padding: 28px 24px 42px; text-align: center; }
.page-title h1 { margin: 0; font-family: var(--serif); font-size: clamp(2.7rem,4vw,3.9rem); line-height: 1.08; letter-spacing: -.04em; }
.page-title.sans h1 { font-family: var(--serif); }
.blue-title { margin: 0 0 33px; color: var(--burgundy); font-family: var(--serif); font-size: clamp(2rem,3.6vw,3.45rem); line-height: 1.22; text-align: center; }
.content-narrow { width: var(--reading); margin: 0 auto; }
.center-copy { text-align: left; }
.center-copy > h2 { text-align: center; }
.center-copy p { font-size: 18px; line-height: 1.78; }
.about-opening { position: relative; padding: 62px 0 34px; overflow: hidden; }
.about-opening::before { display: none; }
.about-opening-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 58px; align-items: start; }
.about-opening-title .headline { color: var(--burgundy); font-size: clamp(2.35rem,3.4vw,3.45rem); line-height: 1.2; }
.about-opening-copy { max-width: 610px; padding-top: 24px; }
.about-opening-copy p { margin: 0 0 20px; color: var(--ink-soft); font-size: 17px; line-height: 1.78; }
.about-opening-copy strong { color: var(--ink); }
.purpose-section { padding: 0 0 60px; background: #fff; }
.purpose-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.purpose-card { position: relative; min-height: 430px; padding: 52px 50px; overflow: hidden; background: linear-gradient(135deg,var(--lavender),#fff); border: 1px solid rgba(91,23,72,.11); }
.purpose-card-accent { color: #fff; background: linear-gradient(145deg,#4a5fdb,#6175eb); border-color: transparent; }
.purpose-index { display: block; margin-bottom: 68px; color: var(--blue-deep); font-size: 12px; font-weight: 700; letter-spacing: .16em; }
.purpose-card-accent .purpose-index { color: rgba(255,255,255,.68); }
.purpose-card h2 { margin: 0 0 25px; color: var(--burgundy); font-family: var(--serif); font-size: clamp(2.1rem,3.4vw,3.25rem); line-height: 1.15; }
.purpose-card-accent h2 { color: #fff; }
.purpose-card p { max-width: 500px; margin: 0 0 18px; color: var(--ink-soft); font-size: 17px; line-height: 1.72; }
.purpose-card-accent p { color: rgba(255,255,255,.82); }
.purpose-card-accent strong { color: #fff; }
.standards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 40px; text-align: left; }
.standard { padding: 33px 29px; background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--blue); box-shadow: 0 15px 42px rgba(35,36,70,.07); }
.standard:nth-child(2) { border-top-color: var(--burgundy); }
.standard:nth-child(3) { border-top-color: #8490d8; }
.standard-index { display: block; margin-bottom: 34px; color: var(--blue-deep); font-size: 11px; font-weight: 700; letter-spacing: .15em; }
.standard h3 { margin: 0 0 13px; color: var(--burgundy); font-family: var(--serif); font-size: 1.35rem; }
.standards-section { padding: 62px 0 54px; }
.geography-section { padding: 54px 0; }
.geography-section .headline { color: var(--burgundy); }

.services-intro-section { padding: 68px 0 72px; }
.services-intro-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 58px; align-items: center; }
.services-intro-copy h2 { margin: 0 0 28px; color: var(--burgundy); font-family: var(--serif); font-size: clamp(2.05rem,2.65vw,2.65rem); line-height: 1.24; letter-spacing: -.03em; }
.services-intro-copy p:not(.eyebrow) { margin: 0 0 17px; color: var(--ink-soft); line-height: 1.72; }
.services-intro-image { margin: 0; padding: 9px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.services-intro-image img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.services-list-section { padding: 66px 0 78px; }
.services-list-heading { padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.services-list-heading .eyebrow { margin-bottom: 7px; }
.services-list-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.3rem,3.5vw,3.4rem); line-height: 1.15; letter-spacing: -.035em; }
.services-list-section .service-detail-grid { margin-top: 30px; }

.service-detail-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 44px; }
.service-detail { display: flex; min-height: 595px; flex-direction: column; padding: 38px 31px 32px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-top: 5px solid var(--blue); box-shadow: 0 18px 48px rgba(35,36,70,.08); }
.service-detail:nth-child(2) { border-top-color: var(--burgundy); }
.service-detail:nth-child(3) { border-top-color: #8490d8; }
.service-detail > span { color: var(--blue-deep); font-size: 12px; font-weight: 700; letter-spacing: .14em; }
.service-detail:nth-child(2) > span { color: var(--burgundy); }
.service-detail h2 { margin: 24px 0 13px; font-family: var(--serif); font-size: 1.75rem; line-height: 1.25; }
.service-detail .tagline { color: var(--ink); font-weight: 600; }
.service-detail p { color: var(--ink-soft); }
.service-detail strong { color: var(--ink); }
.service-detail .investment { margin-top: auto; padding-top: 18px; color: var(--burgundy); border-top: 1px solid var(--line); font-weight: 700; }
.decision-panel { background: linear-gradient(125deg,var(--lavender),#fff 55%,var(--blush)); }
.decision-title { max-width: 1120px; margin-left: auto; margin-right: auto; font-size: clamp(2.35rem,3.5vw,3.55rem); line-height: 1.14; }
.decision-panel .lede { margin-left: auto; margin-right: auto; }

.case-intro h2 { margin: 0 auto; font-family: var(--serif); font-size: clamp(2.1rem,3.1vw,3.1rem); line-height: 1.2; }
.case-intro > p { max-width: 920px; margin: 22px auto 0; color: var(--ink-soft); font-size: 18px; font-weight: 500; }
body[data-page="cases"] main > .section { padding-top: 64px; }
.case-study { max-width: 1040px; margin: 34px auto; padding: 48px 56px 53px; background: #fff; border: 1px solid var(--line); border-top: 5px solid var(--blue); box-shadow: 0 18px 58px rgba(35,36,70,.08); text-align: left; }
.case-intro > p + .case-study { margin-top: 48px; }
.case-study:nth-of-type(even) { border-top-color: var(--burgundy); }
.case-label { display: inline-block; padding: 7px 12px; color: var(--blue-deep); background: var(--blue-pale); border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .13em; }
.case-study:nth-of-type(even) .case-label { color: var(--burgundy); background: var(--blush); }
.case-study > h2 { max-width: 880px; margin: 20px 0 34px; font-family: var(--serif); font-size: clamp(1.75rem,2.6vw,2.45rem); line-height: 1.3; }
.case-copy { max-width: 850px; margin: 0; }
.case-copy h3 { margin: 31px 0 7px; color: var(--burgundy); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; }
.case-copy p { margin: 6px 0 15px; color: var(--ink-soft); line-height: 1.76; }
.case-number { margin: 34px 0 28px; padding: 23px 25px; color: var(--ink); background: linear-gradient(125deg,var(--lavender),#fff); border-left: 4px solid var(--blue); font-family: var(--serif); font-size: 19px; font-weight: 700; line-height: 1.55; }

.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(42px,6vw,75px); align-items: start; }
.contact-layout h2 { margin-top: 0; color: var(--burgundy); font-family: var(--serif); font-size: clamp(1.9rem,3vw,2.55rem); line-height: 1.35; text-align: left; }
.contact-layout p { font-family: var(--sans); font-size: 17px; }
.contact-logo { width: 300px; margin: 0 0 38px; }
body[data-page="contact"] main > .section { padding-top: 82px; }
.contact-points { display: grid; gap: 14px; margin-top: 27px; }
.contact-points p { position: relative; margin: 0; padding-left: 29px; color: var(--ink-soft); }
.contact-points p::before { position: absolute; left: 0; top: .12em; content: '✓'; color: var(--blue); font-weight: 700; }
.contact-direct-card { padding: clamp(34px,5vw,58px); background: linear-gradient(145deg,#fff,var(--lavender)); border: 1px solid var(--line); box-shadow: var(--shadow); }
.contact-direct-card h3 { margin: 10px 0 18px; color: var(--ink); font-family: var(--serif); font-size: clamp(1.75rem,2.7vw,2.4rem); line-height: 1.25; }
.contact-direct-card > p:not(.eyebrow) { margin-bottom: 26px; color: var(--ink-soft); }
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.contact-form-grid label:not(.contact-consent) { display: grid; gap: 7px; }
.contact-form-grid label > span { color: var(--ink); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.contact-form-grid input:not([type="checkbox"]), .contact-form-grid select, .contact-form-grid textarea { width: 100%; color: var(--ink); border: 1px solid #ccd0d8; border-radius: 3px; background: #fff; outline: 0; transition: border-color .2s ease,box-shadow .2s ease; }
.contact-form-grid input:not([type="checkbox"]), .contact-form-grid select { min-height: 49px; padding: 11px 13px; }
.contact-form-grid textarea { min-height: 128px; padding: 13px; resize: vertical; }
.contact-form-grid input:focus, .contact-form-grid select:focus, .contact-form-grid textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(83,104,234,.13); }
.field-full { grid-column: 1/-1; }
.contact-consent { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; }
.contact-consent input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--blue); }
.contact-consent span { color: var(--ink-soft) !important; font-size: 12px !important; font-weight: 500 !important; letter-spacing: 0 !important; line-height: 1.5; text-transform: none !important; }
.contact-consent a, .contact-direct-links a { color: var(--burgundy); }
.contact-submit { width: 100%; margin-top: 2px; cursor: pointer; }
.form-honey { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-direct-card .contact-direct-links { margin: 22px 0 0; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13px; text-align: center; }
.booking-direct { text-align: center; background: linear-gradient(125deg,var(--lavender),#fff 55%,var(--blush)); }
.booking-direct .shell { max-width: 1040px; }
.booking-direct h2 { max-width: 980px; margin: 14px auto 20px; color: var(--ink); font-family: var(--serif); font-size: clamp(2.2rem,4vw,3.7rem); line-height: 1.12; letter-spacing: -.03em; }
.booking-direct .shell > p:not(.eyebrow) { max-width: 700px; margin: 0 auto; color: var(--ink-soft); font-size: 18px; }
.booking-calendar { margin-top: 38px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); }
.booking-calendar .calendly-inline-widget { width: 100%; }
.booking-calendar noscript p { margin: 0; padding: 36px; }
.booking-calendar noscript a { color: var(--burgundy); font-weight: 700; }
.booking-fallback { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 13px; margin-top: 24px; color: var(--ink-soft); font-size: 14px; }
.booking-fallback a { color: var(--burgundy); font-weight: 700; text-underline-offset: 4px; }
.legal { width: var(--reading); margin: 0 auto; }
.legal > h1 { margin-bottom: 46px; }
.legal h2 { margin: 39px 0 10px; color: var(--burgundy); font-family: var(--serif); font-size: 1.25rem; font-style: normal; }
.legal p, .legal li { color: #3e484e; line-height: 1.8; }
.legal ul { padding-left: 23px; }

.site-footer { color: #fff; background: var(--dark); }
.footer-main { display: grid; grid-template-columns: 1.15fr repeat(3,.7fr); gap: 50px; padding-top: 62px; padding-bottom: 50px; }
.footer-logo { width: 245px; margin-bottom: 20px; }
.footer-contact p { margin: 9px 0; color: rgba(255,255,255,.72); font-size: 14px; }
.footer-contact a { color: inherit; text-decoration-color: rgba(255,255,255,.36); text-underline-offset: 3px; }
.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-col h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 17px; }
.footer-col a { color: rgba(255,255,255,.72); font-size: 14px; text-decoration: none; }
.footer-col a:hover,
.footer-contact a:hover,
.socials a:hover { color: #fff; }
.socials { display: flex; flex-wrap: wrap; gap: 11px 18px; margin-top: 20px; }
.socials a { color: rgba(255,255,255,.78); font-size: 12px; font-weight: 700; text-decoration: none; }
.footer-bottom { padding-top: 19px; padding-bottom: 24px; color: rgba(255,255,255,.52); border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; text-align: center; }

@media (max-width: 1020px) {
  :root { --shell: min(100% - 40px, 900px); }
  .site-header { min-height: 90px; }
  .brand img { width: 220px; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded='true'] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: 90px 0 auto; z-index: 90; display: none; max-height: calc(100vh - 90px); flex-direction: column; align-items: stretch; gap: 0; padding: 20px; overflow: auto; background: #fff; box-shadow: 0 18px 30px rgba(0,0,0,.12); }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 14px 9px; border-bottom: 1px solid var(--line); }
  .primary-nav a::after { display: none; }
  .home-hero { min-height: 675px; }
  .home-hero .hero-copy { padding-top: 75px; }
  .hero-collage { bottom: -145px; height: 385px; }
  .hero-collage img { height: 330px; }
  .problem-section { padding-top: 220px; }
  .service-grid, .service-detail-grid, .standards, .reviews { grid-template-columns: 1fr; }
  .service-card, .service-detail { min-height: auto; }
  .service-card .sub { min-height: auto; }
  .split, .team-intro, .contact-layout { grid-template-columns: 1fr; gap: 38px; }
  .problem-section .split { grid-template-columns: minmax(0, 1fr); gap: 32px; align-items: start; }
  .about-opening::before { display: none; }
  .about-opening-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-opening-copy { max-width: 760px; padding-top: 0; }
  .services-intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-intro-image { order: -1; }
  .team-heading { grid-template-columns: 1fr; gap: 15px; }
  .team-grid { max-width: 760px; grid-template-columns: 1fr; }
  .process-grid { gap: 0 35px; }
  .footer-main { grid-template-columns: repeat(3,1fr); }
  .footer-contact { grid-column: 1/-1; }
  .contact-logo { margin-left: 0; margin-right: 0; }
}

@media (max-width: 700px) {
  :root { --shell: calc(100% - 28px); --reading: calc(100% - 28px); }
  .brand img { width: 195px; }
  .home-hero { min-height: 660px; }
  .home-hero .hero-copy { width: 100%; padding: 66px 18px 255px; }
  .home-hero h1 { font-size: clamp(2.35rem,11vw,3.1rem); line-height: 1.12; }
  .home-hero .subhead { font-size: 16px; line-height: 1.62; }
  .hero-actions { flex-direction: column; align-items: center; }
  .button { width: 100%; max-width: 390px; padding: 0 20px; }
  .booking-direct h2 { font-size: clamp(2rem,10vw,2.75rem); }
  .booking-title-break { display: none; }
  .closing-title-break { display: none; }
  .booking-direct .shell > p:not(.eyebrow) { font-size: 16px; }
  .booking-calendar { margin-top: 30px; border-radius: 5px; }
  .booking-calendar .calendly-inline-widget { height: 780px !important; }
  .booking-fallback { flex-direction: column; align-items: center; gap: 5px; }
  .booking-fallback span[aria-hidden="true"] { display: none; }
  .sparkles { right: 4%; top: 24px; font-size: 41px; }
  .loop { display: none; }
  .hero-collage { bottom: -110px; width: 100%; height: 270px; }
  .hero-collage img { width: 48%; height: 215px; border-width: 5px; }
  .hero-collage img:nth-child(1) { left: -8%; bottom: 22px; }
  .hero-collage img:nth-child(2) { left: 26%; bottom: -4px; }
  .hero-collage img:nth-child(3) { left: auto; right: -8%; bottom: 20px; }
  .hero-collage img:nth-child(4) { display: none; }
  .proof-grid { grid-template-columns: repeat(2,1fr); }
  .proof-item { padding: 25px 14px; }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section, .section-large { padding: 68px 0; }
  .statement { padding: 70px 0; }
  .headline { font-size: clamp(2.05rem,10vw,2.75rem); }
  .problem-section { padding: 170px 0 62px; }
  .problem-section .headline { font-size: clamp(2.05rem,9vw,2.65rem); }
  .problem-section .copy-stack { padding: 28px 24px; }
  .home-services { padding: 64px 0 70px; }
  .about-opening { padding: 54px 0 30px; }
  .purpose-section { padding: 0 0 54px; }
  .standards-section { padding: 56px 0 48px; }
  .geography-section { padding: 48px 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-item { min-height: auto; }
  .purpose-grid { grid-template-columns: 1fr; }
  .purpose-card { min-height: auto; padding: 38px 27px; }
  .purpose-index { margin-bottom: 42px; }
  .standard-index { margin-bottom: 32px; }
  .team-section { padding: 48px 0 54px; }
  .team-heading .headline { font-size: clamp(2.05rem,9vw,2.65rem); }
  .team-grid { grid-template-columns: 1fr; }
  .person { min-height: 170px; grid-template-columns: 42% 58%; }
  .person img { height: 170px; }
  .person figcaption { padding: 18px; }
  .person h3 { font-size: 18px; }
  .page-wash { min-height: 220px; }
  .page-title { min-height: 130px; padding: 24px 20px 34px; }
  .page-title h1 { font-size: clamp(2.35rem,11vw,3.2rem); }
  .center-copy p { font-size: 16px; }
  .case-study { margin-bottom: 24px; padding: 34px 24px 39px; }
  .case-study > h2 { margin-bottom: 27px; }
  .services-intro-section { padding: 54px 0 60px; }
  .services-intro-copy h2 { font-size: clamp(2rem,9.5vw,2.65rem); }
  .services-list-section { padding: 56px 0 66px; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .contact-direct-card { padding: 32px 22px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 34px 26px; padding-top: 50px; padding-bottom: 42px; }
  .footer-contact { grid-column: 1/-1; }
  .footer-logo { width: 225px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .hero-collage img { animation: none !important; }
}
