:root {
  --ink: #0a0b0e;
  --ink-soft: #12141a;
  --paper: #f4f1eb;
  --white: #ffffff;
  --muted: #b4b6bd;
  --line: rgba(255, 255, 255, 0.18);
  --line-dark: rgba(10, 11, 14, 0.14);
  --accent: #d7c8a9;
  --header-h: 78px;
  --pad: clamp(20px, 5vw, 72px);
  --serif: "Bodoni Moda", "Times New Roman", serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
svg { display: block; fill: currentColor; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 16px;
  background: #fff;
  color: #000;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(0,0,0,.78), rgba(0,0,0,0));
  transition: background .35s ease, border-color .35s ease, height .35s ease;
}
.site-header.scrolled {
  height: 66px;
  background: rgba(8, 9, 12, .92);
  border-bottom-color: rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}
.header-brand img { width: 78px; height: auto; }
.header-brand span {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .28em;
  white-space: nowrap;
}
.header-actions { display: flex; align-items: center; gap: 20px; }
.header-link {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
}
.icon-link { width: 21px; height: 21px; }
.icon-link svg { width: 100%; height: 100%; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #080a0e;
  color: var(--white);
}
.hero-media,
.hero-overlay,
.hero-grain { position: absolute; inset: 0; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 59% center;
  transform: scale(1.025);
  animation: heroDrift 16s ease-in-out infinite alternate;
}
.hero-overlay {
  background:
    linear-gradient(180deg, rgba(5,7,10,.40) 0%, rgba(6,7,10,.08) 34%, rgba(6,7,10,.82) 84%, rgba(6,7,10,.98) 100%),
    linear-gradient(90deg, rgba(5,6,8,.82) 0%, rgba(5,6,8,.38) 48%, rgba(5,6,8,.10) 78%);
}
.hero-grain {
  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='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
  padding: calc(var(--header-h) + 70px) var(--pad) clamp(110px, 14vh, 160px);
}
.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  font-size: 9px;
  line-height: 1.7;
  letter-spacing: .3em;
  font-weight: 500;
}
.hero h1 {
  margin: 0;
  max-width: 720px;
  font-family: var(--serif);
  font-size: clamp(42px, 7.2vw, 94px);
  line-height: .98;
  font-weight: 400;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.hero-copy {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(13px, 1.25vw, 16px);
  line-height: 1.8;
  font-weight: 300;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255,255,255,.55);
  text-decoration: none;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.button svg { width: 18px; height: 18px; }
.button-primary { background: var(--white); color: var(--ink); border-color: var(--white); }
.button-ghost { color: var(--white); background: rgba(0,0,0,.16); backdrop-filter: blur(8px); }
.button:hover { transform: translateY(-2px); }
.button-primary:hover { background: var(--accent); border-color: var(--accent); }
.button-ghost:hover { background: rgba(255,255,255,.12); }

.scroll-cue {
  position: absolute;
  right: var(--pad);
  bottom: 36px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,.7);
  font-size: 8px;
  letter-spacing: .28em;
  text-transform: uppercase;
  text-decoration: none;
}
.scroll-line { width: 72px; height: 1px; background: rgba(255,255,255,.48); position: relative; overflow: hidden; }
.scroll-line::after { content:""; position:absolute; inset:0; background:#fff; transform:translateX(-100%); animation:lineMove 2.5s ease-in-out infinite; }

.section { padding: clamp(72px, 10vw, 140px) var(--pad); }
.statement {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr);
  gap: clamp(40px, 8vw, 130px);
  align-items: center;
  min-height: 620px;
}
.statement-mark {
  font-family: var(--serif);
  font-size: clamp(140px, 22vw, 320px);
  line-height: .7;
  color: transparent;
  -webkit-text-stroke: 1px rgba(10,11,14,.22);
  letter-spacing: -.12em;
  user-select: none;
}
.statement-copy { max-width: 760px; }
.statement-copy h2,
.section-heading h2,
.location-content h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1.04;
  font-size: clamp(40px, 6vw, 78px);
}
.statement-copy > p:last-child,
.section-heading > p:last-child,
.location-content address {
  margin: 26px 0 0;
  max-width: 620px;
  color: #5c5e64;
  font-size: 14px;
  line-height: 1.9;
  font-style: normal;
}

