:root {
  --ink: #dce9ff;
  --night-deep: #040917;
  --gold: #f7dca1;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--night-deep); }
body { min-height: 100svh; margin: 0; overflow: hidden; background: var(--night-deep); color: var(--ink); font-family: var(--sans); font-size: 16px; }
a { color: inherit; text-decoration: none; }

.site-header { position: absolute; inset: 0 0 auto; z-index: 12; display: flex; align-items: center; justify-content: space-between; height: 76px; max-width: 1280px; margin: auto; padding: 0 44px; }
.brand { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-size: 12px; font-weight: 760; letter-spacing: .16em; }
.brand-mark { color: var(--gold); font-size: 18px; line-height: 1; }
.nav-contact { display: inline-block; padding: 9px 15px; border: 1px solid rgba(217, 231, 255, .42); border-radius: 99px; color: #c1d1ee; font-size: 13px; transition: background .2s, color .2s; }
.nav-contact:hover { background: #fff; color: #183159; }

.hero { --landscape-offset-x: 0px; --landscape-offset-y: 0px; position: relative; display: grid; height: 100svh; place-items: center; isolation: isolate; overflow: hidden; background: var(--night-deep); }
.hero-landscape, .hero-foreground { position: absolute; pointer-events: none; user-select: none; }
.hero-landscape { z-index: -3; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transform: translate3d(var(--landscape-offset-x), var(--landscape-offset-y), 0) scale(1.06); transition: transform .3s ease-out; will-change: transform; }
.hero-shade { position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg, rgba(2, 7, 17, .55), rgba(2, 7, 17, .1) 48%, rgba(2, 7, 17, .38)), linear-gradient(0deg, rgba(2, 7, 17, .45), transparent 44%); }
.hero-foreground { z-index: -1; left: 0; bottom: 0; width: min(46vw, 700px); }
.hero-note { position: absolute; z-index: 1; top: 32%; left: max(44px, calc((100vw - 1380px) / 2)); margin: 0; color: rgba(223, 232, 252, .68); font-family: cursive; font-size: clamp(16px, 1.5vw, 22px); line-height: 1.55; letter-spacing: .12em; transform: rotate(-8deg); }
.hero-copy { position: relative; z-index: 1; width: min(620px, calc(100% - 48px)); margin-top: 66px; text-align: center; animation: hero-enter .8s ease-out both; }
.hero-symbol { display: block; width: 74px; margin: 0 auto 24px; }
.hero h1 { margin: 0; color: #fff; font-family: var(--serif); font-size: clamp(37px, 4.2vw, 64px); font-weight: 400; line-height: 1; letter-spacing: .31em; text-indent: .31em; text-shadow: 0 3px 20px rgba(8, 22, 53, .48); }
.hero-tagline { margin: 29px 0 0; color: #f5f7fd; font-size: clamp(13px, 1.2vw, 17px); line-height: 1.75; letter-spacing: .38em; text-indent: .38em; }
.hero-rule { display: block; width: 38px; height: 1px; margin: 31px auto 29px; background: rgba(255, 255, 255, .72); }
.hero-location { margin: 0; color: #d9e3f6; font-size: 13px; line-height: 1.9; letter-spacing: .33em; text-indent: .33em; text-transform: uppercase; }
.hero-location span { font-size: 10px; letter-spacing: .24em; }
.hero-copyright { position: absolute; z-index: 1; right: 44px; bottom: 27px; margin: 0; color: rgba(235, 245, 255, .68); font-size: 9px; line-height: 1.8; letter-spacing: .17em; text-align: right; text-transform: uppercase; }

@keyframes hero-enter { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 740px) {
  .site-header { padding: 0 22px; }
  .hero-landscape { object-position: 56% center; }
  .hero-foreground { left: 0; bottom: 0; width: 100vw; }
  .hero-copy { margin-top: 38px; }
  .hero-symbol { width: 58px; margin-bottom: 18px; }
  .hero h1 { font-size: clamp(30px, 9vw, 42px); }
  .hero-tagline { margin-top: 22px; font-size: 12px; }
  .hero-rule { margin: 23px auto 21px; }
  .hero-location { font-size: 11px; }
  .hero-note, .hero-copyright { display: none; }
}
@media (max-width: 380px) { .brand { font-size: 10px; } .hero h1 { font-size: 28px; } .nav-contact { padding: 8px 11px; } }
@media (prefers-reduced-motion: reduce) { .hero-copy { animation: none; } }
