/* Rustic Cabana & Restaurant — Static Site Styles */

:root {
  --primary: #1b1b1b;
  --secondary: #7d7e7c;
  --accent: #aa8453;
  --accent-dark: #8f6d42;
  --sand: #f7f7f5;
  --sand-dark: #eaeaea;
  --cream: #fffdf9;
  --white: #ffffff;
  --text: #3a3a38;
  --text-light: #7d7e7c;

  --font-display: 'Libre Caslon Display', Georgia, serif;
  --font-body: 'Poppins', system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(27, 27, 27, 0.08);
  --shadow-lg: 0 12px 48px rgba(27, 27, 27, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 80px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .preloader { display: none !important; }
  .hero__video { display: none; }
  .hero__fallback { display: block; }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, #c9a06a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

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

.btn--dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn--dark:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}

.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader__inner { text-align: center; }

.preloader__logo-img {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.preloader__bar {
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto;
  overflow: hidden;
}

.preloader__fill {
  height: 100%;
  width: 0;
  background: var(--accent);
  animation: preload 1.2s ease forwards;
}

@keyframes preload { to { width: 100%; } }

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), #c9a06a);
  z-index: 1001;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(27, 27, 27, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.nav__logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  border-radius: 2px;
}

.nav__link:hover,
.nav__link.active { color: var(--accent); }

.nav__link--cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 20px;
}

.nav__link--cta:hover { background: var(--accent-dark); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.header.nav-open {
  background: var(--primary);
  z-index: 1002;
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #1b1b1b;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__fallback {
  position: absolute;
  inset: 0;
  display: none;
  background: url('/images/hero/hero-cabanas.jpg') center / cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,27,27,0.75) 0%, rgba(27,27,27,0.45) 50%, rgba(27,27,27,0.65) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 60px) 0 80px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(170,132,83,0.2);
  border: 1px solid rgba(170,132,83,0.4);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 800px;
}

.hero__title-line { display: block; }

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 32px;
  font-weight: 300;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.hero-animate {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: var(--d, 0s);
}

body.loaded .hero-animate { animation-play-state: running; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Sections */
.section { padding: 100px 0; }
.section--sand { background: var(--sand); }
.section--dark { background: var(--primary); color: var(--white); }

.section__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section--dark .section__eyebrow { color: var(--accent); }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 20px;
}

.section--dark .section__title { color: var(--white); }

.section__desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 40px;
}

.section--dark .section__desc { color: rgba(255,255,255,0.7); }

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__header .section__desc { margin-left: auto; margin-right: auto; }

/* About split */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-split__img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-split__img img,
.about-split__img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .about-split__video { display: none; }
  .about-split__img:has(.about-split__video) {
    background: url('/images/about/about_cabana.jpeg') center / cover no-repeat;
  }
}

.about-split__img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(170,132,83,0.3);
  border-radius: var(--radius-lg);
  margin: 16px;
  pointer-events: none;
}

.about-split__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.about-feature {
  padding: 20px;
  background: var(--sand);
  border-radius: var(--radius);
}

.about-feature__icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 12px;
}

.about-feature h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--text-light);
}

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

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.room-card__img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

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

.room-card__price {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: var(--white);
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: right;
  line-height: 1.35;
}

.room-card__price .price-lkr-hint {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  opacity: 0.92;
  margin-top: 2px;
}

.price-lkr-hint {
  color: var(--text-muted, #7d7e7c);
  font-size: 0.78rem;
  font-weight: 400;
}

.price-lkr-hint--inline {
  margin-left: 6px;
}

.room-card__body { padding: 28px; }

.room-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.room-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.room-card__meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.room-card__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.room-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Experience cards */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.experience-card {
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand-dark);
  transition: var(--transition);
}

.experience-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.experience-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.experience-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.experience-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Why Choose Us — modern feature grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  position: relative;
  padding: 32px 28px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(27, 27, 27, 0.06);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, var(--shadow);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #c9a06a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(170, 132, 83, 0.35);
  box-shadow: var(--shadow-lg);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card__num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(170, 132, 83, 0.45);
}

.why-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(170, 132, 83, 0.14) 0%, rgba(170, 132, 83, 0.06) 100%);
  color: var(--accent);
  transition: var(--transition);
}

.why-card__icon svg {
  width: 26px;
  height: 26px;
}

.why-card:hover .why-card__icon {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.05);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.25;
}

.why-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-light);
  margin: 0;
}

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 28px 24px 24px; }
}

/* Restaurant preview */
.restaurant-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.restaurant-preview__img {
  aspect-ratio: 1;
  overflow: hidden;
}

.restaurant-preview__img img,
.restaurant-preview__img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .restaurant-preview__video { display: none; }
  .restaurant-preview__img:has(.restaurant-preview__video) {
    background: url('/images/restaurant/dining-hall.jpg') center / cover no-repeat;
  }
}

.restaurant-preview__content {
  background: var(--primary);
  color: var(--white);
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.restaurant-preview__content .section__title { color: var(--white); margin-bottom: 16px; }

.restaurant-preview__content p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.gallery__item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

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

.gallery__item:hover img { transform: scale(1.08); }

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,27,27,0.5), transparent);
  opacity: 0;
  transition: var(--transition);
}

.gallery__item:hover::after { opacity: 1; }

/* Room photo strip */
.room-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.room-photos img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}

@media (max-width: 600px) {
  .room-photos { grid-template-columns: 1fr 1fr; }
}

/* Google Reviews */
.reviews-section { background: var(--sand); }

.reviews-showcase {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius-lg);
  padding: 40px 48px 36px;
  box-shadow: var(--shadow-lg);
}

.contact-reviews {
  margin-bottom: 40px;
}

