:root {
  --forest: #31463a;
  --forest-deep: #1f3027;
  --clay: #b47d61;
  --sand: #f5efe6;
  --paper: #fffaf3;
  --ink: #262c27;
  --sage: #aab4a2;
  --pistachio: #dbe6ce;
  --pistachio-deep: #a9bd96;
  --line: rgba(49, 70, 58, .18);
  --display: "Italiana", Georgia, serif;
  --body: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--clay); color: white; }

.site-loader { position: fixed; inset: 0; z-index: 1000; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--sand); color: var(--forest); transition: opacity .45s ease, visibility .45s ease; }
.site-loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.site-loader strong { margin-top: 25px; font-family: var(--display); font-size: 30px; font-weight: 400; }
.site-loader small { margin-top: 6px; color: rgba(49,70,58,.55); font-size: 9px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; }
.loader-mark { position: relative; width: 70px; height: 70px; animation: loaderBreathe 2s ease-in-out infinite; }
.loader-mark span { position: absolute; left: 25px; bottom: 8px; width: 22px; height: 48px; border: 1px solid var(--forest); border-radius: 100% 0 100% 0; transform-origin: bottom center; }
.loader-mark span:first-child { transform: rotate(-45deg); }
.loader-mark span:nth-child(2) { transform: rotate(45deg) scaleX(-1); }
.loader-mark span:nth-child(3) { height: 55px; transform: translateY(-5px) rotate(45deg); border-color: var(--clay); }
.loader-progress { width: 190px; height: 1px; margin-top: 27px; overflow: hidden; background: rgba(49,70,58,.14); }
.loader-progress i { display: block; width: 45%; height: 100%; background: var(--clay); animation: loaderProgress 1.3s ease-in-out infinite; }
@keyframes loaderBreathe { 0%,100% { transform: scale(.94); opacity: .72; } 50% { transform: scale(1.05); opacity: 1; } }
@keyframes loaderProgress { 0% { transform: translateX(-110%); } 100% { transform: translateX(330%); } }
.media-loading-indicator { position: absolute; inset: 0; z-index: 8; display: flex; align-items: center; justify-content: center; background: linear-gradient(110deg, rgba(219,230,206,.92) 30%, rgba(255,250,243,.96) 46%, rgba(219,230,206,.92) 62%); background-size: 240% 100%; color: var(--forest); font-size: 8px; font-style: normal; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; animation: mediaShimmer 1.5s linear infinite; transition: opacity .3s ease; }
.media-loading-indicator.is-done { opacity: 0; pointer-events: none; }
@keyframes mediaShimmer { to { background-position: -240% 0; } }

.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 999;
  background: white; color: var(--forest); padding: 12px 18px;
}
.skip-link:focus { top: 12px; }
.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; }

.announcement {
  min-height: 34px; display: flex; justify-content: center; align-items: center; gap: 28px;
  padding: 7px 24px; background: var(--forest-deep); color: rgba(255,255,255,.78);
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
}
.announcement a { color: white; font-weight: 500; }

.site-header {
  position: sticky; top: 0; z-index: 100; height: 86px;
  background: color-mix(in srgb, var(--sand) 92%, transparent);
  border-bottom: 1px solid transparent; backdrop-filter: blur(18px);
  transition: height .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { height: 72px; border-color: var(--line); box-shadow: 0 10px 40px rgba(38,44,39,.05); }
.nav-shell { width: min(1400px, calc(100% - 64px)); height: 100%; margin: auto; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--forest); font-size: 11px; font-weight: 500; letter-spacing: .18em; }
.brand img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(49,70,58,.14); }
.main-menu { display: flex; align-items: center; gap: clamp(20px, 3vw, 44px); }
.main-menu a { position: relative; color: rgba(38,44,39,.76); font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.main-menu a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 1px; background: var(--clay); transition: width .25s ease; }
.main-menu a:hover::after { width: 100%; }
.main-menu .nav-cta { padding: 11px 22px; border: 1px solid var(--forest); color: var(--forest); transition: .25s ease; }
.main-menu .nav-cta:hover { background: var(--forest); color: white; }
.menu-button { display: none; width: 46px; height: 46px; background: transparent; border: 0; position: relative; }
.menu-button > span:not(.sr-only) { position: absolute; left: 10px; width: 25px; height: 1px; background: var(--forest); transition: .25s ease; }
.menu-button > span:first-child { top: 19px; }
.menu-button > span:nth-child(2) { top: 27px; width: 18px; }

