/* ============================================================
   Hotel SuperSki — stylesheet
   Palette sampled from the SuperSki mountain logo
   ============================================================ */

:root {
  --green: #34483c;
  --green-dark: #26382f;
  --green-soft: #edf0ee;
  --green-muted: #5c6c62;
  --accent: #8f451a;
  --accent-dark: #6f3211;
  --accent-soft: #f5ebe5;
  --ink: #26332d;
  --muted: #5c6c62;
  --bg: #fbfaf7;
  --sand: #f3eee8;
  --wood: #8f451a;
  --white: #ffffff;
  --line: #dedbd3;
  --on-dark: #ffffff;
  --on-dark-muted: #d8e0dc;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(38, 56, 47, .12);
  --shadow-sm: 0 4px 14px rgba(38, 56, 47, .09);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -.01em;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- header ---------- */

.topbar {
  background: var(--green-dark);
  color: var(--on-dark-muted);
  font-size: 13.5px;
  padding: 6px 0;
}
.topbar .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar a { color: #fff; font-weight: 600; }
.topbar svg { vertical-align: -2px; margin-right: 4px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 250, 247, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 108px;
}

.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { width: 170px; height: auto; image-rendering: auto; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul { display: flex; list-style: none; gap: 2px; align-items: center; }
.main-nav a.nav-link {
  display: block;
  padding: 10px 13px;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
}
.main-nav a.nav-link:hover, .main-nav a.nav-link[aria-current="page"] {
  color: var(--green);
  background: var(--green-soft);
  text-decoration: none;
}

/* dropdown */
.has-sub { position: relative; }
.has-sub > a.nav-link::after {
  content: "";
  display: inline-block;
  margin-left: 7px;
  width: 7px; height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
}
.sub-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 268px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  list-style: none;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .18s ease;
}
.has-sub:hover .sub-menu,
.has-sub:focus-within .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 9px;
  color: var(--ink);
  font-weight: 600;
  font-size: 14.5px;
}
.sub-menu a:hover { background: var(--green-soft); color: var(--green); text-decoration: none; }
.sub-menu a small { display: block; font-weight: 500; color: var(--muted); font-size: 12.5px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid var(--accent);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all .18s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); text-decoration: none; transform: translateY(-1px); }
.btn.ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.75); }
.btn.ghost:hover { background: rgba(255,255,255,.14); }
.btn.outline { background: transparent; color: var(--accent); }
.btn.outline:hover { background: var(--accent-soft); transform: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  margin: 5.5px 0;
  transition: transform .2s ease, opacity .2s ease;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.hero picture, .hero > img.hero-bg {
  position: absolute; inset: 0; z-index: -2;
}
.hero img.hero-bg {
  width: 100%; height: 100%; object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(38,56,47,.28) 0%, rgba(38,56,47,.10) 40%, rgba(27,42,34,.82) 100%);
}
.hero-inner {
  width: 100%;
  padding-top: 96px;
  padding-bottom: 72px;
}
.hero .eyebrow { color: #e7d4c8; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  max-width: 15ch;
  margin: 10px 0 16px;
}
.hero p.lead {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  max-width: 52ch;
  color: var(--on-dark-muted);
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* facts strip */
.facts {
  background: var(--green-dark);
  color: #fff;
}
.facts .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding-top: 26px;
  padding-bottom: 26px;
}
.fact { display: flex; gap: 14px; align-items: center; }
.fact svg { flex-shrink: 0; opacity: .9; }
.fact b { display: block; font-size: 17px; line-height: 1.3; }
.fact span { font-size: 13.5px; color: var(--on-dark-muted); }

.season-banner { background: var(--accent-soft); border-bottom: 1px solid #e9d8ce; }
.season-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.season-banner h2 { font-size: clamp(1.45rem, 2.5vw, 2rem); margin: 0 0 5px; }
.season-banner p { color: var(--muted); }
.season-banner .eyebrow { margin-bottom: 4px; }

/* ---------- sections ---------- */

section.block { padding: 84px 0; }
section.block.tint { background: var(--sand); }
section.block.green { background: var(--green-dark); color: var(--on-dark-muted); }
section.block.green h2 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.block h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 14px; }
.block .intro { max-width: 62ch; color: var(--muted); font-size: 17.5px; }
.section-head { margin-bottom: 42px; }
.section-head.center { text-align: center; }
.section-head.center .intro { margin: 0 auto; }

