/* ============================================
   La Maison de Tante Rose — Design System
   ============================================ */

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

:root {
  /* Colors */
  --cream: #F5F0E8;
  --cream-light: #FAF7F2;
  --beige: #D9D2C0;
  --beige-dark: #C4B9A3;
  --gold: #C4A35A;
  --gold-light: #D4B96A;
  --charcoal: #2C2C2C;
  --charcoal-light: #3A3A3A;
  --text-muted: #5A5044;
  --rose: #C4848A;
  --rose-light: #E8B4B8;
  --rose-pale: #F0D4D8;
  --sage: #8B9E7E;
  --sage-light: #A8B89D;
  --olive: #6B7B5E;
  --white: #FFFFFF;
  --shadow-soft: 0 2px 20px rgba(44, 44, 44, 0.06);
  --shadow-medium: 0 4px 30px rgba(44, 44, 44, 0.1);
  --shadow-card: 0 8px 40px rgba(44, 44, 44, 0.08);

  /* Typography */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Lora', 'Georgia', serif;
  --font-accent: 'Cormorant Garamond', 'Georgia', serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1100px;
  --border-radius: 12px;
}

/* ============================================
   Reset & Base
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--cream-light);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--rose);
}

/* ============================================
   Check-in Landing Page (link sent via social)
   ============================================ */

.checkin-landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream) 0%, #F8F2EA 50%, var(--cream-light) 100%);
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
}

.checkin-landing__corner {
  position: absolute;
  width: 250px;
  height: 250px;
  pointer-events: none;
  opacity: 0.7;
}

.checkin-landing__corner--tl {
  top: -20px;
  left: -20px;
}

.checkin-landing__corner--br {
  bottom: -20px;
  right: -20px;
  transform: scale(-1);
}

.checkin-landing__card {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 20px 60px rgba(44, 44, 44, 0.1);
  border: 1px solid rgba(196, 163, 90, 0.15);
  max-width: 600px;
  width: 100%;
  text-align: center;
  animation: checkinSlideIn 0.6s ease;
}

@keyframes checkinSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.checkin-landing__brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.checkin-landing__logo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: 0 6px 20px rgba(196, 163, 90, 0.2);
  margin: 0 auto 16px;
  display: block;
}

.checkin-landing__room-badge {
  display: inline-block;
  padding: 8px 24px;
  background: linear-gradient(135deg, var(--rose-pale), var(--rose-light));
  color: var(--charcoal);
  border-radius: 30px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.checkin-landing__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--charcoal);
  margin-bottom: 8px;
}

.checkin-landing__subtitle {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 12px;
}

.checkin-landing__lang {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 32px;
}

.lang-btn-sm {
  background: none;
  border: 1px solid var(--beige);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.lang-btn-sm:hover,
.lang-btn-sm.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.checkin-landing__steps {
  text-align: left;
  margin-bottom: 32px;
}

.checkin-landing__steps .step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.checkin-landing__steps .step:last-child {
  margin-bottom: 0;
}

.checkin-landing__steps .step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(196, 163, 90, 0.3);
}

.checkin-landing__steps .step-content h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--charcoal);
}

.checkin-landing__steps .step-content p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.checkin-landing__contact {
  padding-top: 24px;
  border-top: 1px solid var(--beige);
}

.checkin-landing__contact p {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.checkin-landing__contact .phone-link {
  font-size: 1.2rem;
}

.checkin-landing__footer {
  position: relative;
  z-index: 2;
  margin-top: 32px;
}

.checkin-landing__footer p {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

.checkin-footer-dark {
  background: var(--charcoal);
  padding: 24px 28px 16px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.checkin-footer-dark .footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.checkin-footer-dark .footer-cin {
  color: var(--beige);
}

.checkin-footer-dark p {
  color: var(--beige-dark);
}

.checkin-footer-dark .footer-credit {
  font-size: 0.8rem;
  color: var(--beige-dark);
  opacity: 0.7;
  font-style: normal;
}

.checkin-footer-dark .footer-credit a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.checkin-footer-dark .footer-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 12px auto;
  opacity: 0.5;
}

@media (max-width: 480px) {
  .checkin-landing__card {
    padding: 32px 24px;
  }

  .checkin-landing__corner {
    width: 120px;
    height: 120px;
  }
}



/* ============================================
   Container
   ============================================ */

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

/* ============================================
   Typography
   ============================================ */

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.3;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--charcoal-light);
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 40px;
  font-weight: 300;
}

/* ============================================
   Floral Divider (SVG inline)
   ============================================ */

.floral-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 48px auto;
  gap: 16px;
  max-width: 320px;
}

.floral-divider::before,
.floral-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--beige-dark), transparent);
}

