/* ═══════════════════════════════════════════════════════════
   EMBER & OAK — Design System
   Palette: Noir Editorial × Sahara Dusk
   Fonts: Cormorant Garamond (display) + Outfit (body)
═══════════════════════════════════════════════════════════ */

:root {
  --gold:        #C9956B;
  --gold-light:  #E6C07B;
  --gold-dark:   #A0714A;
  --cream:       #F2EDE4;
  --cream-dim:   #D4C5A9;
  --charcoal:    #1A1612;
  --charcoal-2:  #2A2218;
  --charcoal-3:  #3A3028;
  --charcoal-4:  #4A4038;
  --text-muted:  #8A7A6A;
  --white:       #FAFAF8;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  --nav-h: 80px;
  --radius: 4px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--charcoal);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: var(--font-body); }

/* ─── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ─── Utility ────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--gold-light); }
.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 480px;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-sub { margin: 0 auto; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }

.btn--gold {
  background: var(--gold);
  color: var(--charcoal);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,149,107,0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(242,237,228,0.3);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }

/* ─── Reveal Animations ──────────────────────────────────── */
.reveal, .reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible, .reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(26, 22, 18, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,149,107,0.15);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.02em;
}
.nav__logo em { color: var(--gold); font-style: italic; }
.nav__logo-icon { color: var(--gold); font-size: 0.9rem; }

.nav__links {
  display: flex;
  gap: 2.5rem;
}
.nav__links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 0.3s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav__cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  transition: var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { text-align: center; }
.mobile-menu li { margin: 1.5rem 0; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--cream);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 8s ease-out;
}
.hero__img.loaded { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,22,18,0.3) 0%,
    rgba(26,22,18,0.55) 50%,
    rgba(26,22,18,0.85) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
}
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}
.hero__subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(242,237,228,0.75);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(242,237,228,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(201,149,107,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

.hero__badge {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  z-index: 2;
}
.hero__badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  border: 1px solid rgba(201,149,107,0.4);
  padding: 1rem 1.4rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(26,22,18,0.6);
  backdrop-filter: blur(10px);
}
.hero__badge-star {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════════════════
   STRIP
═══════════════════════════════════════════════════════════ */
.strip {
  background: var(--charcoal-2);
  border-top: 1px solid rgba(201,149,107,0.15);
  border-bottom: 1px solid rgba(201,149,107,0.15);
  padding: 2rem 0;
}
.strip__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.strip__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 2.5rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.strip__icon { font-size: 1.1rem; }
.strip__divider {
  width: 1px;
  height: 30px;
  background: rgba(201,149,107,0.2);
}

/* ═══════════════════════════════════════════════════════════
   MENU
═══════════════════════════════════════════════════════════ */
.menu {
  padding: 7rem 0;
  background: var(--charcoal);
}
.menu__tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid rgba(201,149,107,0.2);
}
.menu__tab {
  padding: 0.85rem 2rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.3s, border-color 0.3s;
}
.menu__tab:hover { color: var(--cream); }
.menu__tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.menu__panel { display: none; }
.menu__panel.active { display: block; }

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.menu__item {
  background: var(--charcoal-2);
  border: 1px solid rgba(201,149,107,0.1);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
}
.menu__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border-color: rgba(201,149,107,0.3);
}
.menu__item-img {
  height: 200px;
  overflow: hidden;
}
.menu__item-img img {
  transition: transform 0.6s ease;
}
.menu__item:hover .menu__item-img img { transform: scale(1.06); }
.menu__item-body { padding: 1.4rem; }
.menu__item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  gap: 1rem;
}
.menu__item-top h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
}
.menu__price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
}
.menu__item-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.menu__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,149,107,0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════ */
.about {
  padding: 7rem 0;
  background: var(--charcoal-2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
}
.about__visual {
  position: relative;
  min-height: 600px;
}
.about__img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about__stat-card {
  position: absolute;
  bottom: 3rem;
  right: -2rem;
  background: var(--gold);
  color: var(--charcoal);
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.about__stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
}
.about__stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.about__content {
  padding: 5rem 5rem 5rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
}
.about__awards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.5rem;
  border: 1px solid rgba(201,149,107,0.15);
  border-radius: 4px;
  background: rgba(201,149,107,0.04);
}
.about__award {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.about__award-icon {
  font-size: 1.4rem;
  width: 2.5rem;
  text-align: center;
  color: var(--gold);
}
.about__award strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream);
}
.about__award span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════════════ */
.gallery {
  padding: 7rem 0 0;
  background: var(--charcoal);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 4px;
  margin-top: 3rem;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery__item--tall {
  grid-row: span 2;
}
.gallery__item--wide {
  grid-column: span 2;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,22,18,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__overlay span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--cream);
}

