:root {
  --bg: #f7f4ee;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --text: #173042;
  --muted: #5f7280;
  --accent: #0b6e8a;
  --accent-dark: #0a5469;
  --line: #d9e3e8;
  --shadow: 0 18px 48px rgba(23, 48, 66, 0.08);
  --radius: 18px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top right, rgba(11, 110, 138, 0.09), transparent 28%),
    linear-gradient(180deg, #f8f6f1 0%, #f3efe7 100%);
  color: var(--text);
  line-height: 1.6;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }
img { max-width: 100%; }

.container { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(217, 227, 232, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand { font-size: 1.3rem; font-weight: 700; letter-spacing: 0.03em; color: var(--text); }
.brand span { color: var(--accent); }

.nav { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.95rem; }
.hero { padding: 4.5rem 0 3rem; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; align-items: center; }

.eyebrow {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(11, 110, 138, 0.1);
  color: var(--accent-dark);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1, h2, h3 { line-height: 1.15; margin: 0 0 1rem; }
h1 { font-size: clamp(2.2rem, 5vw, 4.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.2rem; }

.lead { font-size: 1.1rem; color: var(--muted); max-width: 60ch; }

.hero-card, .panel, .feature-card, .list-card, .cta {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card { padding: 1.6rem; }
.hero-card ul, .feature-card ul, .panel ul, .list-card ul { padding-left: 1.2rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }

.hero-media {
  margin-top: 1.5rem;
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}

.hero-media figcaption {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid var(--accent);
}

.button.primary { background: var(--accent); color: #fff; }
.button.secondary { background: transparent; color: var(--accent-dark); }

.section { padding: 1.5rem 0 3rem; }
.grid-3, .grid-2, .pages-grid { display: grid; gap: 1.2rem; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2, .pages-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feature-card, .list-card, .panel, .cta { padding: 1.4rem; }
.feature-card strong, .list-card strong { color: var(--accent-dark); }

.content-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.2rem;
}

.content-card,
.map-card,
.faq-item,
.stay-card,
.links-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.content-card img,
.map-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--line);
  margin-bottom: 0.8rem;
}

.section-title {
  margin-bottom: 0.35rem;
}

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

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.faq-item h3 {
  margin-bottom: 0.45rem;
}

.map-card p,
.stay-card p,
.links-card p {
  margin-top: 0;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.inline-links a {
  font-weight: 700;
}

.ranking { display: grid; gap: 1rem; }

.rank-item {
  padding: 1.1rem 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.rank-item.top {
  border-color: rgba(11, 110, 138, 0.3);
  background: linear-gradient(180deg, rgba(11, 110, 138, 0.1), rgba(255, 253, 248, 0.95));
}

.rank-number {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}

.meta { color: var(--muted); font-size: 0.95rem; }
.cta { margin-top: 2rem; }
.site-footer { padding: 2rem 0 3rem; color: var(--muted); font-size: 0.95rem; }
.site-footer .container { border-top: 1px solid var(--line); padding-top: 1.5rem; }
.breadcrumbs { font-size: 0.95rem; color: var(--muted); margin-bottom: 1rem; }
.page-hero { padding: 3rem 0 2rem; }
.page-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 1.5rem; }
.sidebar { display: grid; gap: 1.2rem; }

@media (max-width: 900px) {
  .hero-grid, .page-layout, .grid-3, .grid-2, .pages-grid, .content-grid { grid-template-columns: 1fr; }
  .site-header { position: static; }
}
