/* ============================================================
   BRON HEULOG — Main Stylesheet
   ============================================================ */

/* === RESET & BASE ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #2c2c2c;
  background: #fff;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
p + p { margin-top: 0.8em; }

/* === COLOUR TOKENS ======================================== */
/* Palette drawn from the cottage's nautical interior:
   navy blue sofas, mustard yellow cushions, teal accents  */
:root {
  --green-dark:   #1a2e4a;   /* deep navy  */
  --green-mid:    #1e3d5c;   /* mid navy   */
  --green-light:  #2e5f82;   /* coastal blue */
  --stone:        #d4a020;   /* mustard yellow */
  --stone-light:  #f0d080;   /* pale mustard */
  --cream:        #f5f7fa;   /* cool off-white */
  --white:        #ffffff;
  --text:         #1e2a38;
  --text-mid:     #4a5568;
  --border:       #c8d5e3;
  --nav-h:        70px;
  --max-w:        1200px;
}

/* === SKIP LINK ============================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--green-dark);
  color: #fff;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
  border-bottom: 2px solid var(--stone);
}
.skip-link:focus { top: 0; }


/* === UTILITIES ============================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.section         { padding: 80px 0; }
.section--alt    { background: var(--cream); }
.section--dark   { background: var(--green-dark); color: #fff; }

.section__header         { text-align: center; margin-bottom: 56px; }
.section__header h2      { font-family: Georgia, serif; font-size: 2.2rem; font-weight: normal; color: var(--green-dark); margin-bottom: 16px; line-height: 1.25; }
.section__header p       { font-size: 1.05rem; color: var(--text-mid); max-width: 620px; margin: 0 auto; line-height: 1.8; }
.section--dark .section__header h2 { color: #fff; }
.section--dark .section__header p  { color: rgba(255,255,255,0.75); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.22s ease;
  border: 2px solid transparent;
  border-radius: 2px;
}

.btn--primary  { background: var(--green-dark); color: #fff; }
.btn--primary:hover { background: var(--green-mid); }

.btn--stone    { background: var(--stone); color: var(--green-dark); border-color: var(--stone); }
.btn--stone:hover { background: #d4bc9a; border-color: #d4bc9a; }

.btn--outline  { background: transparent; color: var(--green-dark); border-color: var(--green-dark); }
.btn--outline:hover { background: var(--green-dark); color: #fff; }

.btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn--outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }


/* === HEADER / NAVIGATION ================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: var(--green-dark);
  box-shadow: none;
  transition: box-shadow 0.3s;
}

.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.25); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav__logo {
  font-family: Georgia, serif;
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.nav__logo small {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-family: sans-serif;
  margin-top: -2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a.active { color: #fff; }

.nav__links .btn--nav {
  background: var(--stone);
  color: var(--green-dark);
  padding: 9px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: none;
  border-radius: 2px;
}
.nav__links .btn--nav:hover { background: #d4bc9a; color: var(--green-dark); }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.25s;
}


/* === HERO ================================================= */
.hero {
  margin-top: var(--nav-h);
  position: relative;
  height: calc(100vh - var(--nav-h));
  min-height: 520px;
  max-height: 820px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero__bg.loaded { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.45) 60%,
    rgba(0,0,0,0.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 820px;
}

.hero__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 600;
  margin-bottom: 18px;
  display: block;
}

.hero__content h1 {
  font-family: Georgia, serif;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: normal;
  line-height: 1.25;
  margin-bottom: 36px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

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

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.9; transform: scaleY(0.5); }
}


/* === FEATURES STRIP ====================================== */
.features-strip {
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}

.features-strip__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.features-strip__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 28px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--green-dark);
  border-right: 1px solid var(--border);
}
.features-strip__list li:last-child { border-right: none; }

.strip-icon {
  width: 22px;
  height: 22px;
  stroke: var(--green-dark);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}


/* === INTRO ================================================ */
.intro-text {
  text-align: center;
  padding: 80px 0;
}

.intro-text h2 {
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: normal;
  color: var(--green-dark);
  margin-bottom: 20px;
}

.intro-text p {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.9;
}

.intro-text p + p { margin-top: 1em; }


/* === FEATURE SECTIONS ===================================== */
.feature-section { padding: 0; }

.feature-section .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}

.feature-section__image {
  position: relative;
  overflow: hidden;
}

.feature-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.feature-section__image:hover img { transform: scale(1.04); }

.feature-section__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 72px;
  background: var(--cream);
}

.feature-section--dark .feature-section__text { background: var(--green-dark); }

.feature-section__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 700;
  margin-bottom: 16px;
}

.feature-section__text h2 {
  font-family: Georgia, serif;
  font-size: 1.9rem;
  font-weight: normal;
  color: var(--green-dark);
  margin-bottom: 20px;
  line-height: 1.25;
}

.feature-section--dark .feature-section__text h2 { color: #fff; }

.feature-section__text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 28px;
}

.feature-section--dark .feature-section__text p { color: rgba(255,255,255,0.78); }

