:root {
  --ink: #121820;
  --ink-soft: #5a6570;
  --paper: #f4efe6;
  --panel: #fffdf8;
  --line: #e2dbd0;
  --gold: #c4a056;
  --gold-soft: #e8d5a0;
  --deep: #0f172a;
  --teal: #0f766e;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  font-weight: 400;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  padding: 0.5rem 0.8rem;
  background: var(--deep);
  color: var(--gold-soft);
  font-size: 0.8rem;
}
.skip:focus { top: 0.75rem; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}


/* —— Arrive home: full-bleed coast as the house front —— */
.home-stage {
  position: relative;
  z-index: 3;
  min-height: 92vh;
  min-height: 92dvh;
  max-height: 840px;
  color: #f7f4ee;
  overflow: visible;
  display: flex;
  flex-direction: column;
}
.home-stage-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    url("/assets/place/aerial-coast.jpg") center 42% / cover no-repeat;
}
.home-stage-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 18, 28, 0.55) 0%, rgba(12, 18, 28, 0.18) 38%, rgba(12, 18, 28, 0.45) 70%, var(--paper) 100%),
    linear-gradient(90deg, rgba(12, 18, 28, 0.62) 0%, rgba(12, 18, 28, 0.22) 55%, rgba(12, 18, 28, 0.08) 100%);
}

.top {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 1.15rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: #f7f4ee;
}
.nav {
  display: flex;
  gap: 1.25rem;
  flex: 1;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav a {
  text-decoration: none;
  color: rgba(247, 244, 238, 0.78);
}
.nav a:hover { color: var(--gold-soft); }
.top-cta {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-soft);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.15rem;
}

.arrive {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 1.4rem 0;
  display: grid;
  grid-template-columns: 1.15fr minmax(220px, 300px);
  gap: 2rem;
  align-items: end;
}
.arrive-copy {
  padding-bottom: 3.5rem;
}
.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.arrive h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.8rem, 6.5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 12ch;
}
.arrive h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-soft);
}
.role {
  margin: 1.1rem 0 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.8);
}
.deck {
  margin: 1.1rem 0 0;
  max-width: 38ch;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(247, 244, 238, 0.88);
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn.primary {
  background: var(--gold);
  color: var(--deep);
  border: 1px solid var(--gold);
}
.btn.primary:hover {
  background: #fff;
  border-color: #fff;
}
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn.ghost.light {
  color: #f7f4ee;
  border-color: rgba(247, 244, 238, 0.45);
}
.btn.ghost.light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.btn.ghost:hover { border-color: var(--deep); }
.btn.large {
  padding: 1rem 1.5rem;
  min-width: 12rem;
}

.arrive-portrait {
  margin: 0 0 -3.5rem;
  position: relative;
  z-index: 4;
  width: min(100%, 288px);
  aspect-ratio: 3 / 4;
  padding: 8px;
  background: var(--paper);
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 2px;
  border: 1px solid rgba(196, 160, 86, 0.7);
  box-shadow:
    0 1px 0 rgba(255, 253, 248, 0.9) inset,
    0 22px 44px rgba(12, 18, 28, 0.38),
    0 0 0 1px rgba(12, 18, 28, 0.12);
}
.arrive-portrait::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(196, 160, 86, 0.28);
  pointer-events: none;
  z-index: 2;
}
.arrive-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
  display: block;
  filter: none;
}
main {
  position: relative;
  z-index: 1;
}
.block {
  max-width: 980px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
  border-top: 1px solid var(--line);
}
.about { border-top: none; padding-top: 5rem; }

.block-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.about-grid h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.5vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 14ch;
}
.about-body p {
  margin: 0 0 0.9rem;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 42ch;
}
.about-body a { color: var(--teal); }
.pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem !important;
  color: var(--deep) !important;
  font-weight: 500 !important;
  border-left: 2px solid var(--gold);
  padding-left: 0.9rem;
  margin-top: 1.25rem !important;
}
.sign {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem !important;
  color: var(--gold) !important;
  margin-top: 0.5rem !important;
}

.creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.cred {
  background: var(--panel);
  padding: 1.35rem 1.25rem;
}
.cred h3 {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cred .meta {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}
.cred p:last-child {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-soft);
}

