/* ============================================
   AUGUSTA BUDGET MOTEL - DESIGN SYSTEM
   Honest outback-modern. Confident. Direct.
   ============================================ */

:root {
  /* Brand */
  --brand-orange: #F28C00;
  --brand-orange-dark: #D47B00;
  --brand-orange-light: #FFF2DC;
  
  /* Outback palette */
  --sand: #F5EFE6;
  --sand-deep: #E8DCC4;
  --terracotta: #C95F2C;
  --dusk: #2A1F1A;
  --charcoal: #1A1612;
  --ink: #2D2620;
  --stone: #6B5F54;
  --bone: #FAF7F2;
  --white: #FFFFFF;
  
  /* Functional */
  --success: #2E7D32;
  --border: #E5DDD0;
  --border-soft: #F0E9DD;
  
  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Layout */
  --max-w: 1240px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 2px 8px rgba(42, 31, 26, 0.06);
  --shadow-md: 0 8px 24px rgba(42, 31, 26, 0.10);
  --shadow-lg: 0 20px 50px rgba(42, 31, 26, 0.15);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--brand-orange-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--terracotta); }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-orange-dark);
  margin-bottom: 12px;
  display: inline-block;
}

.lead {
  font-size: 1.125rem;
  color: var(--stone);
  line-height: 1.6;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement {
  background: var(--charcoal);
  color: var(--bone);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.announcement strong { color: var(--brand-orange); font-weight: 700; }

/* ============================================
   HEADER / NAV
   ============================================ */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.96);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 20px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--charcoal);
}
.logo img {
  height: 48px;
  width: auto;
}

nav.main-nav {
  display: flex;
  gap: 4px;
  align-items: center;
}
nav.main-nav a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
nav.main-nav a:hover {
  background: var(--sand);
  color: var(--charcoal);
}
nav.main-nav a.active {
  color: var(--brand-orange-dark);
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}
.phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--charcoal);
  font-size: 0.95rem;
}
.phone-link:hover { color: var(--brand-orange-dark); }
.phone-link svg { width: 16px; height: 16px; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle svg { width: 26px; height: 26px; color: var(--charcoal); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  text-align: center;
  line-height: 1;
}

.btn-primary {
  background: var(--brand-orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--brand-orange-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--charcoal);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--dusk);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-lg { padding: 18px 32px; font-size: 1.05rem; }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 22, 18, 0.75) 0%, rgba(26, 22, 18, 0.45) 60%, rgba(201, 95, 44, 0.35) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}

.hero-content {
  max-width: 720px;
}

.hero .eyebrow {
  color: var(--brand-orange);
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.hero h1 em {
  font-style: italic;
  color: var(--brand-orange);
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 32px;
  max-width: 560px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-trust {
  margin-top: 40px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}
.hero-trust-item svg { width: 18px; height: 18px; color: var(--brand-orange); }

/* Compact page hero */
.page-hero {
  background: var(--charcoal);
  color: var(--white);
  padding: 80px 24px 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(242, 140, 0, 0.15) 0%, transparent 50%);
}
.page-hero-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
}
.page-hero .eyebrow { color: var(--brand-orange); }

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  background: var(--sand);
  padding: 14px 24px;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.85rem;
}
.breadcrumbs-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--stone);
}
.breadcrumbs a { color: var(--stone); }
.breadcrumbs a:hover { color: var(--brand-orange-dark); }
.breadcrumbs span.sep { opacity: 0.4; }
.breadcrumbs span.current { color: var(--charcoal); font-weight: 600; }

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 80px 24px;
}
.section-sm { padding: 50px 24px; }
.section-lg { padding: 110px 24px; }

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-header.left {
  text-align: left;
  margin-left: 0;
}
.section-header h2 { margin-bottom: 16px; }

.bg-sand { background: var(--sand); }
.bg-bone { background: var(--bone); }
.bg-white { background: var(--white); }
.bg-dark { background: var(--charcoal); color: var(--bone); }
.bg-dark h2, .bg-dark h3 { color: var(--white); }

/* ============================================
   USP / FEATURE GRID
   ============================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.feature {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
}
.feature:hover {
  border-color: var(--brand-orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--brand-orange-dark);
}

.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.feature p {
  color: var(--stone);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   ROOMS
   ============================================ */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.room-image-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--sand);
}
.room-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-image-wrap img {
  transform: scale(1.05);
}

.room-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--charcoal);
  color: var(--white);
  padding: 6px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
}
.room-badge.orange { background: var(--brand-orange); }

.room-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-body h3 { margin-bottom: 6px; }

.room-meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--stone);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.room-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.room-body > p {
  color: var(--stone);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.room-amenities span {
  font-size: 0.75rem;
  background: var(--sand);
  color: var(--charcoal);
  padding: 5px 10px;
  border-radius: 100px;
  font-weight: 600;
}

.room-footer {
  border-top: 1px solid var(--border-soft);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.room-price-block {
  display: flex;
  flex-direction: column;
}
.room-price-block .from {
  font-size: 0.75rem;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.room-price-block .amount {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
}
.room-price-block .unit {
  font-size: 0.8rem;
  color: var(--stone);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sand);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.03); }
.g-1 { grid-column: span 6; aspect-ratio: 3/2; }
.g-2 { grid-column: span 3; aspect-ratio: 1; }
.g-3 { grid-column: span 3; aspect-ratio: 1; }
.g-4 { grid-column: span 4; aspect-ratio: 4/3; }
.g-5 { grid-column: span 4; aspect-ratio: 4/3; }
.g-6 { grid-column: span 4; aspect-ratio: 4/3; }

/* ============================================
   TWO-COL LAYOUT
   ============================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.two-col-text h2 { margin-bottom: 20px; }
.two-col-text p { color: var(--stone); margin-bottom: 16px; line-height: 1.7; }

.check-list { list-style: none; margin: 24px 0; }
.check-list li {
  position: relative;
  padding: 8px 0 8px 32px;
  color: var(--ink);
  font-weight: 500;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 18px;
  height: 18px;
  background: var(--brand-orange);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center;
}

/* ============================================
   REVIEWS / TESTIMONIALS
   ============================================ */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-soft);
  position: relative;
}
.review-stars {
  color: var(--brand-orange);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-card blockquote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--charcoal);
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  font-size: 0.85rem;
  color: var(--stone);
  font-weight: 600;
}