.floral-divider .rose-icon {
  width: 32px;
  height: 32px;
  color: var(--rose);
  flex-shrink: 0;
}

/* ============================================
   Language Selector
   ============================================ */

.lang-selector {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.25);
  border: 1.5px solid var(--beige);
  padding: 8px 18px;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 30px;
  color: var(--charcoal);
  transition: all 0.35s ease;
  backdrop-filter: blur(4px);
}

.lang-btn:hover {
  background: var(--gold-light);
  color: var(--white);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

.lang-btn.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(196, 163, 90, 0.35);
}

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
  background: var(--charcoal);
}

.nav.scrolled {
  background: rgba(55, 47, 42, 0.97);
  box-shadow: var(--shadow-soft);
  padding: 10px 0;
}

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

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--beige);
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
}

.nav-brand:hover {
  color: var(--gold);
}

.nav.scrolled .nav-brand {
  color: var(--beige);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--beige-dark);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-mobile-brand {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--beige);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-light) 30%, #F8F2EA 60%, var(--cream) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196, 132, 138, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(168, 184, 157, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(196, 163, 90, 0.06) 0%, transparent 50%);
  animation: floatBg 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatBg {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(20px, -20px) rotate(1deg);
  }

  66% {
    transform: translate(-10px, 15px) rotate(-1deg);
  }
}

/* Floral corner decorations */
.hero-corner {
  position: absolute;
  width: 300px;
  height: 300px;
  pointer-events: none;
  opacity: 1;
}

.hero-corner--tl {
  top: -20px;
  left: -20px;
}

.hero-corner--tr {
  top: -20px;
  right: -20px;
  transform: scaleX(-1);
}

.hero-corner--bl {
  bottom: -20px;
  left: -20px;
  transform: scaleY(-1);
}

.hero-corner--br {
  bottom: -20px;
  right: -20px;
  transform: scale(-1);
}

/* Rose overlay pattern on hero */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 60px 50px at 15% 20%, rgba(196, 132, 138, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40px 35px at 85% 15%, rgba(196, 132, 138, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 50px 45px at 75% 80%, rgba(196, 132, 138, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 35px 30px at 25% 75%, rgba(196, 132, 138, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 45px 40px at 50% 50%, rgba(196, 132, 138, 0.03) 0%, transparent 70%);
  z-index: 1;
}

/* Rose accent border on sections */
.section--cream::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, transparent 10%, var(--rose-light) 30%, var(--rose) 50%, var(--rose-light) 70%, transparent 90%);
  opacity: 0.3;
  margin-bottom: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 24px;
}

.hero-eyebrow {
  font-family: var(--font-accent);
  font-size: clamp(0.9rem, 1.5vw, 1.15rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-logo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 8px 30px rgba(196, 163, 90, 0.25);
  margin: 0 auto 28px;
  display: block;
}

.hero h1 {
  color: var(--charcoal);
  margin-bottom: 16px;
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  font-family: var(--font-accent);
  font-size: 1.05rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.hero-location svg {
  width: 18px;
  height: 18px;
  color: var(--rose);
}

.hero-cin {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  background: rgba(196, 163, 90, 0.12);
  display: inline-block;
  padding: 6px 20px;
  border-radius: 20px;
  border: 1px solid rgba(196, 163, 90, 0.3);
}

/* ============================================
   Sections — General
   ============================================ */

.section {
  padding: var(--section-padding);
}

.section--cream {
  background: var(--cream);
}

.section--white {
  background: var(--cream-light);
}

.section--beige {
  background: var(--beige);
  color: var(--charcoal);
}

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

.section-header h2 {
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 0;
}

/* ============================================
   Falling Rose Petals
   ============================================ */

.petal {
  position: absolute;
  top: -40px;
  pointer-events: none;
  z-index: 2;
  font-size: 1.2rem;
  opacity: 0;
  animation: petalFall linear forwards;
}

@keyframes petalFall {
  0% { opacity: 0; transform: translateY(0) rotate(0deg) translateX(0); }
  10% { opacity: 0.8; }
  100% { opacity: 0; transform: translateY(100vh) rotate(360deg) translateX(80px); }
}

.petal:nth-child(odd) {
  animation-name: petalFallAlt;
}

@keyframes petalFallAlt {
  0% { opacity: 0; transform: translateY(0) rotate(0deg) translateX(0); }
  10% { opacity: 0.7; }
  100% { opacity: 0; transform: translateY(100vh) rotate(-360deg) translateX(-60px); }
}

/* ============================================
   Rose Section Divider
   ============================================ */

.section-rose-divider {
  text-align: center;
  padding: 8px 0;
  font-size: 1.2rem;
  opacity: 0.5;
  letter-spacing: 12px;
}

/* ============================================
   Reveal Animation
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ============================================
   Cards
   ============================================ */

.card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(196, 163, 90, 0.1);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(44, 44, 44, 0.12);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--cream), var(--beige));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   Room Tabs
   ============================================ */