.text-link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-dark);
  border-bottom: 2px solid var(--stone);
  padding-bottom: 2px;
  display: inline-block;
  transition: border-color 0.2s;
}
.text-link:hover { border-color: var(--green-dark); }
.feature-section--dark .text-link { color: #fff; border-color: var(--stone); }
.feature-section--dark .text-link:hover { border-color: #fff; }


/* === GALLERY ============================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 6px;
}

.gallery-grid__item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-grid__item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-grid__item:hover img { transform: scale(1.06); }

.gallery-grid__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30,58,47,0);
  transition: background 0.3s;
}
.gallery-grid__item:hover::after { background: rgba(30,58,47,0.12); }

.gallery-cta {
  text-align: center;
  margin-top: 32px;
}


/* === REVIEWS ============================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border);
}

.review-card__stars {
  color: var(--stone);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.review-card__text {
  font-style: italic;
  color: #555;
  line-height: 1.85;
  margin-bottom: 22px;
  font-size: 0.97rem;
}

.review-card__author { font-weight: 700; color: var(--green-dark); font-size: 0.88rem; }
.review-card__date   { font-size: 0.78rem; color: #aaa; margin-top: 4px; }


/* === LOCATION BAND ======================================== */
.location-band {
  background: var(--green-dark);
  padding: 72px 0;
  text-align: center;
  color: #fff;
}

.location-band h2 {
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 12px;
}

.location-band p {
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.distances-mini {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.distance-item { text-align: center; }
.distance-item__value {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.8rem;
  color: var(--stone);
  line-height: 1;
  margin-bottom: 6px;
}
.distance-item__label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.distance-item__link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: opacity 0.2s;
}
.distance-item__link:hover { opacity: 0.75; }


/* === FOOTER =============================================== */
.site-footer {
  background: #111;
  color: rgba(255,255,255,0.65);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand h3 {
  font-family: Georgia, serif;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.8; max-width: 300px; }

.footer-nav h4 {
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-nav li { margin-bottom: 10px; }
.footer-nav a { font-size: 0.88rem; transition: color 0.2s; }
.footer-nav a:hover { color: #fff; }

.footer-contact a {
  display: block;
  color: var(--stone);
  font-size: 0.9rem;
  margin-top: 16px;
  transition: color 0.2s;
}
.footer-contact a:hover { color: #d4bc9a; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a { transition: color 0.2s; }
.footer-bottom a:hover { color: #fff; }


/* === LIGHTBOX ============================================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.93);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox__inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
}

.lightbox__close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox__close:hover { opacity: 1; }

.lightbox__btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  cursor: pointer;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: background 0.2s;
}
.lightbox__btn:hover { background: rgba(255,255,255,0.22); }
.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }

.lightbox__counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}


/* === PAGE HEADER (interior pages) ======================== */
.page-hero {
  margin-top: var(--nav-h);
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.55));
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.page-hero__content h1 {
  font-family: Georgia, serif;
  font-size: 2.6rem;
  font-weight: normal;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.page-hero__content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto;
}

.page-header-plain {
  margin-top: var(--nav-h);
  background: var(--green-dark);
  padding: 64px 0 52px;
  text-align: center;
  color: #fff;
}
.page-header-plain h1 {
  font-family: Georgia, serif;
  font-size: 2.4rem;
  font-weight: normal;
  margin-bottom: 12px;
}
.page-header-plain p {
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
}


/* === PROPERTY PAGE ======================================== */
.room-block { padding: 56px 0; border-bottom: 1px solid var(--border); }
.room-block:last-child { border-bottom: none; }

.room-block h3 {
  font-family: Georgia, serif;
  font-size: 1.65rem;
  font-weight: normal;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.room-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.room-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.room-images .main-img { grid-column: span 2; }
.room-images img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  cursor: pointer;
  transition: opacity 0.25s;
}
.room-images img:hover { opacity: 0.9; }
.room-images .main-img img { aspect-ratio: 16/9; }

.room-detail p { color: var(--text-mid); font-size: 0.98rem; line-height: 1.85; margin-bottom: 16px; }

.feature-list { margin-top: 16px; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f0ebe4;
  font-size: 0.9rem;
  color: #444;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--stone);
  flex-shrink: 0;
}

.amenities-section { padding: 64px 0; background: var(--cream); }
.amenities-section h2 {
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: normal;
  color: var(--green-dark);
  text-align: center;
  margin-bottom: 48px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.amenity-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--border);
}

.amenity-icon {
  width: 22px;
  height: 22px;
  stroke: var(--green-mid);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 1px;
}

.amenity-item span { font-size: 0.9rem; color: #444; line-height: 1.5; }

.practical-section { padding: 64px 0; }
.practical-section h2 {
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: normal;
  color: var(--green-dark);
  text-align: center;
  margin-bottom: 48px;
}

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

.practical-card { padding: 32px; background: var(--cream); border: 1px solid var(--border); }
.practical-card h4 {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-weight: normal;
  color: var(--green-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--stone);
}
.practical-card ul li {
  font-size: 0.9rem;
  color: #555;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.practical-card ul li:last-child { border-bottom: none; }
.practical-card ul li strong { color: #333; font-weight: 600; }


/* === LOCATION PAGE ======================================== */
.map-embed { width: 100%; height: 460px; border: 0; display: block; }

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.distances-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.distances-table th {
  background: var(--green-dark);
  color: #fff;
  padding: 14px 20px;
  text-align: left;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.distances-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  color: #444;
}
.distances-table tr:last-child td { border-bottom: none; }
.distances-table tr:hover td { background: var(--cream); }

.getting-here { padding: 72px 0; }
.getting-here h2 {
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: normal;
  color: var(--green-dark);
  margin-bottom: 40px;
}

.transport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.transport-card { padding: 28px 24px; background: var(--cream); border: 1px solid var(--border); }
.transport-card h4 {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  font-weight: normal;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.transport-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; }


/* === THINGS TO DO PAGE ==================================== */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.activity-card { overflow: hidden; border: 1px solid var(--border); }
.activity-card__img {
  height: 220px;
  overflow: hidden;
}
.activity-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.activity-card:hover .activity-card__img img { transform: scale(1.06); }

.activity-card__body { padding: 24px; }
.activity-card__tag {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 700;
  margin-bottom: 8px;
}
.activity-card h3 {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-weight: normal;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.activity-card p { font-size: 0.9rem; color: #666; line-height: 1.75; }
.activity-card__distance {
  font-size: 0.8rem;
  color: var(--stone);
  font-weight: 600;
  margin-top: 12px;
}

.card-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.card-link:hover {
  color: var(--green-mid);
  border-bottom-color: var(--stone);
}


/* === BOOK PAGE ============================================ */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  padding: 72px 0;
}

.booking-col h2 {
  font-family: Georgia, serif;
  font-size: 1.8rem;
  font-weight: normal;
  color: var(--green-dark);
  margin-bottom: 28px;
}

.booking-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.booking-detail:last-child { border-bottom: none; }
.booking-detail dt { color: var(--text-mid); }
.booking-detail dd { color: #2c2c2c; font-weight: 600; }

.booking-cta {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 36px;
  text-align: center;
  margin-top: 32px;
}
.booking-cta h3 {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: normal;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.booking-cta p { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 24px; line-height: 1.7; }


/* === RESPONSIVE =========================================== */
@media (max-width: 1024px) {
  .feature-section__text { padding: 48px 48px; }
  .footer-main { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: span 3; }
  .footer-nav { grid-column: span 1; }
  .features-strip__list { display: grid; grid-template-columns: repeat(4, 1fr); }
  .features-strip__list li { border-right: none; border-bottom: 1px solid var(--border); }
  .features-strip__list li:nth-child(odd) { border-right: 1px solid var(--border); }
  .features-strip__list li:nth-child(even) { border-right: none; }
  .features-strip__list li:nth-last-child(-n+4) { border-bottom: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav__toggle { display: flex; flex-direction: column; justify-content: center; }

  .nav__links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--green-dark);
    flex-direction: column;
    gap: 0;
    padding: 12px 0 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  }
  .nav__links.open { display: flex; }
  .nav__links a { display: block; padding: 14px 24px; font-size: 0.88rem; }
  .nav__links .btn--nav { margin: 8px 24px 0; display: block; text-align: center; }

  .hero { max-height: 620px; }
  .hero__cta .btn { padding: 12px 24px; font-size: 0.85rem; }

  .features-strip__list { display: grid; grid-template-columns: repeat(2, 1fr); }
  .features-strip__list li { border-right: none; border-bottom: 1px solid var(--border); }
  .features-strip__list li:nth-child(odd) { border-right: 1px solid var(--border); }
  .features-strip__list li:nth-last-child(-n+2) { border-bottom: none; }

  .feature-section .inner { grid-template-columns: 1fr; }
  .feature-section__image { height: 300px; }
  .feature-section__image img { height: 300px; }
  .feature-section__text { padding: 40px 28px; order: 1 !important; }
  .feature-section__image { order: 0 !important; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-grid__item:first-child { grid-column: span 2; }

  .reviews-grid { grid-template-columns: 1fr; }

  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .room-layout { grid-template-columns: 1fr; }
  .practical-grid { grid-template-columns: 1fr; }
  .transport-grid { grid-template-columns: 1fr; }
  .booking-layout { grid-template-columns: 1fr; gap: 48px; }

  .page-hero { height: 280px; }
  .page-hero__content h1 { font-size: 1.8rem; }

  .section { padding: 56px 0; }
  .section__header { margin-bottom: 40px; }
  .section__header h2 { font-size: 1.75rem; }

  .distances-mini { gap: 24px; }

  .activities-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid__item:first-child { grid-column: span 1; }
  .features-strip__list { grid-template-columns: 1fr; }
  .features-strip__list li { border-right: none !important; }
  .features-strip__list li:last-child { border-bottom: none; }
  .amenities-grid { grid-template-columns: 1fr; }
}
