/* ============================================================
   GOAT ISLAND RESORT — Stylesheet
   Modern coastal rental house aesthetic
============================================================ */

/* ---- Custom Properties ---- */
:root {
  --color-navy:       #1C3A4A;
  --color-navy-deep:  #122632;
  --color-teal:       #3D7E7E;
  --color-teal-light: #5A9E9E;
  --color-sand:       #F7F1E5;
  --color-sand-dark:  #EBE0CB;
  --color-white:      #FDFCF9;
  --color-text:       #2C2825;
  --color-text-muted: #5A534D;
  --color-gold:       #B8832A;
  --color-gold-light: #D4A84B;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.14);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.18);

  --transition: 220ms ease;
  --max-width:  1240px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ---- Utilities ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.section-pad  { padding-block: clamp(4rem, 8vw, 7rem); }
.bg-sand      { background-color: var(--color-sand); }
.bg-dark      { background-color: var(--color-navy-deep); }
.text-center  { text-align: center; }
.text-light   { color: var(--color-white); }
.text-light-muted { color: rgba(255,255,255,.6); }

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: .75rem;
}
.bg-dark .section-eyebrow { color: var(--color-gold-light); }

h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; }

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
  margin-bottom: .6rem;
}

.section-intro {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-muted);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.bg-dark .section-intro { color: rgba(255,255,255,.65); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .85rem 1.9rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.btn--primary {
  background: var(--color-gold);
  color: #fff;
  box-shadow: 0 2px 8px rgba(184,131,42,.35);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--color-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184,131,42,.45);
  outline: none;
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.7);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  outline: none;
}

.btn--large { padding: 1rem 2.25rem; font-size: 1.05rem; }

.btn:focus-visible { outline: 3px solid var(--color-gold-light); outline-offset: 3px; }

/* ============================================================
   HEADER / NAV
============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding-block: 1.25rem;
}

.site-header.scrolled {
  background: rgba(18, 38, 50, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  padding-block: .75rem;
}

.header-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-link { display: inline-flex; flex-shrink: 0; }
.logo { height: 40px; width: auto; }

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(.5rem, 2vw, 1.5rem);
}

.primary-nav a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
  padding: .25rem 0;
  border-bottom: 2px solid transparent;
}
.primary-nav a:hover, .primary-nav a:focus-visible {
  color: #fff;
  border-bottom-color: var(--color-gold-light);
  outline: none;
}

.nav-book-btn {
  background: var(--color-gold) !important;
  color: #fff !important;
  padding: .5rem 1.2rem !important;
  border-radius: 100px !important;
  border-bottom: none !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-book-btn:hover, .nav-book-btn:focus-visible {
  background: var(--color-gold-light) !important;
  transform: translateY(-1px);
}

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  background: var(--color-navy-deep);
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}
.mobile-nav[aria-hidden="false"] { max-height: 400px; }

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  padding: 1rem clamp(1.25rem, 5vw, 3rem) 1.5rem;
  gap: .25rem;
}
.mobile-nav a {
  display: block;
  padding: .65rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav a:hover { color: #fff; }
.mobile-book-btn {
  margin-top: .5rem;
  display: inline-block;
  background: var(--color-gold);
  color: #fff !important;
  padding: .7rem 1.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  border-bottom: none !important;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

.hero-media { position: absolute; inset: 0; }

.hero-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18,38,50,.52) 0%,
    rgba(18,38,50,.38) 45%,
    rgba(18,38,50,.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem clamp(1.25rem, 6vw, 4rem);
  max-width: 820px;
  padding-top: calc(80px + 2rem);
}

.hero-eyebrow {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 1rem;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.desktop-break { display: none; }
@media (min-width: 640px) { .desktop-break { display: block; } }

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.6;
  color: rgba(255,255,255,.88);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  padding: .35rem .8rem;
  border-radius: 100px;
  font-size: .8125rem;
  font-weight: 500;
  color: rgba(255,255,255,.92);
}
.badge svg { width: 13px; height: 13px; color: var(--color-gold-light); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,.6);
  animation: bounce 2.4s ease-in-out infinite;
  transition: color var(--transition);
}
.hero-scroll:hover { color: #fff; }
.hero-scroll svg { width: 28px; height: 28px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   STATS BAND
============================================================ */
.stats-band {
  background: var(--color-navy-deep);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.06);
}

.stats-band-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1.25rem;
  padding-block: 1.75rem;
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
}