.reviews-showcase--compact {
  max-width: 820px;
  margin: 0 auto;
}

.reviews-showcase--compact .review-slide__text {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.reviews-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--sand-dark);
}

.reviews-map--below {
  margin-top: 32px;
  aspect-ratio: 21/9;
}

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

.reviews-panel__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--sand);
  border: 1px solid var(--sand-dark);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
}

.reviews-summary {
  margin-bottom: 32px;
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--sand) 0%, var(--cream) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand-dark);
}

.reviews-summary__rating {
  display: flex;
  align-items: center;
  gap: 20px;
}

.reviews-summary__score {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--primary);
}

.reviews-summary__stars,
.review-card__stars {
  display: flex;
  gap: 3px;
}

.reviews-star {
  color: #ddd;
  font-size: 1.15rem;
}

.reviews-star--full,
.reviews-star--half { color: #f4b400; }

.reviews-summary__count {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 6px;
}

.reviews-summary .review-card__google {
  margin-left: auto;
  flex-shrink: 0;
}

/* Reviews slider */
.reviews-slider {
  position: relative;
  margin-bottom: 28px;
}

.reviews-slider__viewport {
  overflow: hidden;
  margin: 0 56px;
}

.reviews-slider__track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.review-slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 8px 4px 4px;
  text-align: center;
}

.review-slide__quote {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: rgba(170, 132, 83, 0.25);
  margin-bottom: 8px;
}

.review-slide .review-card__stars {
  justify-content: center;
  margin-bottom: 20px;
}

.review-slide__text {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-style: italic;
  line-height: 1.65;
  color: var(--primary);
  max-width: 720px;
  margin: 0 auto 28px;
}

.review-slide__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.review-slide__footer .review-card__google {
  margin-left: 8px;
}

.review-card__initial {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
}

.review-card__author {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
  text-align: left;
}

.review-slide__meta {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: left;
}

.reviews-slider__arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--sand-dark);
  background: var(--white);
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}

.reviews-slider__arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow);
}

.reviews-slider__arrow--prev { left: 0; }
.reviews-slider__arrow--next { right: 0; }

.reviews-slider__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.reviews-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--sand-dark);
  cursor: pointer;
  transition: var(--transition);
}

.reviews-slider__dot.is-active {
  background: var(--accent);
  transform: scale(1.15);
}

.reviews-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--sand-dark);
}

.btn--outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

@media (max-width: 768px) {
  .reviews-showcase { padding: 28px 20px 24px; }

  .reviews-summary__rating {
    flex-wrap: wrap;
    gap: 12px;
  }

  .reviews-summary .review-card__google { margin-left: 0; }

  .reviews-summary__score { font-size: 2.5rem; }

  .reviews-slider__viewport { margin: 0 44px; }

  .reviews-slider__arrow {
    width: 40px;
    height: 40px;
  }

  .review-slide__quote { font-size: 3rem; }

  .reviews-map--below { aspect-ratio: 16/10; }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-slider__track { transition: none; }
}

/* CTA */
.cta {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #2a2a28 100%);
  color: var(--white);
}

.cta .section__title { color: var(--white); margin-bottom: 16px; }

.cta p {
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto 32px;
}

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

/* Footer */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer__brand img {
  height: 56px;
  margin-bottom: 20px;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 280px;
}

.footer h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.footer__links li { margin-bottom: 10px; }

.footer__links a {
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer__links a:hover { color: var(--accent); }

.footer__contact li {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.8rem;
}

/* Page hero (inner pages) */
.page-hero {
  padding: calc(var(--header-h) + 80px) 0 60px;
  background: var(--primary);
  color: var(--white);
  text-align: center;
}

.page-hero__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 16px;
}

.page-hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto;
}

.page-content { padding: 80px 0; }

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact__detail {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--sand);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: var(--transition);
}

.contact__detail:hover { background: var(--sand-dark); }

.contact__detail-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__detail-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.contact__detail h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 4px;
}

.form__group { margin-bottom: 20px; }

.form__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  color: var(--text);
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius);
  background: var(--white);
  transition: var(--transition);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(170,132,83,0.15);
}

.form__textarea { min-height: 140px; resize: vertical; }

.form__status {
  margin-top: 16px;
  font-size: 0.9rem;
  padding: 12px 16px;
  border-radius: var(--radius);
}

.form__status.success { background: #e8f5e9; color: #2e7d32; }
.form__status.error { background: #ffebee; color: #c62828; }

.map-embed {
  margin-top: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 21/9;
}

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

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.open { opacity: 1; visibility: visible; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease var(--delay, 0ms), transform 0.7s ease var(--delay, 0ms);
}

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

/* Responsive */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .restaurant-preview { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__logo,
  .nav__toggle {
    position: relative;
    z-index: 1003;
  }

  .nav__toggle { display: flex; }

  .nav__menu {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 100dvh;
    padding:
      calc(var(--header-h) + 24px)
      max(24px, env(safe-area-inset-right))
      max(32px, env(safe-area-inset-bottom))
      max(24px, env(safe-area-inset-left));
    gap: 0;
    background: var(--primary);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s ease, visibility 0.4s;
  }

  .nav__menu.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav__menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav__menu li:last-child {
    border-bottom: none;
    margin-top: auto;
    padding-top: 24px;
  }

  .nav__link {
    display: block;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 18px 4px;
    width: 100%;
    text-align: left;
  }

  .nav__link--cta {
    text-align: center;
    padding: 16px 24px;
    border-radius: var(--radius);
  }

  .section { padding: 70px 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .about-split__features { grid-template-columns: 1fr; }
  .hero__stats { gap: 24px; }
}
