/* ==========================================================================
   Viesnīca Vilmāja — styles.css
   Warm bordo & gold design system. Vanilla CSS, no frameworks.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --color-primary: #8F1234;         /* buttons, links, accents / logo bordo */
  --color-primary-dark: #5A1226;    /* headings, footer */
  --color-primary-bright: #B31549;  /* hover */
  --color-gold: #FFC326;            /* CTA gradient top, highlights */
  --color-gold-deep: #F28A16;       /* CTA gradient bottom */
  --color-gold-muted: #B78029;      /* section kickers, uppercase */
  --color-bg: #FAF6F0;              /* page bg, warm cream */
  --color-bg-alt: #F3E9DC;          /* alt section bg, chips */
  --color-surface: #FFFFFF;         /* cards, form */
  --color-text: #3A2B2E;            /* body */
  --color-text-soft: #5B4A4E;       /* paragraphs */
  --color-text-muted: #8B7378;      /* labels */
  --color-border: #E4D5C4;          /* input borders, dividers */
  --color-footer-text: #E8CBD3;     /* text on dark bordo */

  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Nunito Sans', 'Segoe UI', sans-serif;

  /* Bordo-tinted shadows only — never black */
  --shadow-sm: 0 2px 8px rgba(90, 18, 38, .06);
  --shadow-md: 0 6px 20px rgba(90, 18, 38, .10);
  --shadow-lg: 0 14px 40px rgba(90, 18, 38, .16);

  --radius-card: 16px;
  --radius-img: 18px;
  --radius-pill: 999px;
  --header-height: 92px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary-dark);
  line-height: 1.2;
  margin: 0 0 18px;
}

h1 { font-size: 52px; }
h2 { font-size: 32px; }
h3 { font-size: 22px; }

p { margin: 0 0 16px; color: var(--color-text-soft); }

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--color-primary-bright); }

ul { margin: 0; padding: 0; list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Sections offset for sticky header when anchor-scrolling */
section[id] { scroll-margin-top: calc(var(--header-height) + 16px); }

/* ---------- Layout helpers ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: 84px 0; }
.section--alt { background: var(--color-bg-alt); }

.section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-head__desc { font-size: 16.5px; }

/* Kicker above headings */
.kicker {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-gold-muted);
  margin: 0 0 12px;
}