.room-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.room-tab {
  padding: 12px 28px;
  font-family: var(--font-accent);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  border: 1.5px solid var(--beige);
  background: transparent;
  border-radius: 30px;
  cursor: pointer;
  color: var(--charcoal);
  transition: all 0.3s ease;
}

.room-tab.active {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}

.room-tab:hover:not(.active) {
  background: var(--cream);
  border-color: var(--rose-light);
}

.room-content {
  display: none;
}

.room-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

/* ============================================
   Steps / Instructions
   ============================================ */

.steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 700px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(196, 163, 90, 0.3);
}

.step-content h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.step-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.step-photo {
  margin-top: 12px;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 16px rgba(44, 44, 44, 0.1);
  border: 2px solid var(--beige);
}

/* ============================================
   Grid Layouts
   ============================================ */

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

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

/* ============================================
   Experiences Section
   ============================================ */

.experience-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(196, 163, 90, 0.15);
  margin-bottom: 32px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(44, 44, 44, 0.12);
}

.experience-card__icon {
  font-size: 3rem;
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #E8F4FD, #D1ECFA);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.15);
}

.experience-card__content {
  flex: 1;
}

.experience-card__content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.experience-card__desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--charcoal-light);
  margin-bottom: 16px;
}

.experience-card__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.experience-card__photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.experience-card__photo:hover {
  transform: scale(1.03);
}

.experience-card__details {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 3px solid var(--gold-light);
}

.experience-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  border-radius: 30px;
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(196, 163, 90, 0.3);
}

@media (max-width: 600px) {
  .experience-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
  }

  .experience-card__details {
    border-left: none;
    padding-left: 0;
    border-top: 2px solid var(--gold-light);
    padding-top: 16px;
  }

  .experience-card__gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .experience-card__photo {
    height: 180px;
  }
}

/* ============================================
   Restaurant Cards
   ============================================ */

.restaurant-category {
  margin-bottom: 48px;
}

.restaurant-category h3 {
  font-family: var(--font-display);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.restaurant-category h3 .emoji {
  font-size: 1.4rem;
}

.restaurant-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

a.restaurant-item {
  display: block;
  padding: 24px;
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid rgba(196, 163, 90, 0.12);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.restaurant-item:hover {
  box-shadow: var(--shadow-medium);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.restaurant-item .name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.restaurant-arrow {
  font-size: 0.9rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

a.restaurant-item:hover .restaurant-arrow {
  opacity: 1;
  transform: translateX(4px);
}

.restaurant-item .desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.restaurant-item .meta {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--rose);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================
   Map Section
   ============================================ */

.map-wrapper {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 3px solid var(--beige);
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ============================================
   Info Grid
   ============================================ */

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.info-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid rgba(196, 163, 90, 0.1);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.info-card .icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.info-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.info-card a {
  color: var(--gold);
  font-weight: 500;
}

/* ============================================
   Checkout Section
   ============================================ */

.checkout-box {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.checkout-box .time-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  border-radius: 30px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 24px;
  box-shadow: 0 6px 20px rgba(196, 163, 90, 0.3);
}

/* ============================================
   House Rules
   ============================================ */

.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.rule-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid rgba(196, 163, 90, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.rule-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(196, 163, 90, 0.15);
  border-color: rgba(196, 163, 90, 0.3);
}

.rule-item .rule-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px;
  text-align: center;
}

.rule-item .rule-icon svg {
  width: 36px;
  height: 36px;
}

.rule-item h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.rule-item p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================
   Contacts Section
   ============================================ */

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.contact-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid rgba(196, 163, 90, 0.1);
  transition: all 0.3s ease;
}

.contact-card:hover {
  box-shadow: var(--shadow-medium);
}

.contact-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.contact-card .icon svg {
  width: 40px;
  height: 40px;
}

.contact-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 8px;
}

.contact-card p,
.contact-card a {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ============================================
   Google Review Section
   ============================================ */

.review-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px 0;
}

.review-stars {
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.review-box h2 {
  font-family: var(--font-display);
  margin-bottom: 12px;
}

.review-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--white);
  color: var(--charcoal);
  border: 2px solid #4285F4;
  border-radius: 30px;
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(66, 133, 244, 0.15);
}

.review-btn:hover {
  background: #4285F4;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(66, 133, 244, 0.3);
}

.review-btn:hover svg path {
  fill: var(--white);
}

.review-thanks {
  margin-top: 20px;
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--charcoal);
  color: var(--beige);
  padding: 28px 0 18px;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer-cin {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--beige);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.footer p {
  color: var(--beige-dark);
  font-size: 0.9rem;
}

.footer-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 14px auto;
  opacity: 0.5;
}