.hero {
  width: min(1400px, calc(100% - 64px)); min-height: calc(100vh - 120px); margin: auto;
  display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: clamp(40px, 7vw, 120px);
  padding: 70px 0 96px;
}
.hero-copy { position: relative; z-index: 2; padding-left: clamp(0px, 4vw, 70px); }
.eyebrow { margin: 0 0 24px; color: var(--clay); font-size: 10px; font-weight: 600; letter-spacing: .3em; line-height: 1.4; text-transform: uppercase; }
h1, h2, h3 { margin: 0; font-family: var(--display); font-weight: 400; line-height: 1.08; }
.hero h1 { max-width: 690px; font-size: clamp(52px, 6vw, 94px); letter-spacing: -.04em; }
.hero h1::first-line { color: var(--forest); }
.hero-lead { max-width: 560px; margin: 30px 0 0; color: rgba(38,44,39,.72); font-size: clamp(16px, 1.4vw, 19px); line-height: 1.8; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 30px; margin-top: 36px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 22px; min-height: 54px; padding: 14px 24px; border: 1px solid transparent; cursor: pointer; font-size: 10px; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--forest); color: white; box-shadow: 0 14px 30px rgba(49,70,58,.14); }
.button-primary:hover { background: var(--forest-deep); box-shadow: 0 18px 36px rgba(49,70,58,.2); }
.text-link { padding: 7px 0; border-bottom: 1px solid var(--line); color: var(--forest); font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.text-link span { margin-left: 12px; }
.hero-signature { display: flex; align-items: center; gap: 18px; margin-top: 66px; color: rgba(38,44,39,.6); font-family: var(--display); font-size: 15px; font-style: italic; line-height: 1.4; }
.hero-signature p { margin: 0; }
.signature-line { width: 55px; height: 1px; background: var(--clay); }

.hero-visual { position: relative; min-height: 660px; display: flex; align-items: center; justify-content: center; }
.hero-frame { position: relative; z-index: 2; width: min(560px, 80%); aspect-ratio: 1 / 1.08; overflow: hidden; border-radius: 48% 48% 4px 4px; box-shadow: 0 42px 80px rgba(43,54,46,.16); }
.hero-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.35); pointer-events: none; }
.hero-frame img, .hero-frame video { width: 100%; height: 100%; object-fit: cover; }
.hero-frame video { background: var(--forest-deep); }
.hero-orbit { position: absolute; border: 1px solid rgba(180,125,97,.35); border-radius: 50%; }
.orbit-one { width: 610px; height: 610px; max-width: 96%; max-height: 96%; }
.orbit-two { width: 500px; height: 500px; max-width: 78%; max-height: 78%; border-color: rgba(49,70,58,.15); transform: translate(70px, -30px); }
.hero-seal { position: absolute; z-index: 3; right: 1%; bottom: 9%; width: 136px; height: 136px; border-radius: 50%; background: var(--clay); color: white; display: grid; place-items: center; box-shadow: 0 14px 40px rgba(87,58,44,.22); }
.hero-seal span { position: absolute; inset: 10px; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; display: grid; place-items: center; padding: 20px; font-size: 7px; font-weight: 600; letter-spacing: .18em; line-height: 1.45; text-align: center; }
.hero-seal strong { font-family: var(--display); font-size: 42px; font-weight: 400; }
.vertical-note { position: absolute; right: -54px; top: 50%; margin: 0; transform: rotate(90deg); color: rgba(38,44,39,.5); font-size: 8px; font-weight: 600; letter-spacing: .3em; }

