/* =========================================================
   Gotthard Camping – Elegant Alpine Design System
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Colors – refined alpine palette */
  --forest: #1f5132;
  --forest-deep: #163a24;
  --moss: #4e8a63;
  --moss-soft: #7ca98c;
  --sand: #e8e0d2;
  --sand-soft: #f1ebdf;
  --cream: #faf7f0;
  --cream-warm: #f5efe3;
  --stone: #23323a;
  --stone-soft: #4a5a62;
  --copper: #b8763a;
  --copper-soft: #d9a66e;
  --line: #e6ddc9;
  --line-soft: #efe8d8;
  --white: #ffffff;

  /* Typography */
  --font-display: "Fraunces", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --max: 1180px;
  --max-narrow: 780px;
  --topbar-h: 72px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 8px;

  /* Elevation */
  --shadow-xs: 0 1px 2px rgba(22, 35, 28, 0.04);
  --shadow-sm: 0 2px 8px rgba(22, 35, 28, 0.06);
  --shadow-md: 0 10px 30px rgba(22, 35, 28, 0.08);
  --shadow-lg: 0 24px 60px rgba(22, 35, 28, 0.12);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--stone);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--forest);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--stone);
  margin: 0 0 0.5em;
}

/* ---------- Accessibility ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  position: fixed;
  left: 12px;
  top: 12px;
  padding: 10px 16px;
  background: var(--forest);
  color: #fff;
  border-radius: var(--radius-sm);
  z-index: 10000;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.wrap-narrow {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  scroll-margin-top: calc(var(--topbar-h) + 16px);
}

.section-pad {
  padding: clamp(64px, 10vw, 120px) 0;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 20px;
  position: relative;
  padding-left: 38px;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 1px;
  background: var(--moss);
}

.section-title {
  font-size: clamp(30px, 4.5vw, 46px);
  margin: 0 0 18px;
  color: var(--forest-deep);
}

.section-lede {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
  color: var(--stone-soft);
  max-width: 60ch;
}

.center {
  text-align: center;
}

/* Centered eyebrows get hairlines on both sides for symmetry,
   matching the hero kicker style. */
.center .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-left: 0;
}

.center .eyebrow::before,
.center .eyebrow::after {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
  position: static;
  top: auto;
  transform: none;
}

.center .section-lede {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--forest);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 0;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s var(--ease-out);
}

.btn:hover {
  background: var(--forest-deep);
  color: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  text-decoration: none;
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-ghost {
  --bg: transparent;
  --fg: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  box-shadow: none;
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  --bg: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* ---------- Header ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--topbar-h);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.topbar.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: #e6e6e6;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.nav {
  max-width: var(--max);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand img {
  height: 40px;
  width: auto;
}

.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.menu a {
  position: relative;
  padding: 8px 14px;
  color: var(--stone);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  transition: color 0.2s var(--ease-out);
}

.menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 20px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out);
}

.menu a:hover {
  color: var(--forest);
  text-decoration: none;
}

.menu a:hover::after,
.menu a.is-active::after {
  transform: translateX(-50%) scaleX(1);
}

.menu a.is-active {
  color: var(--forest);
  font-weight: 600;
}

.right {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.lang-switch select {
  appearance: none;
  -webkit-appearance: none;
  background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%231f5132' stroke-width='1.5'><path d='M1 1.5L6 6L11 1.5' stroke-linecap='round'/></svg>") no-repeat right 10px center / 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 6px 26px 6px 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--stone);
  cursor: pointer;
  transition: border-color 0.2s var(--ease-out);
}

.lang-switch select:hover {
  border-color: var(--forest);
}

.burger {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
}

.burger span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--stone);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s var(--ease-out), top 0.3s var(--ease-out);
}

.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }

.burger[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 0 16px;
  }
  .right {
    justify-content: flex-end;
  }

  .menu {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--topbar-h);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid #e6e6e6;
    box-shadow: var(--shadow-md);
    padding: 16px 24px 28px;
    gap: 2px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    z-index: 49;
    max-height: calc(100vh - var(--topbar-h));
    overflow-y: auto;
  }

  .menu.open {
    display: flex;
    animation: menuSlide 0.3s var(--ease-out);
  }

  @keyframes menuSlide {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: none; }
  }

  .menu a {
    padding: 14px 12px;
    font-size: 16px;
    border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
  }

  .menu a::after {
    display: none;
  }

  .menu a:last-child {
    border-bottom: 0;
  }

  .burger {
    display: block;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: calc(100vh - var(--topbar-h));
  min-height: 600px;
  overflow: hidden;
  background: var(--stone);
}

