:root {
  color-scheme: light dark;
  font-family: 'Noto Sans SC', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
  line-height: 1.6;
  font-weight: 400;
  --bg: #f4f7fb;
  --surface: #ffffff;
  --accent: #0b72d9;
  --accent-soft: rgba(11, 114, 217, 0.1);
  --text: #1f2a37;
  --subtle: #5c6574;
  --border: #dde3ed;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

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

ol {
  padding-left: 1.25rem;
}

main,
header,
section,
footer {
  width: min(1200px, 100% - 3rem);
  margin: 0 auto 3rem;
}

.page-header {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--subtle);
  margin-bottom: 0.5rem;
}

h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  line-height: 1.2;
}

.lead {
  font-size: 1rem;
  color: var(--subtle);
  max-width: 600px;
}

.map-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: stretch;
}

.map-section h2 {
  margin-top: 0;
}

.map-copy {
  flex: 1 1 260px;
}

.map-figure {
  flex: 2 1 380px;
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 1rem;
  margin: 0;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.map-figure img {
  border-radius: 16px;
  width: 100%;
  display: block;
}

.map-figure figcaption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--subtle);
  text-align: center;
}

.resort-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.resort-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.resort-card header {
  margin: 0;
}

.resort-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.resort-card .subheading {
  margin: 0.2rem 0 0;
  color: var(--subtle);
  font-size: 0.95rem;
}

.meta-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}

.meta-item {
  background: var(--accent-soft);
  border-radius: 16px;
  padding: 0.75rem;
}

.meta-item .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--subtle);
  margin: 0 0 0.2rem;
}

.meta-item .value {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}

.map-preview {
  border-radius: 18px;
  overflow: hidden;
  border: 1px dashed var(--border);
  background: #0c111d;
}

.map-preview img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
}

.map-preview .placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 0.95rem;
  height: 200px;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.links a {
  flex: 1 1 140px;
  text-align: center;
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--accent);
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
}

.links a:hover,
.links a:focus {
  background: var(--accent-soft);
  border-color: var(--accent);
}

.highlights {
  margin: 0;
  padding-left: 1rem;
  color: var(--subtle);
}

.notes {
  background: rgba(11, 114, 217, 0.08);
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid var(--border);
}

footer {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--subtle);
}

@media (max-width: 768px) {
  main,
  header,
  section,
  footer {
    width: min(100% - 1.5rem, 640px);
  }

}
