/* ============================================================
   THE VILLAGE MOTEL — style.css
   Clean, professional, mobile-first
   ============================================================ */

/* ── Custom Properties ── */
:root {
  --navy:        #0F172A;
  --navy-light:  #1E293B;
  --cream:       #F8FAFC;
  --gold:        #D4A373;
  --gold-light:  #E8C99A;
  --gold-dark:   #B8864E;
  --slate:       #64748B;
  --slate-light: #94A3B8;
  --white:       #FFFFFF;
  --light-bg:    #F1F5F9;
  --border:      #E2E8F0;
  --text:        #1E293B;
  --text-light:  #475569;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', system-ui, sans-serif;

  --radius:      4px;
  --radius-lg:   8px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:   0 10px 40px rgba(0,0,0,0.15);

  --transition:  0.2s ease;
  --max-w:       1200px;
  --section-py:  80px;
}

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

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

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

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

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--navy); }

ul { list-style: none; }

address { font-style: normal; }

/* ── Utility ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-py) 0;
}

.bg-light { background: var(--light-bg); }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.eyebrow-light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.title-light { color: var(--cream); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}

.desc-light { color: rgba(248,250,252,0.65); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.82rem;
}

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

#header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.logo-location {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248,250,252,0.55);
}

/* Desktop nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-desktop a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248,250,252,0.75);
  text-decoration: none;
  transition: color var(--transition);
}

.nav-desktop a:hover { color: var(--gold); }

/* Header phone */
.header-phone {
  padding: 9px 18px;
  font-size: 0.82rem;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  background: var(--navy-light);
  display: flex;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 6px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.nav-mobile[hidden] { display: none; }

.nav-mobile a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(248,250,252,0.8);
  padding: 10px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  transition: color var(--transition);
}

.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .mobile-call { margin-top: 12px; text-align: center; border-bottom: none; }

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15,23,42,0.80) 0%,
    rgba(15,23,42,0.65) 50%,
    rgba(15,23,42,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 72px;
  padding-bottom: 80px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(248,250,252,0.72);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 4px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}

.stat strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.stat span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248,250,252,0.5);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(212,163,115,0.3);
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(212,163,115,0.7);
  animation: bounce 2s ease-in-out infinite;
  text-decoration: none;
}

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

/* ============================================================
   ABOUT
   ============================================================ */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  position: relative;
}

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

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--navy);
  color: var(--white);
  padding: 18px 22px;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.about-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.about-badge span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248,250,252,0.6);
  margin-top: 2px;
}

.about-content { padding-left: 8px; }

.about-content .section-eyebrow { display: block; margin-bottom: 12px; }

.about-content .section-title {
  margin-bottom: 20px;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.75;
}

.about-list {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 400;
}

.about-list li svg {
  color: var(--gold-dark);
  flex-shrink: 0;
}

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

.room-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.room-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--light-bg);
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .room-image img {
  transform: scale(1.04);
}

.room-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius);
}

.badge-navy { background: var(--navy); color: var(--gold); }
.badge-green { background: #166534; color: #dcfce7; }

.room-info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.room-info p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.room-features li {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--light-bg);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.room-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.price-from {
  font-size: 0.75rem;
  color: var(--slate);
}

.room-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
}

.price-night {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--slate);
}

.rooms-note {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 36px;
  font-size: 0.88rem;
  color: var(--slate);
}

.rooms-note svg { color: var(--gold-dark); flex-shrink: 0; }
.rooms-note a { color: var(--gold-dark); font-weight: 600; }
.rooms-note a:hover { color: var(--navy); }

/* ============================================================
   AMENITIES
   ============================================================ */
.amenities {
  background: var(--navy);
}

.amenities .section-header-light {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.amenity-card {
  padding: 28px 22px;
  border: 1px solid rgba(212,163,115,0.14);
  border-radius: var(--radius-lg);
  background: rgba(248,250,252,0.03);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  cursor: default;
}

.amenity-card:hover {
  border-color: rgba(212,163,115,0.4);
  background: rgba(212,163,115,0.05);
  transform: translateY(-2px);
}

.amenity-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,163,115,0.12);
  border-radius: var(--radius);
  margin-bottom: 16px;
  color: var(--gold);
  transition: background 0.2s;
}

