/* Manamansalo — light lake & sand theme */

:root {
  --sky-deep: #e8f4fc;
  --sky: #f0f8ff;
  --sky-bright: #ffffff;
  --lake: #2b7cb8;
  --lake-mid: #4a9fd4;
  --lake-light: #7ec8e8;
  --lake-pale: #c5e4f7;
  --sand: #e8d5b5;
  --sand-mid: #d4bc94;
  --sand-dark: #b8956a;
  --sand-light: #faf6ef;
  --driftwood: #8b6914;
  --warm: #c9956a;
  --text: #1a3347;
  --text-muted: #5a7286;
  --accent: #2b7cb8;
  --accent-hover: #1e5f8f;
  --accent-dim: rgba(43, 124, 184, 0.1);
  --card: rgba(255, 255, 255, 0.88);
  --glass: rgba(255, 255, 255, 0.82);
  --border: rgba(43, 124, 184, 0.14);
  --border-sand: rgba(184, 149, 106, 0.25);
  --radius: 1.125rem;
  --radius-lg: 1.75rem;
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --shadow: 0 20px 60px rgba(43, 124, 184, 0.12);
  --shadow-sm: 0 8px 24px rgba(43, 124, 184, 0.08);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 76rem;
  --header-h: 4rem;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--sand-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  transition: color 0.2s var(--ease);
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--lake);
  color: #fff;
  font-weight: 600;
}

.skip-link:focus { left: 1rem; top: 1rem; }

/* ─── Ambient backdrop ─── */
.backdrop {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 90% 60% at 10% 0%, rgba(126, 200, 232, 0.45), transparent 55%),
    radial-gradient(ellipse 70% 50% at 95% 10%, rgba(232, 213, 181, 0.5), transparent 50%),
    radial-gradient(ellipse 100% 70% at 50% 100%, rgba(74, 159, 212, 0.15), transparent 60%),
    linear-gradient(180deg, var(--sky) 0%, var(--sand-light) 45%, #f5edd8 100%);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.orbs {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 20s var(--ease) infinite alternate;
}

.orb-1 {
  width: 40vw;
  height: 40vw;
  max-width: 28rem;
  max-height: 28rem;
  top: 5%;
  right: -5%;
  background: rgba(74, 159, 212, 0.2);
}

.orb-2 {
  width: 35vw;
  height: 35vw;
  max-width: 22rem;
  max-height: 22rem;
  bottom: 15%;
  left: -8%;
  background: rgba(232, 213, 181, 0.45);
  animation-delay: -8s;
}

@keyframes float {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-2rem, 1.5rem) scale(1.08); }
}

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  backdrop-filter: blur(20px) saturate(1.3);
  background: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  background: var(--glass);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

.brand img { width: 2rem; height: 2rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--accent);
  background: var(--accent-dim);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-toggle {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
}

.lang-toggle button {
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.45rem 0.8rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang-toggle button[aria-pressed="true"] {
  background: var(--lake);
  color: #fff;
}

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 0.4rem;
  cursor: pointer;
  border-radius: 0.5rem;
}

.menu-btn:hover { background: var(--accent-dim); }

/* ─── Weather bar ─── */
.weather-bar {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(197, 228, 247, 0.35) 100%);
  backdrop-filter: blur(12px);
}

.weather-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.weather-loading,
.weather-error {
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  gap: 0.6rem;
  width: 100%;
}

.weather-spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid var(--lake-pale);
  border-top-color: var(--lake);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.weather-current {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  flex: 1;
  min-width: min(100%, 14rem);
}

.weather-current-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.weather-icon {
  font-size: 2.25rem;
  line-height: 1;
}

.weather-temp {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--lake);
  line-height: 1;
}

.weather-desc {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.weather-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.weather-meta-label {
  font-weight: 600;
  color: var(--sand-dark);
}

.weather-forecast {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex: 2;
  min-width: min(100%, 18rem);
  justify-content: flex-end;
}

.weather-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.5rem 0.65rem;
  min-width: 3.5rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border-sand);
}

.weather-day-name {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--sand-dark);
}

.weather-day-icon {
  font-size: 1.25rem;
  line-height: 1;
}

.weather-day-temps {
  display: flex;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
}

.weather-day-max { color: var(--text); }
.weather-day-min { color: var(--text-muted); font-weight: 500; }