/* split feature */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.flip > .split-media { order: 2; }
.split-media { position: relative; }
.split-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}
.split-media .badge {
  position: absolute;
  bottom: 18px; left: 18px;
  background: rgba(255,255,255,.94);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 13.5px;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.split-body h2 { margin-bottom: 16px; }
.split-body p { color: var(--muted); margin-bottom: 14px; }
.split-body .btn { margin-top: 12px; }

/* checklist */
.checklist { list-style: none; margin: 18px 0 6px; }
.checklist li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 9px;
  color: var(--ink);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent-soft) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%238f451a" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center/11px no-repeat;
}
.block.green .checklist li { color: var(--on-dark-muted); }
.block.green .checklist li::before { background-color: rgba(255,255,255,.14); }

/* cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 26px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-media { overflow: hidden; aspect-ratio: 16 / 11; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 21px; margin-bottom: 8px; }
.card-body p { color: var(--muted); font-size: 15px; flex: 1; }
.card-body .card-link { margin-top: 16px; font-weight: 700; font-size: 15px; }
.card-link::after { content: " →"; }
.card .tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

/* gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px;
}
.gallery a {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery a:hover img { transform: scale(1.06); }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(8, 18, 12, .93);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vmin;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw; max-height: 88vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lightbox button {
  position: absolute;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 0;
  border-radius: 50%;
  width: 46px; height: 46px;
  font-size: 22px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .15s ease;
}
.lightbox button:hover { background: rgba(255,255,255,.28); }
.lightbox .lb-close { top: 20px; right: 20px; }
.lightbox .lb-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 16px; top: 50%; transform: translateY(-50%); }

/* info notice */
.notice {
  background: var(--green-soft);
  border: 1px solid #cdd4d0;
  border-radius: 14px;
  padding: 18px 22px;
  color: var(--green-dark);
  font-size: 15.5px;
  margin: 26px 0;
}
.notice b { font-weight: 800; }

