:root {
  --night: #16110e;
  --navy: #1e1814;
  --ink: #2a221c;
  --lake: #9a6238;
  --lake-2: #b57848;
  --sand: #c9a36a;
  --sand-2: #e0c08a;
  --ice: #f5efe6;
  --paper: #f7f2ea;
  --paper-2: #efe6d8;
  --text: #2c251c;
  --muted: #6e6558;
  --line: rgba(22, 17, 14, 0.1);
  --line-light: rgba(245, 239, 230, 0.14);
  --ok: #1c6b52;
  --bad: #8a2e2e;
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Sora", "Segoe UI", sans-serif;
  --max: 1180px;
  --wide: 1320px;
  --shadow: 0 28px 70px rgba(22, 17, 14, 0.18);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.7;
  font-size: 1.02rem;
  font-weight: 400;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--lake); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--night); }
h1, h2, h3, h4, .serif {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.16;
  color: var(--night);
}
h1 { font-size: clamp(2.15rem, 4.8vw, 4.15rem); margin: 0 0 1.1rem; }
h2 { font-size: clamp(1.75rem, 3.1vw, 2.65rem); margin: 0 0 0.9rem; }
h3 { font-size: 1.38rem; margin: 0 0 0.5rem; }
p { margin: 0 0 1rem; }
address { font-style: normal; }
ul, ol { margin: 0 0 1rem; padding: 0 0 0 1.15rem; }
li { margin: 0 0 0.4rem; }

.container { width: min(var(--max), calc(100% - 2.4rem)); margin-inline: auto; }
.container-wide { width: min(var(--wide), calc(100% - 2.4rem)); margin-inline: auto; }
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: #000; color: #fff; padding: .7rem 1rem; z-index: 200;
}
.skip-link:focus { left: 1rem; top: 1rem; }
.muted { color: var(--muted); }
.kicker {
  font-family: var(--sans);
  font-size: .66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 600;
  margin: 0 0 .75rem;
}
.lede, .intro {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 44rem;
  line-height: 1.75;
}
.hairline {
  width: 3.6rem; height: 1px;
  background: linear-gradient(90deg, var(--sand), transparent);
  margin: 0 0 1.35rem; border: 0;
}

.ribbon {
  background: var(--night);
  color: rgba(238, 243, 246, .55);
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.ribbon-inner {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .5rem 0; flex-wrap: wrap;
}
.ribbon a { color: var(--sand-2); text-decoration: none; }

.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(7, 19, 28, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line-light);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.2rem; min-height: 4.4rem;
}
.logo {
  display: flex; align-items: center; gap: .7rem;
  text-decoration: none; color: var(--ice); flex-shrink: 0;
}
.logo img { width: 38px; height: 38px; }
.logo-text {
  font-family: var(--serif);
  font-size: 1.22rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.logo-text span {
  display: block;
  font-family: var(--sans);
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 500;
}

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  background: transparent; border: 1px solid var(--line-light);
  border-radius: 6px; cursor: pointer; padding: 10px 9px;
}
.nav-toggle span {
  display: block; height: 1.5px; background: var(--ice); margin: 6px 0;
}