.footer-credit {
  font-size: 0.8rem;
  color: var(--beige-dark);
  opacity: 0.7;
}

.footer-credit a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.footer-credit a:hover {
  text-decoration: underline;
}

.footer-legal {
  margin-top: 8px;
  font-size: 0.8rem;
}

.footer-legal-link {
  color: var(--beige-dark);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-legal-link:hover {
  color: var(--gold);
  opacity: 1;
}

/* ============================================
   Cookie Banner
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(55, 47, 42, 0.97);
  color: var(--beige);
  padding: 18px 24px;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  line-height: 1.5;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.cookie-banner p {
  margin: 0;
  max-width: 600px;
  text-align: center;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 6px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.04em;
}

.cookie-btn--accept {
  background: var(--gold);
  color: var(--white);
}

.cookie-btn--accept:hover {
  background: var(--rose);
}

.cookie-btn--info {
  background: transparent;
  color: var(--beige-dark);
  border: 1px solid var(--beige-dark);
}

.cookie-btn--info:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ============================================
   Legal Modals (Privacy + Cookie Policy)
   ============================================ */

.legal-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.legal-modal.open {
  opacity: 1;
  visibility: visible;
}

.legal-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
}

.legal-modal-content {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  max-width: 640px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.legal-modal.open .legal-modal-content {
  transform: translateY(0);
}

.legal-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--charcoal);
  cursor: pointer;
  line-height: 1;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.legal-modal-close:hover {
  opacity: 1;
}

.legal-modal-content h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.legal-modal-body p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--charcoal-light);
  margin-bottom: 14px;
}

.legal-modal-body ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-modal-body li {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--charcoal-light);
  margin-bottom: 6px;
}

.legal-modal-body code {
  background: #f0ece6;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85rem;
}

.legal-modal-body a {
  color: var(--gold);
  text-decoration: underline;
}

@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    padding: 16px;
    gap: 12px;
  }

  .legal-modal-content {
    padding: 28px 20px;
    width: 95%;
  }
}

/* ============================================
   Scroll to Top
   ============================================ */

.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(196, 163, 90, 0.4);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--rose);
  transform: translateY(-2px);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   Responsive
   ============================================ */

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

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(55, 47, 42, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    display: flex;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.3rem;
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease;
  }

  .nav-links.open a {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links.open li:nth-child(1) a { transition-delay: 0s; }
  .nav-links.open li:nth-child(2) a { transition-delay: 0.05s; }
  .nav-links.open li:nth-child(3) a { transition-delay: 0.1s; }
  .nav-links.open li:nth-child(4) a { transition-delay: 0.15s; }
  .nav-links.open li:nth-child(5) a { transition-delay: 0.2s; }
  .nav-links.open li:nth-child(6) a { transition-delay: 0.25s; }
  .nav-links.open li:nth-child(7) a { transition-delay: 0.3s; }

  /* Mobile menu brand */
  .nav-mobile-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-links.open .nav-mobile-brand {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-mobile-brand span:last-child {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 0.06em;
  }

  .nav-mobile-rose {
    font-size: 2.2rem;
    filter: drop-shadow(0 2px 8px rgba(196, 132, 138, 0.4));
    animation: rosePulse 3s ease-in-out infinite;
  }

  @keyframes rosePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
  }

  .nav-toggle {
    display: flex;
    z-index: 999;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100svh;
  }

  .card {
    padding: 28px 24px;
  }

  .room-tabs {
    flex-direction: column;
    align-items: stretch;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .room-tab {
    text-align: center;
  }

  .restaurant-list {
    grid-template-columns: 1fr;
  }

  .map-wrapper iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .lang-btn {
    padding: 6px 14px;
    font-size: 0.85rem;
  }

  .hero-corner {
    width: 120px;
    height: 120px;
  }
}

/* ============================================
   Utility: Hide languages
   ============================================ */

[data-lang] {
  display: none;
}

[data-lang].lang-active {
  display: block;
}

/* For inline elements */
span[data-lang].lang-active,
a[data-lang].lang-active {
  display: inline;
}

/* ============================================
   Phone Link Styling
   ============================================ */
.phone-link {
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-display);
  white-space: nowrap;
}

.phone-link:hover {
  color: var(--rose);
}

/* ============================================
   Landmarks
   ============================================ */

.landmarks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.landmark-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid rgba(196, 163, 90, 0.1);
  transition: all 0.3s ease;
}

.landmark-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.landmark-card .emoji {
  font-size: 2rem;
  margin-bottom: 10px;
}

.landmark-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 6px;
}

.landmark-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}