/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  color: #2D1B30;
  background: #FFFBF5;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
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: inherit; font-size: inherit; }

/* ── CUSTOM PROPERTIES ── */
:root {
  --plum: #6B2F5B;
  --plum-deep: #4A1F40;
  --plum-light: #8B4572;
  --plum-pale: #F3E8F0;
  --amber: #F5C518;
  --amber-dark: #D4A800;
  --amber-light: #FFF3CC;
  --cream: #FFFBF5;
  --warm-gray: #F5F0EB;
  --text: #2D1B30;
  --text-muted: #6B5870;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(107,47,91,0.08);
  --shadow-md: 0 8px 30px rgba(107,47,91,0.12);
  --shadow-lg: 0 20px 60px rgba(107,47,91,0.15);
  --shadow-soft: 0 4px 20px rgba(107,47,91,0.08);
}

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plum);
  background: var(--plum-pale);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  padding: 14px 28px;
}
.btn-primary {
  background: var(--plum);
  color: #fff;
  box-shadow: 0 4px 15px rgba(107,47,91,0.3);
}
.btn-primary:hover {
  background: var(--plum-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107,47,91,0.35);
}
.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--plum);
  border: 2px solid var(--plum);
}
.btn-ghost:hover {
  background: var(--plum);
  color: #fff;
  transform: translateY(-2px);
}
.btn-nav {
  background: var(--amber);
  color: var(--plum-deep);
  padding: 10px 22px;
  font-size: 0.9rem;
}
.btn-nav:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,251,245,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(107,47,91,0.08);
  transition: all 0.3s ease;
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon { flex-shrink: 0; }
.logo-text {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--plum);
  line-height: 1.2;
}
.logo-sub {
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.logo-light .logo-text { color: #fff; }
.logo-light .logo-sub { color: rgba(255,255,255,0.7); }

/* ── NAV ── */
.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-list a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.2s ease;
}
.nav-list a:not(.btn):hover {
  background: var(--plum-pale);
  color: var(--plum);
}

/* ── HAMBURGER ── */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.nav-toggle:hover { background: var(--plum-pale); }
.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--plum);
  position: relative;
  transition: all 0.3s ease;
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--plum);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(74,31,64,0.82) 0%,
    rgba(107,47,91,0.65) 50%,
    rgba(139,69,114,0.5) 100%
  );
}
.hero-container {
  position: relative;
  z-index: 1;
  padding-top: 76px;
  padding-bottom: 140px;
}
.hero-content {
  max-width: 640px;
  padding: 48px 56px;
  background: rgba(255,251,245,0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--plum);
  background: var(--plum-pale);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--plum); }
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── FLOATING CARDS ── */
.floating-cards {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 2;
  width: calc(100% - 48px);
  max-width: 1200px;
  flex-wrap: wrap;
  justify-content: center;
}
.float-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 18px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  flex: 1;
  min-width: 240px;
  max-width: 320px;
  animation: floatUp 0.6s ease both;
}
.float-card:nth-child(2) { animation-delay: 0.1s; }
.float-card:nth-child(3) { animation-delay: 0.2s; }
@keyframes floatUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.float-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.float-card-icon {
  width: 48px;
  height: 48px;
  background: var(--plum-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum);
  flex-shrink: 0;
}
.float-card-text { display: flex; flex-direction: column; }
.float-card-text strong {
  font-weight: 800;
  color: var(--text);
  font-size: 0.95rem;
}
.float-card-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── INTRO ── */
.intro { background: var(--cream); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.intro-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.intro-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/7;
}
.intro-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--amber);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.intro-text .section-title { margin-top: 8px; }
.intro-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.intro-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.intro-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text);
}

/* ── ROOMS ── */
.rooms { background: #fff; }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.room-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.room-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 56/38;
}
.room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.room-card:hover .room-card-img img { transform: scale(1.05); }
.room-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--amber);
  color: var(--plum-deep);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.room-card-body {
  padding: 28px;
}
.room-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.room-card-body > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.7;
}
.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.room-features li {
  background: var(--plum-pale);
  color: var(--plum);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 50px;
}

