:root {
  color-scheme: dark;
  --bg: #0b0b0b;
  --bg-soft: #121212;
  --panel: #171717;
  --text: #f2f0eb;
  --muted: #aaa8a2;
  --line: rgba(255,255,255,.13);
  --warm: #d59b62;
  --max: 1360px;
  --pad: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: #fff;
  color: #000;
  text-decoration: none;
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 78px;
  padding: 0 var(--pad);
  background: linear-gradient(to bottom, rgba(4,4,4,.88), rgba(4,4,4,.15), transparent);
  pointer-events: none;
}
.site-header > * { pointer-events: auto; }
.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.05;
  text-shadow: 0 1px 20px rgba(0,0,0,.45);
}
.brand-name { font-size: 17px; font-weight: 650; letter-spacing: .01em; }
.brand-sub { margin-top: 4px; color: rgba(255,255,255,.67); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }

.nav-menu { position: relative; }
.nav-menu summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav-menu summary::-webkit-details-marker { display: none; }
.nav-menu summary i,
.nav-menu summary i::after {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform .25s ease;
}
.nav-menu summary i::after { transform: translateY(6px); }
.nav-menu[open] summary i { transform: translateY(3px) rotate(45deg); }
.nav-menu[open] summary i::after { transform: rotate(-90deg); }
.nav-menu nav {
  position: absolute;
  right: 0;
  top: 38px;
  min-width: 220px;
  padding: 10px;
  background: rgba(17,17,17,.96);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  backdrop-filter: blur(16px);
}
.nav-menu nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 2px;
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
}
.nav-menu nav a:hover,
.nav-menu nav a:focus-visible { background: #242424; color: #fff; }

.hero {
  position: relative;
  min-height: min(82svh, 820px);
  overflow: hidden;
  background: #111;
}
.hero-image { position: absolute; inset: 0; }
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  transform: scale(1.012);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(5,5,5,.9) 0%, rgba(5,5,5,.12) 48%, rgba(5,5,5,.38) 100%),
    linear-gradient(to right, rgba(5,5,5,.3), transparent 58%);
  pointer-events: none;
}
.hero-copy {
  position: absolute;
  z-index: 2;
  left: var(--pad);
  right: var(--pad);
  bottom: clamp(40px, 8vw, 105px);
  max-width: 850px;
}
.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--warm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 11vw, 164px);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.055em;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(16px, 1.5vw, 21px);
}
.hero-link {
  display: inline-block;
  margin-top: 25px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255,255,255,.45);
  text-decoration: none;
  font-size: 14px;
}

.section {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: clamp(82px, 10vw, 145px) var(--pad);
}
.intro { border-bottom: 1px solid var(--line); }
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: clamp(40px, 8vw, 130px);
  align-items: end;
}
.intro h2,
.section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.035em;
}
.intro h2 { font-size: clamp(54px, 8.5vw, 122px); line-height: .89; }
.intro h2 span { color: #777; }
.intro-copy { max-width: 560px; font-size: clamp(17px, 1.4vw, 20px); }
.intro-copy p { margin: 0 0 18px; }
.muted { color: var(--muted); font-size: 14px; }

.gallery-section { padding-top: clamp(72px, 9vw, 125px); }
.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(250px, 390px);
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(35px, 5vw, 70px);
}
.section-heading h2 { font-size: clamp(42px, 5.5vw, 78px); line-height: .95; }
.section-heading > p { margin: 0; color: var(--muted); }

.card-grid { display: grid; gap: clamp(22px, 2.3vw, 34px); }
.days-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.photo-card { text-decoration: none; min-width: 0; }
.photo-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 12 / 7;
  background: var(--panel);
}
.photo-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .55s ease;
}
.photo-card:hover img,
.photo-card:focus-visible img { transform: scale(1.035); filter: brightness(1.08); }
.card-copy { padding: 17px 2px 7px; }
.card-copy span {
  display: block;
  margin-bottom: 5px;
  color: var(--warm);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.card-copy h3 { margin: 0; font-size: clamp(17px, 1.35vw, 21px); font-weight: 560; }
.card-copy em {
  display: inline-block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .2s ease, transform .2s ease;
}
.photo-card:hover .card-copy em,
.photo-card:focus-visible .card-copy em { opacity: 1; transform: none; }
.panorama .photo-wrap { aspect-ratio: 618 / 175; }

footer {
  margin-top: clamp(35px, 7vw, 90px);
  padding: 0 var(--pad);
  background: #080808;
  border-top: 1px solid var(--line);
}
.footer-main,
.footer-bottom {
  width: min(calc(var(--max) - (2 * var(--pad))), 100%);
  margin: 0 auto;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding: 58px 0;
}
.footer-main p { margin: 0; color: var(--muted); font-size: 13px; }
.footer-brand { margin-bottom: 7px !important; color: var(--text) !important; font-size: 17px !important; font-weight: 650; }
.footer-brand span { color: #999; font-weight: 400; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: flex-end; align-items: start; }
.footer-links a,
.footer-bottom a { color: #c9c7c2; text-decoration: none; font-size: 13px; }
.footer-links a:hover,
.footer-bottom a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 0 28px;
  border-top: 1px solid var(--line);
  color: #777;
  font-size: 11px;
}
.footer-bottom p { margin: 0; }

@media (max-width: 880px) {
  .hero { min-height: 680px; }
  .intro-grid,
  .section-heading { grid-template-columns: 1fr; }
  .intro-grid { gap: 35px; }
  .section-heading { gap: 20px; }
  .section-heading > p { max-width: 560px; }
  .days-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-main { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .site-header { min-height: 68px; }
  .nav-menu summary span { display: none; }
  .hero { min-height: 660px; }
  .hero-image img { object-position: 57% center; }
  .hero-copy { bottom: 50px; }
  .hero h1 { font-size: clamp(58px, 20vw, 90px); }
  .hero-copy > p:not(.eyebrow) { font-size: 16px; }
  .section { padding-left: 20px; padding-right: 20px; }
  .days-grid,
  .feature-grid { grid-template-columns: 1fr; }
  .panorama .photo-wrap { aspect-ratio: 12 / 7; }
  .panorama img { object-fit: cover; }
  .card-copy em { opacity: 1; transform: none; }
  footer { padding-left: 20px; padding-right: 20px; }
  .footer-main { padding: 45px 0; }
  .footer-links { flex-direction: column; gap: 9px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

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