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

/* ===== VARIABLES ===== */
:root {
  --amber: #F0A500;
  --amber-light: #F5C040;
  --amber-dark: #C17F00;
  --brown-dark: #2C1A0E;
  --brown-mid: #4A2C17;
  --sand: #F5EDDC;
  --sand-dark: #E8D9C0;
  --cream: #FAF6EF;
  --white: #FFFFFF;
  --text-dark: #1A0F08;
  --text-mid: #4A3020;
  --text-light: #8A6A50;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Josefin Sans', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--text-dark); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== LOADER ===== */
#loader { position: fixed; inset: 0; background: var(--brown-dark); display: flex; align-items: center; justify-content: center; z-index: 9999; transition: opacity 0.8s ease, visibility 0.8s ease; }
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { width: 120px; animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100%{transform:scale(1);opacity:.8} 50%{transform:scale(1.08);opacity:1} }

/* ===== NAVIGATION ===== */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 3rem; display: flex; align-items: center; justify-content: space-between; height: 88px; transition: var(--transition); }
nav.scrolled { background: rgba(44,26,14,.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); height: 68px; box-shadow: 0 4px 30px rgba(0,0,0,.3); }
.nav-logo { height: 54px; width: auto; transition: var(--transition); border-radius: 50%; }
nav.scrolled .nav-logo { height: 42px; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-family: var(--font-sans); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sand); transition: var(--transition); position: relative; white-space: nowrap; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px; background: var(--amber); transform: scaleX(0); transform-origin: right; transition: transform .3s ease; }
.nav-links a:hover { color: var(--amber); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-book-btn { background: var(--amber) !important; color: var(--brown-dark) !important; padding: .55rem 1.2rem !important; font-weight: 600 !important; border-radius: 2px; }
.nav-book-btn:hover { background: var(--amber-light) !important; }
.nav-book-btn::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--sand); transition: var(--transition); border-radius: 2px; }

/* ===== MOBILE MENU ===== */
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--brown-dark); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; padding: 2rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-display); font-size: 1.7rem; color: var(--sand); font-style: italic; transition: var(--transition); text-align: center; }
.mobile-menu a:hover { color: var(--amber); }
.mobile-menu .close-btn { position: absolute; top: 1.2rem; right: 1.5rem; font-size: 2.2rem; color: var(--sand); cursor: pointer; line-height: 1; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font-family: var(--font-sans); font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; padding: .9rem 2rem; border: none; cursor: pointer; transition: var(--transition); text-align: center; white-space: nowrap; }
.btn-primary { background: var(--amber); color: var(--brown-dark); box-shadow: 0 4px 20px rgba(240,165,0,.3); }
.btn-primary:hover { background: var(--amber-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--amber); color: var(--amber); }
.btn-dark { background: var(--brown-dark); color: var(--sand); }
.btn-dark:hover { background: var(--brown-mid); transform: translateY(-2px); }

/* ===== HERO ===== */
.hero { height: 100vh; min-height: 580px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero-bg { position: absolute; inset: 0; background-image: url('../images/beachfront-evening.jpg'); background-size: cover; background-position: center; transform: scale(1.06); animation: heroZoom 12s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(44,26,14,.5) 0%, rgba(44,26,14,.22) 50%, rgba(44,26,14,.72) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; color: var(--white); max-width: 820px; padding: 0 1.5rem; width: 100%; }
.hero-eyebrow { font-family: var(--font-sans); font-size: .68rem; letter-spacing: .28em; text-transform: uppercase; color: var(--amber-light); margin-bottom: 1rem; opacity: 0; animation: fadeUp .8s .6s ease forwards; }
.hero-title { font-family: var(--font-display); font-size: clamp(2.2rem, 8vw, 5.8rem); font-weight: 400; line-height: 1.08; letter-spacing: -.02em; text-shadow: 0 4px 30px rgba(0,0,0,.4); opacity: 0; animation: fadeUp .9s .8s ease forwards; }
.hero-title em { font-style: italic; color: var(--amber-light); }
.hero-subtitle { font-family: var(--font-body); font-size: clamp(.95rem, 2.5vw, 1.2rem); font-weight: 300; color: rgba(255,255,255,.88); margin: 1.1rem 0 2rem; opacity: 0; animation: fadeUp .9s 1s ease forwards; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeUp .9s 1.2s ease forwards; }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.65); font-family: var(--font-sans); font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; text-align: center; animation: bounce 2s ease infinite; z-index: 2; }
.hero-scroll::before { content: ''; display: block; width: 1px; height: 34px; background: rgba(255,255,255,.45); margin: 0 auto 8px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(7px)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }

/* ===== SECTIONS ===== */
section { padding: 5rem 0; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; width: 100%; }
.section-tag { font-family: var(--font-sans); font-size: .66rem; letter-spacing: .28em; text-transform: uppercase; color: var(--amber-dark); display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.section-tag::before { content: ''; display: block; width: 28px; height: 1px; background: var(--amber-dark); flex-shrink: 0; }
.section-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.75rem, 4vw, 2.8rem); line-height: 1.2; color: var(--brown-dark); }
.section-title em { font-style: italic; color: var(--amber-dark); }
.section-desc { font-size: clamp(.98rem, 2vw, 1.1rem); color: var(--text-mid); max-width: 600px; margin-top: .8rem; line-height: 1.75; }
.text-center { text-align: center; }
.text-center .section-tag { justify-content: center; }
.text-center .section-desc { margin: .8rem auto 0; }

/* ===== INTRO STRIP ===== */
.intro-strip { background: var(--brown-dark); padding: 2rem 0; }
.intro-strip-inner { display: flex; flex-wrap: wrap; }
.strip-item { flex: 1 1 200px; display: flex; align-items: center; gap: .85rem; padding: .9rem 1.6rem; border-right: 1px solid rgba(255,255,255,.08); color: var(--sand); }
.strip-item:last-child { border-right: none; }
.strip-icon { font-size: 1.4rem; color: var(--amber); flex-shrink: 0; }
.strip-label { font-family: var(--font-sans); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.44); }
.strip-value { font-family: var(--font-display); font-size: .93rem; }

/* ===== ABOUT ===== */
.about-section { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-images { position: relative; }
.about-img-main { width: 85%; aspect-ratio: 4/5; object-fit: cover; border-radius: 2px; box-shadow: 0 16px 50px rgba(44,26,14,.18); }
.about-img-accent { position: absolute; bottom: -2rem; right: 0; width: 50%; aspect-ratio: 1; object-fit: cover; border: 5px solid var(--cream); box-shadow: 0 10px 35px rgba(44,26,14,.18); }
.about-badge { position: absolute; top: 1.5rem; right: 1rem; background: var(--amber); color: var(--brown-dark); width: 84px; height: 84px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: var(--font-sans); text-align: center; box-shadow: 0 6px 25px rgba(240,165,0,.4); }
.about-badge .num { font-size: 1.4rem; font-weight: 600; line-height: 1; }
.about-badge .label { font-size: .5rem; letter-spacing: .1em; text-transform: uppercase; }
.divider { width: 44px; height: 2px; background: var(--amber); margin: 1.4rem 0; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.6rem; }
.feature-item { display: flex; gap: .7rem; align-items: flex-start; font-size: .92rem; color: var(--text-mid); }
.feature-icon { color: var(--amber); margin-top: 3px; flex-shrink: 0; }

/* ===== RESTAURANT ===== */
.restaurant-section { background: var(--brown-dark); color: var(--sand); padding: 5rem 0; overflow: hidden; }
.restaurant-section .section-title { color: var(--sand); }
.restaurant-section .section-tag { color: var(--amber); }
.restaurant-section .section-tag::before { background: var(--amber); }
/* Prevent grid from ever exceeding container */
.restaurant-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; margin-top: 3rem; width: 100%; min-width: 0; }

/* Menu column — never overflow */
.menu-col { width: 100%; min-width: 0; overflow: hidden; }

/* Menu tabs — scroll horizontally on mobile, never wrap */
.menu-cats {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 1.8rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  width: 100%;
}
.menu-cats::-webkit-scrollbar { display: none; }
.menu-cat-btn {
  font-family: var(--font-sans); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .75rem 1.1rem; color: rgba(255,255,255,.5); cursor: pointer; border: none;
  background: none; transition: var(--transition); border-bottom: 2px solid transparent;
  margin-bottom: -1px; white-space: nowrap; flex-shrink: 0;
}
.menu-cat-btn.active { color: var(--amber); border-color: var(--amber); }
.menu-cat-btn:hover { color: var(--sand); }
.menu-panel { display: none; width: 100%; }
.menu-panel.active { display: block; }
.menu-item {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.06);
  gap: .8rem; width: 100%; min-width: 0;
}
.menu-item-left { flex: 1; min-width: 0; overflow: hidden; }
.menu-item-name { font-family: var(--font-display); font-size: 1rem; word-break: break-word; }
.menu-item-desc { font-size: .83rem; color: rgba(255,255,255,.42); margin-top: .15rem; line-height: 1.5; word-break: break-word; }
.menu-item-price { font-family: var(--font-sans); font-size: .83rem; color: var(--amber); white-space: nowrap; flex-shrink: 0; padding-top: 2px; padding-left: .5rem; }
.restaurant-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.restaurant-imgs img { aspect-ratio: 4/3; object-fit: cover; border-radius: 2px; width: 100%; }
.restaurant-imgs img:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; }
.happy-hour-badge { background: var(--amber); color: var(--brown-dark); padding: 1rem 1.3rem; margin-top: 1.8rem; display: flex; align-items: center; gap: .85rem; border-radius: 2px; flex-wrap: wrap; width: 100%; }
.happy-hour-badge .hh-icon { font-size: 1.4rem; flex-shrink: 0; }
.hh-text .hh-title { font-family: var(--font-sans); font-size: .63rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; }
.hh-text .hh-desc { font-size: .87rem; font-family: var(--font-display); }