/* ── AMENITIES ── */
.amenities { background: var(--warm-gray); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.amenity-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.amenity-icon {
  width: 60px;
  height: 60px;
  background: var(--plum-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s;
}
.amenity-card:hover .amenity-icon { background: var(--plum); }
.amenity-card:hover .amenity-icon svg { stroke: #fff; }
.amenity-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.amenity-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── DINING ── */
.dining { background: var(--cream); }
.dining-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.dining-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.dining-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 62/50;
}
.dining-floating-card {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-weight: 700;
  color: var(--text);
  font-size: 0.9rem;
}
.dining-text .section-title { margin-top: 8px; }
.dining-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.dining-highlights {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}
.dining-highlight {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dining-highlight .dh-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--plum);
  line-height: 1;
}
.dining-highlight .dh-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ── LOCATION ── */
.location { background: #fff; }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.location-text .section-title { margin-top: 8px; }
.location-address {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}
.location-text > p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1.02rem;
}
.location-nearby {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.location-nearby li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text);
}
.location-nearby svg { flex-shrink: 0; }
.location-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--plum-pale);
  color: var(--plum);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 50px;
  transition: all 0.2s;
}
.contact-chip:hover {
  background: var(--plum);
  color: #fff;
}
.location-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 420px;
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--warm-gray); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: #fff;
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testimonial-card > p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ta-avatar {
  width: 44px;
  height: 44px;
  background: var(--plum);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
}
.testimonial-author span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── CTA ── */
.cta { background: var(--cream); padding: 80px 0; }
.cta-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: var(--plum);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-content {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-content .section-label {
  background: rgba(255,255,255,0.15);
  color: var(--amber);
}
.cta-content .section-title {
  color: #fff;
  margin-bottom: 16px;
}
.cta-content > p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.8;
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-actions .btn-primary {
  background: var(--amber);
  color: var(--plum-deep);
}
.cta-actions .btn-primary:hover {
  background: #ffdb4d;
}
.cta-actions .btn-ghost {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.cta-actions .btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}
.cta-image {
  overflow: hidden;
  min-height: 400px;
}
.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── CONTACT ── */
.contact { background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info .section-title { margin-top: 8px; }
.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.02rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.cd-icon {
  width: 52px;
  height: 52px;
  background: var(--plum-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 4px;
}
.contact-detail span,
.contact-detail a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.contact-detail a:hover { color: var(--plum); }

/* ── FORM ── */
.contact-form-wrap {
  background: var(--warm-gray);
  padding: 40px;
  border-radius: var(--radius-xl);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(107,47,91,0.12);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 4px rgba(107,47,91,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0a0b0;
}
.form-group textarea { resize: vertical; }
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  gap: 16px;
}
.form-success svg { color: var(--plum); }
.form-success p {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 600;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--plum-deep);
  color: rgba(255,255,255,0.8);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand p {
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}
.footer-links h4,
.footer-contact h4 {
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--amber); }
.footer-contact p {
  font-size: 0.92rem;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.65);
}
.footer-contact a {
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--amber); }

/* ── MOBILE NAV ── */
@media (max-width: 900px) {
  .nav-list {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(255,251,245,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
  }
  .nav-list.open {
    transform: translateY(0);
    opacity: 1;
  }
  .nav-list a {
    width: 100%;
    text-align: center;
    padding: 14px;
  }
  .nav-toggle { display: flex; }

  .hero-container { padding-bottom: 200px; }
  .hero-content { padding: 32px; }
  .floating-cards {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
    padding: 0 0 40px;
  }
  .float-card { max-width: 100%; }

  .intro-grid,
  .dining-layout,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .intro-image-wrap { order: -1; }
  .rooms-grid,
  .amenities-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .cta-card { grid-template-columns: 1fr; }
  .cta-content { padding: 40px 32px; }
  .cta-image { min-height: 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .dining-highlights { gap: 24px; }
}

@media (max-width: 480px) {
  .hero-content { padding: 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form-wrap { padding: 24px; }
}

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