@media (max-width: 768px) {
  .weather-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .weather-forecast {
    justify-content: space-between;
  }

  .weather-day {
    flex: 1;
    min-width: 0;
  }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) 1.25rem clamp(3rem, 8vw, 6rem);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border-sand);
  background: rgba(232, 213, 181, 0.35);
  color: var(--sand-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  line-height: 1.06;
  font-weight: 500;
  margin: 0 0 1.25rem;
  letter-spacing: -0.025em;
  color: var(--text);
}

.hero h1 em {
  font-style: italic;
  color: var(--lake);
  display: block;
  margin-top: 0.15em;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 42ch;
  margin: 0 0 2rem;
  line-height: 1.65;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--lake) 0%, var(--lake-mid) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(43, 124, 184, 0.28);
}

.btn-primary:hover { color: #fff; }

.btn-secondary {
  background: rgba(255, 255, 255, 0.75);
  border-color: var(--border-sand);
  color: var(--text);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: var(--sand-light);
  color: var(--text);
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  aspect-ratio: 1;
}

.hero-scene { width: 100%; height: 100%; object-fit: cover; }

.hero-stats {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.stat {
  padding: 0.85rem 0.75rem;
  border-radius: 0.875rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-sand);
  text-align: center;
  box-shadow: 0 4px 16px rgba(43, 124, 184, 0.08);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  color: var(--lake);
  line-height: 1.15;
  font-weight: 500;
}

.stat span {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
  margin-top: 0.2rem;
}

/* ─── Sections ─── */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) 1.25rem;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand-dark);
  margin-bottom: 0.6rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 500;
  margin: 0 0 1rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section-intro,
.prose p {
  color: var(--text-muted);
  max-width: 58ch;
  margin: 0 0 1.25rem;
}

.prose p:last-child { margin-bottom: 0; }

.section-divider {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  opacity: 0.5;
}

.section-divider svg { width: 100%; height: 2rem; }

/* ─── Photo gallery ─── */
.photo-gallery {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem clamp(2rem, 5vw, 3rem);
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.85rem;
}

.photo-card {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--card);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 12rem;
  transition: transform 0.5s var(--ease);
}

.photo-card:hover img { transform: scale(1.03); }

.photo-feature {
  grid-row: span 2;
  min-height: 22rem;
}

.photo-feature img { min-height: 100%; }

.photo-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 1rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(transparent, rgba(26, 51, 71, 0.82));
}

.photo-credit {
  margin: 0.75rem 0 0;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: right;
  opacity: 0.85;
}

/* ─── Split panel (text + image) ─── */
.split-panel {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
  margin-top: 0.5rem;
}

.feature-image {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-image figcaption {
  padding: 0.65rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sand-dark);
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid var(--border);
}

.split-panel .prose p:last-child { margin-bottom: 0; }

/* ─── Bento cards ─── */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(43, 124, 184, 0.28);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.85rem;
  color: var(--lake);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.45rem;
  font-weight: 500;
  color: var(--text);
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.bento .card { grid-column: span 4; }
.bento .card-wide { grid-column: span 6; }
.bento .card-full { grid-column: span 12; }

/* ─── Ärjänselkä & Soiluanniemi ─── */
.section-shores {
  position: relative;
}

.section-shores::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(245, 237, 216, 0.35) 0%, transparent 55%);
  pointer-events: none;
}

.shores-intro { max-width: 62ch; }

.shores-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.shores-stat {
  padding: 1.1rem 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border-sand);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.shores-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--lake);
  margin-bottom: 0.25rem;
}

.shores-stat span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sand-dark);
  letter-spacing: 0.02em;
}

.shores-panel {
  display: grid;
  grid-template-columns: 1fr min(22rem, 38vw) 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.92), rgba(197, 228, 247, 0.35));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}

.shores-block h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 0.65rem;
}

.shores-block p {
  margin: 0 0 0.85rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.shores-block p:last-child { margin-bottom: 0; }

.shores-visual {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  align-self: stretch;
  display: flex;
  flex-direction: column;
  min-height: 14rem;
}

.shores-visual img {
  width: 100%;
  flex: 1;
  min-height: 12rem;
  object-fit: cover;
}

.shores-visual figcaption {
  padding: 0.55rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sand-dark);
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid var(--border);
}

.shores-notice {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(184, 149, 106, 0.35);
  background: linear-gradient(135deg, rgba(250, 246, 239, 0.95), rgba(232, 213, 181, 0.35));
}

.shores-notice h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  color: var(--sand-dark);
}

.shores-notice p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 72ch;
}

/* ─── History timeline ─── */
.timeline {
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid var(--lake-pale);
  display: grid;
  gap: 1.75rem;
}

