@font-face { font-family: "DM Sans"; src: url("assets/fonts/dm-sans-300.ttf") format("truetype"); font-style: normal; font-weight: 300; font-display: swap; }
@font-face { font-family: "DM Sans"; src: url("assets/fonts/dm-sans-400.ttf") format("truetype"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "DM Sans"; src: url("assets/fonts/dm-sans-500.ttf") format("truetype"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "DM Sans"; src: url("assets/fonts/dm-sans-600.ttf") format("truetype"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Italiana"; src: url("assets/fonts/italiana-400.ttf") format("truetype"); font-style: normal; font-weight: 400; font-display: swap; }

:root {
  --ink: #17201c;
  --forest: #1f3029;
  --forest-2: #263b32;
  --paper: #f4f0e8;
  --paper-2: #e9e2d6;
  --cream: #fbf8f2;
  --rust: #a44213;
  --rust-bright: #d06725;
  --sage: #849382;
  --line: rgba(23, 32, 28, .16);
  --white-line: rgba(255, 255, 255, .18);
  --sans: "DM Sans", system-ui, sans-serif;
  --serif: "Italiana", Georgia, serif;
  --pad: clamp(1.35rem, 4vw, 4.5rem);
  --header-h: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--rust); color: white; }

.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: 1rem; top: -5rem; z-index: 1000; background: white; padding: .75rem 1rem; }
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed; z-index: 100; top: 0; left: 0; right: 0; height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; padding: 0 var(--pad);
  color: white; border-bottom: 1px solid rgba(255,255,255,.16); transition: background .4s, height .4s, color .4s, box-shadow .4s;
}
.site-header.scrolled { height: 72px; background: rgba(244,240,232,.94); color: var(--ink); box-shadow: 0 10px 40px rgba(23,32,28,.08); backdrop-filter: blur(16px); }
.brand {
  display: flex;
  align-items: center;
  z-index: 3;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.brand-logo {
  display: block;
  width: clamp(145px, 13vw, 170px);
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 3px 12px rgba(0, 0, 0, .24));
  opacity: .94;
  transition: filter .4s, opacity .4s, transform .3s;
}
.brand:hover .brand-logo { transform: translateY(-1px); }
.site-header.scrolled .brand-logo {
  filter: drop-shadow(0 4px 10px rgba(23, 32, 28, .1));
  opacity: 1;
}
.site-header.menu-active .brand-logo {
  filter: brightness(0) invert(1) drop-shadow(0 3px 12px rgba(0, 0, 0, .18));
  opacity: .96;
}
.main-nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.5vw, 2.8rem); font-size: .76rem; letter-spacing: .08em; }
.main-nav > a:not(.nav-cta) { position: relative; padding: .4rem 0; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: currentColor; transition: right .25s; }
.main-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { display: flex; align-items: center; gap: 1.2rem; border: 1px solid currentColor; padding: .72rem 1rem; }
.nav-cta span { font-size: 1rem; }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 11px 7px; z-index: 3; }
.menu-toggle span:not(.sr-only) { display: block; height: 1px; background: currentColor; margin: 7px 0; transition: transform .25s; }

