:root {
  --bg: #f7f4ee;
  --nav: #fff;
  --ink: #1e2a18;
  --muted: #5c6754;
  --ember: #c4452a;
  --ember-ink: #fff8f4;
  --line: #e4ddd2;
  --hero: #140c08;
  --cream: #f3eadc;
  --gutter: 1.2rem;
  --nav-h: 112px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.45;
}
img { display: block; max-width: 100%; height: auto; }
.nav img { max-width: none; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(100% - (var(--gutter) * 2), 1080px); margin-inline: auto; }
.eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ember);
}
.display {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  line-height: .95;
  letter-spacing: -.03em;
  font-weight: 500;
}
.muted { color: var(--muted); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .7rem 1.1rem;
  border-radius: 999px;
  background: var(--ember);
  color: var(--ember-ink);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn-lg { min-height: 52px; padding: .9rem 1.4rem; font-size: .85rem; }
.btn:focus-visible, .link:focus-visible, .float:focus-visible, .nav__logo:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 3px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: calc(var(--nav-h) + var(--safe-top));
  padding-top: var(--safe-top);
  background: var(--nav);
  border-bottom: 1px solid var(--line);
  overflow: visible;
}
.nav__inner {
  height: var(--nav-h);
  width: min(100% - (var(--gutter) * 2), 1080px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  overflow: visible;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex: 1 1 auto;
  min-width: 0;
  overflow: visible;
}
.nav__brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .15rem;
  min-width: 0;
}
.nav__mark {
  height: 92px;
  width: auto;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: left center;
}
.nav__word {
  height: 64px;
  width: auto;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: left center;
}
.nav__tag {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h) - var(--safe-top));
  background: #000;
  color: var(--cream);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero__media {
  position: absolute;
  inset: 0;
  background: #000;
}
.hero__media .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity .55s ease;
}
.hero__media .slide.is-on { opacity: 1; z-index: 1; }
.hero__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
  background: #000;
  pointer-events: none;
}
.hero__copy {
  position: relative;
  z-index: 2;
  padding: 3.2rem 0 4rem;
}
.hero .eyebrow {
  display: inline-block;
  text-shadow: 0 1px 8px rgb(0 0 0 / .45);
}
.hero h1 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.2rem, 8vw, 4.2rem);
  line-height: .92;
  letter-spacing: -.03em;
  font-weight: 500;
  max-width: 12ch;
  margin: .35rem 0 .6rem;
  text-shadow: 0 1px 2px rgb(0 0 0 / .4), 0 2px 14px rgb(0 0 0 / .35);
}
.lead {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: #f3eadc;
  text-shadow: 0 1px 8px rgb(0 0 0 / .5);
}
.proof {
  margin-top: 1rem;
  font-size: .92rem;
  color: #f3eadc;
  text-shadow: 0 1px 8px rgb(0 0 0 / .5);
}

.carta { padding: 3.2rem 0 2.4rem; }
.carta .display { margin: .2rem 0 .4rem; }
.grid {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}
@media (min-width: 720px) {
  .grid { grid-template-columns: 1fr 1fr; }
}
.grid li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.15rem 1.2rem 1.2rem;
}
.grid h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: .3rem;
}
.grid p { color: var(--muted); margin-bottom: .7rem; }
.link {
  color: var(--ember);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.visit { padding: 1rem 0 3.2rem; }
.visit__grid {
  display: grid;
  gap: 1.4rem;
}
@media (min-width: 800px) {
  .visit__grid { grid-template-columns: 1fr 1.2fr; align-items: center; }
}
.visit p { margin: .45rem 0; }
.visit .btn { margin-top: .7rem; }
.map {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .35rem;
  min-height: 180px;
  padding: 1.4rem 1.3rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}
.map span { font-family: Fraunces, Georgia, serif; font-size: 1.35rem; font-weight: 500; }
.map small { color: var(--muted); font-size: .95rem; }

.foot {
  padding: 1.4rem 0 calc(1.6rem + var(--safe-bottom));
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .85rem;
}
.foot .wrap { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; justify-content: space-between; }
.foot a { text-decoration: underline; text-underline-offset: 3px; }

.float {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + var(--safe-bottom));
  z-index: 50;
  background: #1f8a4c;
  color: #fff;
  padding: .8rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgb(0 0 0 / .18);
}

@media (max-width: 720px) {
  :root { --nav-h: 96px; }
  .nav__mark { height: 76px; }
  .nav__word { height: 52px; }
  .nav__tag { font-size: .68rem; letter-spacing: .12em; }
}
@media (max-width: 520px) {
  :root { --nav-h: 92px; }
  .nav__mark { height: 70px; }
  .nav__word { height: 48px; }
  .nav__tag { font-size: .62rem; letter-spacing: .1em; }
  .nav .btn { padding: .6rem .8rem; font-size: .7rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