/* ═══════════════════════════════════════════════════════════
   RESERVATIONS
═══════════════════════════════════════════════════════════ */
.reservations {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}
.reservations__bg {
  position: absolute;
  inset: 0;
}
.reservations__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.25);
}
.reservations__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,22,18,0.9) 0%, rgba(42,34,24,0.7) 100%);
}
.reservations__content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.reservations__info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.reservations__hours {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.reservations__hour {
  padding: 1rem 1.2rem;
  border-left: 2px solid var(--gold);
  background: rgba(201,149,107,0.06);
}
.reservations__hour strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.reservations__hour span {
  font-size: 0.85rem;
  color: var(--cream-dim);
}

/* Form */
.reservations__form {
  background: rgba(26,22,18,0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,149,107,0.2);
  border-radius: 8px;
  padding: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  position: relative;
  margin-bottom: 1rem;
}
.form-group:last-of-type { margin-bottom: 1.5rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,149,107,0.2);
  border-radius: var(--radius);
  padding: 1.1rem 1rem 0.5rem;
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  appearance: none;
}
.form-group select {
  padding: 0.85rem 1rem;
  cursor: pointer;
}
.form-group select option { background: var(--charcoal-2); color: var(--cream); }
.form-group textarea { resize: vertical; min-height: 90px; padding-top: 1.1rem; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,149,107,0.06);
}
.form-group label {
  position: absolute;
  top: 0.85rem;
  left: 1rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.25s;
}
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: 0.3rem;
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.form-group select ~ label {
  top: 0.3rem;
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(201,149,107,0.12);
  border: 1px solid rgba(201,149,107,0.3);
  border-radius: var(--radius);
  color: var(--gold-light);
  font-size: 0.85rem;
  text-align: center;
}
.form-success.show { display: block; }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.testimonials {
  padding: 7rem 0;
  background: var(--charcoal-2);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: var(--charcoal-3);
  border: 1px solid rgba(201,149,107,0.1);
  border-radius: 6px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial:hover {
  border-color: rgba(201,149,107,0.3);
  transform: translateY(-4px);
}
.testimonial__stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.testimonial p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial__author img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201,149,107,0.3);
}
.testimonial__author strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream);
}
.testimonial__author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
.contact {
  padding: 7rem 0;
  background: var(--charcoal);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}
.contact__detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact__icon { font-size: 1.2rem; margin-top: 0.1rem; }
.contact__detail strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.contact__detail p {
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.6;
}
.contact__social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.social-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(201,149,107,0.2);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: color 0.3s, border-color 0.3s;
}
.social-link:hover { color: var(--gold); border-color: var(--gold); }
.contact__map {
  height: 450px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(201,149,107,0.15);
  filter: grayscale(0.6) brightness(0.7);
  transition: filter 0.4s;
}
.contact__map:hover { filter: grayscale(0) brightness(0.9); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--charcoal-2);
  border-top: 1px solid rgba(201,149,107,0.15);
}
.footer__top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
}
.footer__brand .footer__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer__brand .footer__logo em { color: var(--gold); font-style: italic; }
.footer__brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 280px;
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__col h4 {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer__col ul li {
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer__col ul li a {
  transition: color 0.3s;
}
.footer__col ul li a:hover { color: var(--cream); }
.footer__bottom {
  border-top: 1px solid rgba(201,149,107,0.1);
  padding: 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about {
    grid-template-columns: 1fr;
  }
  .about__visual { min-height: 400px; }
  .about__stat-card { right: 2rem; }
  .about__content { padding: 3rem 2rem; }

  .reservations__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact__map { height: 350px; }
  .testimonials__grid { grid-template-columns: 1fr; gap: 1rem; }
  .footer__top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__brand p { max-width: 100%; }
}

@media (max-width: 768px) {
  :root { --nav-h: 70px; }

  .nav { padding: 0 1.5rem; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero__title { font-size: clamp(2.8rem, 12vw, 5rem); }
  .hero__badge { display: none; }

  .strip__inner { gap: 0; }
  .strip__item { padding: 0.5rem 1rem; font-size: 0.72rem; }
  .strip__divider { display: none; }

  .menu__tabs { overflow-x: auto; justify-content: flex-start; padding-bottom: 0; }
  .menu__tab { white-space: nowrap; padding: 0.85rem 1.2rem; }
  .menu__grid { grid-template-columns: 1fr; }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 2; }

  .form-row { grid-template-columns: 1fr; }

  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .section-title { font-size: 2.2rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; }
  .footer__links { grid-template-columns: 1fr; }
  .reservations__form { padding: 1.5rem; }
}