.hero { min-height: 100svh; position: relative; display: flex; align-items: flex-end; color: white; overflow: hidden; }
.hero-media { position: absolute; inset: 0; background: url("assets/la-quinta-hero.webp") 58% center/cover no-repeat; transform: scale(1.015); animation: hero-in 1.5s cubic-bezier(.2,.7,.2,1) both; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,17,14,.88) 0%, rgba(10,17,14,.55) 38%, rgba(10,17,14,.08) 72%), linear-gradient(0deg, rgba(8,14,11,.72) 0%, transparent 44%); }
.hero-grain { position: absolute; inset: 0; opacity: .12; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E"); }
.hero-content { position: relative; z-index: 2; width: min(860px, 100%); padding: calc(var(--header-h) + 4rem) var(--pad) 10rem; }
.eyebrow { display: flex; align-items: center; gap: .8rem; text-transform: uppercase; font-size: .68rem; letter-spacing: .2em; font-weight: 500; }
.eyebrow span { width: 32px; height: 1px; background: currentColor; }
.hero-eyebrow { margin: 0 0 1.6rem; color: rgba(255,255,255,.78); animation: rise .8s .2s both; }
h1 { margin: 0; font-family: var(--serif); font-size: clamp(4.4rem, 9.5vw, 9rem); line-height: .82; letter-spacing: -.035em; font-weight: 400; animation: rise .9s .32s both; }
h1 em, .display-title em { font-weight: 400; color: var(--rust-bright); }
.hero-lead { max-width: 560px; margin: 2.1rem 0 0; font-size: clamp(1rem, 1.5vw, 1.28rem); line-height: 1.55; font-weight: 300; color: rgba(255,255,255,.84); animation: rise .9s .44s both; }
.hero-actions { display: flex; align-items: center; gap: 2rem; margin-top: 2.4rem; animation: rise .9s .56s both; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 2rem; min-width: 220px; padding: 1rem 1.15rem; border: 1px solid transparent; text-transform: uppercase; font-size: .66rem; letter-spacing: .14em; font-weight: 600; transition: transform .25s, background .25s, color .25s; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--cream); color: var(--ink); }
.button-dark { background: var(--ink); color: white; }
.button-outline { border-color: rgba(255,255,255,.5); color: white; }
.button-outline:hover { background: white; color: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: 1rem; padding-bottom: .3rem; border-bottom: 1px solid currentColor; text-transform: uppercase; font-size: .67rem; letter-spacing: .12em; font-weight: 600; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }
.text-link-light { color: white; }
.hero-meta { position: absolute; z-index: 2; right: var(--pad); bottom: 2.8rem; display: flex; border-top: 1px solid rgba(255,255,255,.28); }
.hero-meta div { min-width: 145px; padding: 1rem 1.4rem 0 0; }
.hero-meta strong, .hero-meta span { display: block; }
.hero-meta strong { font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }
.hero-meta span { font-size: .6rem; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.image-note { position: absolute; z-index: 2; left: var(--pad); bottom: 2rem; margin: 0; font-size: .56rem; letter-spacing: .08em; color: rgba(255,255,255,.42); }

.section { padding: clamp(6rem, 11vw, 10rem) var(--pad); }
.section-kicker { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 3rem; text-transform: uppercase; letter-spacing: .19em; font-size: .66rem; font-weight: 600; }
.section-kicker span { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid currentColor; border-radius: 50%; font-size: .55rem; }
.section-kicker-light { color: rgba(255,255,255,.65); }
.display-title { margin: 0; font-family: var(--serif); font-size: clamp(3.1rem, 6.8vw, 7.2rem); line-height: .92; letter-spacing: -.035em; font-weight: 400; }
.display-title-light { color: white; }
.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(3rem, 8vw, 9rem); align-items: end; }
.intro-copy { max-width: 530px; padding-bottom: .5rem; color: #4c554f; }
.intro-copy p { margin: 0 0 1.25rem; }
.intro-copy .lead-copy { color: var(--ink); font-size: clamp(1.1rem, 1.5vw, 1.35rem); line-height: 1.55; }
.intro-copy .text-link { margin-top: 1rem; color: var(--ink); }
.landscape-card { margin-top: clamp(4rem, 8vw, 8rem); background: #cbc8ae; overflow: hidden; }
.landscape-visual { height: clamp(310px, 43vw, 600px); position: relative; overflow: hidden; background: linear-gradient(#aeb9b0 0 55%, #a5a388 55%); }
.sun { position: absolute; width: 9vw; height: 9vw; min-width: 70px; min-height: 70px; border-radius: 50%; background: #e9d4a8; top: 12%; right: 15%; box-shadow: 0 0 90px rgba(233,212,168,.8); }
.hill { position: absolute; border-radius: 50% 50% 0 0; transform: rotate(-4deg); }
.hill-one { width: 75%; height: 48%; left: -10%; bottom: 17%; background: #526a5b; }
.hill-two { width: 68%; height: 44%; right: -12%; bottom: 13%; background: #6e7f6a; transform: rotate(5deg); }
.house { position: absolute; bottom: 15%; width: 20%; height: 25%; min-width: 140px; background: #ece7d9; box-shadow: inset 0 -20px #ded5c3; }
.house::before { content: ""; position: absolute; width: 34%; height: 62%; bottom: 0; left: 12%; background: #303936; }
.house::after { content: ""; position: absolute; width: 28%; height: 30%; top: 18%; right: 12%; border: 7px solid #b6714f; border-width: 0 0 7px 7px; }
.house-one { left: 30%; }
.house-two { right: 13%; bottom: 11%; transform: scale(.75); }
.palm { position: absolute; bottom: 30%; font-size: clamp(4rem, 9vw, 9rem); color: #304d3a; transform: rotate(14deg); text-shadow: 0 45px 0 #445547; }
.palm-one { left: 12%; }.palm-two { right: 37%; transform: scale(.7) rotate(-10deg); }
.landscape-caption { display: flex; justify-content: space-between; align-items: center; gap: 2rem; padding: 1.2rem 1.5rem; background: var(--cream); }
.landscape-caption span { font-size: .62rem; letter-spacing: .16em; color: #66706a; }
.landscape-caption p { margin: 0; font-family: var(--serif); font-size: 1.25rem; }

.services { background: var(--forest); color: white; }
.section-heading { display: grid; grid-template-columns: 1fr 32%; gap: 5rem; align-items: end; margin-bottom: 5rem; }
.section-heading > p { margin: 0 0 .5rem; color: rgba(255,255,255,.6); font-size: 1.05rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--white-line); border-left: 1px solid var(--white-line); }
.service-card { min-height: 360px; position: relative; padding: clamp(1.5rem, 3vw, 2.5rem); border-right: 1px solid var(--white-line); border-bottom: 1px solid var(--white-line); transition: background .35s; }
.service-card:not(.service-card-accent):hover { background: rgba(255,255,255,.055); }
.service-icon { width: 62px; height: 62px; margin-bottom: 5rem; color: var(--rust-bright); }
.service-icon svg { width: 100%; fill: none; stroke: currentColor; stroke-width: 1.25; }
.service-number { position: absolute; right: 1.5rem; top: 1.5rem; font-size: .6rem; letter-spacing: .15em; color: rgba(255,255,255,.35); }
.service-card h3 { margin: 0 0 1rem; font-family: var(--serif); font-size: 1.85rem; font-weight: 400; }
.service-card p { max-width: 330px; margin: 0; color: rgba(255,255,255,.58); font-size: .9rem; }
.service-card-accent { display: flex; flex-direction: column; justify-content: flex-end; background: var(--rust); }
.service-card-accent .quote-mark { position: absolute; top: 1rem; margin: 0; color: rgba(255,255,255,.85); font-family: var(--serif); font-size: 6rem; line-height: 1; }
.service-card-accent blockquote { margin: 0 0 1.5rem; font-family: var(--serif); font-size: clamp(1.6rem, 2.4vw, 2.35rem); line-height: 1.15; }
.service-card-accent .quote-by { color: rgba(255,255,255,.62); text-transform: uppercase; letter-spacing: .15em; font-size: .58rem; }

.architecture { display: grid; grid-template-columns: 52% 48%; padding: 0; background: var(--paper-2); min-height: 800px; }
.architecture-media { position: relative; min-height: 760px; overflow: hidden; }
.architecture-image { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,25,22,.3), transparent), url("assets/la-quinta-hero.webp") 78% center/cover no-repeat; transform: scale(1.2); }
.vertical-label { position: absolute; left: 1rem; bottom: 2rem; writing-mode: vertical-rl; transform: rotate(180deg); color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .15em; font-size: .55rem; }
.architecture-content { padding: clamp(5rem, 9vw, 10rem) clamp(2rem, 6vw, 7rem); align-self: center; }
.award { display: inline-block; margin: 0 0 2rem; padding: .55rem .8rem; border: 1px solid var(--rust); color: var(--rust); text-transform: uppercase; font-size: .58rem; letter-spacing: .11em; }
.architecture-content > p:not(.award) { max-width: 600px; margin: 2.4rem 0 0; color: #536058; }
.architecture-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 4rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.architecture-facts strong, .architecture-facts span { display: block; }
.architecture-facts strong { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; color: var(--rust); }
.architecture-facts span { font-size: .58rem; text-transform: uppercase; letter-spacing: .1em; color: #6c746f; }

.life { background: var(--cream); }
.life-head { display: grid; grid-template-columns: .5fr 1.5fr; align-items: start; margin-bottom: 5rem; }
.life-head .display-title { justify-self: end; text-align: right; }
.life-panels { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: rgba(23,32,28,.25); border: 1px solid rgba(23,32,28,.25); }
.life-panel { min-height: 570px; position: relative; display: flex; flex-direction: column; justify-content: space-between; padding: 2rem; overflow: hidden; }
.life-panel-green { background: #aebaa4; }.life-panel-sand { background: #d6c4a8; }.life-panel-rust { background: #9d4d2d; color: white; }
.panel-index { font-size: .62rem; letter-spacing: .18em; }
.panel-art { position: absolute; inset: 5rem 1.5rem 10rem; }
.botanical i { position: absolute; bottom: 0; left: 50%; width: 2px; height: 90%; background: #354a3c; transform-origin: bottom; }
.botanical i::after { content: ""; position: absolute; width: 70px; height: 150px; top: 8%; left: 0; border-radius: 100% 0 100% 0; background: #516c55; transform: rotate(35deg); transform-origin: bottom left; }
.botanical i:nth-child(1){transform:rotate(-27deg)}.botanical i:nth-child(2){transform:rotate(-8deg);height:75%}.botanical i:nth-child(3){transform:rotate(18deg);height:82%}.botanical i:nth-child(4){transform:rotate(38deg);height:62%}
.play i { position: absolute; display: block; border: 2px solid #8f6543; }
.play i:nth-child(1) { width: 42%; height: 65%; bottom: 0; left: 8%; border-radius: 48% 48% 0 0; }
.play i:nth-child(2) { width: 39%; height: 2px; bottom: 0; left: 50%; transform: rotate(-50deg); transform-origin: left; }
.play i:nth-child(3) { width: 120px; height: 120px; border-radius: 50%; right: 5%; top: 5%; border-style: dashed; }
.motion i { position: absolute; width: 2px; height: 82%; bottom: 0; background: #e4b297; left: 30%; transform: rotate(28deg); }
.motion i::after { content: ""; position: absolute; top: -12px; left: -38px; width: 76px; height: 76px; border: 1px solid #e4b297; border-radius: 50%; }
.motion i:nth-child(2) { left: 55%; height: 64%; transform: rotate(-21deg); }.motion i:nth-child(3) { left: 70%; height: 44%; transform: rotate(45deg); }
.panel-copy { position: relative; z-index: 2; max-width: 300px; }
.panel-copy h3 { margin: 0 0 .7rem; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.panel-copy p { margin: 0; font-size: .85rem; line-height: 1.55; opacity: .75; }

.location { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 9rem); background: var(--forest-2); color: white; }
.location-copy { align-self: center; }
.location-copy > p { max-width: 500px; margin: 2rem 0; color: rgba(255,255,255,.62); }
.location-copy address { margin: 0 0 2.5rem; padding-left: 1rem; border-left: 2px solid var(--rust-bright); color: rgba(255,255,255,.62); font-style: normal; font-size: .85rem; }
.location-copy address span { display: block; margin-bottom: .4rem; color: white; font-weight: 600; }
.map-card { position: relative; display: block; min-height: 640px; background: #d8d1bd; color: var(--ink); overflow: hidden; }
.map-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(31,48,41,.08) 1px, transparent 1px), linear-gradient(90deg,rgba(31,48,41,.08) 1px, transparent 1px); background-size: 55px 55px; }
.road { position: absolute; height: 30px; background: #eee9dc; border: 1px solid rgba(31,48,41,.15); transform-origin: left; }
.road::after { content:""; position:absolute; left:0; right:0; top:50%; border-top:1px dashed rgba(31,48,41,.28); }
.road-a { width: 115%; left: -10%; top: 61%; transform: rotate(-12deg); }.road-b { width: 90%; left: 10%; top: 20%; transform: rotate(57deg); }.road-c { width: 85%; left: 30%; top: 80%; transform: rotate(-62deg); }
.map-water { position: absolute; width: 26%; height: 115%; right: -15%; top: -5%; border-radius: 50%; background: #a5b8b0; transform: rotate(8deg); }
.map-pin { position: absolute; left: 51%; top: 45%; display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.map-pin i { width: 22px; height: 22px; border-radius: 50% 50% 50% 0; background: var(--rust); transform: rotate(-45deg); box-shadow: 0 8px 20px rgba(100,40,20,.3); }
.map-pin i::after { content: ""; position: absolute; inset: 7px; border-radius: 50%; background: var(--cream); }
.map-pin b { padding: .4rem .6rem; background: var(--forest); color: white; letter-spacing: .16em; font-size: .55rem; }
.map-label { position: absolute; font-size: .6rem; letter-spacing: .14em; color: rgba(23,32,28,.6); }.label-molina { left: 18%; top: 25%; }.label-murcia { right: 13%; bottom: 20%; }
.map-north { position: absolute; right: 1.5rem; top: 1.5rem; font-family: var(--serif); }
.map-link { position: absolute; right: 0; bottom: 0; display: flex; justify-content: space-between; min-width: 230px; padding: 1rem 1.2rem; background: var(--cream); text-transform: uppercase; letter-spacing: .12em; font-size: .62rem; }

.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(4rem, 10vw, 10rem); background: var(--paper); }
.contact-intro > p { max-width: 520px; margin: 2rem 0 3rem; color: #59635c; }
.contact-direct { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; border-top: 1px solid var(--line); padding-top: 1.4rem; }
.contact-direct a { font-family: var(--serif); font-size: clamp(1rem, 1.6vw, 1.35rem); }
.contact-direct span { display: block; margin-bottom: .3rem; font-family: var(--sans); text-transform: uppercase; letter-spacing: .14em; font-size: .56rem; color: #717a74; }
.contact-form { align-self: center; padding: clamp(2rem, 4vw, 4rem); background: var(--cream); box-shadow: 0 22px 70px rgba(23,32,28,.08); }
.contact-form label:not(.consent) { display: block; margin-bottom: 1.4rem; text-transform: uppercase; letter-spacing: .1em; font-size: .58rem; font-weight: 600; color: #5f6962; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.contact-form input:not([type="checkbox"]), .contact-form textarea { width: 100%; margin-top: .4rem; padding: .65rem 0; border: 0; border-bottom: 1px solid #aeb4af; border-radius: 0; background: transparent; color: var(--ink); outline: none; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-bottom-color: var(--rust); box-shadow: 0 1px 0 var(--rust); }
.consent { display: flex; gap: .7rem; align-items: flex-start; margin: .5rem 0 1.6rem; font-size: .7rem; color: #69716c; }
.consent input { accent-color: var(--rust); margin-top: .25rem; }
.form-note { margin: 1rem 0 0; font-size: .65rem; color: #737a75; }

.site-footer { padding: 4rem var(--pad) 2rem; background: #111814; color: white; }
.footer-brand { display: flex; align-items: center; gap: 1rem; margin-bottom: 4rem; }
.footer-brand-logo { display: block; width: 126px; height: auto; opacity: .92; }
.footer-brand p { margin: 0; color: rgba(255,255,255,.45); font-size: .7rem; line-height: 1.5; }
.footer-brand strong { color: white; letter-spacing: .18em; }
.footer-links { display: flex; gap: clamp(1.5rem, 4vw, 4rem); padding: 1.5rem 0; border-top: 1px solid var(--white-line); border-bottom: 1px solid var(--white-line); text-transform: uppercase; letter-spacing: .12em; font-size: .62rem; }
.footer-links a:hover { color: var(--rust-bright); }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; padding-top: 1.5rem; color: rgba(255,255,255,.42); text-transform: uppercase; letter-spacing: .09em; font-size: .56rem; }
.footer-bottom p { margin: 0; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes rise { from { opacity:0; transform:translateY(24px) } to { opacity:1; transform:none } }
@keyframes hero-in { from { opacity:.4; transform:scale(1.08) } to { opacity:1; transform:scale(1.015) } }

@media (prefers-reduced-motion: reduce) {
  *, *::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: 980px) {
  :root { --header-h: 74px; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.2rem; padding: 7rem var(--pad) 3rem; background: var(--forest); color: white; transform: translateX(100%); transition: transform .35s ease; }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-family: var(--serif); font-size: clamp(2rem, 7vw, 3.5rem); letter-spacing: 0; }
  .main-nav .nav-cta { margin-top: 1rem; font-family: var(--sans); font-size: .7rem; letter-spacing: .12em; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-4px) rotate(-45deg); }
  .site-header.menu-active { color: white; background: transparent; box-shadow: none; }
  .hero-content { padding-bottom: 12rem; }
  .hero-meta { left: var(--pad); right: auto; bottom: 3.2rem; }
  .hero-meta div { min-width: 130px; }
  .image-note { display: none; }
  .intro-grid, .section-heading, .architecture, .location, .contact { grid-template-columns: 1fr; }
  .intro-copy { max-width: 680px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .architecture-media { min-height: 600px; }
  .architecture-content { padding: 6rem var(--pad); }
  .life-head { grid-template-columns: 1fr; gap: 2rem; }
  .life-head .display-title { justify-self: start; text-align: left; }
  .life-panels { overflow-x: auto; grid-template-columns: repeat(3, minmax(290px, 1fr)); }
  .map-card { min-height: 520px; }
}

@media (max-width: 640px) {
  .brand-logo { width: 136px; }
  h1 { font-size: clamp(4rem, 20vw, 6.5rem); }
  .hero { min-height: 850px; }
  .hero-media { background-position: 66% center; }
  .hero-content { padding-top: 8rem; padding-bottom: 15.5rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.4rem; }
  .hero-meta { right: var(--pad); display: grid; grid-template-columns: repeat(3, 1fr); }
  .hero-meta div { min-width: 0; padding-right: .6rem; }
  .hero-meta strong { font-size: 1.2rem; }.hero-meta span { font-size: .48rem; }
  .section { padding-top: 5.5rem; padding-bottom: 5.5rem; }
  .section-kicker { margin-bottom: 2rem; }
  .landscape-card { margin-left: calc(var(--pad) * -1); margin-right: calc(var(--pad) * -1); }
  .landscape-caption { align-items: flex-start; flex-direction: column; gap: .5rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 310px; }
  .section-heading { gap: 2rem; }
  .architecture-media { min-height: 500px; }
  .architecture-facts { grid-template-columns: 1fr 1fr; }
  .architecture-facts div:last-child { grid-column: 1 / -1; }
  .life-panels { margin-left: calc(var(--pad) * -1); margin-right: calc(var(--pad) * -1); padding-left: var(--pad); border-left: 0; border-right: 0; }
  .life-panel { min-height: 500px; }
  .map-card { min-height: 440px; }
  .contact-direct, .field-row { grid-template-columns: 1fr; }
  .contact-form { margin-left: calc(var(--pad) * -1); margin-right: calc(var(--pad) * -1); }
  .footer-links { display: grid; grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; }
}
