:root {
  --ink: #1d261f;
  --paper: #f5f3ed;
  --olive: #657156;
  --line: rgba(29, 38, 31, .17);
  --sun: #d8a23e;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Manrope, sans-serif; }
a { color: inherit; text-decoration: none; }
.site-shell { min-height: 100vh; padding: 28px clamp(24px, 5vw, 82px) 22px; overflow: hidden; }
.nav, .bottom-row, footer { display: flex; align-items: center; justify-content: space-between; }
.nav { position: relative; z-index: 3; }
.brand { display: flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 700; letter-spacing: -.9px; }
.brand > span:last-child span { color: var(--olive); font-weight: 500; }
.brand-mark { display: flex; align-items: end; gap: 2px; height: 19px; }
.brand-mark i { display: block; width: 4px; background: var(--ink); border-radius: 1px; }
.brand-mark i:nth-child(1) { height: 8px; }.brand-mark i:nth-child(2) { height: 14px; }.brand-mark i:nth-child(3) { height: 19px; background: var(--olive); }
.nav-contact { font: 500 11px/1 "DM Mono", monospace; letter-spacing: .03em; text-transform: uppercase; border-bottom: 1px solid var(--ink); padding-bottom: 4px; transition: color .25s, border-color .25s; }
.nav-contact span, .contact-card a span { color: var(--sun); margin-left: 6px; font-size: 16px; }
.nav-contact:hover { color: var(--olive); border-color: var(--olive); }
.hero { position: relative; min-height: calc(100vh - 80px); padding-top: clamp(70px, 13vh, 150px); }
.eyebrow { display: flex; align-items: center; gap: 9px; font: 500 10px/1 "DM Mono", monospace; text-transform: uppercase; letter-spacing: .09em; color: var(--olive); margin: 0; }
.eyebrow span { display: inline-block; width: 31px; height: 1px; background: currentColor; }
.hero-copy { position: relative; z-index: 1; }
h1, h2 { font: 500 clamp(52px, 8.5vw, 130px)/.93 "Playfair Display", serif; letter-spacing: -.07em; margin: 24px 0 24px; }
h1 em, h2 em { color: var(--olive); font-weight: 500; }
.intro { max-width: 390px; color: #526057; font-size: 14px; line-height: 1.75; margin: 0; }
.architecture { position: absolute; pointer-events: none; right: -2vw; top: 16%; width: min(52vw, 770px); height: min(52vw, 700px); opacity: .98; }
.sun { position: absolute; width: 39%; aspect-ratio: 1; border-radius: 50%; background: var(--sun); left: 27%; top: 5%; opacity: .92; }
.structure { position: absolute; background: var(--olive); box-shadow: inset 1px 0 rgba(255,255,255,.18); }
.structure-one { width: 25%; height: 63%; bottom: 6%; left: 13%; background: #899477; clip-path: polygon(0 17%, 100% 0, 100% 100%, 0 100%); }
.structure-two { width: 29%; height: 77%; bottom: 6%; left: 38%; background: #4d594a; clip-path: polygon(0 8%, 100% 25%, 100% 100%, 0 100%); }
.structure-three { width: 25%; height: 46%; bottom: 6%; left: 67%; background: #738064; clip-path: polygon(0 0, 100% 24%, 100% 100%, 0 100%); }
.structure::after { content: ""; position: absolute; inset: 15% 17%; background: repeating-linear-gradient(180deg, transparent 0 11%, rgba(245,243,237,.55) 11.5% 13%, transparent 13.5% 25%); }
.ground { position: absolute; height: 1px; background: var(--ink); opacity: .45; bottom: 6%; left: 0; width: 100%; }
.coordinate { position: absolute; font: 9px "DM Mono", monospace; color: var(--olive); letter-spacing: .1em; }.coordinate-one { bottom: 1%; left: 10%; }.coordinate-two { bottom: 1%; right: 4%; }
.bottom-row { position: absolute; z-index: 2; bottom: 16px; left: 0; right: 0; font: 10px "DM Mono", monospace; letter-spacing: .05em; text-transform: uppercase; color: var(--olive); }
.scroll-cue { font: inherit; color: var(--ink); background: none; border: 0; cursor: pointer; display: flex; gap: 9px; align-items: center; }.scroll-cue b { font-size: 17px; font-weight: 400; animation: bounce 1.4s infinite; }
.contact { margin: 60px 0 70px; padding: clamp(32px, 5vw, 68px); background: var(--ink); color: var(--paper); display: flex; align-items: end; justify-content: space-between; gap: 36px; }
.contact .eyebrow { color: #b5c19f; }.contact h2 { font-size: clamp(44px, 5.8vw, 82px); margin-bottom: 0; }.contact h2 em { color: #d4a24a; }
.contact-card { width: min(100%, 390px); border-top: 1px solid rgba(245,243,237,.32); padding-top: 17px; }.contact-card p { margin: 0 0 26px; color: #c7ccc5; font-size: 13px; line-height: 1.65; }.contact-card a { display: block; width: fit-content; border-bottom: 1px solid rgba(245,243,237,.5); padding: 0 0 9px; margin: 10px 0; font: 500 clamp(15px, 1.45vw, 20px)/1.2 "DM Mono", monospace; transition: color .2s; }.contact-card a:hover { color: #d4a24a; }
footer { border-top: 1px solid var(--line); padding-top: 18px; color: var(--olive); font: 10px "DM Mono", monospace; letter-spacing: .04em; text-transform: uppercase; }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .8s ease, transform .8s ease; }.reveal.is-visible { opacity: 1; transform: none; }.hero .reveal:nth-child(1) { transition-delay: .1s; }.hero-copy .reveal:nth-child(1) { transition-delay: .25s; }.hero-copy .reveal:nth-child(2) { transition-delay: .45s; }.architecture { transition-delay: .2s; }
@keyframes bounce { 50% { transform: translateY(5px); } }
@media (max-width: 720px) { .site-shell { padding-top: 20px; }.hero { min-height: 700px; padding-top: 100px; }.architecture { width: 105vw; height: 105vw; top: 41%; right: -35vw; opacity: .75; }.bottom-row { bottom: 8px; }.bottom-row > p { max-width: 110px; line-height: 1.5; }.contact { margin-inline: -24px; display: block; }.contact-card { margin-top: 45px; } footer { font-size: 8px; }.nav-contact { font-size: 9px; } }