.timeline-item {
  position: relative;
  padding-left: 0.5rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.65rem;
  top: 0.35rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--lake);
  box-shadow: 0 0 0 4px var(--accent-dim);
}

.timeline-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
  font-weight: 500;
  color: var(--text);
}

.timeline-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 52ch;
}

/* ─── Trail cards ─── */
.trails-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1rem;
}

.trail-card {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(197, 228, 247, 0.5), rgba(250, 246, 239, 0.9));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease);
}

.trail-card:hover { transform: translateY(-3px); }

.trail-card .tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lake);
  margin-bottom: 0.5rem;
}

.trail-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.4rem;
  font-weight: 500;
  color: var(--text);
}

.trail-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ─── Seasons ─── */
.seasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.season-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-sand);
  background: linear-gradient(180deg, #fff 0%, var(--sand-light) 100%);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.season-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.season-card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
}

.season-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* ─── Services & activities ─── */
.subsection-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  margin: 2rem 0 1rem;
}

.subsection-title:first-of-type { margin-top: 0; }

.services-grid,
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1rem;
}

.service-card,
.activity-card {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.service-card:hover,
.activity-card:hover {
  transform: translateY(-3px);
  border-color: rgba(43, 124, 184, 0.28);
  box-shadow: var(--shadow);
}

.service-card .tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lake);
  margin-bottom: 0.5rem;
}

.service-card h4,
.activity-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.45rem;
  font-weight: 500;
  color: var(--text);
}

.service-card p,
.activity-card p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.service-address {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sand-dark);
  margin: 0 0 0.85rem !important;
  letter-spacing: 0.02em;
}

.activity-icon {
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 0.65rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lake);
  text-decoration: none;
  transition: color 0.2s;
}

.card-link:hover { color: var(--lake-dark, #1a5f8a); }

.link-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.link-pills a {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lake);
  background: rgba(197, 228, 247, 0.45);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.link-pills a:hover {
  background: rgba(197, 228, 247, 0.75);
  border-color: rgba(43, 124, 184, 0.3);
}

/* ─── Visit panel ─── */
.visit-panel {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: start;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(197, 228, 247, 0.4), rgba(250, 246, 239, 0.95));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.visit-list { margin: 0; padding: 0; }

.visit-list > div {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(43, 124, 184, 0.1);
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1rem;
  align-items: start;
}

.visit-list > div:last-child { border-bottom: 0; }

.visit-list dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand-dark);
  margin: 0;
}

.visit-list dd {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  min-height: 16rem;
  box-shadow: var(--shadow-sm);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(1.05) contrast(1.02) brightness(1.05);
}

/* ─── FAQ ─── */
.faq-list {
  display: grid;
  gap: 0.65rem;
  max-width: 48rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 600;
  font-size: 0.98rem;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--lake);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.15rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.open .faq-answer { display: block; }

/* ─── Footer ─── */
.site-footer {
  margin-top: 1rem;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-inner a { color: var(--text-muted); text-decoration: none; }
.footer-inner a:hover { color: var(--lake); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.share-btn {
  flex-shrink: 0;
  font-size: 0.875rem;
  padding: 0.65rem 1.1rem;
}

.share-btn svg {
  display: inline-block;
  vertical-align: -3px;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  margin-top: 0.35rem;
  font-size: 0.82rem;
}

.footer-meta span::after {
  content: "·";
  margin-left: 0.75rem;
  opacity: 0.4;
}

.footer-meta span:last-child::after { content: none; }

/* ─── Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .bento .card,
  .bento .card-wide { grid-column: span 6; }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { max-width: 22rem; margin: 0 auto; }

  .visit-panel { grid-template-columns: 1fr; }
  .split-panel { grid-template-columns: 1fr; }
  .photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .photo-feature { grid-row: auto; min-height: 16rem; }
  .shores-stats { grid-template-columns: 1fr; }
  .shores-panel { grid-template-columns: 1fr; }
  .shores-visual { order: -1; max-height: 16rem; }
  .seasons-grid { grid-template-columns: 1fr; }
  .bento .card,
  .bento .card-wide { grid-column: span 12; }
}

@media (max-width: 768px) {
  .menu-btn { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1rem;
    background: var(--glass);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
  }

  .hero-stats { grid-template-columns: 1fr 1fr; }

  .visit-list > div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; }
  .hero h1 em { font-size: 0.92em; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .orb { animation: none; }
  .btn:hover, .card:hover, .trail-card:hover { transform: none; }
}