.manifesto { display: flex; justify-content: center; align-items: center; gap: clamp(16px, 4vw, 64px); min-height: 104px; padding: 24px; background: var(--forest); color: white; overflow: hidden; }
.manifesto p { margin: 0; font-family: var(--display); font-size: clamp(20px, 3vw, 36px); font-style: italic; white-space: nowrap; }
.manifesto span { color: var(--clay); }

.section { width: min(1280px, calc(100% - 64px)); margin: auto; padding: 150px 0; }
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 9vw, 140px); align-items: center; }
.about-art { position: relative; min-height: 680px; }
.about-frame { position: absolute; left: 7%; top: 0; width: 78%; height: 86%; overflow: hidden; border-radius: 3px; box-shadow: 0 30px 80px rgba(43,54,46,.14); }
.about-frame img, .about-frame video { width: 100%; height: 100%; object-fit: cover; }
.about-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(150deg, transparent 55%, rgba(49,70,58,.14)); }
.botanical-line { position: absolute; z-index: 2; right: 0; bottom: -5%; width: 42%; color: var(--forest); }
.botanical-line svg { width: 100%; overflow: visible; }
.botanical-line path { stroke: currentColor; stroke-width: 1.4; }
.about-index { position: absolute; left: 0; bottom: 5%; display: grid; place-items: center; width: 78px; height: 78px; background: var(--clay); color: white; font-family: var(--display); font-size: 24px; }
.about-copy { max-width: 570px; }
.about h2, .section-heading h2, .testimonial-intro h2, .contact h2 { color: var(--forest); font-size: clamp(42px, 5vw, 70px); letter-spacing: -.035em; }
.about-copy > .lead { margin: 36px 0 18px; color: var(--ink); font-size: 19px; line-height: 1.8; }
.about-copy > p:not(.eyebrow):not(.lead) { color: rgba(38,44,39,.68); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 50px; padding-top: 32px; border-top: 1px solid var(--line); }
.stats div { display: flex; flex-direction: column; }
.stats strong { color: var(--forest); font-family: var(--display); font-size: 34px; font-weight: 400; }
.stat-number { display: flex; align-items: baseline; gap: 3px; line-height: 1; }
.stat-main { display: inline-block; }
.stat-plus { color: var(--clay); font-family: var(--body); font-size: .62em; font-weight: 600; line-height: 1; transform: translateY(-.14em); }
.stats span { color: rgba(38,44,39,.58); font-size: 9px; font-weight: 500; letter-spacing: .09em; line-height: 1.5; text-transform: uppercase; }