.review-summary {
  text-align: center;
  padding: 40px;
  background: var(--sand);
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
}
.review-score {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
}
.review-score-meta { color: var(--stone); font-size: 0.95rem; margin-top: 6px; }

/* ============================================
   BOOKING WIDGET WRAPPER
   ============================================ */
.booking-cta-section {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dusk) 100%);
  color: var(--white);
  padding: 60px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.booking-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(242, 140, 0, 0.15) 0%, transparent 50%);
}
.booking-cta-inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.booking-cta-section h2 { color: var(--white); margin-bottom: 16px; }
.booking-cta-section p { color: rgba(255, 255, 255, 0.85); margin-bottom: 28px; font-size: 1.05rem; }

.widget-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  margin-top: 30px;
}
.widget-wrap h3 {
  margin-bottom: 16px;
  text-align: left;
  color: var(--charcoal);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item[open] {
  border-color: var(--brand-orange);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer;
  padding: 22px 28px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--brand-orange-dark);
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item .faq-body {
  padding: 0 28px 24px;
  color: var(--stone);
  line-height: 1.7;
}

/* ============================================
   THINGS TO DO / LOCATION
   ============================================ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.location-text h2 { margin-bottom: 20px; }
.location-text p { color: var(--stone); margin-bottom: 16px; }

.distance-list {
  list-style: none;
  margin-top: 28px;
}
.distance-list li {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  font-weight: 500;
  color: var(--ink);
}
.distance-list li:last-child { border-bottom: none; }
.distance-list li span:last-child {
  color: var(--brand-orange-dark);
  font-weight: 700;
  font-family: var(--font-display);
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.map-frame iframe { width: 100%; height: 100%; border: none; display: block; min-height: 420px; }

/* ============================================
   THINGS-TO-DO CARDS
   ============================================ */
.attraction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.attraction-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  transition: all var(--transition);
}
.attraction-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.attraction-card-img {
  aspect-ratio: 16/10;
  background: var(--sand);
  overflow: hidden;
}
.attraction-card-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.attraction-card-body { padding: 24px; }
.attraction-card-meta {
  font-size: 0.8rem;
  color: var(--brand-orange-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.attraction-card-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.attraction-card-body p { color: var(--stone); font-size: 0.92rem; }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-soft);
}
.contact-block {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-soft);
}
.contact-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-block h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--brand-orange-dark); }
.contact-block p, .contact-block a { color: var(--ink); font-size: 1rem; line-height: 1.7; }
.contact-block strong { color: var(--charcoal); }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-soft);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--bone);
  transition: border var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--brand-orange);
  background: var(--white);
}
.form-group textarea { min-height: 130px; resize: vertical; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--charcoal);
  color: var(--bone);
  padding: 70px 24px 30px;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-col h4 {
  color: var(--brand-orange);
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}
.footer-col p, .footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.8;
}
.footer-col a:hover { color: var(--brand-orange); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 6px; }

.footer-brand img { height: 56px; margin-bottom: 16px; filter: invert(1) hue-rotate(180deg); }
.footer-brand p { max-width: 320px; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom a { color: rgba(255, 255, 255, 0.7); }
.footer-bottom a:hover { text-decoration: underline; }

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0 !important; }

.divider {
  height: 1px;
  background: var(--border-soft);
  margin: 60px 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  .two-col, .location-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .gallery {
    grid-template-columns: repeat(6, 1fr);
  }
  .g-1, .g-4, .g-5, .g-6 { grid-column: span 6; aspect-ratio: 16/10; }
  .g-2, .g-3 { grid-column: span 3; aspect-ratio: 1; }
}

@media (max-width: 768px) {
  nav.main-nav { display: none; }
  nav.main-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border-soft);
    gap: 4px;
  }
  nav.main-nav.open a {
    padding: 12px 16px;
    border-radius: var(--radius);
  }
  .menu-toggle { display: block; }
  
  .nav-cta .phone-link span { display: none; }
  .nav-cta .btn { padding: 10px 16px; font-size: 0.85rem; }
  
  .section, .section-lg { padding: 60px 20px; }
  .booking-cta-section { padding: 50px 20px; }
  
  .hero { min-height: 540px; }
  .hero-inner { padding: 60px 20px; }
  .hero p { font-size: 1.05rem; }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom { flex-direction: column; text-align: center; }
  
  .page-hero { padding: 60px 20px 50px; }
  
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .g-1, .g-2, .g-3, .g-4, .g-5, .g-6 {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }
  
  .contact-info, .contact-form { padding: 28px; }
}

@media (max-width: 480px) {
  .logo img { height: 38px; }
  .nav-container { padding: 12px 16px; gap: 8px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .room-footer { flex-direction: column; align-items: stretch; }
  .room-footer .btn { width: 100%; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
