/* =========================================================
   Queensberry Estates — Design System
   ========================================================= */

/* ---- Design tokens ---- */
:root {
  /* Brand neutrals — inherited from the 2018 site's grey/white/charcoal palette */
  --colour-charcoal: #1f3d3d;
  --colour-charcoal-deep: #142828;
  --colour-ink: #333333;
  --colour-grey: #6b6763;
  --colour-grey-mid: #8c8880;
  --colour-grey-line: #e2ded6;
  --colour-cream: #f7f4ee;
  --colour-white: #ffffff;

  /* Accent — muted Bath-stone gold / brass, sampled from the properties' own brass fixtures */
  --colour-gold: #ab8a4c;
  --colour-gold-deep: #8a6c37;
  --colour-gold-pale: #e9dfc7;

  /* Type */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Lato", "HelveticaNeue", "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --container: 1240px;
  --container-narrow: 860px;
  --radius: 2px;
  --nav-h: 128px;
  --nav-h-mobile: 72px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--colour-ink);
  background: var(--colour-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
ul, ol { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--colour-charcoal);
  line-height: 1.2;
  margin: 0 0 0.6em;
}
p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* ---- Type scale ---- */
h1, .h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
h2, .h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3, .h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4, .h4 { font-size: 1.15rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--colour-gold-deep);
  margin-bottom: 0.9em;
}

.lede {
  font-size: 1.15rem;
  color: var(--colour-grey);
  max-width: 640px;
}

/* ---- Layout helpers ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--cream { background: var(--colour-cream); }
.section--charcoal { background: var(--colour-charcoal); color: rgba(255,255,255,0.85); }
.section--charcoal h2, .section--charcoal h3 { color: var(--colour-white); }
.section-head { max-width: 720px; margin: 0 0 3rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

@media (max-width: 768px) {
  .container, .container-narrow { padding: 0 24px; }
  .section { padding: 64px 0; }
  .section--tight { padding: 48px 0; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn-gold { background: var(--colour-gold); color: var(--colour-white); }
.btn-gold:hover { background: var(--colour-gold-deep); }
.btn-dark { background: var(--colour-charcoal); color: var(--colour-white); }
.btn-dark:hover { background: var(--colour-charcoal-deep); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.5); color: inherit; }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.9); }
.btn-outline-dark { background: transparent; border-color: var(--colour-charcoal); color: var(--colour-charcoal); }
.btn-outline-dark:hover { background: var(--colour-charcoal); color: var(--colour-white); }
.btn-text {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--colour-gold-deep);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}
.btn-text:hover { color: var(--colour-charcoal); }

/* =========================================================
   Header / Navigation
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: rgba(15,30,30,0.32);
  box-shadow: none;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header.is-solid {
  background: var(--colour-charcoal);
  box-shadow: 0 8px 28px rgba(10,20,20,0.28);
}
.topbar {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: opacity 0.3s var(--ease), max-height 0.35s var(--ease), border-color 0.35s var(--ease);
  overflow: hidden;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}
.topbar-inner a:hover { color: var(--colour-gold); }
.topbar-phone { font-weight: 700; letter-spacing: 0.02em; }
.topbar .btn { padding: 8px 20px; font-size: 0.72rem; }

.header-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  padding-bottom: 22px;
  transition: padding 0.35s var(--ease);
}
.site-header.is-solid .header-brand { padding-top: 14px; padding-bottom: 14px; }
.nav-logo img {
  height: 120px;
  width: auto;
  transition: height 0.35s var(--ease);
}
.site-header.is-solid .nav-logo img { height: 68px; }

.main-menu {
  display: flex;
  flex: 1;
  justify-content: center;
}
.noMobile { display: inline-flex; }
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list li {
  list-style: none;
  margin: 0 18px;
  padding: 0;
}
.nav-list a {
  display: inline-block;
  padding: 6px 0;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav-list a:hover,
.nav-list .current-menu-item > a {
  color: var(--colour-gold);
  border-color: var(--colour-gold);
}
.header-cta { display: flex; align-items: center; gap: 18px; }

.nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  position: relative;
}
.nav-burger span,
.nav-burger span::before,
.nav-burger span::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--colour-white);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), top 0.3s var(--ease);
}
.nav-burger span { top: 19px; }
.nav-burger span::before { top: -8px; }
.nav-burger span::after { top: 8px; }
.nav-open .nav-burger span { background: transparent; }
.nav-open .nav-burger span::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-burger span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1024px) {
  .topbar-inner { justify-content: space-between; }
  .main-menu {
    position: fixed;
    inset: 0;
    top: var(--nav-h-mobile);
    background: var(--colour-charcoal);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .nav-open .main-menu { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-list { flex-direction: column; text-align: center; }
  .nav-list li { margin: 14px 0; }
  .nav-list a { font-size: 1.1rem; }
  .header-cta .btn-gold { display: none; }
  .noMobile { display: none !important; }
  .nav-burger { display: block; }
  .nav-logo img { height: 76px; }
  .site-header.is-solid .nav-logo img { height: 50px; }
  .header-brand { padding-top: 16px; padding-bottom: 16px; }
  .site-header.is-solid .header-brand { padding-top: 12px; padding-bottom: 12px; }
}

@media (max-width: 480px) {
  .topbar-inner { gap: 14px; }
  .topbar-phone { white-space: nowrap; font-size: 0.78rem; }
  .topbar .btn { padding: 7px 14px; font-size: 0.66rem; }
}

/* Nav-height offset for page content */
.page-content { padding-top: var(--nav-h); }
.page-content:has(> .page-hero:first-child),
.page-content:has(> .hero:first-child) { padding-top: 0; }