@media (max-width: 640px) {
  .stats-band-inner {
    display: flex;
    grid-template-columns: none;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 0;
    padding-inline: 0;
  }
  /* hide scrollbar but keep functionality */
  .stats-band-inner { scrollbar-width: none; }
  .stats-band-inner::-webkit-scrollbar { display: none; }

  .stat {
    flex: 0 0 auto;
    min-width: 38vw;
    padding-inline: 1rem;
    scroll-snap-align: center;
    border-right: 1px solid rgba(255,255,255,.08);
  }
  .stat:last-child { border-right: none; }
}

.stat-value {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--color-gold-light);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: .25rem;
}
.stat-value small {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
}
.stat-value svg {
  width: 16px; height: 16px;
  color: var(--color-gold-light);
  align-self: center;
}

.stat-label {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* ============================================================
   OVERVIEW
============================================================ */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .overview-grid { grid-template-columns: 1fr 1fr; }
  .overview-image { order: -1; }
}

.overview-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.overview-text h2 { margin-bottom: 1rem; }
.overview-text p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  font-size: clamp(.9375rem, 1.4vw, 1.0625rem);
}

.quick-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-block: 1.5rem;
}
.quick-facts li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .9375rem;
}
.fact-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--color-sand);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fact-icon svg { width: 12px; height: 12px; color: var(--color-teal); }

/* ============================================================
   FEATURE CARDS
============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.feature-card-img {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.feature-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.feature-card:hover .feature-card-img img { transform: scale(1.04); }

.feature-card-body {
  padding: 1.5rem;
}
.feature-card-body h3 {
  color: var(--color-navy);
  margin-bottom: .5rem;
  font-size: 1.15rem;
}
.feature-card-body p {
  color: var(--color-text-muted);
  font-size: .9375rem;
  line-height: 1.6;
}

/* ============================================================
   THE HOUSE
============================================================ */
.house-rooms {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5.5rem);
  margin-top: 3rem;
}

.room-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .room-block { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .room-block--image-left .room-block-image { order: -1; }
}

.room-block-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.room-block-text h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  color: var(--color-navy);
  margin-bottom: .75rem;
}
.room-block-text h3::before {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: var(--color-gold);
  margin-bottom: .85rem;
}
.room-block-text p {
  color: var(--color-text-muted);
  font-size: clamp(.9375rem, 1.3vw, 1.0625rem);
  line-height: 1.7;
  margin-bottom: .85rem;
}
.room-block-text p:last-child { margin-bottom: 0; }

.note-text {
  font-size: .875rem !important;
  background: var(--color-sand);
  border-left: 3px solid var(--color-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: .85rem 1rem;
  color: var(--color-text) !important;
}

/* ============================================================
   GALLERY
============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  margin-top: 2.5rem;
}

@media (min-width: 600px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1200px) { .gallery-grid { grid-template-columns: repeat(5, 1fr); } }

.gallery-item {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: zoom-in;
  position: relative;
}
.gallery-item--tall { aspect-ratio: 1 / 1.5; }
.gallery-item--wide { aspect-ratio: 2 / 1; }

@media (min-width: 900px) {
  .gallery-item--tall { grid-row: span 2; }
  .gallery-item--wide { grid-column: span 2; }
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .35s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(28,58,74,0);
  transition: background .3s ease;
}
.gallery-item:hover::after { background: rgba(28,58,74,.12); }

/* ============================================================
   AMENITIES
============================================================ */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-top: 1rem;
}

.amenity-group-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-navy);
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--color-sand-dark);
}

.amenity-list { display: flex; flex-direction: column; gap: .6rem; }
.amenity-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9375rem;
  color: var(--color-text-muted);
}
.amenity-list svg {
  width: 16px; height: 16px;
  color: var(--color-teal);
  flex-shrink: 0;
}

.amenities-cta { margin-top: 3rem; text-align: center; }

/* ============================================================
   GETTING HERE
============================================================ */
.getting-here-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .getting-here-grid { grid-template-columns: 1fr 1fr; }
}

.getting-here-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.getting-here-text h2 { margin-bottom: 1rem; }
.getting-here-text > p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  font-size: .9375rem;
  line-height: 1.7;
}