@supports (height: 100svh) {
  .hero {
    height: calc(min(100svh, 100dvh) - var(--topbar-h));
  }
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  animation: heroZoom 14s var(--ease-out) both;
  transform-origin: center;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

/* Stronger, more contrast-rich scrim so the title sits on a clearly
   darker backdrop right where the eye lands. */
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    /* Soft spotlight darkening exactly behind the text block */
    radial-gradient(ellipse 70% 55% at 50% 48%, rgba(0, 0, 0, 0.45) 0%, transparent 75%),
    /* Top dimming (so kicker reads on bright skies) */
    linear-gradient(180deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.08) 35%, rgba(0, 0, 0, 0.60) 100%),
    /* Subtle alpine warmth */
    linear-gradient(180deg, rgba(22, 58, 36, 0.15) 0%, transparent 50%);
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.hero__inner {
  max-width: 860px;
  animation: heroRise 1s var(--ease-out) 0.2s both;
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 28px;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.6),
    0 2px 14px rgba(0, 0, 0, 0.55);
}

.hero__kicker-line {
  width: 42px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}

.hero h1 {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(38px, 6.5vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.55),
    0 6px 28px rgba(0, 0, 0, 0.65);
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--copper-soft);
}

.hero p {
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 34px;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.55),
    0 2px 18px rgba(0, 0, 0, 0.55);
}

.hero p strong {
  color: var(--copper-soft);
  font-weight: 600;
}

.hero__ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: calc(24px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: heroRise 1s var(--ease-out) 1s both;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.scroll-cue:hover {
  color: #fff;
  text-decoration: none;
}

.scroll-cue svg {
  width: 18px;
  height: 18px;
  animation: bounce 2s infinite var(--ease-in-out);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 0.75; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ---------- About ---------- */
.about {
  background: var(--sand-soft);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--moss));
  opacity: 0.4;
}

.about__grid {
  display: grid;
  gap: 60px;
  align-items: start;
}

@media (min-width: 900px) {
  .about__grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
  }
}

.about__intro {
  font-size: 18px;
  line-height: 1.75;
  color: var(--stone-soft);
  margin: 0 0 28px;
}

.about__intro strong {
  color: var(--stone);
  font-weight: 600;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--stone);
  line-height: 1.55;
}

.feature-list li::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  background-color: var(--moss);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
}

.hours-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line-soft);
  position: relative;
}

.hours-card::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 32px;
  width: 44px;
  height: 44px;
  background: var(--forest);
  border-radius: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='9'/><path d='M12 7v5l3 2'/></svg>");
  background-size: 22px;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: var(--shadow-sm);
}

.hours-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--forest-deep);
  margin: 18px 0 20px;
  font-weight: 500;
}

.hours-card__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
}

.hours-row:last-child {
  border-bottom: 0;
}

.hours-row__label {
  color: var(--stone-soft);
  font-weight: 500;
}

.hours-row__value {
  color: var(--forest-deep);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

/* ---------- Features ---------- */
.features {
  background: var(--cream);
}

.features__header {
  margin-bottom: 54px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 900px) {
  .features__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  position: relative;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand);
}

.feature-card__media a {
  display: block;
  width: 100%;
  height: 100%;
}

.feature-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.feature-card:hover .feature-card__media img {
  transform: scale(1.05);
}

.feature-card__body {
  padding: 26px 26px 28px;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--forest-deep);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.feature-card__text {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--stone-soft);
}

/* ---------- Prices ---------- */
.prices {
  background: var(--sand-soft);
  position: relative;
}

.prices__card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 52px);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line-soft);
}

.prices__note {
  font-size: 14px;
  color: var(--stone-soft);
  margin: 0 0 28px;
}

.prices__table-wrap {
  overflow-x: auto;
  margin: 0 -4px;
  padding: 0 4px;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

thead th {
  padding: 16px 14px;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-deep);
  background: var(--cream-warm);
  border-bottom: 2px solid var(--forest);
  vertical-align: bottom;
}

thead th:first-child {
  border-top-left-radius: var(--radius-sm);
}

thead th:last-child {
  border-top-right-radius: var(--radius-sm);
}

thead th .small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--stone-soft);
  margin-top: 4px;
}

tbody tr {
  transition: background 0.15s var(--ease-out);
}

tbody tr:hover {
  background: var(--cream-warm);
}

tbody td {
  padding: 14px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
  color: var(--stone);
}

tbody tr:last-child td {
  border-bottom: 0;
}

tbody td:first-child {
  font-weight: 500;
}

tbody td:not(:first-child) {
  font-weight: 600;
  color: var(--forest-deep);
}

.prices__footnote {
  font-size: 14px;
  color: var(--stone-soft);
  margin: 24px 0 0;
  padding: 16px 20px;
  background: var(--cream-warm);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--moss);
}

.prices__footnote + .prices__footnote {
  margin-top: 10px;
}

.prices__footnote--payment {
  border-left-color: var(--copper);
}

.prices__footnote strong {
  color: var(--forest-deep);
  font-weight: 600;
}

.prices__footnote--payment strong {
  color: var(--copper-dark, var(--copper));
}