@media (max-width: 1024px) {
  .page-content { padding-top: var(--nav-h-mobile); }
}

/* =========================================================
   Hero (homepage carousel)
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--colour-charcoal);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
}
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,30,30,0.5) 0%, rgba(15,30,30,0.2) 45%, rgba(15,30,30,0.84) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 90px;
  color: var(--colour-white);
}
.hero-eyebrow {
  color: var(--colour-gold-pale);
  letter-spacing: 0.2em;
}
.hero-content h1 { color: var(--colour-white); max-width: 780px; }
.hero-caption {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-dots {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6);
  background: transparent;
  padding: 0;
}
.hero-dots button.is-active { background: var(--colour-gold); border-color: var(--colour-gold); }

@media (max-width: 768px) {
  .hero-content { padding-bottom: 64px; }
  .hero-dots { right: 24px; bottom: 24px; }
}

/* Secondary page hero (property/inner pages) */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--colour-charcoal);
  color: var(--colour-white);
}
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,30,30,0.55) 0%, rgba(15,30,30,0.87) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: calc(var(--nav-h) + 30px);
  padding-bottom: 56px;
}
.page-hero-content h1 { color: var(--colour-white); margin-bottom: 0.3em; }
.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.page-hero-meta strong { color: var(--colour-white); }
.breadcrumbs {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
}
.breadcrumbs a:hover { color: var(--colour-gold); }
@media (max-width: 1024px) {
  .page-hero-content { padding-top: calc(var(--nav-h-mobile) + 24px); }
}

/* =========================================================
   Welcome / intro section
   ========================================================= */
.welcome { text-align: center; }
.welcome .lede { margin: 0 auto 2.2rem; }
.welcome-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* =========================================================
   Property cards / grid
   ========================================================= */
.property-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.property-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }

.property-card {
  position: relative;
  display: block;
  background: var(--colour-white);
  border: 1px solid var(--colour-grey-line);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.property-card:hover { box-shadow: 0 22px 44px rgba(23,22,21,0.14); transform: translateY(-4px); }
.property-card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.property-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.property-card:hover .property-card-media img { transform: scale(1.06); }
.property-card-sleeps {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(20,40,40,0.82);
  color: var(--colour-white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--radius);
}
.property-card-body { padding: 26px 26px 28px; }
.property-card-body h3 { margin-bottom: 0.35em; }
.property-card-location {
  display: block;
  font-size: 0.8rem;
  color: var(--colour-grey);
  margin-bottom: 0.9em;
}
.property-card-facts {
  display: flex;
  gap: 18px;
  font-size: 0.82rem;
  color: var(--colour-grey);
  margin-bottom: 1.1em;
  flex-wrap: wrap;
}
.property-card-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid var(--colour-grey-line);
  padding-top: 16px;
  margin-top: 4px;
}
.property-card-price strong { font-family: var(--font-display); font-size: 1.2rem; color: var(--colour-charcoal); }
.property-card-price span { font-size: 0.78rem; color: var(--colour-grey); }

@media (max-width: 1024px) { .property-grid, .property-grid--cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .property-grid, .property-grid--cols-4 { grid-template-columns: 1fr; } }

/* =========================================================
   Trust strip / reviews / partner section
   ========================================================= */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.trust-strip img { height: 64px; width: auto; }
.trust-strip-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.stars { color: var(--colour-gold); letter-spacing: 0.15em; font-size: 1rem; }

.partner-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.partner-media { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); }
.partner-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .partner-block { grid-template-columns: 1fr; gap: 32px; }
}

/* =========================================================
   Amenities / feature lists
   ========================================================= */
.amenity-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 32px; margin-bottom: 2.4rem; }
.amenity-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--colour-ink);
}
.amenity-list li::before {
  content: "";
  flex: none;
  width: 7px; height: 7px;
  margin-top: 9px;
  background: var(--colour-gold);
  border-radius: 50%;
}
@media (max-width: 640px) { .amenity-list { grid-template-columns: 1fr; } }

.fact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 44px;
  padding: 28px 0;
  border-top: 1px solid var(--colour-grey-line);
  border-bottom: 1px solid var(--colour-grey-line);
  margin: 2.4rem 0;
}
.fact { display: flex; flex-direction: column; gap: 4px; }
.fact-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--colour-grey); }
.fact-value { font-family: var(--font-display); font-size: 1.25rem; color: var(--colour-charcoal); }