/* tables (rates, hours) */
.table-wrap {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: #fff;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  scrollbar-width: thin;
  scrollbar-color: var(--green-muted) var(--green-soft);
}
.table-wrap::-webkit-scrollbar { height: 8px; }
.table-wrap::-webkit-scrollbar-track { background: var(--green-soft); }
.table-wrap::-webkit-scrollbar-thumb { background: var(--green-muted); border-radius: 999px; }
table.rates { width: 100%; border-collapse: collapse; font-size: 15.5px; min-width: 480px; }
table.rates th, table.rates td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
table.rates thead th {
  background: var(--green-dark);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
}
table.rates tbody tr:last-child td { border-bottom: 0; }
table.rates tbody tr:nth-child(even) { background: #f7f5f0; }

/* tarife & oferte */
.offer-jump { background: #fff; border-bottom: 1px solid var(--line); }
.offer-jump .container { display: flex; gap: 10px; flex-wrap: wrap; padding-top: 16px; padding-bottom: 16px; }
.offer-jump a {
  display: inline-flex;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-dark);
  font-size: 13.5px;
  font-weight: 700;
  background: var(--bg);
}
.offer-jump a:hover { color: var(--accent); border-color: #d4b5a4; text-decoration: none; }
#tarife-iarna, #craciun, #revelion, #conditii, .offer-panel { scroll-margin-top: 130px; }
.offer-panels, .holiday-details { display: grid; gap: 16px; min-width: 0; }
.offer-panel { min-width: 0; background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.offer-panel[open] { box-shadow: var(--shadow-sm); }
.offer-panel summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 34px;
  align-items: center;
  gap: 24px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.offer-panel summary::-webkit-details-marker { display: none; }
.offer-panel summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 22px;
  line-height: 1;
}
.offer-panel[open] summary::after { content: "−"; }
.offer-panel summary:focus-visible { outline: 3px solid rgba(143, 69, 26, .25); outline-offset: -3px; }
.offer-summary-title { display: grid; gap: 3px; }
.offer-summary-title small {
  color: var(--accent);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.offer-summary-title strong { color: var(--ink); font-family: var(--font-display); font-size: 22px; line-height: 1.2; }
.summary-price { color: var(--green); font-weight: 800; text-align: right; white-space: nowrap; }
.offer-panel-body { min-width: 0; border-top: 1px solid var(--line); padding: 26px; }
.period-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 10px; margin-bottom: 20px; }
.period-card { display: flex; gap: 11px; align-items: flex-start; padding: 14px; border-radius: 12px; background: var(--green-soft); }
.period-card > span {
  flex: 0 0 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-dark);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
}
.period-card div { display: grid; gap: 3px; }
.period-card strong { color: var(--green-dark); font-size: 13px; line-height: 1.35; }
.period-card small { color: var(--muted); font-size: 11.5px; line-height: 1.4; }
.offer-table { margin-bottom: 22px; overscroll-behavior-inline: contain; }
.offer-table:focus-visible { outline: 3px solid rgba(143, 69, 26, .28); outline-offset: 3px; }
.table-scroll-hint { display: none; }
.offer-table table { min-width: 860px; font-size: 14px; }
.offer-table.hotel-rate-table table { min-width: 1380px; }
.offer-table caption {
  padding: 13px 16px;
  color: var(--accent);
  font-weight: 800;
  text-align: left;
  background: var(--accent-soft);
  border-bottom: 1px solid var(--line);
}
.offer-table th, .offer-table td { text-align: center; vertical-align: middle; }
.offer-table thead th { min-width: 112px; line-height: 1.3; }
.offer-table thead th:first-child { position: sticky; left: 0; z-index: 3; min-width: 240px; text-align: left; }
.offer-table thead small { display: block; margin-top: 4px; color: var(--on-dark-muted); font-size: 10.5px; letter-spacing: 0; }
.offer-table tbody th {
  position: sticky;
  left: 0;
  z-index: 1;
  min-width: 240px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  text-align: left;
  line-height: 1.35;
}
.offer-table tbody tr:nth-child(even) th { background: #f7f5f0; }
.offer-table tbody tr:last-child th { border-bottom: 0; }
.offer-table tbody td { white-space: nowrap; color: var(--green-dark); font-weight: 800; }
.offer-notes, .holiday-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 22px 0; }
.offer-notes h4, .holiday-info-grid h4 { font-family: var(--font-body); font-size: 14px; margin-bottom: 10px; color: var(--ink); }
.checklist.compact { margin: 0; }
.checklist.compact li { font-size: 14px; margin-bottom: 7px; }
.plain-list { margin: 0; padding-left: 20px; color: var(--muted); font-size: 14px; }
.plain-list li { margin-bottom: 6px; }
.pdf-link { display: inline-flex; align-items: center; gap: 9px; color: var(--accent); font-size: 14px; font-weight: 800; }
.pdf-link > span { padding: 3px 6px; border-radius: 5px; background: var(--accent-soft); font-size: 10px; letter-spacing: .06em; }
.holiday-feature { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 28px; box-shadow: var(--shadow-sm); }
.holiday-heading { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 22px; }
.holiday-heading h3 { font-size: 25px; margin-top: 8px; }
.holiday-heading > strong { color: var(--green); font-size: 18px; text-align: right; }
.offer-badge { display: inline-flex; padding: 5px 10px; border-radius: 999px; background: var(--green-soft); color: var(--green); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.price-list { list-style: none; margin: 0; }
.price-list li { display: flex; justify-content: space-between; gap: 14px; padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: 14px; }
.price-list li:last-child { border-bottom: 0; }
.price-list b { color: var(--green); text-align: right; }
.holiday-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; margin-bottom: 28px; }
.holiday-card { display: block; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 15px; color: var(--ink); box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease; }
.holiday-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); text-decoration: none; }
.holiday-card small { color: var(--accent); font-weight: 800; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.holiday-card h3 { font-size: 19px; margin: 8px 0 16px; }
.holiday-card strong { color: var(--green); font-size: 14px; }
.single-price { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px; margin-bottom: 20px; background: var(--green-soft); border-radius: 14px; }
.single-price span { color: var(--muted); }
.single-price strong { color: var(--green); font-size: 20px; }
.conditions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.condition-card { padding: 26px; border-radius: 16px; background: #fff; color: var(--ink); }
.condition-card h3 { margin-bottom: 14px; font-size: 21px; }
.condition-card ul { margin-left: 20px; color: #435149; }
.condition-card li { margin-bottom: 8px; }
.block.green .section-head .intro { color: var(--on-dark-muted); }
.booking-reminder { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 26px; padding: 22px 24px; border-radius: 16px; background: rgba(255,255,255,.1); }
.booking-reminder div { display: grid; gap: 3px; }
.booking-reminder strong { color: #fff; font-size: 18px; }
.booking-reminder span { color: var(--on-dark-muted); font-size: 14px; }
.weather-note { margin-top: 20px; color: var(--on-dark-muted); font-size: 13.5px; }
.aside-card .rate-cta { background: var(--green); border-color: var(--green); }
.aside-card .rate-cta:hover { background: var(--green-dark); border-color: var(--green-dark); }

/* page hero (interior pages) */
.page-hero {
  position: relative;
  min-height: 44vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.page-hero img.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.page-hero .hero-media { position: absolute; inset: 0; z-index: -2; }
.page-hero .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(38,56,47,.36) 0%, rgba(27,42,34,.84) 100%);
}
.page-hero .hero-inner {
  padding-top: 80px;
  padding-bottom: 44px;
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.2rem); margin-top: 8px; }
.page-hero p { color: var(--on-dark-muted); max-width: 60ch; margin-top: 10px; font-size: 17.5px; }

.breadcrumbs { font-size: 13.5px; color: var(--on-dark-muted); }
.breadcrumbs a { color: var(--on-dark-muted); }

/* two-col content + aside */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.aside-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 26px;
  position: sticky;
  top: 96px;
}
.aside-card h3 { font-size: 19px; margin-bottom: 12px; }
.aside-card .btn { width: 100%; justify-content: center; margin-top: 14px; }
.aside-card ul { list-style: none; }
.aside-card li { padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: 14.5px; display: flex; justify-content: space-between; gap: 12px; }
.aside-card li:last-child { border-bottom: 0; }
.aside-card li b { text-align: right; }

.prose h2 { font-size: 1.7rem; margin: 34px 0 12px; }
.prose h3 { font-size: 1.25rem; margin: 26px 0 10px; }
.prose p { color: #435149; margin-bottom: 14px; }
.prose ul { margin: 0 0 16px 22px; color: #435149; }
.prose li { margin-bottom: 6px; }

/* forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 700; font-size: 13.5px; margin-bottom: 6px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  background: #fff;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(143, 69, 26, .14);
}
.field input.invalid, .field select.invalid, .field textarea.invalid {
  border-color: #b42318;
}
.field input.invalid:focus, .field select.invalid:focus, .field textarea.invalid:focus {
  box-shadow: 0 0 0 3px rgba(180, 35, 24, .14);
}
.field textarea { min-height: 110px; resize: vertical; }
.field-error { margin: 6px 0 0; color: #b42318; font-size: 12.5px; line-height: 1.4; }
.form-note { font-size: 13.5px; color: var(--muted); margin-top: 12px; }
.form-status {
  margin: 14px 0 0;
  padding: 11px 13px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.45;
}
.form-status.pending { color: #65430b; background: #fff8e8; }
.form-status.success { color: #176b3a; background: #ecfdf3; }
.form-status.error { color: #9f2017; background: #fff0ee; }
.booking-card button[type="submit"]:disabled { cursor: wait; opacity: .68; }

/* booking band */
.booking-band {
  background: linear-gradient(135deg, var(--green-dark), var(--green-muted));
  color: #fff;
  border-radius: 24px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  box-shadow: var(--shadow);
}
.booking-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.booking-band p { color: var(--on-dark-muted); margin-top: 10px; }
.booking-band .contact-lines { margin-top: 22px; display: grid; gap: 10px; }
.booking-band .contact-lines a { color: #fff; font-weight: 700; font-size: 18px; }
.booking-band .contact-lines span { color: #c2cdc7; font-size: 13.5px; display: block; }
.booking-card {
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  padding: 30px;
}
.booking-card h3 { margin-bottom: 16px; }

/* footer */
footer.site-footer {
  background: var(--green-dark);
  color: var(--on-dark-muted);
  padding: 60px 0 0;
  margin-top: 84px;
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
}
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: 14px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: var(--on-dark-muted); }
.site-footer a:hover { color: #fff; }
.site-footer .brand-blurb img {
  width: 190px;
  height: auto;
  margin-bottom: 18px;
  padding: 8px 12px;
  background: var(--bg);
  border-radius: 10px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #a9b6af;
}
.footer-bottom a { color: var(--on-dark-muted); }

/* reveal animations */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 1020px) {
  .split, .content-grid, .booking-band { grid-template-columns: 1fr; }
  .split.flip > .split-media { order: 0; }
  .facts .container { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .aside-card { position: static; }
  .season-banner .container { align-items: flex-start; }
}

@media (max-width: 860px) {
  .site-header {
    /* backdrop-filter creates a containing block that clips fixed children
       in mobile Safari/Chrome; the menu must stay relative to the viewport. */
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .nav-row { min-height: 96px; }
  .brand img { width: 145px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    background: var(--bg);
    z-index: 70;
    flex-direction: column;
    align-items: stretch;
    padding: calc(78px + env(safe-area-inset-top)) max(24px, env(safe-area-inset-right)) calc(30px + env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
    transform: translateX(100%);
    transition: transform .28s ease;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { width: 100%; flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav a.nav-link { font-size: 18px; padding: 13px 10px; }
  .has-sub > a.nav-link::after { display: none; }
  .sub-menu {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0;
    background: transparent;
    padding: 0 0 6px 16px;
    min-width: 0;
  }
  .main-nav .btn { margin-top: 18px; justify-content: center; }
  .nav-close {
    position: absolute;
    top: calc(16px + env(safe-area-inset-top));
    right: max(20px, env(safe-area-inset-right));
    background: none; border: 0;
    font-size: 30px;
    cursor: pointer;
    color: var(--ink);
    line-height: 1;
    padding: 10px;
  }
  .hero { min-height: 72vh; }
  section.block { padding: 60px 0; }
  .booking-band { padding: 32px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .offer-panel summary { grid-template-columns: 1fr 30px; gap: 12px; padding: 18px; }
  .summary-price { grid-column: 1; grid-row: 2; text-align: left; white-space: normal; }
  .offer-panel summary::after { grid-column: 2; grid-row: 1 / span 2; }
  .offer-panel-body, .holiday-feature { padding: 18px; }
  .offer-table thead th:first-child,
  .offer-table tbody th {
    position: static;
    left: auto;
    z-index: auto;
    width: 190px;
    min-width: 190px;
  }
  .offer-notes, .holiday-info-grid, .conditions-grid { grid-template-columns: 1fr; }
  .holiday-heading, .single-price, .booking-reminder, .season-banner .container { align-items: flex-start; flex-direction: column; }
  .holiday-heading > strong { text-align: left; }
  .single-price strong { font-size: 18px; }
}

@media (min-width: 861px) { .nav-close { display: none; } }

@media (max-width: 560px) {
  .container { padding-right: 20px; padding-left: 20px; }
  .topbar .container { gap: 8px; padding-top: 8px; padding-bottom: 8px; }
  .topbar .container > span { width: 100%; }
  .hero-inner { padding-top: 72px; padding-bottom: 48px; }
  .page-hero .hero-inner { padding-top: 64px; padding-bottom: 36px; }
  .facts .container { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .offer-jump .container { flex-wrap: nowrap; overflow-x: auto; }
  .offer-jump a { white-space: nowrap; }
  .period-cards, .holiday-cards { grid-template-columns: 1fr; }
  .table-scroll-hint {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 8px;
    color: var(--green-muted);
    font-size: 12.5px;
    font-weight: 700;
  }
  .offer-table {
    overflow-x: scroll;
    overscroll-behavior-x: contain;
  }
  .offer-table thead th:first-child,
  .offer-table tbody th {
    width: 160px;
    min-width: 160px;
  }
}