.services { width: 100%; max-width: none; padding-left: max(32px, calc((100vw - 1280px) / 2)); padding-right: max(32px, calc((100vw - 1280px) / 2)); background: #ebe3d7; }
.section-heading { display: grid; grid-template-columns: 1.1fr .7fr; gap: 70px; align-items: end; margin-bottom: 68px; }
.section-heading > p { max-width: 440px; margin: 0 0 8px auto; color: rgba(38,44,39,.62); }
.section-number { align-self: end; color: rgba(38,44,39,.46); font-size: 9px; font-weight: 600; letter-spacing: .18em; }
.service-list { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(49,70,58,.16); border-left: 1px solid rgba(49,70,58,.16); }
.service-card { min-height: 550px; padding: 34px 30px; border-right: 1px solid rgba(49,70,58,.16); border-bottom: 1px solid rgba(49,70,58,.16); display: flex; flex-direction: column; background: rgba(255,255,255,.08); transition: background .3s ease, transform .3s ease; }
.service-card:hover { background: var(--forest); color: white; transform: translateY(-8px); }
.service-topline { display: flex; justify-content: space-between; color: var(--clay); font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.service-image { position: relative; height: 150px; margin: 24px 0 10px; overflow: hidden; }
.service-image img, .service-image video { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-image img, .service-card:hover .service-image video { transform: scale(1.04); }
.service-card h3 { margin-top: 72px; color: var(--forest); font-size: clamp(28px, 2.4vw, 38px); transition: color .3s ease; }
.service-card:has(.service-image) h3 { margin-top: 28px; }
.service-card:hover h3 { color: white; }
.service-card > p { margin: 22px 0; color: rgba(38,44,39,.64); font-size: 14px; transition: color .3s ease; }
.service-card:hover > p, .service-card:hover li { color: rgba(255,255,255,.68); }
.service-card ul { margin: 0; padding: 0; list-style: none; }
.service-card li { position: relative; padding: 5px 0 5px 15px; color: rgba(38,44,39,.52); font-size: 11px; transition: color .3s ease; }
.service-card li::before { content: "—"; position: absolute; left: 0; color: var(--clay); }
.service-footer { margin-top: auto; padding-top: 26px; border-top: 1px solid rgba(49,70,58,.14); display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.service-price { min-width: 0; display: flex; flex-direction: column; gap: 4px; color: var(--forest); letter-spacing: 0; transition: color .3s ease; }
.service-price span { color: rgba(38,44,39,.48); font-size: 8px; font-weight: 600; letter-spacing: .16em; line-height: 1; text-transform: uppercase; transition: color .3s ease; }
.service-price b { color: inherit; font-size: 15px; font-weight: 600; line-height: 1.2; }
.service-card:hover .service-price { color: white; }
.service-card:hover .service-price span { color: rgba(255,255,255,.55); }
.service-arrow { flex: 0 0 42px; display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid currentColor; border-radius: 50%; color: currentColor; transition: .25s ease; }
.service-arrow svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-arrow:hover { background: var(--clay); border-color: var(--clay); color: white; transform: rotate(8deg); }

.wellness-strip { display: grid; grid-template-columns: repeat(5, 1fr); padding: 30px max(32px, calc((100vw - 1280px) / 2)); background: var(--pistachio); color: var(--forest); }
.wellness-strip > div { min-height: 76px; padding: 10px 24px; border-right: 1px solid rgba(49,70,58,.16); display: flex; align-items: center; gap: 16px; }
.wellness-strip > div:last-child { border: 0; }
.wellness-strip svg { flex: 0 0 38px; width: 38px; height: 38px; fill: none; stroke: currentColor; stroke-width: 1.2; }
.wellness-strip span { display: flex; flex-direction: column; }
.wellness-strip strong { font-family: var(--display); font-size: 17px; font-weight: 400; }
.wellness-strip small { color: rgba(49,70,58,.58); font-size: 9px; }

.sensory-break { position: relative; min-height: 480px; background: var(--forest-deep); color: white; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 70px 24px; text-align: center; overflow: hidden; }
.sensory-break p { position: relative; z-index: 2; margin: 0; font-family: var(--display); font-size: clamp(38px, 5.5vw, 72px); font-style: italic; line-height: 1.25; }
.sensory-break > span { position: relative; z-index: 2; margin-top: 40px; color: var(--sage); font-size: 9px; font-weight: 600; letter-spacing: .28em; }
.sensory-shape { position: absolute; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.shape-a { width: 500px; height: 500px; left: -140px; top: -220px; }
.shape-b { width: 620px; height: 620px; right: -180px; bottom: -340px; border-color: rgba(180,125,97,.28); }

.gallery-placeholder { min-height: 560px; display: grid; grid-template-columns: .8fr 1.1fr .7fr; background: #e7dac9; overflow: hidden; }
.placeholder-copy { padding: 56px; display: flex; flex-direction: column; justify-content: flex-end; background: var(--clay); color: white; }
.placeholder-copy span { font-size: 9px; font-weight: 600; letter-spacing: .26em; }
.placeholder-copy p { margin: 18px 0 0; font-family: var(--display); font-size: 32px; line-height: 1.25; }
.placeholder-mark { padding: 42px; display: grid; place-items: center; }
.placeholder-mark img { width: 100%; max-height: 480px; object-fit: cover; border-radius: 50% 50% 4px 4px; }
.placeholder-texture { background-color: var(--forest); background-image: radial-gradient(rgba(255,255,255,.14) 1px, transparent 1px); background-size: 18px 18px; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 220px; gap: 16px; }
.gallery-item { position: relative; grid-column: span 4; padding: 0; border: 0; overflow: hidden; cursor: zoom-in; background: #ded4c6; }
.gallery-item:nth-child(1), .gallery-item:nth-child(6n+1) { grid-column: span 7; grid-row: span 2; }
.gallery-item:nth-child(2), .gallery-item:nth-child(6n+2) { grid-column: span 5; }
.gallery-item img, .gallery-item video { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease, filter .4s ease; }
.gallery-item:hover img { transform: scale(1.04); filter: saturate(.8); }
.gallery-item span { position: absolute; left: 20px; bottom: 18px; padding: 8px 12px; background: rgba(30,43,35,.82); color: white; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.gallery-video { cursor: default; }
.gallery-video video { background: var(--forest-deep); }

.promo-banner { width: min(1280px, calc(100% - 64px)); min-height: 580px; margin: 0 auto 150px; display: grid; grid-template-columns: 1.08fr .92fr; background: var(--pistachio); overflow: hidden; }
.promo-media { position: relative; min-height: 580px; }
.promo-media img, .promo-media video { width: 100%; height: 100%; min-height: 580px; object-fit: cover; }
.promo-copy { position: relative; z-index: 1; align-self: center; padding: clamp(48px, 7vw, 100px); overflow: hidden; }
.promo-copy h2 { max-width: 520px; color: var(--forest); font-size: clamp(42px, 5vw, 68px); }
.promo-copy > p:not(.eyebrow) { position: relative; z-index: 2; margin: 28px 0 34px; color: rgba(38,44,39,.66); }
.promo-copy .button { position: relative; z-index: 2; }
.promo-leaf { position: absolute; right: -15px; bottom: -35px; width: 190px; color: rgba(49,70,58,.17); }
.promo-leaf svg { width: 100%; }
.promo-leaf path { stroke: currentColor; stroke-width: 1.4; }

.testimonials { position: relative; width: 100%; max-width: none; padding: 130px max(32px, calc((100vw - 1280px) / 2)); overflow: hidden; background: linear-gradient(180deg, #f9f6ef 0%, var(--pistachio) 100%); }
.testimonials::before { content: ""; position: absolute; left: -120px; top: 70px; width: 360px; height: 360px; border: 1px solid rgba(49,70,58,.11); border-radius: 50%; }
.testimonial-heading { position: relative; z-index: 1; max-width: 780px; margin: 0 auto 58px; text-align: center; }
.testimonial-heading h2 { color: var(--forest); font-size: clamp(42px, 5vw, 70px); }
.testimonial-heading > p:last-child { max-width: 560px; margin: 22px auto 0; color: rgba(38,44,39,.6); }
.testimonial-label { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 22px; padding: 9px 15px; border: 1px solid rgba(49,70,58,.2); border-radius: 40px; color: var(--forest); }
.testimonial-label span { display: grid; place-items: center; width: 23px; height: 23px; border-radius: 50%; background: var(--forest); color: white; font-family: var(--display); font-size: 11px; }
.testimonial-label strong { font-size: 8px; font-weight: 600; letter-spacing: .17em; }
.testimonial-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote-card { min-height: 390px; margin: 0; padding: 36px; border: 1px solid rgba(49,70,58,.13); background: rgba(255,253,249,.86); display: flex; flex-direction: column; box-shadow: 0 20px 50px rgba(49,70,58,.06); }
.quote-top { min-height: 48px; display: flex; align-items: flex-start; justify-content: space-between; }
.quote-mark { color: var(--pistachio-deep); font-family: var(--display); font-size: 64px; line-height: .8; }
.stars { color: var(--clay); font-size: 11px; letter-spacing: .16em; }
.quote-card blockquote { margin: 28px 0; color: var(--forest); font-family: var(--display); font-size: clamp(20px, 1.8vw, 26px); line-height: 1.5; }
.quote-card figcaption { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.quote-card figcaption > span { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; font-family: var(--display); }
.quote-card figcaption div { display: flex; flex-direction: column; }
.quote-card figcaption strong { color: var(--forest); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.quote-card figcaption small { color: rgba(38,44,39,.5); font-size: 10px; }

.cta-section { position: relative; min-height: 600px; display: grid; grid-template-columns: .85fr 1.15fr; background: var(--clay); color: white; overflow: hidden; }
.cta-art { position: relative; min-height: 600px; background: var(--forest); overflow: hidden; }
.cta-art span { position: absolute; border: 1px solid rgba(255,255,255,.2); border-radius: 50% 50% 0 50%; transform: rotate(36deg); }
.cta-art span:nth-child(1) { width: 430px; height: 430px; left: -80px; top: 110px; }
.cta-art span:nth-child(2) { width: 310px; height: 310px; left: 130px; top: -70px; border-color: rgba(180,125,97,.65); }
.cta-art span:nth-child(3) { width: 220px; height: 220px; right: -30px; bottom: -40px; }
.cta-copy { max-width: 690px; align-self: center; padding: 90px clamp(50px, 8vw, 140px); }
.cta-copy .eyebrow { color: rgba(255,255,255,.68); }
.cta-copy h2 { font-size: clamp(50px, 6vw, 80px); }
.cta-copy > p:not(.eyebrow) { margin: 30px 0 36px; color: rgba(255,255,255,.78); font-size: 18px; }
.button-light { background: var(--paper); color: var(--forest); }
.button-light:hover { background: white; box-shadow: 0 18px 30px rgba(60,34,24,.15); }

.contact { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(70px, 10vw, 150px); }
.contact-copy > p:not(.eyebrow) { max-width: 520px; margin: 30px 0; color: rgba(38,44,39,.62); }
.contact-list { margin-top: 48px; border-top: 1px solid var(--line); }
.contact-list a, .contact-list > div { display: flex; justify-content: space-between; gap: 20px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.contact-list span { color: rgba(38,44,39,.46); font-size: 9px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.contact-list strong { color: var(--forest); font-size: 12px; font-weight: 500; text-align: right; }
.contact-form-wrap { padding: clamp(32px, 5vw, 64px); background: #ebe3d7; }
.contact-form-wrap form { display: flex; flex-direction: column; gap: 25px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-form-wrap label { color: var(--forest); font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.contact-form-wrap input, .contact-form-wrap select, .contact-form-wrap textarea { width: 100%; margin-top: 9px; padding: 14px 0; border: 0; border-bottom: 1px solid rgba(49,70,58,.28); border-radius: 0; outline: none; background: transparent; color: var(--ink); font-size: 14px; font-weight: 300; text-transform: none; resize: vertical; transition: border-color .2s ease; }
.contact-form-wrap input:focus, .contact-form-wrap select:focus, .contact-form-wrap textarea:focus { border-color: var(--clay); }
.contact-form-wrap button { align-self: flex-start; margin-top: 10px; }
.contact-form-wrap form > small { color: rgba(38,44,39,.45); font-size: 9px; }
.honeypot { position: absolute; left: -10000px; }
.flash { margin-bottom: 24px; padding: 13px 16px; border-left: 3px solid var(--forest); background: rgba(49,70,58,.08); font-size: 13px; }
.flash.error { border-color: #a04b42; background: rgba(160,75,66,.08); }

.site-footer { padding: 74px max(32px, calc((100vw - 1280px) / 2)) 30px; background: var(--forest-deep); color: white; }
.footer-brand { display: flex; align-items: center; gap: 22px; }
.footer-brand img { width: 78px; height: 78px; border-radius: 50%; object-fit: cover; opacity: .9; }
.footer-brand strong { font-size: 11px; letter-spacing: .2em; }
.footer-brand p { margin: 8px 0 0; color: rgba(255,255,255,.48); font-family: var(--display); font-size: 22px; }
.footer-links { display: flex; justify-content: flex-end; gap: 90px; margin-top: -50px; }
.footer-links > div { display: flex; flex-direction: column; gap: 9px; }
.footer-links span { margin-bottom: 9px; color: var(--clay); font-size: 8px; font-weight: 600; letter-spacing: .22em; }
.footer-links a { color: rgba(255,255,255,.64); font-size: 12px; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 70px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.32); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }

.instagram-band { min-height: 126px; padding: 28px max(32px, calc((100vw - 1280px) / 2)); background: var(--pistachio); color: var(--forest); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; transition: background .25s ease; }
.instagram-band:hover { background: color-mix(in srgb, var(--pistachio) 78%, white); }
.instagram-band svg { width: 42px; height: 42px; fill: none; stroke: currentColor; stroke-width: 1.3; }
.instagram-band > span { display: flex; flex-direction: column; }
.instagram-band small { font-size: 8px; font-weight: 600; letter-spacing: .2em; }
.instagram-band strong { margin-top: 3px; font-family: var(--display); font-size: 28px; font-weight: 400; }
.instagram-band > b { font-size: 10px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.instagram-band i { margin-left: 14px; font-style: normal; }
.whatsapp-float { position: fixed; z-index: 90; right: 24px; bottom: 24px; min-width: 242px; height: 62px; padding: 0 20px; border-radius: 40px; background: var(--forest); color: white; display: flex; align-items: center; gap: 13px; box-shadow: 0 12px 35px rgba(31,48,39,.25); transition: transform .25s ease, background .25s ease; }
.whatsapp-float:hover { transform: translateY(-4px); background: var(--clay); }
.whatsapp-float svg { flex: 0 0 25px; width: 25px; fill: currentColor; }
.wa-text { display: flex; flex-direction: column; line-height: 1.25; }
.wa-text small { font-size: 7px; font-weight: 600; letter-spacing: .14em; }
.wa-text strong { margin-top: 3px; font-size: 12px; font-weight: 500; }
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(19,27,22,.92); display: grid; place-items: center; padding: 50px; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 92vw; max-height: 86vh; object-fit: contain; }
.lightbox button { position: absolute; right: 24px; top: 18px; border: 0; background: transparent; color: white; font-size: 42px; font-weight: 200; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .hero { grid-template-columns: .95fr 1.05fr; gap: 30px; }
  .hero-visual { min-height: 560px; }
  .hero-seal { width: 112px; height: 112px; }
  .service-list { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 470px; }
  .wellness-strip { grid-template-columns: repeat(3, 1fr); }
  .wellness-strip > div:nth-child(3) { border-right: 0; }
  .wellness-strip > div:nth-child(n+4) { border-top: 1px solid rgba(49,70,58,.16); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .announcement { justify-content: space-between; }
  .site-header { height: 72px; }
  .nav-shell { width: min(100% - 34px, 1400px); }
  .brand span { font-size: 9px; }
  .brand img { width: 42px; height: 42px; }
  .menu-button { display: block; z-index: 3; }
  .main-menu { position: fixed; inset: 0; z-index: 2; flex-direction: column; justify-content: center; gap: 28px; background: var(--sand); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .25s ease; }
  .main-menu.open { opacity: 1; visibility: visible; transform: none; }
  .main-menu a { font-family: var(--display); font-size: 32px; letter-spacing: 0; text-transform: none; }
  .main-menu .nav-cta { margin-top: 20px; font-family: var(--body); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
  .menu-button[aria-expanded="true"] > span:first-child { top: 23px; transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { top: 23px; width: 25px; transform: rotate(-45deg); }
  .hero { width: min(100% - 42px, 700px); min-height: auto; grid-template-columns: 1fr; padding: 80px 0 110px; }
  .hero-copy { padding: 0; }
  .hero h1 { font-size: clamp(52px, 12vw, 76px); }
  .hero-signature { margin-top: 48px; }
  .hero-visual { min-height: 600px; margin-top: 10px; }
  .vertical-note { right: -38px; }
  .manifesto { justify-content: flex-start; overflow-x: auto; }
  .section { width: min(100% - 42px, 700px); padding: 110px 0; }
  .about { grid-template-columns: 1fr; }
  .about-art { min-height: 590px; }
  .about-copy { max-width: none; }
  .services { width: 100%; padding-left: 21px; padding-right: 21px; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .section-heading > p { margin: 0; }
  .gallery-placeholder { grid-template-columns: 1fr 1.2fr; }
  .placeholder-texture { display: none; }
  .gallery-item, .gallery-item:nth-child(n) { grid-column: span 6; grid-row: span 1; }
  .gallery-item:nth-child(1) { grid-column: span 12; grid-row: span 2; }
  .wellness-strip { grid-template-columns: repeat(2, 1fr); padding-left: 21px; padding-right: 21px; }
  .wellness-strip > div:nth-child(n) { border-right: 1px solid rgba(49,70,58,.16); border-top: 1px solid rgba(49,70,58,.16); }
  .wellness-strip > div:nth-child(-n+2) { border-top: 0; }
  .wellness-strip > div:nth-child(2n) { border-right: 0; }
  .promo-banner { width: min(100% - 42px, 700px); grid-template-columns: 1fr; margin-bottom: 110px; }
  .promo-media, .promo-media img, .promo-media video { min-height: 430px; }
  .testimonials { width: 100%; padding: 110px 21px; }
  .cta-section { grid-template-columns: 1fr; }
  .cta-art { min-height: 320px; }
  .cta-copy { padding: 80px 34px 100px; }
  .contact { grid-template-columns: 1fr; }
  .instagram-band > b { display: none; }
  .footer-links { margin: 58px 0 0; justify-content: flex-start; }
}

@media (max-width: 560px) {
  .announcement span { max-width: 190px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .announcement a { white-space: nowrap; }
  .hero { width: min(100% - 34px, 700px); padding-top: 58px; }
  .hero h1 { font-size: clamp(48px, 15vw, 66px); }
  .hero-lead { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-visual { min-height: 440px; }
  .hero-frame { width: 86%; }
  .hero-seal { right: -2%; bottom: 4%; width: 96px; height: 96px; }
  .hero-seal strong { font-size: 30px; }
  .hero-seal span { font-size: 5px; }
  .orbit-one { width: 390px; height: 390px; }
  .vertical-note { display: none; }
  .manifesto { min-height: 82px; }
  .section { width: min(100% - 34px, 700px); padding: 90px 0; }
  .about-art { min-height: 470px; }
  .about-frame { width: 86%; height: 88%; }
  .about-index { width: 62px; height: 62px; }
  .about h2, .section-heading h2, .testimonial-heading h2, .contact h2 { font-size: 42px; }
  .stats { grid-template-columns: 1fr; }
  .stats div { display: grid; grid-template-columns: 100px 1fr; align-items: center; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
  .service-list { grid-template-columns: 1fr; }
  .service-card { min-height: 450px; }
  .sensory-break { min-height: 420px; }
  .gallery-placeholder { min-height: 650px; grid-template-columns: 1fr; }
  .placeholder-copy { padding: 36px; }
  .placeholder-mark { grid-row: 1; padding: 28px; }
  .placeholder-mark img { max-height: 390px; }
  .gallery-grid { grid-auto-rows: 180px; }
  .gallery-item, .gallery-item:nth-child(n) { grid-column: span 12; }
  .wellness-strip { grid-template-columns: 1fr; }
  .wellness-strip > div:nth-child(n) { border: 0; border-top: 1px solid rgba(49,70,58,.16); }
  .wellness-strip > div:first-child { border-top: 0; }
  .promo-banner { width: min(100% - 34px, 700px); }
  .promo-media, .promo-media img, .promo-media video { min-height: 330px; }
  .promo-copy { padding: 50px 28px 65px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-label strong { font-size: 7px; }
  .quote-card { padding: 32px; }
  .quote-card blockquote { font-size: 23px; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 22px; }
  .contact-list a, .contact-list > div { flex-direction: column; gap: 5px; }
  .contact-list strong { text-align: left; }
  .footer-brand { align-items: flex-start; }
  .footer-links { flex-direction: column; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .instagram-band { min-height: 110px; grid-template-columns: auto 1fr; padding-left: 22px; padding-right: 22px; }
  .instagram-band strong { font-size: 23px; }
  .whatsapp-float { min-width: 58px; width: 58px; height: 58px; padding: 0; justify-content: center; }
  .wa-text { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