/* Warm image grading */
.photo { filter: saturate(.9) contrast(1.07) brightness(1.04) sepia(.14); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 30px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .3px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

/* Primary — the ONLY place the gold gradient appears */
.btn--gold {
  background: linear-gradient(180deg, var(--color-gold), var(--color-gold-deep));
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-md);
}
.btn--gold:hover {
  color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Secondary — bordo outline pill */
.btn--outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}
.btn--outline:hover {
  border-color: var(--color-primary-bright);
  color: var(--color-primary-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Dark — solid bordo */
.btn--dark {
  background: var(--color-primary);
  color: #fff;
}
.btn--dark:hover {
  background: var(--color-primary-bright);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---------- Chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

.chip {
  background: var(--color-bg-alt);
  border-radius: var(--radius-pill);
  padding: 8px 18px 8px 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
}
.chip::before {
  content: "\2713"; /* ✓ */
  color: var(--color-primary);
  font-weight: 800;
  margin-right: 8px;
}

/* ---------- Inline line icons ---------- */
.top-bar svg,
.find__points svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ==========================================================================
   1. Top bar
   ========================================================================== */
.top-bar {
  background: var(--color-primary-dark);
  color: var(--color-footer-text);
  font-size: 13.5px;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.top-bar__contacts { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }

.top-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-footer-text);
  font-weight: 600;
}
.top-bar__item svg { color: var(--color-gold); }
a.top-bar__item:hover { color: #fff; }

.lang-switch { display: flex; align-items: center; gap: 8px; }
.lang-switch__sep { color: rgba(232, 203, 211, .5); }

.lang-switch__btn {
  color: var(--color-footer-text);
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 6px 4px;
  min-height: 32px;
  transition: color .2s ease;
}
.lang-switch__btn:hover { color: #fff; }
.lang-switch__btn.is-active { color: var(--color-gold); }

/* ==========================================================================
   2. Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-md); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-height);
}

.site-header__logo img { height: 74px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 30px; }

.site-nav__list { display: flex; align-items: center; gap: 26px; }

.site-nav__link {
  display: inline-block;
  padding: 8px 2px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--color-text);
  position: relative;
}
.site-nav__link::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-gold-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.site-nav__link:hover { color: var(--color-primary-bright); }
.site-nav__link.is-active { color: var(--color-primary); }
.site-nav__link.is-active::after { transform: scaleX(1); }

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 10px;
}
.hamburger span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--color-primary);
  transition: transform .25s ease, opacity .2s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ==========================================================================
   3. Hero
   ========================================================================== */
.hero {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
  padding: 64px 0 150px; /* extra bottom room for the overlapping reservation card */
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.hero__text h1 { margin-bottom: 20px; }

.hero__intro { font-size: 17px; line-height: 1.7; max-width: 520px; }

.hero__facts {
  display: flex;
  gap: 40px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.fact { display: flex; flex-direction: column; }

.fact__num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 34px;
  color: var(--color-primary);
  line-height: 1.15;
}

.fact__label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Collage: one large + two small */
.hero__collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 170px;
  gap: 16px;
}

.hero__collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-md);
}

.hero__img-large { grid-column: 1 / -1; }

/* ==========================================================================
   4. Reservation card
   ========================================================================== */
.reservation { position: relative; z-index: 5; }

.reservation__card {
  background: var(--color-surface);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 40px 44px 36px;
  margin-top: -86px; /* overlap hero bottom */
}

.reservation__card h2 { margin-bottom: 26px; }

/* Honeypot — visually removed, still in DOM for bots */
.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 22px;
}

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field--full { grid-column: 1 / -1; }

.form-field label {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  padding: 11px 14px;
  min-height: 44px;
  width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field textarea { resize: vertical; min-height: 84px; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(143, 18, 52, .10);
}

.form-field input.is-invalid,
.form-field select.is-invalid,
.form-field textarea.is-invalid {
  border-color: var(--color-primary-bright);
  box-shadow: 0 0 0 3px rgba(179, 21, 73, .12);
}

.form-error {
  margin: 16px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary-bright);
}

.reservation__actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.reservation__actions .btn--gold { padding-left: 46px; padding-right: 46px; }

.reservation__note {
  margin: 0;
  font-size: 13.5px;
  color: var(--color-text-muted);
  max-width: 520px;
}

/* Success state */
.reservation__success[hidden] { display: none; }

.reservation__success {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 8px 8px;
}
.reservation__success svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.reservation__success p {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary-dark);
}

/* ---------- Custom date picker (dd.mm.gggg, Monday-first) ---------- */
.form-field--date { position: relative; }
.form-field--date input[readonly] { cursor: pointer; }

.datepicker {
  position: absolute;
  z-index: 60;
  top: calc(100% + 8px);
  left: 0;
  width: 300px;
  max-width: calc(100vw - 40px);
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 14px;
  user-select: none;
}
.datepicker[hidden] { display: none; }

.dp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.dp-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-primary-dark);
}
.dp-nav {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-primary);
  transition: background .2s ease, color .2s ease;
}
.dp-nav:hover:not(:disabled) { background: var(--color-bg-alt); }
.dp-nav:disabled { opacity: .3; cursor: default; }
.dp-nav svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dp-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }

.dp-dow {
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--color-text-muted);
  padding: 4px 0;
}

.dp-day {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-text);
  transition: background .15s ease, color .15s ease;
}
.dp-day:hover:not(:disabled):not(.is-empty) { background: var(--color-bg-alt); }
.dp-day:disabled { color: var(--color-border); cursor: default; }
.dp-day.is-empty { visibility: hidden; }
.dp-day.is-today { box-shadow: inset 0 0 0 1.5px var(--color-gold-deep); }
.dp-day.is-selected,
.dp-day.is-selected:hover {
  background: linear-gradient(180deg, var(--color-gold), var(--color-gold-deep));
  color: var(--color-primary-dark);
}