/* ===== GALLERY ===== */
.gallery-strip { padding: 0; overflow: hidden; }
.gallery-row { display: flex; gap: 3px; }
.gallery-row img { flex: 1; height: 270px; object-fit: cover; transition: flex .4s ease; cursor: pointer; min-width: 0; }
.gallery-row img:hover { flex: 2; }

/* ===== ROOMS ===== */
.rooms-section { background: var(--sand); }
.rooms-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; margin-bottom: 3.5rem; }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.room-card { background: var(--white); overflow: hidden; box-shadow: 0 4px 25px rgba(44,26,14,.08); transition: var(--transition); }
.room-card:hover { transform: translateY(-5px); box-shadow: 0 14px 45px rgba(44,26,14,.14); }
.room-img { aspect-ratio: 4/3; overflow: hidden; }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.room-card:hover .room-img img { transform: scale(1.05); }
.room-info { padding: 1.4rem; }
.room-type { font-family: var(--font-sans); font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--amber-dark); margin-bottom: .4rem; }
.room-name { font-family: var(--font-display); font-size: 1.22rem; color: var(--brown-dark); }
.room-features { display: flex; gap: .75rem; margin: .85rem 0; flex-wrap: wrap; }
.room-feature { font-family: var(--font-sans); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-light); display: flex; align-items: center; gap: .3rem; }
.room-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--sand-dark); gap: .5rem; }
.room-price .from { font-size: .62rem; color: var(--text-light); font-family: var(--font-sans); letter-spacing: .1em; display: block; }
.room-price .amount { font-family: var(--font-display); font-size: 1.28rem; color: var(--brown-dark); font-weight: 600; }
.room-price .per { font-size: .7rem; color: var(--text-light); }

/* ===== BOOKING PLATFORMS ===== */
.platforms-section { background: var(--brown-dark); padding: 3.5rem 0; }
.platforms-inner { text-align: center; }
.platforms-label { font-family: var(--font-sans); font-size: .63rem; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.38); margin-bottom: 2rem; }
.platforms-grid { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }
.platform-card { display: flex; align-items: center; gap: .7rem; padding: .85rem 1.4rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: var(--sand); font-family: var(--font-sans); font-size: .75rem; letter-spacing: .05em; transition: var(--transition); border-radius: 2px; }
.platform-card:hover { background: var(--amber); color: var(--brown-dark); border-color: var(--amber); transform: translateY(-2px); }
.platform-icon { font-size: 1.1rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--cream); }
.reviews-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.rating-badge { display: flex; align-items: baseline; gap: .4rem; }
.rating-score { font-family: var(--font-display); font-size: 3.6rem; color: var(--amber-dark); line-height: 1; }
.rating-stars { color: var(--amber); font-size: 1.1rem; }
.rating-meta { font-family: var(--font-sans); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-light); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card { background: var(--white); padding: 1.8rem; position: relative; box-shadow: 0 2px 18px rgba(44,26,14,.06); }
.review-card::before { content: '"'; font-family: var(--font-display); font-size: 4.5rem; color: var(--amber-light); position: absolute; top: .4rem; right: 1.2rem; line-height: 1; opacity: .35; }
.reviewer { display: flex; align-items: center; gap: .75rem; margin-bottom: .9rem; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--amber-dark); display: flex; align-items: center; justify-content: center; color: var(--white); font-family: var(--font-display); font-size: .95rem; flex-shrink: 0; }
.reviewer-name { font-family: var(--font-display); font-size: .97rem; color: var(--brown-dark); }
.reviewer-location { font-family: var(--font-sans); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-light); }
.review-stars { color: var(--amber); font-size: .78rem; margin-bottom: .7rem; }
.review-text { font-size: .96rem; color: var(--text-mid); line-height: 1.7; }
.review-source { font-family: var(--font-sans); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; color: var(--amber-dark); margin-top: .9rem; }