/* =========================================================
   Gallery
   ========================================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 10px;
}
.gallery a { position: relative; overflow: hidden; display: block; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery a:hover img { transform: scale(1.07); }
.gallery a.is-wide { grid-column: span 2; }
.gallery a.is-tall { grid-row: span 2; }

@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery a.is-wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery a.is-wide, .gallery a.is-tall { grid-column: span 1; grid-row: span 1; }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(15,30,30,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
  padding: 40px;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 86vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  background: transparent;
  border: none;
  color: var(--colour-white);
  font-size: 2rem;
  line-height: 1;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--colour-white);
  font-size: 2rem;
  padding: 12px;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* =========================================================
   Booking box (property pages)
   ========================================================= */
.layout-with-aside {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
.booking-box {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  background: var(--colour-cream);
  border: 1px solid var(--colour-grey-line);
  padding: 32px;
}
.booking-box h3 { margin-bottom: 0.2em; }
.booking-price { font-family: var(--font-display); font-size: 1.6rem; color: var(--colour-gold-deep); margin-bottom: 0.3em; }
.booking-price span { font-family: var(--font-body); font-size: 0.85rem; color: var(--colour-grey); font-weight: 400; }
.booking-box ul { margin: 18px 0 24px; display: flex; flex-direction: column; gap: 8px; }
.booking-box ul li { font-size: 0.88rem; color: var(--colour-grey); display: flex; justify-content: space-between; }
.booking-box .btn { width: 100%; justify-content: center; margin-bottom: 10px; }

@media (max-width: 1024px) {
  .layout-with-aside { grid-template-columns: 1fr; }
  .booking-box { position: static; }
}

/* =========================================================
   Forms
   ========================================================= */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.is-full { grid-column: 1 / -1; }
.form-field label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--colour-charcoal); }
.form-field input, .form-field select, .form-field textarea {
  border: 1px solid var(--colour-grey-line);
  background: var(--colour-white);
  padding: 13px 16px;
  border-radius: var(--radius);
  color: var(--colour-ink);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--colour-gold);
}
.form-note { font-size: 0.8rem; color: var(--colour-grey); margin-top: 6px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.contact-info-list { display: flex; flex-direction: column; gap: 22px; margin-top: 1.6rem; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item .icon {
  flex: none; width: 42px; height: 42px; border-radius: 50%;
  background: var(--colour-gold-pale); color: var(--colour-gold-deep);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}

/* =========================================================
   Prose (legal pages)
   ========================================================= */
.prose h2 { margin-top: 2em; }
.prose h2:first-child { margin-top: 0; }
.prose ul, .prose ol { margin: 0 0 1.2em; padding-left: 1.4em; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 0.5em; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.5em 0; }
.prose table th, .prose table td { border: 1px solid var(--colour-grey-line); padding: 10px 14px; text-align: left; font-size: 0.92rem; }
.prose table th { background: var(--colour-cream); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--colour-charcoal-deep); color: rgba(255,255,255,0.72); }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 72px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 128px; width: auto; margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.92rem; max-width: 300px; }
.footer-social { display: flex; gap: 14px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.footer-social svg { width: 16px; height: 16px; display: block; }
.footer-social a:hover { border-color: var(--colour-gold); color: var(--colour-gold); background: rgba(255,255,255,0.06); }

.footer-social.on-light a { border-color: var(--colour-grey-line); color: var(--colour-charcoal); }
.footer-social.on-light a:hover { border-color: var(--colour-gold); color: var(--colour-gold); background: var(--colour-gold-pale); }
.footer-heading {
  color: var(--colour-white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.92rem; color: rgba(255,255,255,0.65); }
.footer-col a:hover { color: var(--colour-gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  padding-bottom: 26px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--colour-gold); }
.footer-bottom-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-badge { display: flex; align-items: center; gap: 12px; }
.footer-badge img { height: 48px; width: auto; }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; padding-top: 56px; padding-bottom: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   Misc: sleeps/room icon rows, offer cards, FAQ-style accordions
   ========================================================= */
.icon-fact-row { display: flex; gap: 32px; flex-wrap: wrap; color: var(--colour-grey); font-size: 0.92rem; }
.icon-fact-row strong { color: var(--colour-charcoal); }

.offer-card {
  border: 1px solid var(--colour-grey-line);
  display: grid;
  grid-template-columns: 260px 1fr;
}
.offer-card-media { aspect-ratio: 4/3; overflow: hidden; }
.offer-card-media img { width: 100%; height: 100%; object-fit: cover; }
.offer-card-body { padding: 32px; }
.offer-card-date { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--colour-gold-deep); margin-bottom: 0.6em; display: block; }
@media (max-width: 700px) {
  .offer-card { grid-template-columns: 1fr; }
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--colour-charcoal);
  color: var(--colour-white);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s var(--ease);
  z-index: 400;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