.contact-section { background: var(--ink); color: var(--white); }
.section-heading { max-width: 800px; margin-bottom: clamp(42px, 7vw, 84px); }
.section-heading > p:last-child { color: rgba(255,255,255,.62); }
.contact-grid { border-top: 1px solid var(--line); }
.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px 54px minmax(0, 1fr) auto;
  gap: clamp(12px, 3vw, 34px);
  align-items: center;
  min-height: 180px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  transition: background .3s ease, padding .3s ease;
}
.contact-card::before {
  content:"";
  position:absolute;
  inset:0 calc(var(--pad) * -1);
  background: rgba(255,255,255,.035);
  opacity:0;
  transition:opacity .3s ease;
}
.contact-card:hover::before { opacity:1; }
.contact-card:hover { padding-left: 12px; }
.contact-index { font-size: 9px; letter-spacing: .2em; color: rgba(255,255,255,.35); }
.contact-icon { width: 44px; height: 44px; display:grid; place-items:center; border:1px solid rgba(255,255,255,.24); border-radius:50%; }
.contact-icon svg { width: 19px; height: 19px; }
.contact-card h3 { margin:0 0 8px; font-family:var(--serif); font-size:clamp(25px, 3vw, 38px); font-weight:400; letter-spacing:-.03em; }
.contact-card p { margin:0; color:rgba(255,255,255,.58); font-size:12px; line-height:1.7; }
.card-action { font-size:9px; letter-spacing:.18em; text-transform:uppercase; white-space:nowrap; }