/* ==========================================================================
   5. Par mums
   ========================================================================== */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 180px 180px;
  gap: 16px;
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.about__img:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.about__img--tall { grid-row: 1 / -1; }

/* ==========================================================================
   6. Ērtības
   ========================================================================== */
.amenities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.amenity-card {
  background: var(--color-surface);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: transform .22s ease, box-shadow .22s ease;
}
.amenity-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.amenity-card svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.amenity-card span {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
}

/* ==========================================================================
   7. Numuri — gallery
   ========================================================================== */
.rooms__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 16px;
}

.gallery-item {
  padding: 0;
  border-radius: var(--radius-img);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.gallery-item:focus-visible { outline: 3px solid var(--color-gold-deep); outline-offset: 3px; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.rooms__more { text-align: center; margin-top: 36px; }

/* ==========================================================================
   8. Cenas
   ========================================================================== */
.prices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  padding: 38px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .22s ease, box-shadow .22s ease;
}
.price-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.price-card h3 { margin-bottom: 10px; }

.price-card__price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 46px;
  color: var(--color-primary);
  margin: 0 0 24px;
  line-height: 1.1;
}
.price-card__price span {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-muted);
  margin-left: 4px;
}

.price-card__btn { margin-top: auto; min-width: 170px; }

/* Featured (Divvietīgs) — bordo card, gold price */
.price-card--featured {
  background: var(--color-primary-dark);
  box-shadow: var(--shadow-lg);
  transform: scale(1.04);
}
.price-card--featured:hover { transform: scale(1.04) translateY(-2px); }
.price-card--featured h3 { color: #fff; }
.price-card--featured .price-card__price { color: var(--color-gold); }
.price-card--featured .price-card__price span { color: var(--color-footer-text); }

/* Extra price rows */
.prices__extras {
  max-width: 720px;
  margin: 44px auto 0;
  background: var(--color-surface);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 26px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--color-text-soft);
}
.price-row + .price-row { border-top: 1px solid var(--color-border); }

.price-row__price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-primary);
  white-space: nowrap;
}

.prices__note {
  text-align: center;
  font-size: 13.5px;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 28px auto 0;
}

/* ==========================================================================
   9. Kafejnīca
   ========================================================================== */
.cafe__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 22px; /* room for the offset middle image */
}

.cafe__gallery .gallery-item { height: 260px; }

.cafe__item--offset { transform: translateY(22px); }
.cafe__item--offset:hover { transform: translateY(20px); }

/* ==========================================================================
   10. Kā atrast
   ========================================================================== */
.find__inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.find__points { margin: 6px 0 30px; display: grid; gap: 14px; }

.find__points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}
.find__points svg { width: 22px; height: 22px; color: var(--color-primary); }

.find__map iframe {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-md);
  display: block;
}

/* ==========================================================================
   11. Footer
   ========================================================================== */
.site-footer {
  background: var(--color-primary-dark);
  color: var(--color-footer-text);
  padding: 56px 0 40px;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}

.site-footer__brand p { color: var(--color-footer-text); margin: 0 0 4px; font-size: 14.5px; }

.site-footer__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 24px;
  color: #fff !important;
}

.site-footer__stars { color: var(--color-gold) !important; letter-spacing: 4px; }

.site-footer a { color: var(--color-footer-text); font-weight: 700; }
.site-footer a:hover { color: #fff; }

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  font-size: 14.5px;
}

.site-footer__copy {
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(232, 203, 211, .25);
  width: 100%;
  font-size: 13px;
  color: var(--color-footer-text);
}

/* ==========================================================================
   Lightbox
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(58, 20, 32, .92); /* deep bordo veil */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 84px;
}
.lightbox[hidden] { display: none; }

.lightbox__figure {
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  text-align: center;
}

.lightbox__figure img {
  max-width: 100%;
  max-height: calc(100vh - 160px);
  margin: 0 auto;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-lg);
}

