/* ============================================================
   Awhitu Zen — Shared Stylesheet
   White & Gold Balinese palette
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --primary:      #1C1208;   /* deep espresso / dark backgrounds */
  --primary-mid:  #2E1E0E;
  --primary-light: #4A3020;
  --gold:         #C4952A;   /* Balinese gold / primary accent */
  --gold-light:   #E0B655;
  --gold-soft:    #F7F0E2;   /* warm ivory — alternate sections */
  --gold-border:  #E8D5A8;   /* soft gold border */
  --cream:        #FFFFFF;   /* pure white sections */
  --cream-dark:   #FBF7EF;   /* ivory sections */
  --brown:        #5C3D2E;
  --charcoal:     #1C1208;
  --text:         #2A1E10;
  --text-mid:     #6B5B45;
  --text-light:   #9C8B70;
  --white:        #FFFFFF;
  --border:       #EDE0C8;

  --font-head:    'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --shadow-sm:    0 2px 8px rgba(28,18,8,.08);
  --shadow-md:    0 4px 20px rgba(28,18,8,.12);
  --shadow-lg:    0 8px 40px rgba(28,18,8,.16);
  --transition:   0.25s ease;

  --max-width:    1200px;
  --nav-height:   72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -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; border: none; background: none; font-family: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { color: var(--text-mid); line-height: 1.75; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

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

section { padding: 80px 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header p { margin-top: 14px; font-size: 1.05rem; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all var(--transition);
}

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

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

.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 13px 27px;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-ghost {
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 13px 27px;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(255,255,255,0.99);
  box-shadow: var(--shadow-sm);
}

.nav .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo .logo-main {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.04em;
}
.nav-logo .logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(196,149,42,.08);
}

.nav-cta { margin-left: 12px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Mobile Nav ─────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--white);
  padding: 100px 32px 40px;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.4rem;
  font-family: var(--font-head);
  color: var(--charcoal);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 24px; width: 100%; justify-content: center; }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }

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

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-height);
  width: 100%;
}

.hero-content .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 680px;
}

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

.hero h1 {
  color: var(--white);
  font-weight: 300;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  color: rgba(255,255,255,.88);
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.65;
}

/* Booking Bar */
.booking-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 580px;
  display: flex;
  align-items: center;
  gap: 0;
}

.booking-bar-field {
  flex: 1;
  padding: 8px 16px;
  border-right: 1px solid var(--border);
  cursor: pointer;
}
.booking-bar-field:last-of-type { border-right: none; }

.booking-bar-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.booking-bar-field input {
  width: 100%;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-mid);
  background: transparent;
  cursor: pointer;
}
.booking-bar-field input:focus { color: var(--charcoal); }

.booking-bar .btn { margin-left: 16px; white-space: nowrap; flex-shrink: 0; }

/* ── Stats Strip ─────────────────────────────────────────────── */
.stats-strip {
  background: var(--charcoal);
  padding: 36px 0;
}

.stats-strip .container {
  display: flex;
  justify-content: center;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}

