:root {
  --bg: #f5fbff;
  --surface: #ffffff;
  --text: #143044;
  --muted: #5d7280;
  --accent: #087bb8;
  --accent-dark: #075f8e;
  --border: #d7e8f2;
  --notice: #fff8df;
  --shadow: 0 18px 48px rgba(18, 59, 84, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

a { color: var(--accent); }
a:hover { color: var(--accent-dark); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245, 251, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.topbar {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
}

.language-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
}

.lang-btn {
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-weight: 700;
}

.lang-btn.is-active {
  background: var(--accent);
  color: #fff;
}

.section {
  padding: 56px 20px;
}

section[id] {
  scroll-margin-top: 88px;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.narrow { max-width: 820px; }

.hero {
  max-width: 1120px;
  margin: 32px auto 0;
  border-radius: 28px;
  padding: 76px 40px;
  background: linear-gradient(135deg, #e4f6ff 0%, #ffffff 70%);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1, h2, h3, h4 { line-height: 1.2; }
h1 { max-width: 760px; margin: 0; font-size: clamp(2rem, 5vw, 4rem); }
h2 { margin: 0 0 28px; font-size: clamp(1.8rem, 3vw, 2.5rem); }
h3 { margin-top: 0; font-size: 1.45rem; }
h4 { margin-bottom: 10px; }

.lead {
  max-width: 760px;
  font-size: 1.2rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.button:hover { background: var(--accent-dark); color: #fff; }
.button-secondary { background: #dff2fb; color: var(--accent-dark); }
.button-secondary:hover { background: #cbe8f5; color: var(--accent-dark); }

.content-section { padding-bottom: 16px; }
.content-section p { font-size: 1.08rem; }

.locations-banner {
  padding-top: 24px;
  padding-bottom: 8px;
}

.locations-banner-image {
  display: block;
  width: 100%;
  max-height: min(52vh, 520px);
  aspect-ratio: 21 / 8;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #e4f6ff;
}

.locations-banner + .section {
  padding-top: 40px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 10px 26px rgba(18, 59, 84, 0.08);
}

.muted { color: var(--muted); }

.location-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 22px;
}

.location-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #e4f6ff;
}

.location-photo-wide {
  aspect-ratio: 16 / 9;
  margin: 18px 0 22px;
}

.details {
  margin: 24px 0;
  border-top: 1px solid var(--border);
}

.details div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

dt { font-weight: 700; }
dd { margin: 0; }

.price-grid {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.price-box {
  padding: 18px;
  border-radius: 18px;
  background: #f2f9fd;
  border: 1px solid var(--border);
}

.price-box h4 { margin-top: 0; }
.price { margin: 8px 0; font-size: 1.5rem; font-weight: 800; color: var(--accent-dark); }
.notice { padding: 14px 16px; border-radius: 16px; background: var(--notice); border: 1px solid #f2dea1; }

.site-footer {
  margin-top: 40px;
  padding: 32px 20px;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.is-hidden { display: none !important; }

@media (max-width: 800px) {
  .cards { grid-template-columns: 1fr; }
  .hero { padding: 52px 24px; border-radius: 22px; }
  .locations-banner-image { border-radius: 22px; max-height: min(42vh, 360px); }
  .details div { grid-template-columns: 1fr; gap: 4px; }
}

@media (max-width: 520px) {
  .location-gallery { grid-template-columns: 1fr; }
}
