/* ============================================
   GAIL MOTEL — Custom Styles
   Vibrant Modern | Charcoal + Coral
   ============================================ */

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

:root {
  --charcoal: #1a1a2e;
  --charcoal-light: #2d2d44;
  --charcoal-mid: #3a3a52;
  --coral: #e85d4a;
  --coral-light: #f07060;
  --coral-dark: #d14a38;
  --coral-pale: #fdf0ee;
  --white: #ffffff;
  --off-white: #fafafa;
  --gray-50: #f7f7f8;
  --gray-100: #eeeeef;
  --gray-200: #dcdcdc;
  --gray-400: #9999a0;
  --gray-600: #6b6b7b;
  --gray-800: #3a3a44;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.08);
  --shadow-md: 0 8px 30px rgba(26, 26, 46, 0.12);
  --shadow-lg: 0 20px 60px rgba(26, 26, 46, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.15;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--coral {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(232, 93, 74, 0.35);
}

.btn--coral:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 93, 74, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}

.btn--ghost:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--accent {
  background: var(--coral);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
}

.btn--accent:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
}

.btn--white {
  background: var(--white);
  color: var(--charcoal);
  box-shadow: var(--shadow-md);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

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

.btn--full {
  width: 100%;
  justify-content: center;
}

/* --- SECTION TAGS --- */
.section-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--coral);
  background: var(--coral-pale);
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 20px;
}

.text-coral {
  color: var(--coral);
}

.section-sub {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 520px;
}

/* --- HEADER --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--charcoal);
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--coral);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a:not(.btn) {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.main-nav a:not(.btn):hover {
  color: var(--charcoal);
  background: var(--gray-50);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-toggle:hover {
  background: var(--gray-50);
}

.hamburger {
  position: relative;
  width: 22px;
  height: 16px;
  display: block;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  position: absolute;
  transition: var(--transition);
}

.hamburger::before { top: 0; }
.hamburger span { top: 7px; }
.hamburger::after { bottom: 0; }

.nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg);
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .hamburger span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg);
  bottom: 7px;
}

/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coral);
  background: rgba(232, 93, 74, 0.12);
  border: 1px solid rgba(232, 93, 74, 0.25);
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* Hero visual */
.hero-visual {
  position: relative;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 5/6;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
}

.hero-shape--circle {
  width: 200px;
  height: 200px;
  background: var(--coral);
  opacity: 0.15;
  top: -40px;
  right: -40px;
  z-index: 0;
}

.hero-shape--rect {
  width: 120px;
  height: 120px;
  background: var(--coral);
  opacity: 0.08;
  border-radius: var(--radius-md);
  bottom: -20px;
  left: -30px;
  transform: rotate(25deg);
  z-index: 0;
}

/* Geometric accents */
.geo {
  position: absolute;
  pointer-events: none;
}

.geo--1 {
  width: 300px;
  height: 300px;
  background: var(--coral);
  opacity: 0.04;
  border-radius: 50%;
  top: -80px;
  left: -80px;
}

.geo--2 {
  width: 150px;
  height: 150px;
  background: var(--white);
  opacity: 0.03;
  border-radius: var(--radius-lg);
  bottom: 10%;
  left: 5%;
  transform: rotate(30deg);
}

.geo--3 {
  width: 80px;
  height: 80px;
  background: var(--coral);
  opacity: 0.08;
  border-radius: 50%;
  bottom: 15%;
  right: 35%;
}

/* --- INTRO --- */
.intro {
  padding: 100px 0;
  background: var(--white);
}

.intro-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-text {
  font-size: 1.15rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 56px;
}