.getting-here-points {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-block: 1.75rem;
}
.getting-here-points li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.point-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  background: var(--color-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.point-icon svg {
  width: 20px; height: 20px;
  color: var(--color-gold-light);
}
.getting-here-points strong {
  display: block;
  font-size: .9375rem;
  color: var(--color-navy);
  margin-bottom: .15rem;
}
.getting-here-points span { font-size: .875rem; color: var(--color-text-muted); }

/* ============================================================
   GUEST NOTES
============================================================ */
.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.note-card {
  background: var(--color-white);
  border: 1px solid var(--color-sand-dark);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow var(--transition);
}
.note-card:hover { box-shadow: var(--shadow-md); }

.note-icon {
  width: 48px; height: 48px;
  background: var(--color-sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.note-icon svg { width: 22px; height: 22px; color: var(--color-teal); }

.note-card h3 {
  font-size: 1.05rem;
  color: var(--color-navy);
  margin-bottom: .5rem;
}
.note-card p { font-size: .9rem; color: var(--color-text-muted); line-height: 1.65; }

/* ============================================================
   REVIEWS
============================================================ */
.rating-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

.rating-big {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.rating-number {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}
.rating-stars {
  display: flex;
  gap: 3px;
}
.rating-stars svg {
  width: 22px; height: 22px;
  color: var(--color-gold-light);
}
.rating-label {
  font-size: .8125rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .06em;
}

.rating-badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.trust-badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  padding: .9rem 1.25rem;
}
.trust-badge strong {
  display: block;
  color: var(--color-white);
  font-size: .9375rem;
  margin-bottom: .2rem;
}
.trust-badge span { font-size: .8125rem; color: rgba(255,255,255,.6); }

.review-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: background var(--transition);
}
.review-card:hover { background: rgba(255,255,255,.11); }

.review-card p {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255,255,255,.88);
  font-size: clamp(.975rem, 1.5vw, 1.1rem);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.review-card p::before { content: '\201C'; }
.review-card p::after  { content: '\201D'; }

.review-card footer {
  font-size: .8125rem;
  color: rgba(255,255,255,.45);
}

/* ============================================================
   FINAL CTA
============================================================ */
.final-cta {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  color: #fff;
  text-align: center;
}

.cta-media { position: absolute; inset: 0; }
.cta-bg { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(18,38,50,.82) 0%, rgba(28,58,74,.78) 100%);
}

.cta-content {
  position: relative;
  z-index: 1;
  padding-block: 5rem;
  max-width: 640px;
}
.cta-content h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 1rem;
}
.cta-content p {
  color: rgba(255,255,255,.8);
  font-size: clamp(.9375rem, 1.6vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--color-navy-deep);
  color: rgba(255,255,255,.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-block: 3.5rem;
}

@media (min-width: 640px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .footer-inner { grid-template-columns: 1.6fr 1fr 1.4fr; }
}

.footer-logo { height: 40px; width: auto; margin-bottom: .75rem; }
.footer-tagline {
  font-size: .9375rem;
  color: rgba(255,255,255,.55);
  margin-bottom: .5rem;
}
.footer-location {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  color: rgba(255,255,255,.5);
}
.footer-location svg { width: 14px; height: 14px; flex-shrink: 0; }

.footer-nav h3, .footer-book h3 {
  font-family: var(--font-sans);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}

.footer-nav ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-nav a:hover { color: #fff; }

.footer-book p {
  font-size: .875rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,.55);
}

.footer-trust {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-trust img { opacity: .55; filter: grayscale(1) brightness(2); height: 28px; width: auto; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  padding-block: 1.25rem;
}
.footer-bottom p { font-size: .8125rem; color: rgba(255,255,255,.35); }

/* ============================================================
   LIGHTBOX
============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,.94);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  font-size: 2.25rem;
  color: rgba(255,255,255,.7);
  line-height: 1;
  transition: color var(--transition);
}
.lightbox-close:hover { color: #fff; }

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 2rem;
  color: rgba(255,255,255,.6);
  padding: 1rem;
  transition: color var(--transition), background var(--transition);
  border-radius: var(--radius-sm);
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover, .lightbox-next:hover {
  color: #fff;
  background: rgba(255,255,255,.1);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 767px) {
  .primary-nav { display: none; }
  .nav-toggle   { display: flex; }

  .quick-facts { grid-template-columns: 1fr; }
  .room-block--image-left .room-block-image { order: 0; }
}

@media (max-width: 479px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-badges  { display: none; }
}

/* ============================================================
   FOCUS & ACCESSIBILITY
============================================================ */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--color-gold-light);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}
