:root {
  color-scheme: light;
  --ink: #142019;
  --muted: #5b665f;
  --paper: #f3f6f0;
  --panel: #ffffff;
  --line: #d8e0d3;
  --forest: #16221c;
  --leaf: #496f45;
  --clay: #bd5b3f;
  --gold: #be9143;
  --water: #3b7684;
  --shadow: 0 24px 70px rgba(20, 32, 25, 0.17);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(243, 246, 240, 0.94);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  text-decoration: none;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--forest);
  font-weight: 950;
}
.brand strong, .brand small { display: block; }
.brand small { color: var(--muted); font-size: 12px; }
nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 780;
}
nav a { text-decoration: none; }
.translate-control {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
}
.translate-control select {
  width: auto;
  min-height: 34px;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.hero {
  min-height: min(760px, calc(100svh - 72px));
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(22px, 5vw, 68px);
  align-items: end;
  padding: clamp(50px, 8vw, 108px) clamp(18px, 5vw, 76px);
  background:
    linear-gradient(90deg, rgba(20, 32, 25, 0.84), rgba(20, 32, 25, 0.36)),
    url("assets/lodge-chalet.jpg") center / cover;
  color: #fff;
}
.hero-copy {
  width: min(780px, 100%);
}
.kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 16px;
  font-size: clamp(52px, 8.4vw, 108px);
  line-height: 0.92;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4.8vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}
h3 { margin-bottom: 8px; font-size: 21px; line-height: 1.16; }
.hero-copy p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 22px);
}

.finder-panel {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}
.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
label {
  display: grid;
  gap: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
}
input, select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}
.finder-summary {
  min-height: 72px;
  padding: 14px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(0, 0, 0, 0.22);
}
.finder-summary strong { color: #fff; }

.results-shell, .region-band, .planner-band, .style-section {
  width: min(1180px, calc(100% - 36px));
  margin: clamp(34px, 6vw, 82px) auto;
}
.results-head, .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 20px;
  align-items: end;
  margin-bottom: 22px;
}
.results-head p, .section-heading p { color: var(--muted); font-size: 17px; }
.lodge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
article, .airport-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.lodge-card {
  display: grid;
  gap: 12px;
  padding: 18px;
}
article span, .tag {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
article p { color: var(--muted); }
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  color: #28462d;
  background: #e8f1e4;
  font-size: 12px;
  font-weight: 850;
}
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.link-row a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbf6;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}
.link-row a:first-child {
  color: #fff;
  background: var(--clay);
  border-color: var(--clay);
}

.region-band {
  padding: clamp(24px, 5vw, 46px);
  border-radius: 8px;
  background: #e7f0e3;
}
.region-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.region-grid article { overflow: hidden; }
.region-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.region-grid span, .region-grid h3, .region-grid p {
  margin-left: 16px;
  margin-right: 16px;
}
.region-grid span { margin-top: 16px; }
.region-grid p { padding-bottom: 16px; }

.planner-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(340px, 1.22fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 8px;
  color: #fff;
  background: var(--forest);
  box-shadow: var(--shadow);
}
.planner-band p { color: rgba(255, 255, 255, 0.78); }
.airport-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.airport-card {
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}
.airport-card strong, .airport-card small { display: block; }
.airport-card small { color: rgba(255, 255, 255, 0.72); }

.style-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.style-grid article { padding: 18px; }
.photo-ribbon {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin: clamp(34px, 6vw, 82px) 0 0;
}
.photo-ribbon img {
  width: 100%;
  height: clamp(260px, 32vw, 500px);
  object-fit: cover;
}
.gateway-links {
  width: min(1180px, calc(100% - 36px));
  margin: clamp(30px, 5vw, 64px) auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffefa;
}
.gateway-links span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.gateway-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 8px;
  background: #e8f1e4;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}
footer {
  padding: 28px clamp(18px, 5vw, 76px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .hero, .results-head, .section-heading, .planner-band { grid-template-columns: 1fr; }
  .lodge-grid, .region-grid, .style-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  nav { justify-content: flex-start; }
  .field-row, .lodge-grid, .region-grid, .airport-list, .style-grid, .photo-ribbon { grid-template-columns: 1fr; }
  h1 { font-size: 52px; }
  .hero { min-height: 760px; }
  .photo-ribbon img { height: 260px; }
}