.location-panel {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  min-height: 690px;
  background: #ece8e0;
}
.location-visual {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  background:
    radial-gradient(circle at 44% 43%, rgba(255,255,255,.9) 0 4%, transparent 4.3%),
    linear-gradient(145deg, #d6d1c8 0%, #eeebe4 48%, #c9c4ba 100%);
}
.location-visual::before,
.location-visual::after {
  content:"";
  position:absolute;
  border:1px solid rgba(24,25,29,.12);
  border-radius:50%;
}
.location-visual::before { width:480px; height:480px; left:50%; top:50%; transform:translate(-50%,-50%); }
.location-visual::after { width:720px; height:720px; left:50%; top:50%; transform:translate(-50%,-50%); }
.location-route { position:absolute; height:2px; background:rgba(34,36,41,.38); transform-origin:left center; }
.route-one { width:72%; left:-8%; top:34%; transform:rotate(11deg); }
.route-two { width:84%; left:10%; top:62%; transform:rotate(-18deg); }
.route-three { width:62%; left:35%; top:15%; transform:rotate(67deg); }
.location-pin { position:absolute; left:48%; top:46%; width:34px; height:34px; border:1px solid #121317; border-radius:50% 50% 50% 0; transform:rotate(-45deg); background:#f7f4ed; box-shadow:0 18px 40px rgba(0,0,0,.14); }
.location-pin span { position:absolute; width:8px; height:8px; border-radius:50%; background:#111216; left:12px; top:12px; }
.location-label { position:absolute; left:calc(48% + 32px); top:calc(46% + 34px); display:flex; flex-direction:column; gap:5px; }
.location-label strong { font-size:10px; letter-spacing:.18em; }
.location-label span { font-size:10px; color:#686a70; }
.location-content {
  padding: clamp(64px, 8vw, 120px) var(--pad);
  display:flex;
  flex-direction:column;
  justify-content:center;
  background:#f7f4ed;
}
.text-link {
  display:inline-flex;
  gap:12px;
  margin-top:36px;
  padding-bottom:8px;
  width:max-content;
  max-width:100%;
  border-bottom:1px solid #202126;
  font-size:10px;
  letter-spacing:.12em;
  text-transform:uppercase;
  text-decoration:none;
}

.site-footer {
  padding: 48px var(--pad) 96px;
  background: #07080b;
  color: var(--white);
  display:grid;
  grid-template-columns: 1fr auto;
  gap:36px;
  align-items:end;
}
.footer-brand { display:flex; align-items:center; gap:14px; }
.footer-brand img { width:88px; }
.footer-brand span { font-size:9px; letter-spacing:.22em; }
.footer-links { display:flex; flex-wrap:wrap; justify-content:flex-end; gap:22px; }
.footer-links a { color:rgba(255,255,255,.72); font-size:9px; letter-spacing:.12em; text-transform:uppercase; text-decoration:none; }
.site-footer > p { grid-column:1 / -1; margin:0; color:rgba(255,255,255,.34); font-size:9px; letter-spacing:.08em; }

.mobile-dock { display:none; }

.reveal { opacity:0; transform:translateY(26px); transition:opacity .9s cubic-bezier(.2,.75,.2,1), transform .9s cubic-bezier(.2,.75,.2,1); }
.reveal.is-visible { opacity:1; transform:none; }

@keyframes heroDrift { from { transform:scale(1.025) translate3d(0,0,0); } to { transform:scale(1.075) translate3d(-.7%, -.4%, 0); } }
@keyframes lineMove { 0% { transform:translateX(-100%); } 50%,100% { transform:translateX(100%); } }

@media (max-width: 820px) {
  :root { --header-h: 68px; --pad: 20px; }
  body { padding-bottom: 70px; }
  .site-header { padding-left:18px; padding-right:18px; }
  .header-brand img { width:64px; }
  .header-brand span { display:none; }
  .header-link { display:none; }
  .hero { min-height: 100svh; }
  .hero-media img { object-position: 61% center; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5,7,10,.52) 0%, rgba(6,7,10,.08) 30%, rgba(6,7,10,.85) 76%, rgba(6,7,10,1) 100%),
      linear-gradient(90deg, rgba(5,6,8,.55) 0%, rgba(5,6,8,.10) 75%);
  }
  .hero-content { padding: calc(var(--header-h) + 56px) var(--pad) 126px; }
  .eyebrow { max-width:250px; margin-bottom:16px; }
  .hero h1 { font-size: clamp(43px, 13vw, 62px); }
  .hero-copy { margin-top:22px; font-size:13px; line-height:1.72; }
  .hero-cta { display:grid; grid-template-columns:1fr; margin-top:26px; }
  .button { width:100%; min-height:54px; }
  .scroll-cue { display:none; }

  .statement { grid-template-columns:1fr; min-height:auto; gap:44px; }
  .statement-mark { font-size:164px; }
  .statement-copy h2,
  .section-heading h2,
  .location-content h2 { font-size:clamp(42px, 12.6vw, 58px); }

  .contact-card {
    grid-template-columns: 34px 44px minmax(0,1fr);
    min-height: 170px;
    gap:12px;
  }
  .contact-card:hover { padding-left:0; }
  .contact-card::before { display:none; }
  .contact-icon { width:40px; height:40px; }
  .contact-card h3 { font-size:28px; }
  .contact-card p { font-size:11px; }
  .card-action { grid-column:3; margin-top:4px; }

  .location-panel { grid-template-columns:1fr; min-height:auto; }
  .location-visual { min-height:420px; }
  .location-content { min-height:500px; }
  .location-visual::before { width:360px; height:360px; }
  .location-visual::after { width:560px; height:560px; }

  .site-footer { grid-template-columns:1fr; padding-bottom:44px; }
  .footer-links { justify-content:flex-start; }
  .site-footer > p { grid-column:auto; }

  .mobile-dock {
    position:fixed;
    z-index:70;
    inset:auto 0 0 0;
    height:70px;
    padding-bottom:env(safe-area-inset-bottom);
    display:grid;
    grid-template-columns:repeat(3,1fr);
    background:rgba(7,8,11,.95);
    border-top:1px solid rgba(255,255,255,.14);
    color:#fff;
    backdrop-filter:blur(16px);
  }
  .mobile-dock a {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    text-decoration:none;
    font-size:8px;
    letter-spacing:.12em;
    text-transform:uppercase;
  }
  .mobile-dock a + a { border-left:1px solid rgba(255,255,255,.12); }
  .mobile-dock svg { width:18px; height:18px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size:42px; }
  .statement-mark { font-size:135px; }
  .contact-index { display:none; }
  .contact-card { grid-template-columns:44px minmax(0,1fr); }
  .card-action { grid-column:2; }
  .location-label { left:27%; top:64%; }
  .location-pin { left:48%; top:47%; }
}

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