.intro-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.feat-card {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.feat-card:hover {
  background: var(--white);
  border-color: var(--gray-100);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feat-icon {
  width: 48px;
  height: 48px;
  background: var(--coral-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  margin-bottom: 16px;
}

.feat-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.feat-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* --- ROOMS --- */
.rooms {
  padding: 100px 0;
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-sub {
  margin: 0 auto;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 36px;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}

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

.room-img-wrap {
  overflow: hidden;
  aspect-ratio: 7/5;
}

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

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

.room-body {
  padding: 28px;
}

.room-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.room-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.room-features li {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal);
  background: var(--gray-50);
  padding: 6px 12px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
}

.rooms-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.rooms-note a {
  color: var(--coral);
  font-weight: 600;
}

.rooms-note a:hover {
  text-decoration: underline;
}

/* --- AMENITIES --- */
.amenities {
  padding: 100px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.amenities::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--coral);
  opacity: 0.04;
  border-radius: 50%;
  top: -200px;
  right: -100px;
}

.amenities-inner {
  position: relative;
  z-index: 1;
}

.amenities-content {
  max-width: 520px;
  margin-bottom: 56px;
}

.amenities-content .section-title {
  color: var(--white);
}

.amenities-text {
  font-size: 1.05rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 32px;
}

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

.amenity {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.amenity:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(232, 93, 74, 0.3);
  transform: translateY(-4px);
}

.amenity-icon {
  color: var(--coral);
  margin-bottom: 14px;
}

.amenity span {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
}

/* --- LOCATION --- */
.location {
  padding: 100px 0;
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.location-text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 32px;
}

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

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

.loc-item svg {
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 2px;
}

.loc-item a {
  color: var(--charcoal);
  font-weight: 500;
  transition: var(--transition);
}

.loc-item a:hover {
  color: var(--coral);
}

.location-highlights {
  display: flex;
  gap: 32px;
}

.lh-item {
  display: flex;
  flex-direction: column;
}

.lh-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
}

.lh-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.map-placeholder {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/5;
}

.map-link {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--charcoal);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 12px 20px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.map-link:hover {
  background: var(--coral);
  color: var(--white);
}

/* --- CTA --- */
.cta {
  padding: 100px 0;
  background: var(--coral);
  position: relative;
  overflow: hidden;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
}

.cta-shape--circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  top: -80px;
  left: -80px;
}

.cta-shape--square {
  width: 160px;
  height: 160px;
  border-radius: var(--radius-lg);
  bottom: -40px;
  right: 10%;
  transform: rotate(20deg);
}

.cta-shape--dot {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  top: 20%;
  right: 5%;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 36px;
}

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

/* --- CONTACT --- */
.contact {
  padding: 100px 0;
  background: var(--gray-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cd-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cd-icon {
  width: 48px;
  height: 48px;
  background: var(--coral-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  flex-shrink: 0;
}

.cd-item strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--charcoal);
}

.cd-item span,
.cd-item a {
  font-size: 0.9rem;
  color: var(--gray-600);
  transition: var(--transition);
}

.cd-item a:hover {
  color: var(--coral);
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--gray-50);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232, 93, 74, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 16px;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  color: var(--coral);
  margin-bottom: 20px;
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.form-success p {
  color: var(--gray-600);
  margin-bottom: 24px;
}

/* --- FOOTER --- */
.site-footer {
  background: var(--charcoal);
  padding: 60px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.footer-brand .logo {
  color: var(--white);
  justify-content: center;
}

.footer-tagline {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-top: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--gray-400);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--coral);
}

.footer-legal {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.8;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 40px;
  }

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

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    padding: 16px 24px;
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
    text-align: center;
  }

  .main-nav a:not(.btn) {
    display: block;
    padding: 12px 16px;
  }

  .main-nav .btn {
    margin-top: 8px;
    justify-content: center;
  }

  /* Hero mobile */
  .hero {
    padding: 100px 0 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-shape--circle {
    width: 120px;
    height: 120px;
    top: -20px;
    right: -20px;
  }

  .hero-shape--rect {
    width: 80px;
    height: 80px;
    bottom: -10px;
    left: -15px;
  }

  .hero-stats {
    gap: 16px;
  }

  /* Intro mobile */
  .intro {
    padding: 72px 0;
  }

  .intro-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Rooms mobile */
  .rooms {
    padding: 72px 0;
  }

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

  /* Amenities mobile */
  .amenities {
    padding: 72px 0;
  }

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

  /* Location mobile */
  .location {
    padding: 72px 0;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location-highlights {
    gap: 24px;
  }

  /* CTA mobile */
  .cta {
    padding: 72px 0;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  /* Contact mobile */
  .contact {
    padding: 72px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-wrap {
    padding: 28px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-headline {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

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

  .location-highlights {
    flex-wrap: wrap;
    gap: 16px;
  }

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