:root {
  --bg: #f8f4ee;
  --surface: rgba(255,255,255,0.88);
  --surface-strong: #ffffff;
  --text: #1f2937;
  --muted: #5b6472;
  --gold: #d9a441;
  --gold-deep: #b8821f;
  --teal: #0f766e;
  --teal-soft: #dff6f2;
  --rose: #f8d8cf;
  --shadow: 0 18px 50px rgba(28, 37, 46, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217,164,65,0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(15,118,110,0.16), transparent 28%),
    linear-gradient(180deg, #fffaf5 0%, #f8f4ee 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  color: #23413d;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.section { padding: 84px 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: 34px; }

.eyebrow {
  display: inline-block;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 10px;
}

h1, h2, h3, p { margin: 0; }
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.9rem, 6vw, 5.3rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
h3 { font-size: 1.2rem; margin-bottom: 8px; line-height: 1.2; }

p.lead { font-size: 1.1rem; color: rgba(255,255,255,0.88); max-width: 620px; margin-top: 18px; }
p.copy, .muted { color: var(--muted); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 14px 20px; border-radius: 999px;
  font-weight: 700; font-size: 0.98rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #e9bd61);
  color: #2a2110;
  box-shadow: 0 16px 30px rgba(217,164,65,0.28);
}
.btn-secondary {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: white;
  backdrop-filter: blur(10px);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--teal);
  color: var(--teal);
}
.btn-outline:hover { background: var(--teal); color: white; }

/* ── Nav ─────────────────────────────────── */
.top-bar {
  display: flex; align-items: center; justify-content: flex-end; gap: 6px;
  padding: 4px 16px; background: #2d1a6e;
}
.top-bar-btn {
  display: inline-flex; align-items: center; gap: 5px; padding: 2px 10px;
  border-radius: 999px; border: 1.5px solid rgba(255,255,255,0.3);
  background: transparent; cursor: pointer; font-weight: 700; font-size: 0.75rem;
  color: rgba(255,255,255,0.85); transition: background 0.15s, color 0.15s, border-color 0.15s;
  font-family: inherit; line-height: 1;
}
.top-bar-btn:hover { background: rgba(255,255,255,0.15); color: #fff; }
.top-bar-btn.active { background: #fff; color: #2d1a6e; border-color: #fff; }
.top-bar-flag { font-size: 1rem; line-height: 1; }
.top-bar-flag { display: inline-flex; align-items: center; }
.top-bar-flag svg { width: 16px; height: 12px; border-radius: 1px; flex-shrink: 0; }
.nav-wrap { position: sticky; top: -28px; z-index: 50; }
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.74); border: 1px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(16px); border-radius: 999px;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.08);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; flex-shrink: 0; min-width: 0; }
.brand-logo { height: 120px; width: auto !important; display: block; flex-shrink: 0; object-fit: contain; margin-top: -28px; margin-bottom: -28px; }
.brand-text { line-height: 1.2; min-width: 0; overflow: hidden; }
.brand small { display: block; color: var(--muted); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.03em; }
.nav-links { display: flex; align-items: center; gap: 22px; color: #324250; font-weight: 600; font-size: 0.96rem; }
.nav-links a:hover { color: var(--teal); }
.btn-book-nav {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #e9bd61);
  color: #2a2110; font-weight: 700; font-size: 0.9rem;
  white-space: nowrap; flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(217,164,65,0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-book-nav:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(217,164,65,0.38); }
/* ── Mobile menu ───────────────────────────── */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; padding: 4px; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--text);
  margin: 5px auto; border-radius: 2px; transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 40;
  background: rgba(0,0,0,0.3); backdrop-filter: blur(4px);
}
.mobile-overlay.active { display: block; }
.mobile-menu {
  display: none; position: fixed; top: 0; right: 0; z-index: 55;
  width: 280px; max-width: 85vw; height: 100vh; height: 100dvh;
  background: var(--surface-strong); box-shadow: -8px 0 30px rgba(0,0,0,0.15);
  padding: 70px 24px 24px; flex-direction: column; gap: 4px; overflow-y: auto;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  display: block; padding: 12px 14px; border-radius: 12px;
  font-weight: 600; font-size: 1rem; color: var(--text);
  transition: background 0.15s, color 0.15s;
}
.mobile-menu a:hover { background: var(--teal-soft); color: var(--teal); }
.mobile-menu .mm-cta {
  margin-top: 12px; text-align: center;
  background: linear-gradient(135deg, var(--gold), #e9bd61);
  color: #2a2110; border-radius: 999px; font-weight: 700;
}
.mobile-menu .mm-divider {
  height: 1px; background: rgba(0,0,0,0.08); margin: 8px 0;
}
.mobile-menu .mm-lang { display: flex; gap: 8px; margin-top: 8px; padding: 0 14px; }

/* ── Language toggle ─────────────────────── */
.lang-btn {
  padding: 6px 12px; border-radius: 999px; border: 1.5px solid rgba(0,0,0,0.1);
  background: transparent; cursor: pointer; font-weight: 700; font-size: 0.82rem;
  color: var(--muted); transition: background 0.18s, color 0.18s, border-color 0.18s;
  font-family: inherit; white-space: nowrap;
}
.lang-btn:hover { border-color: var(--teal); color: var(--teal); }
.lang-btn.active { background: var(--teal); color: #fff; border-color: var(--teal); }
.lang-short { display: none; }
.lang-full { display: inline; }

/* ── Cards ───────────────────────────────── */
.hero-card, .glass-card, .card {
  background: var(--surface); border: 1px solid rgba(255,255,255,0.68);
  backdrop-filter: blur(14px); box-shadow: var(--shadow); border-radius: var(--radius-xl);
}

/* ── Tags ────────────────────────────────── */
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.tag { padding: 8px 10px; background: #f4efe6; border-radius: 999px; font-size: 0.85rem; font-weight: 700; color: #715113; }

/* ── Reviews ─────────────────────────────── */
.review-stars { color: #c28717; margin-bottom: 12px; letter-spacing: 0.12em; font-size: 0.95rem; }
.review-card {
  background: var(--surface-strong); border-radius: 24px; padding: 22px;
  box-shadow: var(--shadow); border: 1px solid rgba(21,31,41,0.06);
}
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ── FAQ ─────────────────────────────────── */
.faq-card {
  background: var(--surface-strong); border-radius: 24px; padding: 22px;
  box-shadow: var(--shadow); border: 1px solid rgba(21,31,41,0.06);
}
.faq-card summary { list-style: none; cursor: pointer; font-weight: 800; font-size: 1rem; }
.faq-card summary::-webkit-details-marker { display: none; }
.faq-card p { margin-top: 12px; color: var(--muted); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── CTA Band ────────────────────────────── */
.cta-band {
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(15,118,110,0.96), rgba(9,84,79,0.96)),
    url('images/rasa/restaurantdiningevent.jpg') center/cover;
  color: white; border-radius: 32px;
  box-shadow: 0 24px 60px rgba(8,58,56,0.22);
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 20px; align-items: center;
}
.cta-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }

/* ── Footer ──────────────────────────────── */
footer { padding: 34px 0 56px; color: var(--muted); }
.footer-card {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 20px; padding: 22px 24px; border-radius: 24px;
  background: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.8); box-shadow: var(--shadow);
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo { height: 72px; width: auto !important; flex-shrink: 0; object-fit: contain; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 0.9rem; font-weight: 600; color: var(--muted); }
.footer-links a:hover { color: var(--teal); }

/* ── Booking Form ────────────────────────── */
#booking { background: linear-gradient(180deg, #f0f9f7 0%, var(--bg) 100%); }
.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.bform-honeypot { position: absolute; opacity: 0; pointer-events: none; height: 0; overflow: hidden; }
.bform-row { display: grid; gap: 16px; margin-bottom: 16px; }
.bform-3col { grid-template-columns: repeat(3, 1fr); }
.bform-2col { grid-template-columns: repeat(2, 1fr); }
.bform-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 0; min-width: 0; }
.bform-field label { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.bform-optional { font-weight: 400; color: var(--muted); }
.bform-field input,
.bform-field select,
.bform-field textarea {
  width: 100%; box-sizing: border-box; padding: 12px 14px;
  border: 1.5px solid #d1d5db; border-radius: var(--radius-md);
  font-family: inherit; font-size: 0.97rem; color: var(--text); background: #fff;
  transition: border-color 0.18s, box-shadow 0.18s;
  -webkit-appearance: none; appearance: none;
}
.bform-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px;
}
.bform-field input:focus,
.bform-field select:focus,
.bform-field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(15,118,110,0.12);
}
.bform-field textarea { resize: vertical; min-height: 88px; }
.bform-standalone { margin-bottom: 16px; }
.bform-error {
  color: #dc2626; font-size: 0.91rem; padding: 10px 14px; background: #fef2f2;
  border: 1px solid #fecaca; border-radius: var(--radius-md); margin-bottom: 14px;
}
.bform-submit { width: 100%; padding: 16px; font-size: 1.05rem; cursor: pointer; border: none; }
.bform-submit:disabled { opacity: 0.65; cursor: not-allowed; }
.bform-success-card {
  padding: 40px 32px; background: #fff; border-radius: var(--radius-xl);
  text-align: center; box-shadow: var(--shadow);
}
.bform-success-icon {
  width: 64px; height: 64px; border-radius: 50%; background: var(--teal);
  color: #fff; font-size: 1.9rem; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 20px;
}
.bform-success-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.bform-success-card p { color: var(--muted); margin-bottom: 24px; line-height: 1.6; }
.bform-success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.booking-info-card {
  background: #fff; border-radius: var(--radius-xl); padding: 30px 26px;
  box-shadow: var(--shadow); position: sticky; top: 90px;
}
.booking-info-card h3 { font-size: 1.05rem; margin-bottom: 20px; color: var(--text); }
.binfo-row { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 16px; }
.binfo-icon { font-size: 1.15rem; flex-shrink: 0; margin-top: 1px; }
.binfo-row strong { display: block; font-size: 0.92rem; margin-bottom: 2px; }
.binfo-row .muted { font-size: 0.86rem; line-height: 1.45; }
.binfo-divider { border: none; border-top: 1px solid #e5e7eb; margin: 18px 0; }

/* ── Split layout ────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.map-card {
  overflow: hidden; border-radius: 28px; min-height: 520px; position: relative;
  box-shadow: var(--shadow);
  background:
    linear-gradient(145deg, rgba(20,33,46,0.24), rgba(20,33,46,0.06)),
    url('images/rasa/fountain2.jpg') center/cover no-repeat;
}
.map-badge {
  position: absolute; left: 22px; bottom: 22px; max-width: 320px; padding: 18px;
  border-radius: 22px; background: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 1080px) {
  .split, .cta-band, .reviews-grid, .faq-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 240px 240px; }
  .gallery-item:first-child { grid-row: span 1; grid-column: span 2; }
  .hero-card { max-width: none; justify-self: stretch; }
  .photo-strip { grid-template-columns: 1fr 1fr; height: 260px; }
  .photo-strip-item:last-child { display: none; }
  .brand-logo { height: 90px; margin-top: -14px; margin-bottom: -14px; }
  .nav-wrap { top: -14px; }
}

@media (max-width: 760px) {
  .nav { border-radius: 20px; padding: 8px 14px; gap: 12px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero { min-height: auto; padding-bottom: 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-copy { padding: 36px 0 16px; }
  .hero-card { display: none; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 18px; max-width: none; }
  .stat { padding: 12px 10px; }
  .stat strong { font-size: 1.1rem; }
  .stat span { font-size: 0.77rem; line-height: 1.3; }
  .photo-strip { grid-template-columns: 1fr 1fr; height: 220px; }
  .photo-strip-item:last-child { display: none; }
  .intro-strip { margin-top: -14px; }
  .intro-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .map-card { min-height: 250px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; padding: 24px; }
  .cta-actions { justify-content: flex-start; }
  h2 { font-size: clamp(1.7rem, 5.5vw, 2.4rem); }
  .section { padding: 52px 0; }
  .section-head { margin-bottom: 22px; }
  .icon { width: 44px; height: 44px; font-size: 1.15rem; margin-bottom: 12px; }
}

@media (max-width: 480px) {
  .nav-wrap { top: 8px; padding-top: 8px; }
  .nav { padding: 7px 10px; gap: 6px; }
  .brand-logo { height: 56px; margin-top: -4px; margin-bottom: -4px; }
  .nav-wrap { top: calc(8px - 4px); }
  .btn-book-nav { padding: 8px 14px; font-size: 0.82rem; }
  .brand-text { font-size: 0.78rem; line-height: 1.15; }
  .brand small { font-size: 0.65rem; }
  .lang-full { display: none; }
  .lang-short { display: inline; }
  .lang-btn { padding: 5px 9px; font-size: 0.76rem; }
  h1 { font-size: clamp(1.9rem, 9vw, 2.55rem); line-height: 1.05; }
  h2 { font-size: clamp(1.45rem, 6.5vw, 1.9rem); }
  .pill { font-size: 0.74rem; padding: 7px 10px; max-width: 100%; }
  .lead { font-size: 0.95rem; margin-top: 12px; }
  .hero-copy { padding: 22px 0 10px; }
  .btn-row { gap: 8px; margin-top: 18px; }
  .btn { padding: 11px 16px; font-size: 0.9rem; }
  .hero-stats { grid-template-columns: 1fr; gap: 6px; max-width: 300px; }
  .stat { padding: 10px 14px; }
  .stat strong { font-size: 1.2rem; margin-bottom: 2px; }
  .stat span { font-size: 0.81rem; }
  .photo-strip { grid-template-columns: 1fr; height: 180px; }
  .photo-strip-item:nth-child(2) { display: none; }
  .photo-strip-item:last-child { display: none; }
  .section { padding: 40px 0; }
  .section-head { margin-bottom: 18px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; grid-auto-rows: 220px; }
  .gallery-item:first-child { grid-column: span 1; }
  .footer-card { flex-direction: column; gap: 12px; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-logo { height: 48px; }
}

@media (max-width: 960px) {
  .booking-wrapper { grid-template-columns: 1fr; gap: 28px; }
  .booking-info-card { position: static; }
}
@media (max-width: 640px) {
  .bform-3col, .bform-2col { grid-template-columns: 1fr; }
  .bform-row { gap: 12px; margin-bottom: 12px; }
  .bform-success-card { padding: 28px 20px; }
}