/* ── Features Grid ─────────────────────────────────────────────── */
.features { background: var(--white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  background: var(--cream-dark);
}
.feature-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(196,149,42,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.feature-card p { font-size: 0.92rem; }

/* ── Photo Strip ─────────────────────────────────────────────── */
.photo-strip { padding: 0 0 80px; background: var(--white); }

.photo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 320px 240px;
  gap: 8px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.photo-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.photo-item:hover img { transform: scale(1.05); }

.photo-item.large { grid-row: 1 / 3; }

.photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(196,149,42,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.photo-item:hover .photo-overlay { opacity: 1; }
.photo-overlay span {
  color: white;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.photo-strip-footer {
  text-align: center;
  margin-top: 28px;
}

/* ── Reviews ─────────────────────────────────────────────────── */
.reviews { background: var(--gold-soft); }

.reviews-header { margin-bottom: 48px; }
.reviews-header .rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.rating-badge .stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.rating-badge .score { font-weight: 700; font-size: 1rem; color: var(--charcoal); }
.rating-badge .count { font-size: 0.85rem; color: var(--text-light); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.review-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 14px; }

.review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.9rem; color: var(--charcoal); }
.review-location { font-size: 0.78rem; color: var(--text-light); }

/* ── Location Section ─────────────────────────────────────────── */
.location {
  background: var(--white);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.location-text .eyebrow { margin-bottom: 8px; }
.location-text h2 { margin-bottom: 16px; }
.location-text p { margin-bottom: 24px; }

.location-facts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.location-fact {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text);
}
.location-fact .icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(196,149,42,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.map-placeholder {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 420px;
  background: var(--cream-dark);
  position: relative;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #8B6010 0%, var(--gold) 55%, var(--gold-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  pointer-events: none;
}

.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text .eyebrow { color: rgba(255,255,255,.75); }
.cta-text h2 { color: var(--white); margin-bottom: 12px; }
.cta-text p { color: rgba(255,255,255,.82); max-width: 480px; }

.cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

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

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

.footer-brand .logo-main {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--white);
}
.footer-brand .logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.footer-brand p { color: rgba(255,255,255,.55); font-size: 0.9rem; max-width: 280px; }

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(255,255,255,.55);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: 0.82rem; }

.social-links {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,149,42,.1);
}

/* ── Gallery Page ─────────────────────────────────────────────── */
.page-hero {
  height: 380px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  margin-top: var(--nav-height);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.62) 0%, rgba(0,0,0,.08) 60%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px 40px;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}
.page-hero-content .eyebrow { color: var(--gold-light); }
.page-hero-content h1 { color: var(--white); font-weight: 300; }

.gallery-masonry {
  columns: 3;
  column-gap: 12px;
  padding: 60px 0;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 8px; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }

/* ── Amenities Page ─────────────────────────────────────────── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.amenity-category {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.amenity-category h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  margin-bottom: 20px;
  color: var(--gold);
}
.amenity-list { display: flex; flex-direction: column; gap: 12px; }
.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
}
.amenity-item::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(196,149,42,.12);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Local Area Page ─────────────────────────────────────────── */
.beaches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.beach-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.beach-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.beach-card-img {
  height: 200px;
  overflow: hidden;
}
.beach-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.beach-card:hover .beach-card-img img { transform: scale(1.05); }
.beach-card-body { padding: 20px; }
.beach-card-body h3 { font-size: 1.1rem; margin-bottom: 6px; }
.beach-card-body p { font-size: 0.88rem; }
.beach-distance {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

/* ── Booking Section ─────────────────────────────────────────── */
.booking-section { background: var(--gold-soft); }
.booking-widget-wrapper {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 48px 40px;
  box-shadow: var(--shadow-lg);
}
.booking-widget-wrapper h2 { margin-bottom: 6px; }
.booking-widget-wrapper > p { margin-bottom: 32px; font-size: 0.95rem; }

.booking-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.form-field input, .form-field select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream-dark);
  transition: border-color var(--transition);
  outline: none;
}
.form-field input:focus, .form-field select:focus {
  border-color: var(--gold);
  background: var(--white);
}

.booking-summary {
  background: var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.booking-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text);
}
.booking-summary-row.total {
  border-top: 1px solid var(--border);
  padding-top: 10px;
  font-weight: 600;
  color: var(--charcoal);
  font-size: 1rem;
}

.booking-note {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 14px;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .photo-item.large { grid-row: auto; }
  .location-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner .container { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .amenities-grid { grid-template-columns: 1fr; }
  .beaches-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 2; }
  .stat-item { padding: 0 24px; }
}

@media (max-width: 640px) {
  section { padding: 56px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; height: auto; }
  .photo-item { height: 240px; }
  .booking-bar { flex-direction: column; gap: 12px; }
  .booking-bar-field { border-right: none; border-bottom: 1px solid var(--border); padding: 12px 0; }
  .booking-bar-field:last-of-type { border-bottom: none; }
  .booking-bar .btn { width: 100%; justify-content: center; }
  .stats-strip .container { flex-wrap: wrap; gap: 24px; }
  .stat-item { border-right: none; padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .beaches-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .booking-form-row { grid-template-columns: 1fr; }
  .booking-widget-wrapper { padding: 28px 20px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