/* ===== EXPERIENCES ===== */
.experiences-section { background: var(--sand); }
.exp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-top: 2.5rem; }
.exp-card { text-align: center; padding: 2.2rem 1.2rem; background: var(--white); transition: var(--transition); }
.exp-card:hover { transform: translateY(-4px); box-shadow: 0 10px 35px rgba(44,26,14,.1); }
.exp-icon { font-size: 2.2rem; margin-bottom: .85rem; }
.exp-title { font-family: var(--font-display); font-size: 1.04rem; color: var(--brown-dark); margin-bottom: .4rem; }
.exp-desc { font-size: .88rem; color: var(--text-light); line-height: 1.6; }

/* ===== CTA BANNER ===== */
.cta-banner { padding: 0; position: relative; overflow: hidden; min-height: 420px; display: flex; align-items: center; }
.cta-bg { position: absolute; inset: 0; background-image: url('../images/outdoor-deck.jpg'); background-size: cover; background-position: center; }
.cta-overlay { position: absolute; inset: 0; background: rgba(44,26,14,.74); }
.cta-content { position: relative; z-index: 2; text-align: center; color: var(--white); max-width: 700px; margin: 0 auto; padding: 4rem 1.5rem; width: 100%; }
.cta-content .section-tag { justify-content: center; color: var(--amber-light); }
.cta-content .section-tag::before { background: var(--amber-light); }
.cta-content .section-title { color: var(--white); font-size: clamp(1.75rem, 4vw, 3.1rem); margin: .8rem 0 1.2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.8rem; }

/* ===== CONTACT ===== */
.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3.5rem; align-items: start; }
.contact-item { display: flex; gap: 1.1rem; margin-bottom: 1.8rem; align-items: flex-start; }
.contact-icon { font-size: 1.3rem; color: var(--amber); margin-top: 2px; flex-shrink: 0; }
.contact-label { font-family: var(--font-sans); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-light); }
.contact-value { font-family: var(--font-display); font-size: 1rem; color: var(--brown-dark); line-height: 1.6; }
.contact-social { display: flex; gap: .9rem; margin-top: 2rem; flex-wrap: wrap; }
.social-btn { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--sand-dark); color: var(--text-mid); font-size: 1rem; transition: var(--transition); flex-shrink: 0; }
.social-btn:hover { background: var(--amber); color: var(--brown-dark); border-color: var(--amber); }
.map-container { aspect-ratio: 4/3; overflow: hidden; border-radius: 2px; box-shadow: 0 6px 35px rgba(44,26,14,.14); }
.map-container iframe { width: 100%; height: 100%; border: none; display: block; }

/* ===== FOOTER ===== */
footer { background: var(--brown-dark); color: var(--sand); padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand .footer-logo { height: 64px; margin-bottom: 1rem; border-radius: 50%; border: 2px solid var(--amber); }
.footer-brand p { font-size: .9rem; color: rgba(255,255,255,.46); line-height: 1.8; max-width: 250px; }
.footer-heading { font-family: var(--font-sans); font-size: .63rem; letter-spacing: .2em; text-transform: uppercase; color: var(--amber); margin-bottom: 1.2rem; }
.footer-links { display: flex; flex-direction: column; gap: .55rem; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.46); transition: var(--transition); }
.footer-links a:hover { color: var(--amber); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.8rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-family: var(--font-sans); font-size: .6rem; letter-spacing: .08em; color: rgba(255,255,255,.28); }
.ta-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.06); padding: .45rem .9rem; border: 1px solid rgba(255,255,255,.1); border-radius: 2px; transition: var(--transition); }
.ta-badge:hover { background: rgba(255,255,255,.12); }
.ta-badge span { font-family: var(--font-sans); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.46); }

/* ===== LIGHTBOX ===== */
#lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 10000; align-items: center; justify-content: center; padding: 1rem; }
#lightbox.open { display: flex; }
#lightbox img { max-width: 92vw; max-height: 85vh; object-fit: contain; border-radius: 2px; }
#lightbox-close { position: fixed; top: 1rem; right: 1.5rem; color: #fff; font-size: 2rem; cursor: pointer; opacity: .75; line-height: 1; }
#lightbox-close:hover { opacity: 1; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================================
   RESPONSIVE
============================================================= */

