:root {
  --ink: #0a0a0a;
  --ink-2: #111111;
  --paper: #f3efe8;
  --warm-white: #fbf8f2;
  --muted: #b9b2a7;
  --line: rgba(255,255,255,.13);
  --accent: #c9a96b;
  --accent-2: #e3c98f;
  --shell: min(1180px, calc(100vw - 48px));
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: white;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - 1180px)/2));
  background: linear-gradient(to bottom, rgba(0,0,0,.72), rgba(0,0,0,0));
  transition: background .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(7,7,7,.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.wordmark {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.wordmark-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(201,169,107,.13); }
.nav { display: flex; align-items: center; gap: 28px; font-size: .86rem; }
.nav > a:not(.nav-cta) { color: rgba(255,255,255,.78); }
.nav > a:not(.nav-cta):hover { color: white; }
.nav-cta { border: 1px solid rgba(255,255,255,.28); padding: 11px 16px; border-radius: 999px; }
.nav-cta:hover { background: white; color: black; }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  background-image: url('assets/hero.png');
  background-size: cover;
  background-position: center center;
  isolation: isolate;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.10) 47%, rgba(0,0,0,.05) 68%, rgba(0,0,0,.20) 100%),
    linear-gradient(0deg, rgba(0,0,0,.48) 0%, rgba(0,0,0,0) 35%);
}
.hero-content { padding-top: 82px; }
.eyebrow {
  margin: 0 0 20px;
  color: var(--accent-2);
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow.dark { color: #8a6c37; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(3.5rem, 7vw, 6.9rem);
  line-height: .92;
  letter-spacing: -.055em;
  font-weight: 650;
}
.hero-copy {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255,255,255,.88);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  border: 0;
  padding: 0 24px;
  font-weight: 750;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--warm-white); color: #090909; }
.button-primary:hover { background: var(--accent-2); }
.text-link { font-weight: 650; color: rgba(255,255,255,.85); }
.text-link span { margin-left: 8px; }
.hero-note { margin: 24px 0 0; color: rgba(255,255,255,.58); font-size: .88rem; }

.section { padding: 120px 0; }
.amenity { background: var(--paper); color: #151515; }
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(52px, 7vw, 100px);
  align-items: center;
}
.machine-frame {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,.16);
  aspect-ratio: 4 / 5;
  background: #d8d0c4;
}
.machine-frame img { width: 100%; height: 100%; object-fit: cover; }
h2 {
  margin-bottom: 26px;
  font-size: clamp(2.5rem, 4.6vw, 4.9rem);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 650;
}
.section-copy > p { color: #514d47; line-height: 1.75; font-size: 1.05rem; }
.section-copy .lead { color: #1f1d1a; font-size: clamp(1.15rem, 1.9vw, 1.45rem); line-height: 1.55; }
.benefit-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(0,0,0,.16);
  border-left: 1px solid rgba(0,0,0,.16);
}
.benefit {
  min-height: 150px;
  padding: 20px;
  border-right: 1px solid rgba(0,0,0,.16);
  border-bottom: 1px solid rgba(0,0,0,.16);
  display: grid;
  align-content: start;
  gap: 7px;
}
.benefit span { color: #927440; font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.benefit strong { font-size: 1.03rem; }
.benefit small { color: #6f6960; line-height: 1.45; }

.locations { background: #0b0b0b; }
.locations-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 54px;
}
.locations-heading h2 { margin-bottom: 0; max-width: 760px; }
.locations-heading > p { color: #aaa49a; line-height: 1.75; font-size: 1.08rem; max-width: 460px; }
.location-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.location-card {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #161616;
  isolation: isolate;
}
.location-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,.86) 4%, rgba(0,0,0,.15) 55%, rgba(0,0,0,0) 75%);
}
.location-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.location-card:hover img { transform: scale(1.025); }
.location-card-copy { position: absolute; z-index: 2; inset: auto 34px 32px; }
.card-kicker { margin-bottom: 11px; color: var(--accent-2); font-size: .72rem; letter-spacing: .14em; font-weight: 800; }
.location-card h3 { margin-bottom: 10px; font-size: clamp(1.7rem, 3vw, 2.45rem); letter-spacing: -.03em; }
.location-card-copy > p:last-child { max-width: 500px; color: rgba(255,255,255,.72); line-height: 1.6; }
.sector-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.sector-row span {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 11px 15px;
  color: rgba(255,255,255,.72);
  font-size: .83rem;
}

.contact {
  background: #15130f;
  border-top: 1px solid rgba(255,255,255,.08);
}
.contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}
.contact-copy { position: sticky; top: 120px; }
.contact-copy > p:not(.eyebrow) { color: #aaa49a; line-height: 1.75; font-size: 1.06rem; max-width: 480px; }
.contact-promise { margin-top: 34px; display: grid; gap: 6px; color: #ded7ca; }
.contact-promise span { color: #8f897f; font-size: .92rem; line-height: 1.5; }
.contact-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.035);
  border-radius: var(--radius);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: grid; gap: 8px; color: #c5beb3; font-size: .79rem; font-weight: 700; letter-spacing: .02em; }
input, select, textarea {
  width: 100%;
  color: white;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 14px 15px;
  outline: none;
  transition: border .2s ease, background .2s ease;
}
input:focus, select:focus, textarea:focus { border-color: rgba(227,201,143,.72); background: rgba(255,255,255,.075); }
select option { color: #111; }
textarea { resize: vertical; }
.form-button { margin-top: 4px; width: fit-content; }
.form-status { margin: 0; min-height: 20px; color: var(--accent-2); font-size: .84rem; }

.footer { padding: 28px 0; background: #080808; border-top: 1px solid rgba(255,255,255,.07); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; color: #b7b0a5; font-size: .82rem; }
.footer-inner > div:first-child { display: grid; gap: 4px; }
.footer-inner strong { color: white; }
.footer-inner small { color: #6f6a62; }
.footer-right { display: flex; gap: 18px; }

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

@media (max-width: 900px) {
  :root { --shell: min(100% - 34px, 720px); }
  .nav > a:not(.nav-cta) { display: none; }
  .site-header { padding-inline: 18px; }
  .wordmark { font-size: .7rem; }
  .hero { background-position: 68% center; align-items: end; }
  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.48) 48%, rgba(0,0,0,.15) 100%),
      linear-gradient(90deg, rgba(0,0,0,.2), rgba(0,0,0,0));
  }
  .hero-content { padding: 160px 0 64px; }
  h1 { font-size: clamp(3.25rem, 12vw, 5.5rem); }
  .split-layout, .locations-heading, .contact-layout { grid-template-columns: 1fr; }
  .section { padding: 82px 0; }
  .machine-frame { max-height: 760px; }
  .location-card { min-height: 540px; }
  .contact-copy { position: static; }
}

@media (max-width: 650px) {
  .nav-cta { padding: 9px 12px; font-size: .78rem; }
  .hero-note { max-width: 330px; }
  .benefit-grid, .field-row, .location-cards { grid-template-columns: 1fr; }
  .location-card { min-height: 520px; }
  .contact-form { padding: 22px; }
  .footer-inner, .footer-right { align-items: flex-start; flex-direction: column; }
  .footer-right { gap: 6px; }
}

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