.coast-band {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.coast-band-photo {
  position: absolute;
  inset: 0;
  background: url("/assets/place/skyline-beach.jpg") center 60% / cover no-repeat;
  filter: saturate(0.9) contrast(1.05);
}
.coast-band-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--paper) 0%,
    transparent 24%,
    rgba(12, 18, 28, 0.25) 55%,
    rgba(12, 18, 28, 0.78) 100%
  );
}
.coast-band-caption {
  position: relative;
  z-index: 1;
  margin: 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 1.25rem 1.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: #f7f4ee;
  text-shadow: 0 1px 14px rgba(12, 18, 28, 0.55);
}

.areas h2 {
  margin: 0 0 1.25rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 2rem;
}
.area-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.area-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 0.1rem;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
  transition: color 0.15s;
}
.area-list li:hover span { color: var(--gold); }
.area-list span { font-weight: 500; }
.area-list em {
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.areas-note {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 300;
}

.insight { border-top: none; padding-top: 0; }
.insight-panel {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: var(--deep);
  color: #e8eef6;
  border-radius: 2px;
  overflow: hidden;
}
.insight-stat {
  padding: 2rem 1.5rem;
  background: linear-gradient(160deg, #152033, #0f172a 70%);
  border-right: 1px solid rgba(212, 175, 55, 0.15);
}
.big {
  margin: 0;
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  margin: 0.5rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 600;
}
.stat-sub {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 300;
}
.insight-copy { padding: 2rem 1.75rem; }
.when {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 600;
}
.insight-copy h2 {
  margin: 0 0 0.85rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.85rem;
  line-height: 1.15;
  color: #fff;
}
.insight-copy p {
  margin: 0 0 1.25rem;
  font-weight: 300;
  color: #cbd5e1;
  max-width: 42ch;
}
.text-link {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
}
.text-link:hover { color: #fff; }

.desk {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}
.desk-kicker {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.desk-hint {
  margin: 0.4rem 0 0.9rem;
  font-size: 0.82rem;
  font-weight: 300;
  color: #94a3b8;
  max-width: 44ch;
}
.desk-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.desk-chips button {
  appearance: none;
  background: transparent;
  color: #e8eef6;
  border: 1px solid rgba(232, 213, 160, 0.35);
  padding: 0.55rem 0.85rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
}
.desk-chips button:hover,
.desk-chips button[aria-pressed="true"] {
  border-color: var(--gold);
  color: var(--gold);
}
.desk-answer {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.55;
  color: #e8eef6;
  max-width: 46ch;
}

.contact h2 {
  margin: 0 0 1.5rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  max-width: 22ch;
}
.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.fine {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-weight: 300;
}

.foot {
  max-width: 980px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.foot a {
  margin-right: 1rem;
  text-decoration: none;
  font-weight: 500;
  color: var(--ink);
}
.foot a:hover { color: var(--gold); }
.foot p { margin: 0; }

.photo-credit {
  max-width: 980px;
  margin: 0 auto 2.5rem;
  padding: 0 1.25rem;
  font-size: 0.72rem;
  color: var(--ink-soft);
}
.photo-credit a { color: var(--teal); }

@media (max-width: 800px) {
  .nav { display: none; }
  .home-stage {
    min-height: auto;
    max-height: none;
    overflow: visible;
  }
  .arrive {
    grid-template-columns: 1fr;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .arrive-copy { padding-bottom: 0.5rem; }
  .arrive-portrait {
    width: min(100%, 260px);
    margin: 0 auto 1.25rem;
    order: -1;
    flex-shrink: 0;
  }
  .about { padding-top: 2.5rem; }
  .about-grid,
  .creds,
  .insight-panel {
    grid-template-columns: 1fr;
  }
  .insight-stat { border-right: 0; border-bottom: 1px solid rgba(212, 175, 55, 0.12); }
  .about-grid h2 { max-width: none; }
  .coast-band { height: 160px; }
}

.menu-btn {
  display: none;
  background: none;
  border: 0;
  color: #f7f4ee;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.4rem 0;
}
.nav-open .nav { display: flex; }

@media (max-width: 800px) {
  .menu-btn { display: block; }
  .top {
    flex-wrap: wrap;
  }
  .nav-open .nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    order: 4;
    gap: 0.85rem;
    padding: 0.5rem 0 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .area-list li { transition: none; }
}