.amenity-card:hover .amenity-icon { background: rgba(212,163,115,0.2); }

.amenity-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 8px;
  line-height: 1.3;
}

.amenity-card h3 small {
  font-size: 0.78rem;
  font-family: var(--font-body);
  color: var(--slate-light);
}

.amenity-card p {
  font-size: 0.85rem;
  color: rgba(248,250,252,0.5);
  line-height: 1.6;
}

/* ============================================================
   ATTRACTIONS
   ============================================================ */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.attraction-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.attraction-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.attraction-img-wrap {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--light-bg);
}

.attraction-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.attraction-card:hover .attraction-img-wrap img { transform: scale(1.05); }

.attraction-body {
  padding: 20px;
  position: relative;
}

.attraction-distance {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.attraction-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.attraction-body p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  background: var(--navy);
}

.gallery .section-header { margin-bottom: 40px; }
.gallery .section-title { color: var(--cream); }
.gallery .section-desc { color: rgba(248,250,252,0.55); }
.gallery .section-eyebrow { color: var(--gold); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  background: var(--navy-light);
  cursor: pointer;
}

.gallery-item.gallery-wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  transition: background 0.3s ease;
}

.gallery-item:hover .gallery-overlay { background: rgba(15,23,42,0.45); }

.gallery-overlay span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay span {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.lightbox[hidden] { display: none; }

.lightbox-figure {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}

.lightbox-figure img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-figure figcaption {
  margin-top: 12px;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.22); }

.lightbox-close { top: 16px; right: 16px; font-size: 1.8rem; line-height: 1; }
.lightbox-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 16px; top: 50%; transform: translateY(-50%); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info .section-eyebrow { display: block; margin-bottom: 12px; }
.contact-info .section-title { margin-bottom: 28px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-item svg {
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-item strong {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
}

.contact-item span, .contact-item a {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.5;
}

.contact-item a { color: var(--gold-dark); font-weight: 500; }
.contact-item a:hover { color: var(--navy); }

.contact-map {
  height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--light-bg);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand .logo-icon { color: var(--gold); }

.footer-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.footer-loc {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,250,252,0.4);
  margin-top: 2px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(248,250,252,0.45);
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a, .footer-col address a {
  font-size: 0.88rem;
  color: rgba(248,250,252,0.5);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul li a:hover, .footer-col address a:hover {
  color: var(--gold);
}

.footer-col address {
  font-size: 0.88rem;
  color: rgba(248,250,252,0.5);
  line-height: 1.8;
}

.footer-nearby {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nearby li {
  font-size: 0.84rem;
  color: rgba(248,250,252,0.45);
  padding-left: 12px;
  position: relative;
}

.footer-nearby li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(248,250,252,0.3);
}

.footer-bottom a {
  color: rgba(248,250,252,0.4);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  border: 1px solid rgba(212,163,115,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.back-to-top[hidden] { display: none; }

/* ============================================================
   SKIP LINK (Accessibility)
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus { top: 8px; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 64px; }

  .nav-desktop { gap: 20px; }
  .nav-desktop a { font-size: 0.78rem; }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-image { max-width: 520px; margin: 0 auto; }
  .about-badge { right: 0; bottom: -16px; }
  .about-content { padding-left: 0; }

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

  .amenities-grid { grid-template-columns: repeat(2, 1fr); }

  .attractions-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-py: 52px; }

  .header-inner { height: 64px; }
  .nav-desktop { display: none; }
  .header-phone { display: none; }
  .nav-toggle { display: flex; }

  .hero-stats { gap: 0; }
  .stat { padding: 0 14px; }
  .stat strong { font-size: 1.3rem; }

  .rooms-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  .contact-inner { grid-template-columns: 1fr; }
  .contact-map { height: 320px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.gallery-wide { grid-column: span 2; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 300px; }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .stat-divider { display: none; }
  .hero-stats { gap: 12px; }

  .amenities-grid { grid-template-columns: 1fr; }
  .attractions-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.gallery-wide { grid-column: span 1; aspect-ratio: 16/9; }

  .about-badge { right: 8px; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  #header, .hero-scroll, .back-to-top, .gallery { display: none; }
  .hero { min-height: auto; padding: 40px 0; }
  .hero-overlay { background: rgba(15,23,42,0.5); }
  * { box-shadow: none !important; }
}