/* 1024px — Tablet Landscape */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-main { width: 100%; }
  .about-img-accent { display: none; }

  .restaurant-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  /* Show images in 2 cols below menu on tablet */
  .restaurant-imgs { grid-template-columns: 1fr 1fr; }
  .restaurant-imgs img:first-child { grid-column: 1 / -1; }

  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-intro { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }

  .reviews-grid { grid-template-columns: 1fr 1fr; }

  .exp-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* 768px — Tablet Portrait */
@media (max-width: 768px) {
  nav { padding: 0 1.2rem; height: 70px; }
  nav.scrolled { height: 58px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  section { padding: 3.5rem 0; }
  .container { padding: 0 1.1rem; }

  .hero { min-height: 500px; }
  .hero-actions .btn { padding: .8rem 1.4rem; font-size: .66rem; }

  /* Strip */
  .intro-strip-inner { flex-direction: column; }
  .strip-item { flex: 1 1 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: .85rem 1.2rem; }
  .strip-item:last-child { border-bottom: none; }

  /* About */
  .about-features { grid-template-columns: 1fr; }

  /* Restaurant — single col, images stack */
  .restaurant-section { padding: 3.5rem 0; overflow: hidden; }
  .restaurant-grid { gap: 2rem; width: 100%; }
  .restaurant-imgs { grid-template-columns: 1fr 1fr; }
  .restaurant-imgs img { aspect-ratio: 4/3; }
  .restaurant-imgs img:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; }
  .menu-col { width: 100%; max-width: 100%; }

  /* Gallery */
  .gallery-row img { height: 170px; }

  /* Rooms */
  .rooms-grid { grid-template-columns: 1fr 1fr; }

  /* Platforms */
  .platform-card { padding: .75rem 1rem; font-size: .7rem; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Experiences */
  .exp-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* CTA */
  .cta-banner { min-height: 340px; }
  .cta-content { padding: 3rem 1.2rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* 480px — Mobile */
@media (max-width: 480px) {
  section { padding: 2.8rem 0; }
  .container { padding: 0 1rem; }

  .hero { min-height: 460px; }
  .hero-title { font-size: clamp(1.9rem, 9.5vw, 2.6rem); }
  .hero-subtitle { font-size: .93rem; }
  .hero-actions { flex-direction: column; align-items: center; width: 100%; gap: .75rem; }
  .hero-actions .btn { width: 100%; max-width: 280px; }
  .hero-scroll { display: none; }

  /* Intro strip — tighter */
  .strip-value { font-size: .88rem; }

  /* About badge smaller */
  .about-badge { width: 74px; height: 74px; }
  .about-badge .num { font-size: 1.25rem; }

  /* Menu tabs: scroll hint */
  .menu-cat-btn { padding: .6rem .75rem; font-size: .58rem; letter-spacing: .07em; }
  .menu-item-name { font-size: .93rem; }
  .menu-item-desc { font-size: .78rem; }
  .menu-item-price { font-size: .78rem; }

  /* Restaurant images: single col on small mobile */
  .restaurant-imgs { grid-template-columns: 1fr; }
  .restaurant-imgs img { aspect-ratio: 16/9; }
  .restaurant-imgs img:first-child { grid-column: auto; }

  /* Gallery */
  .gallery-row img { height: 140px; }

  /* Rooms: single col */
  .rooms-grid { grid-template-columns: 1fr; }
  .room-info { padding: 1.1rem; }
  .room-name { font-size: 1.12rem; }

  /* Exp: 2 col keeps fine but reduce padding */
  .exp-card { padding: 1.6rem .9rem; }
  .exp-icon { font-size: 1.9rem; }

  /* Platforms: stack */
  .platforms-grid { flex-direction: column; align-items: stretch; }
  .platform-card { justify-content: center; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-actions { flex-direction: column; align-items: center; width: 100%; }
  .cta-actions .btn { width: 100%; max-width: 280px; }

  /* Map: squarer ratio on phone */
  .map-container { aspect-ratio: 1; }

  /* Footer: full single col */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom p { font-size: .56rem; }
  .ta-badge span { font-size: .56rem; }
}

/* 360px — Very Small */
@media (max-width: 360px) {
  .container { padding: 0 .85rem; }
  nav { padding: 0 .9rem; }
  .menu-cat-btn { padding: .55rem .6rem; font-size: .54rem; }
  .exp-grid { grid-template-columns: 1fr; }
  .gallery-row img { height: 120px; }
  .btn { padding: .75rem 1.1rem; font-size: .65rem; letter-spacing: .12em; }
  .hero-title { font-size: clamp(1.7rem, 10vw, 2.2rem); }
}