/* Mobile labels — hidden on desktop, visible inside price cards on mobile */
.m-label { display: none; }
.m-val   { display: inline; }

/* Prices: card layout on mobile (no horizontal scroll) */
@media (max-width: 720px) {
  .prices__card { padding: 24px 20px; }
  .prices__table-wrap {
    overflow-x: visible;
    margin: 0;
    padding: 0;
  }

  table { display: block; min-width: 0; width: 100%; }
  thead  { display: none; }
  tbody  { display: block; }

  tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "name name"
      "low  high";
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line-soft);
  }
  tbody tr:hover { background: transparent; }
  tbody tr:last-child { border-bottom: 0; }

  tbody td {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--stone);
    font-weight: 500;
  }

  tbody td:nth-child(1) {
    grid-area: name;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 17px;
    color: var(--forest-deep);
    letter-spacing: -0.005em;
  }
  tbody td:nth-child(2) { grid-area: low; }
  tbody td:nth-child(3) { grid-area: high; }

  tbody td:nth-child(2),
  tbody td:nth-child(3) {
    background: var(--cream-warm);
    padding: 12px 14px;
    border-radius: var(--radius-sm);
  }

  tbody td:nth-child(3) {
    background: rgba(31, 81, 50, 0.07);
    border-left: 2px solid var(--moss);
  }

  .m-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone-soft);
    margin-bottom: 4px;
  }

  tbody td:nth-child(3) .m-label {
    color: var(--moss);
  }

  .m-val {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--forest-deep);
    font-variant-numeric: tabular-nums;
  }

  .prices__footnote {
    margin-top: 18px;
    padding: 14px 16px;
    font-size: 13px;
  }
}

/* ---------- Gallery ---------- */
.gallery-section {
  background: var(--cream);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}

.gallery a {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--sand);
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.3s var(--ease-out), transform 0.35s var(--ease-out);
}

.gallery a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(22, 58, 36, 0.35));
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
  pointer-events: none;
}

.gallery a:hover::after {
  opacity: 1;
}

.gallery a:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.gallery a:hover img {
  transform: scale(1.05);
}

/* Layout: 6-col grid, 3 rows of equal height.
   Row 1: [hero 3×2] [side 3×1]
   Row 2: [hero cont.] [side 3×1]
   Row 3: [third 2×1] [third 2×1] [third 2×1]
*/
.gallery__item--hero  { grid-column: span 3; grid-row: span 2; }
.gallery__item--side  { grid-column: span 3; grid-row: span 1; }
.gallery__item--third { grid-column: span 2; grid-row: span 1; }

@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
    gap: 12px;
  }
  .gallery__item--hero {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery__item--side,
  .gallery__item--third {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ---------- Map ---------- */
.map-section {
  background: var(--sand-soft);
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line-soft);
  background: #fff;
  padding: 10px;
}

.map-frame iframe {
  width: 100%;
  height: 560px;
  border: 0;
  border-radius: calc(var(--radius-lg) - 10px);
  display: block;
}

@media (max-width: 700px) {
  .map-frame iframe {
    height: 400px;
  }
}

/* ---------- Contact ---------- */
.contact {
  background:
    radial-gradient(ellipse at top left, rgba(124, 169, 140, 0.18), transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(184, 118, 58, 0.18), transparent 55%),
    linear-gradient(180deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'><circle cx='30' cy='30' r='1' fill='%23ffffff' opacity='0.05'/></svg>");
  background-size: 30px 30px;
  pointer-events: none;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

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

.contact h2 {
  color: #fff;
  font-size: 28px;
  margin: 0 0 20px;
}

.contact__logo {
  display: flex;
  justify-content: center;
}

.contact__logo img {
  width: 280px;
  max-width: 100%;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.35));
}

.contact__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact__list li {
  padding: 7px 0;
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  gap: 8px;
  align-items: baseline;
}

@media (max-width: 900px) {
  .contact__list li {
    justify-content: center;
  }
}

/* Only the info-list treats its first entry as a display title */
.contact__list--info li:first-child {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}

/* Hours list: aligned label / value rows */
.contact__list--hours li {
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-variant-numeric: tabular-nums;
}

.contact__list--hours li:last-child {
  border-bottom: 0;
}

.contact__list--hours li span:last-child {
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .contact__list--hours li {
    justify-content: center;
    border-bottom: 0;
    padding: 6px 0;
  }
}

.contact a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s var(--ease-out);
}

.contact a:hover {
  text-decoration-color: #fff;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 18, 14, 0.94);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}

.lightbox.show {
  display: flex;
  opacity: 1;
}

.lightbox__img {
  max-width: min(92vw, 1400px);
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  animation: lbIn 0.35s var(--ease-out);
}

@keyframes lbIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

.no-scroll {
  overflow: hidden;
}

/* ---------- Scroll-reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}

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

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