.main-nav {
  display: flex; align-items: center; gap: .15rem;
}
.nav-item { position: relative; }
.nav-item > a, .nav-item > button {
  appearance: none; background: none; border: 0;
  color: rgba(238, 243, 246, .82);
  font: 500 .78rem/1 var(--sans);
  letter-spacing: .04em;
  padding: .85rem .7rem;
  cursor: pointer;
  text-decoration: none;
}
.nav-item > a:hover, .nav-item > button:hover,
.nav-item.is-current > a, .nav-item.is-current > button,
.nav-item > a[aria-current="page"] { color: var(--sand-2); }
.nav-drop {
  display: none;
  position: absolute; top: 100%; left: 0;
  min-width: 16.5rem;
  background: #1a1512;
  border: 1px solid var(--line-light);
  padding: .45rem;
  box-shadow: var(--shadow);
}
.nav-item.is-open .nav-drop, .nav-item:hover .nav-drop { display: grid; }
.nav-drop a {
  color: rgba(238, 243, 246, .82);
  text-decoration: none;
  padding: .65rem .75rem;
  font-size: .86rem;
}
.nav-drop a:hover, .nav-drop a[aria-current="page"] {
  background: rgba(201, 177, 138, .08);
  color: var(--sand-2);
}
.nav-cta {
  margin-left: .6rem;
  background: var(--sand);
  color: var(--night) !important;
  text-decoration: none;
  font-size: .74rem !important;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .72rem 1rem !important;
  border-radius: 2px;
}
.nav-cta:hover { background: var(--sand-2); color: var(--night) !important; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .45rem;
  min-height: 2.85rem;
  padding: .7rem 1.25rem;
  border-radius: 2px;
  font: 600 .78rem/1 var(--sans);
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-gold { background: var(--sand); color: var(--night); }
.btn-gold:hover { background: var(--sand-2); color: var(--night); }
.btn-ghost {
  background: transparent; color: var(--ice);
  border-color: rgba(238, 243, 246, .35);
}
.btn-ghost:hover { border-color: var(--sand); color: var(--sand-2); }
.btn-night { background: var(--night); color: var(--ice); }
.btn-night:hover { background: #2a221c; color: var(--ice); }
.btn-line {
  background: transparent; color: var(--night);
  border-color: rgba(7, 19, 28, .28);
}
.btn-line:hover { border-color: var(--night); }

.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  color: var(--ice);
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  overflow: hidden;
  background: var(--navy);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(22, 17, 14, .92) 0%, rgba(22, 17, 14, .72) 38%, rgba(22, 17, 14, .28) 68%, rgba(22, 17, 14, .18) 100%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: block;
  padding: 8.5rem 0 4.8rem;
}
.hero-inner {
  width: min(var(--max), calc(100% - 2.4rem));
  margin-inline: auto;
  max-width: none;
}
.hero-inner > .kicker,
.hero-inner > h1,
.hero-inner > .lede,
.hero-inner > .hero-actions {
  max-width: 34rem;
}
.hero h1 { color: #fff; }
.hero .lede { color: rgba(238, 243, 246, .78); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; }
.hero-page { min-height: 52vh; }
.hero-page .hero-copy { padding: 7rem 0 3.4rem; }

.section { padding: 5.2rem 0; }
.section-alt { background: var(--paper-2); }
.section-night {
  background: var(--night);
  color: rgba(238, 243, 246, .78);
}
.section-night h2, .section-night h3 { color: #fff; }
.section-night .kicker { color: var(--sand); }
.section-night .intro, .section-night .lede { color: rgba(238, 243, 246, .68); }
.section-lake {
  background: linear-gradient(160deg, #2a1c14, #3a281c 55%, #16110e);
  color: rgba(238, 243, 246, .8);
}
.section-lake h2, .section-lake h3 { color: #fff; }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3.2rem;
  align-items: start;
}
.split-wide { grid-template-columns: 1fr 1fr; }

.quad {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2.2rem;
}
.quad-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 0;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
  transition: transform .25s ease, border-color .25s ease;
}
a.quad-card:hover { transform: translateY(-4px); border-color: var(--sand); color: inherit; }
a.quad-card:hover .quad-photo img { transform: scale(1.06); }
.quad-photo {
  display: block;
  height: 220px;
  overflow: hidden;
  background: var(--navy);
}
.quad-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.quad-body {
  padding: 1.25rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.quad-num {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--sand);
  margin-bottom: .45rem;
}
.quad-card h3 { font-size: 1.28rem; }
.quad-card p { color: var(--muted); font-size: .95rem; flex: 1; }
.quad-go {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lake);
  font-weight: 600;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat {
  background: #fff;
  padding: 1.35rem 1.2rem;
}
.stat b {
  display: block;
  font-family: var(--serif);
  font-size: 1.65rem;
  color: var(--night);
  font-weight: 500;
}
.stat span { color: var(--muted); font-size: .88rem; }
.section-night .stats { background: var(--line-light); border-color: var(--line-light); }
.section-night .stat { background: rgba(255,255,255,.04); }
.section-night .stat b { color: #fff; }
.section-night .stat span { color: rgba(238, 243, 246, .62); }

.panel {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.7rem 1.55rem;
  box-shadow: 0 18px 40px rgba(7, 19, 28, .05);
}
.section-night .panel {
  background: rgba(255,255,255,.04);
  border-color: var(--line-light);
  box-shadow: none;
}
.section-night .inquiry {
  background: #fff;
  color: var(--text);
}
.section-night .inquiry h2 { color: var(--night); }
.section-night .inquiry .intro { color: var(--muted); }

.calc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.calc label {
  display: block;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: .4rem;
}
.calc input[type="range"] { width: 100%; accent-color: var(--lake); }
.calc-out {
  background: var(--night);
  color: var(--ice);
  padding: 1.5rem;
}
.calc-out h3 { color: #fff; }
.calc-metric {
  display: flex; justify-content: space-between;
  border-bottom: 1px solid var(--line-light);
  padding: .55rem 0;
  font-size: .95rem;
}
.calc-note { font-size: .82rem; color: rgba(238, 243, 246, .6); margin-top: 1rem; }

.mix {
  display: flex; height: 14px; overflow: hidden; border-radius: 20px; margin: 1rem 0;
}
.mix span:nth-child(1) { background: var(--sand); }
.mix span:nth-child(2) { background: var(--lake); }
.mix span:nth-child(3) { background: #6a5a4a; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.2rem; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.4rem 1.3rem;
}
.section-night .card {
  background: rgba(255,255,255,.04);
  border-color: var(--line-light);
}
.card-visual {
  height: 210px;
  margin: -1.4rem -1.3rem 1.1rem;
  overflow: hidden;
  background: var(--navy);
}
.card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.figure {
  margin: 0;
}
.figure img, .figure .shot {
  height: 320px;
  width: 100%;
  object-fit: cover;
  background: center/cover no-repeat var(--navy);
}

.timeline { list-style: none; padding: 0; margin: 1.4rem 0 0; }
.timeline li {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.timeline b { color: var(--sand); font-family: var(--serif); font-size: 1.2rem; font-weight: 500; }

.steps { counter-reset: step; display: grid; gap: 1rem; }
.step {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1rem;
  align-items: start;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--sand);
}

.cta-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; }

.inquiry label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: .28rem; }
.inquiry input, .inquiry select, .inquiry textarea {
  width: 100%;
  font: inherit;
  padding: .7rem .75rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 2px;
}
.inquiry textarea { min-height: 8.5rem; resize: vertical; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem 1rem;
}
.form-grid .full, .form-grid .check { grid-column: 1 / -1; }
.check { display: flex; gap: .65rem; align-items: flex-start; font-size: .9rem; }
.check input { width: auto; margin-top: .25rem; }
.hp { position: absolute; left: -9999px; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: .8rem; }
.form-status { margin-top: .8rem; font-weight: 600; }
.form-status.is-ok { color: var(--ok); }
.form-status.is-bad { color: var(--bad); }

.legal h2 { margin-top: 2.4rem; }
.legal h3 { font-size: 1.15rem; margin-top: 1.4rem; }
.ids { font-size: .92rem; letter-spacing: .02em; }
.ids b { display: inline-block; min-width: 5.4rem; color: var(--sand); }

.map-frame {
  width: 100%; height: 340px; border: 0;
  filter: grayscale(.35) contrast(1.05);
}

.site-footer {
  background: #100c0a;
  color: rgba(238, 243, 246, .62);
  padding: 3.6rem 0 1.4rem;
}
.site-footer h2, .site-footer h3 { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr .8fr;
  gap: 2rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links a { color: rgba(238, 243, 246, .7); text-decoration: none; }
.footer-links a:hover { color: var(--sand-2); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  margin-top: 2.2rem; padding-top: 1.2rem;
  border-top: 1px solid var(--line-light);
  font-size: .82rem;
}

.cookie-bar {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 90;
  background: var(--night); color: var(--ice);
  display: flex; gap: 1rem; align-items: center; justify-content: space-between;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line-light);
  max-width: 920px; margin-inline: auto;
}
.cookie-bar[hidden] { display: none !important; }
.cookie-bar p { margin: 0; font-size: .9rem; }
.cookie-bar a { color: var(--sand-2); }

.table-wrap { overflow-x: auto; }
table {
  width: 100%; border-collapse: collapse; font-size: .95rem;
}
th, td {
  text-align: left; padding: .75rem .6rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

.download {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 1.3rem;
  border: 1px dashed rgba(201, 177, 138, .55);
  background: rgba(201, 177, 138, .08);
}

.wheel {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem;
}
.wheel span {
  display: block;
  padding: 1rem .9rem;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-light);
  font-size: .92rem;
}

@media (max-width: 980px) {
  .quad, .grid-3, .footer-grid, .calc, .split, .split-wide, .grid-2, .wheel {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    background: #1a1512;
    flex-direction: column; align-items: stretch;
    padding: .6rem .8rem 1.2rem;
    border-bottom: 1px solid var(--line-light);
  }
  .main-nav.open { display: flex; }
  .nav-item > a, .nav-item > button { text-align: left; width: 100%; }
  .nav-drop { position: static; display: none; min-width: 0; border: 0; padding-left: .4rem; }
  .nav-item.is-open .nav-drop { display: grid; }
  .nav-cta { margin: .5rem 0 0; text-align: center; }
  .form-grid, .quad, .grid-3, .grid-2, .calc, .split, .split-wide, .footer-grid, .stats, .wheel, .timeline li {
    grid-template-columns: 1fr;
  }
  .hero-copy { padding: 6.5rem 0 4rem; }
  .quad-photo { height: 180px; }
  .hero-inner > .kicker,
  .hero-inner > h1,
  .hero-inner > .lede,
  .hero-inner > .hero-actions { max-width: none; }
  .hero-media img { object-position: center; }
  .cookie-bar { flex-direction: column; align-items: stretch; }
}