.lightbox__counter {
  color: var(--color-footer-text);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 14px;
}

.lightbox__close,
.lightbox__arrow {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(250, 246, 240, .12);
  transition: background .2s ease;
}
.lightbox__close:hover,
.lightbox__arrow:hover { background: rgba(250, 246, 240, .25); }

.lightbox__close { top: 22px; right: 26px; }
.lightbox__arrow--prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox__arrow--next { right: 22px; top: 50%; transform: translateY(-50%); }

.lightbox__close svg,
.lightbox__arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Lock page scroll while lightbox or mobile menu is open */
body.no-scroll { overflow: hidden; }

/* ==========================================================================
   Responsive — 768px to 1199px (tablet)
   ========================================================================== */
@media (max-width: 1199px) {
  .container { padding: 0 32px; }

  h1 { font-size: 42px; }
  h2 { font-size: 28px; }

  /* Hero: single column, images below text */
  .hero { padding-bottom: 140px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__intro { max-width: 640px; }

  /* Amenities: 2 × 6 */
  .amenities__grid { grid-template-columns: repeat(2, 1fr); }

  /* Prices: 1 column */
  .prices__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; gap: 22px; }
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-2px); }

  /* Form: 2 fields per row */
  .form-grid { grid-template-columns: repeat(2, 1fr); }

  .about__inner,
  .find__inner { grid-template-columns: 1fr; gap: 40px; }

  .rooms__gallery { grid-auto-rows: 170px; }
}

/* ==========================================================================
   Responsive — below 768px (mobile)
   ========================================================================== */
@media (max-width: 767px) {
  .container { padding: 0 20px; }

  h1 { font-size: 34px; }
  h2 { font-size: 26px; }

  .section { padding: 60px 0; }

  .top-bar__inner { flex-wrap: wrap; justify-content: center; row-gap: 2px; }
  .top-bar__contacts { justify-content: center; gap: 14px; }

  :root { --header-height: 76px; }
  .site-header__logo img { height: 58px; }

  /* Hamburger menu */
  .hamburger { display: flex; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: var(--color-bg);
    padding: 12px 20px 24px;
    box-shadow: var(--shadow-lg);
    display: none;
  }
  .site-nav.is-open { display: flex; }

  .site-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav__link {
    display: block;
    padding: 12px 6px;
    min-height: 44px;
    border-bottom: 1px solid var(--color-border);
  }
  .site-nav__link::after { display: none; }
  .site-nav__cta { margin-top: 12px; width: 100%; }

  /* Hero */
  .hero { padding: 44px 0 130px; }
  .hero__facts { gap: 22px 30px; }
  .hero__collage { grid-template-rows: 190px 130px; gap: 12px; }

  /* Reservation */
  .reservation__card { padding: 28px 22px; margin-top: -72px; }
  .form-grid { grid-template-columns: 1fr; }
  .reservation__actions { flex-direction: column; align-items: stretch; text-align: center; }
  .reservation__actions .btn--gold { width: 100%; }

  /* About */
  .about__gallery { grid-template-rows: 150px 150px; gap: 12px; }

  /* Amenities: still 2 columns, tighter */
  .amenities__grid { gap: 12px; }
  .amenity-card { padding: 18px 16px; gap: 10px; }
  .amenity-card span { font-size: 13.5px; }

  /* Rooms gallery: 2 columns */
  .rooms__gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; gap: 12px; }
  .gallery-item--large { grid-column: 1 / -1; grid-row: span 2; }

  /* Cafe: stacked, keep gentle offset on middle image */
  .cafe__gallery { grid-template-columns: 1fr; gap: 16px; }
  .cafe__gallery .gallery-item { height: 220px; }

  .find__map iframe { height: 320px; }

  .lightbox { padding: 72px 16px; }
  .lightbox__arrow--prev { left: 10px; top: auto; bottom: 14px; transform: none; }
  .lightbox__arrow--next { right: 10px; top: auto; bottom: 14px; transform: none; }
}
