/* ===========================================================
   Bombay Dreams — Indian Restaurant
   Palette taken from the logo: deep emerald + antique gold
   =========================================================== */
:root {
  --green-900: #081f19;
  --green-800: #0c2a22;
  --green-700: #123b30;
  --green-600: #1a4d3f;
  --gold-500: #c9a24d;
  --gold-400: #d9b766;
  --gold-300: #e8d09a;
  --cream: #f8f3e8;
  --cream-2: #efe6d3;
  --ink: #1d1a14;
  --muted: #5d574b;
  --white: #fff;

  --font-display: "Cinzel", Georgia, serif;
  --font-accent: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", system-ui, -apple-system, sans-serif;

  --radius: 6px;
  --header-h: 84px;
  --shadow: 0 18px 40px -18px rgba(8, 31, 25, .45);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; margin: 0 0 .6em; letter-spacing: .02em; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1.1em; }

.wrap { width: min(1200px, 100% - 40px); margin-inline: auto; }
.narrow { max-width: 760px; text-align: center; }
.center { text-align: center; margin-top: 2.5rem; }

.skip { position: absolute; left: -9999px; top: 0; background: var(--gold-500); color: var(--green-900); padding: .6rem 1rem; z-index: 999; }
.skip:focus { left: 1rem; top: 1rem; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .78rem;
  font-weight: 500;
  color: var(--gold-500);
  margin-bottom: .8rem;
}
.ornament {
  width: 120px; height: 14px; margin: .2rem 0 1.6rem;
  background:
    radial-gradient(circle, var(--gold-500) 3px, transparent 3.5px) center / 14px 14px no-repeat,
    linear-gradient(var(--gold-500), var(--gold-500)) left center / 48px 1px no-repeat,
    linear-gradient(var(--gold-500), var(--gold-500)) right center / 48px 1px no-repeat;
}
.narrow .ornament, .section-head .ornament { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 500;
  font-size: .82rem; letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  padding: .95rem 1.8rem; border-radius: 2px;
  border: 1px solid transparent;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn.sm { padding: .7rem 1.3rem; font-size: .74rem; }
.btn-gold { background: var(--gold-500); color: var(--green-900); }
.btn-gold:hover { background: var(--gold-300); }
.btn-green { background: var(--green-700); color: var(--gold-300); }
.btn-green:hover { background: var(--green-900); }
.btn-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-light:hover { background: var(--white); color: var(--green-900); }
.btn-outline { background: transparent; color: var(--gold-300); border-color: var(--gold-500); }
.btn-outline:hover { background: var(--gold-500); color: var(--green-900); }
.btn-outline-dark { background: transparent; color: var(--green-700); border-color: var(--green-700); }
.btn-outline-dark:hover { background: var(--green-700); color: var(--gold-300); }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1.8rem; }
.btn-row.left { justify-content: flex-start; margin-top: 1.2rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  transition: background .35s, box-shadow .35s, height .35s;
}
.site-header.scrolled { background: rgba(8, 31, 25, .96); box-shadow: 0 6px 24px rgba(0,0,0,.25); --header-h: 72px; }
.header-inner { height: 100%; display: flex; min-width: 0; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; color: var(--gold-300); }
.brand picture { flex: none; }
.brand img { width: 56px; height: 56px; max-width: none; transition: width .35s, height .35s; }
.scrolled .brand img { width: 48px; height: 48px; }
.brand-name { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: .08em; white-space: nowrap; }

.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.6rem; }
.main-nav ul a {
  color: var(--cream); text-decoration: none; font-size: .82rem; font-weight: 400;
  letter-spacing: .16em; text-transform: uppercase; position: relative; padding: .3rem 0; white-space: nowrap;
}
.main-nav ul a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--gold-500); transition: width .3s; }
.main-nav ul a:hover::after { width: 100%; }
.nav-ctas { display: flex; gap: .7rem; }
.nav-ctas .btn { padding: .7rem 1.1rem; font-size: .72rem; white-space: nowrap; }

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 170px;
  background: var(--green-900); border: 1px solid rgba(201,162,77,.35);
  padding: .4rem 0; opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s; box-shadow: var(--shadow);
}
.dropdown-menu a { display: block; padding: .6rem 1.1rem; color: var(--cream); text-decoration: none; font-size: .9rem; letter-spacing: .06em; }
.dropdown-menu a:hover { background: var(--green-700); color: var(--gold-300); }
.dropdown:hover .dropdown-menu, .dropdown.open .dropdown-menu, .dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: none; }

.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; padding: 10px; }
.nav-toggle span { display: block; height: 2px; background: var(--gold-300); margin: 5px 0; transition: transform .3s, opacity .3s; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (auto-rotating backgrounds) ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: grid; place-items: center; overflow: hidden;
  color: var(--white); text-align: center; background: var(--green-900);
}
.hero-slides, .hero-slide, .hero-overlay { position: absolute; inset: 0; }
.hero-slide {
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08);
  transition: opacity 1.6s ease, transform 8s ease-out;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-overlay {
  background:
    radial-gradient(ellipse at center, rgba(8,31,25,.45) 0%, rgba(8,31,25,.78) 75%),
    linear-gradient(to bottom, rgba(8,31,25,.65) 0%, rgba(8,31,25,.1) 30%, rgba(8,31,25,.7) 100%);
}
.hero-content { position: relative; z-index: 2; padding: calc(var(--header-h) + 2rem) 0 5rem; }
.hero-logo {
  width: clamp(170px, 24vw, 260px); height: auto; margin: 0 auto 1.4rem;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.55));
  animation: rise 1.2s ease both;
}
.hero .eyebrow { color: var(--gold-300); animation: rise 1.2s .15s ease both; }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.8rem); max-width: 900px; margin: 0 auto 2rem;
  text-shadow: 0 4px 24px rgba(0,0,0,.5); animation: rise 1.2s .3s ease both;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: rise 1.2s .45s ease both; }
.hero-dots { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; gap: .7rem; z-index: 3; }
.hero-dots button {
  width: 34px; height: 3px; border: 0; padding: 0; cursor: pointer;
  background: rgba(255,255,255,.4); transition: background .3s;
}
.hero-dots button.is-active { background: var(--gold-500); }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* ---------- Sections ---------- */
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; position: relative; }
.section-head { text-align: center; max-width: 780px; margin: 0 auto 3.2rem; }
.lead { color: var(--muted); font-size: 1.05rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.split.reverse .split-text { order: 2; }
.split-text h2 { color: var(--green-700); }
.split-text p { color: var(--muted); }
.split-text .btn { margin-top: .8rem; }
.split-media { position: relative; padding: 0 0 4rem 0; }
.split-media > img:first-child { width: 88%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.split-media .inset {
  position: absolute; right: 0; bottom: 0; width: 48%; aspect-ratio: 1; object-fit: cover;
  border: 8px solid var(--cream); border-radius: var(--radius); box-shadow: var(--shadow);
}
.split.reverse .split-media > img:first-child { margin-left: auto; }
.split.reverse .split-media .inset { right: auto; left: 0; }

/* Story */
.story { background: var(--green-800); color: var(--cream); }
.story::before {
  content: ""; position: absolute; inset: 0; opacity: .08; pointer-events: none;
  background-image: radial-gradient(var(--gold-500) 1px, transparent 1.4px);
  background-size: 22px 22px;
}
.story h2 { color: var(--gold-300); }
.story p:not(.eyebrow) { color: rgba(248,243,232,.85); font-family: var(--font-accent); font-size: 1.35rem; line-height: 1.6; }

/* Order */
.order { color: var(--white); overflow: hidden; background: var(--green-900); }
.order-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; }
.order::after { content: ""; position: absolute; inset: 0; background: rgba(8,31,25,.78); }
.order .wrap { position: relative; z-index: 2; }
.order h2 { color: var(--gold-300); }
.order p { color: rgba(255,255,255,.88); }

/* Menus */
.menus h2, .whats-on h2, .functions h2, .locations h2, .gallery-section h2 { color: var(--green-700); }
.menu-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.menu-card {
  position: relative; display: block; overflow: hidden; border-radius: var(--radius);
  text-decoration: none; color: var(--white); aspect-ratio: 3 / 4; box-shadow: var(--shadow);
}
.menu-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.menu-card:hover img { transform: scale(1.07); }
.menu-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,31,25,.95) 0%, rgba(8,31,25,.2) 55%, transparent 100%); }
.menu-card-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.8rem; z-index: 2; }
.menu-card h3 { font-size: 1.7rem; color: var(--gold-300); margin-bottom: .3rem; }
.menu-card p { font-size: .95rem; color: rgba(255,255,255,.85); margin-bottom: .8rem; }
.menu-card .link { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-400); }

.signature {
  margin-top: 4rem; background: var(--white); border: 1px solid var(--cream-2);
  padding: clamp(1.8rem, 4vw, 3rem); border-radius: var(--radius);
}
.signature-title { text-align: center; color: var(--green-700); font-size: 1.5rem; margin-bottom: 1.6rem; }
.dish-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 3rem; }
.dish-list li { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; border-bottom: 1px dashed var(--cream-2); padding-bottom: 1rem; }
.dish-list strong { display: block; font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 1rem; letter-spacing: .03em; }
.dish-list span { font-size: .92rem; color: var(--muted); }
.dish-list em { font-style: normal; font-family: var(--font-display); color: var(--gold-500); font-size: 1.15rem; }

/* What's On */
.whats-on { background: var(--cream-2); }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.offer {
  background: var(--green-800); color: var(--cream); padding: 2.4rem 2rem; border-radius: var(--radius);
  position: relative; border: 1px solid rgba(201,162,77,.25); transition: transform .3s, box-shadow .3s;
}
.offer:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.offer::before { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(201,162,77,.25); border-radius: 3px; pointer-events: none; }
.offer-tag { display: inline-block; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-400); margin-bottom: .9rem; }
.offer h3 { color: var(--gold-300); font-size: 1.35rem; }
.offer p { margin: 0; color: rgba(248,243,232,.8); font-size: .98rem; }

/* Functions */
.spaces { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.space { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 30px -20px rgba(0,0,0,.4); display: flex; flex-direction: column; }
.space img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.space-body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.space h3 { color: var(--green-700); }
.space p { color: var(--muted); font-size: .96rem; flex: 1; }
.capacity { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-500); font-weight: 500; }

/* Catering */
.catering { background: var(--white); }
.banquets { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin: 1.4rem 0 1.2rem; }
.banquets > div { border-left: 2px solid var(--gold-500); padding-left: 1.1rem; }
.banquets h4 { color: var(--green-700); font-size: 1.05rem; margin-bottom: .5rem; }
.banquets p { font-size: .9rem; margin-bottom: .4rem; line-height: 1.5; }
.banquets b { font-weight: 500; color: var(--ink); display: block; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; }

/* Gallery */
.gallery-section { background: var(--cream); padding-bottom: 0; }
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: 6px;
  grid-auto-flow: dense;
}
.gallery figure { margin: 0; overflow: hidden; position: relative; }
.gallery figure.tall, .gallery .tall { grid-row: span 2; }
.gallery figure.wide { grid-column: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease, filter .5s; }
.gallery figure:hover img { transform: scale(1.06); filter: saturate(1.15); }

/* Book */
.book { background: var(--green-700); color: var(--cream); }
.book h2 { color: var(--gold-300); }

/* Locations */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.location { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 14px 34px -22px rgba(0,0,0,.45); }
.map { aspect-ratio: 16 / 10; background: var(--cream-2); }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }
.location-body { padding: 1.8rem 2rem 2.2rem; }
.location h3 { color: var(--green-700); font-size: 1.6rem; }
.location p { color: var(--muted); margin-bottom: .9rem; }
.location a { color: var(--green-700); text-decoration: none; }
.location a:hover { color: var(--gold-500); }
.location .btn-green { color: var(--gold-300); }
.location .btn-outline-dark:hover { color: var(--gold-300); }
.hours b { color: var(--ink); font-weight: 500; }

/* Footer */
.site-footer { background: var(--green-900); color: rgba(248,243,232,.75); padding: 4.5rem 0 0; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr .8fr; gap: 2.5rem; }
.footer-brand img { width: 110px; height: 110px; margin-bottom: 1rem; }
.site-footer h4 { color: var(--gold-400); font-size: 1rem; letter-spacing: .12em; margin-bottom: 1rem; }
.site-footer a { color: var(--cream); text-decoration: none; }
.site-footer a:hover { color: var(--gold-300); }
.site-footer p { margin-bottom: .7rem; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: .5rem; }
.social {
  display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(201,162,77,.5); color: var(--gold-300) !important; transition: background .25s, color .25s;
}
.social:hover { background: var(--gold-500); color: var(--green-900) !important; }
.footer-bottom { border-top: 1px solid rgba(201,162,77,.18); margin-top: 3rem; padding: 1.4rem 0; font-size: .82rem; letter-spacing: .06em; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem 2rem; }
.footer-partners { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem 2.4rem; }
.partner { display: flex; align-items: center; gap: .7rem; text-decoration: none; opacity: .75; transition: opacity .25s, transform .25s; }
.partner:hover { opacity: 1; transform: translateY(-2px); }
.partner-label { font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(248,243,232,.7); white-space: nowrap; }
.partner-logo { width: auto; filter: brightness(0) invert(1); }
.partner-logo--dd { height: 20px; }
.partner-logo--sipo { height: 26px; }
.footer-bottom p { margin: 0; }

/* ===========================================================
   Inner pages: Functions & Catering
   =========================================================== */
.main-nav ul a[aria-current="page"]::after { width: 100%; }

.hero--page { min-height: 78vh; min-height: 78svh; }
.hero--page h1 { margin-bottom: 1rem; }
.hero-sub { font-family: var(--font-accent); font-size: clamp(1.2rem, 2vw, 1.5rem); color: rgba(255,255,255,.9); margin: 0 auto 2rem; max-width: 640px; animation: rise 1.2s .4s ease both; }

.page-intro { padding-bottom: clamp(3rem, 6vw, 4.5rem); }
.intro-lead { font-family: var(--font-accent); font-size: clamp(1.25rem, 2.2vw, 1.55rem); line-height: 1.6; color: var(--green-700); }

.band { background: var(--green-900); text-align: center; padding: clamp(2.2rem, 5vw, 3.4rem) 0; position: relative; overflow: hidden; }
.band::before { content: ""; position: absolute; inset: 0; opacity: .1; background: url('../assets/img/pattern-gold.jpg') center / 340px; }
.band h2 { position: relative; color: var(--gold-300); margin: 0; font-size: clamp(2rem, 4.4vw, 3.3rem); }

.spaces-list { background: #d9b46a; padding: clamp(3.5rem, 7vw, 6rem) 0; }
.space-row { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.space-row + .space-row { margin-top: clamp(4rem, 8vw, 7rem); }
.space-row.flip .space-row-text { order: 2; }
.space-row h3 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); color: var(--green-900); margin-bottom: 1.2rem; }
.space-row p { color: #2a2418; font-size: 1.05rem; }
.space-row .capacity { font-family: var(--font-display); letter-spacing: .06em; text-transform: none; font-size: 1.15rem; color: var(--green-900); margin: 1.4rem 0 1.8rem; }
.space-row-media img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; box-shadow: 0 30px 50px -28px rgba(8,31,25,.7); }
.btn-dark { background: var(--green-900); color: var(--gold-300); }
.btn-dark:hover { background: #000; }

.banquets-section { background: var(--cream); }
.banquets-section h2, .page-intro h2 { color: var(--green-700); }
.tabs { max-width: 820px; margin: 0 auto; background: var(--white); border: 1px solid var(--cream-2); border-radius: var(--radius); box-shadow: 0 16px 40px -30px rgba(0,0,0,.5); overflow: hidden; }
.tab-list { display: grid; grid-template-columns: 1fr 1fr; background: var(--green-800); }
.tab-list button {
  font-family: var(--font-display); font-size: 1.05rem; letter-spacing: .06em; font-weight: 600;
  padding: 1.1rem 1rem; border: 0; cursor: pointer; background: transparent; color: rgba(248,243,232,.65);
  border-bottom: 3px solid transparent; transition: color .25s, border-color .25s, background .25s;
}
.tab-list button[aria-selected="true"] { color: var(--gold-300); border-bottom-color: var(--gold-500); background: var(--green-700); }
.tab-panel { padding: clamp(1.8rem, 4vw, 3rem); }
.tab-panel h3 { text-align: center; color: var(--green-700); font-size: 1.6rem; margin-bottom: 1.6rem; }
.courses { margin: 0; display: grid; gap: 1.4rem; }
.courses div { display: grid; grid-template-columns: 160px 1fr; gap: 1.2rem; padding-bottom: 1.4rem; border-bottom: 1px dashed var(--cream-2); }
.courses div:last-child { border-bottom: 0; padding-bottom: 0; }
.courses dt { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-500); font-weight: 500; padding-top: .2rem; }
.courses dd { margin: 0; color: var(--ink); }

.strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.strip figure { margin: 0; aspect-ratio: 1; overflow: hidden; }
.strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.strip figure:hover img { transform: scale(1.06); }

/* Enquiry form */
.enquiry { background: var(--green-900); color: var(--cream); overflow: hidden; }
.enquiry::before { content: ""; position: absolute; inset: 0; background: url('../assets/img/pattern-gold.jpg') center / 420px; opacity: .08; }
.enquiry-grid { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.enquiry h2 { color: var(--gold-300); }
.enquiry-intro p { color: rgba(248,243,232,.82); }
.enquiry-contact { margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid rgba(201,162,77,.3); }
.enquiry-contact h4 { color: var(--gold-400); font-size: 1rem; letter-spacing: .1em; }
.enquiry-contact a { color: var(--cream); text-decoration: none; border-bottom: 1px solid rgba(201,162,77,.4); }
.enquiry-contact a:hover { color: var(--gold-300); }

.enquiry-form { background: var(--cream); color: var(--ink); padding: clamp(1.6rem, 4vw, 2.8rem); border-radius: var(--radius); box-shadow: 0 30px 60px -30px rgba(0,0,0,.6); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.2rem; margin-bottom: 1.6rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field-label { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; color: var(--green-700); }
.field-label span { text-transform: none; letter-spacing: 0; font-weight: 300; color: var(--muted); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; color: var(--ink); background: var(--white);
  border: 1px solid #d8ccb3; border-radius: 3px; padding: .8rem .9rem; width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(201,162,77,.25); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #b3261e; }
.enquiry-form .btn { width: 100%; font-size: .85rem; padding: 1.05rem; border: 0; }
.enquiry-form .btn[disabled] { opacity: .6; cursor: progress; }
.form-status { margin: 1rem 0 0; font-size: .95rem; min-height: 1.4em; }
.form-status.ok { color: var(--green-600); }
.form-status.err { color: #b3261e; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

@media (max-width: 960px) {
  .space-row, .enquiry-grid { grid-template-columns: 1fr; }
  .space-row.flip .space-row-text { order: 0; }
  .space-row-media { order: -1; }
  .strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .courses div { grid-template-columns: 1fr; gap: .3rem; }
  .tab-list button { font-size: .9rem; }
}

/* About image */
.about-media { position: relative; padding: 0 1.5rem 1.5rem 0; }
.about-media::before {
  content: ""; position: absolute; top: 1.5rem; left: 1.5rem; right: 0; bottom: 0;
  border: 1px solid var(--gold-500); border-radius: var(--radius); z-index: 0;
}
.about-media img {
  position: relative; z-index: 1; width: 100%; height: auto; aspect-ratio: 1345 / 1170;
  object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow);
}

/* Home gallery links */
.gallery a.g-item { display: block; overflow: hidden; position: relative; cursor: zoom-in; }
.gallery a.g-item.tall { grid-row: span 2; }
.gallery a.g-item.wide { grid-column: span 2; }
.gallery a.g-item:hover img { transform: scale(1.06); filter: saturate(1.15); }
.gallery-section .center { padding: 3rem 0 clamp(4rem, 8vw, 6rem); margin: 0; }

/* Gallery page */
.page-banner { position: relative; min-height: 56vh; display: grid; place-items: center; text-align: center; color: var(--white); background-size: cover; background-position: center; }
.page-banner-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(8,31,25,.8), rgba(8,31,25,.55) 45%, rgba(8,31,25,.8)); }
.page-banner-inner { position: relative; padding: calc(var(--header-h) + 2rem) 0 3rem; }
.page-banner h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); margin-bottom: .6rem; }
.page-banner .eyebrow { color: var(--gold-300); }

.masonry { columns: 3 300px; column-gap: 12px; }
.m-item { display: block; margin: 0 0 12px; break-inside: avoid; overflow: hidden; border-radius: 4px; cursor: zoom-in; }
.m-item img { width: 100%; height: auto; transition: transform .7s ease, filter .4s; }
.m-item:hover img { transform: scale(1.04); filter: saturate(1.15); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(5,18,14,.95); display: grid; place-items: center; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(92vw, 1400px); max-height: 82vh; width: auto; height: auto; box-shadow: 0 30px 80px rgba(0,0,0,.6); border-radius: 3px; }
.lightbox figcaption { color: rgba(248,243,232,.8); text-align: center; margin-top: 1rem; font-size: .95rem; }
.lb-btn { position: absolute; background: rgba(8,31,25,.6); border: 1px solid rgba(201,162,77,.5); color: var(--gold-300); width: 48px; height: 48px; border-radius: 50%; font-size: 1.4rem; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: background .2s; }
.lb-btn:hover { background: var(--gold-500); color: var(--green-900); }
.lb-close { top: 1.2rem; right: 1.2rem; }
.lb-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; top: 1.6rem; left: 1.4rem; color: var(--gold-300); font-size: .8rem; letter-spacing: .2em; }
@media (max-width: 640px) {
  .lb-prev, .lb-next { top: auto; bottom: 1.2rem; transform: none; }
  .masonry { columns: 2; column-gap: 8px; }
  .m-item { margin-bottom: 8px; }
  .gallery a.g-item.wide { grid-column: span 2; }
}

/* ===========================================================
   SIPO API-driven blocks: hours, featured dishes, menu, contact
   =========================================================== */
.hours-table { margin: 1rem 0 .4rem; border-top: 1px solid var(--cream-2); }
.hours-row { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem .2rem; border-bottom: 1px solid var(--cream-2); font-size: .95rem; }
.hours-row .day { color: var(--ink); font-weight: 400; }
.hours-row .time { color: var(--muted); text-align: right; }
.hours-row.today { background: rgba(201,162,77,.12); padding-inline: .6rem; border-radius: 3px; }
.hours-row.today .day { font-weight: 500; color: var(--green-700); }
.hours-row.today .day::after { content: "Today"; margin-left: .5rem; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-500); vertical-align: middle; }
.closed-day { color: #9b3b2f !important; }
.hours-loading, .hours-fallback { color: var(--muted); font-size: .92rem; padding: .7rem 0; margin: 0; }
.footer-today { font-size: .88rem; }
.footer-more { font-size: .78rem; letter-spacing: .08em; color: var(--gold-400) !important; }
.enquiry-today { font-size: .9rem; color: rgba(248,243,232,.7); }

/* Featured dishes (home) */
.featured { margin-bottom: 2.2rem; }
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.fcard { display: flex; flex-direction: column; background: var(--white); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit; box-shadow: 0 14px 34px -24px rgba(0,0,0,.45); transition: transform .3s, box-shadow .3s; }
.fcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.fcard-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-2); }
.fcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.fcard:hover .fcard-media img { transform: scale(1.06); }
.fcard-body { display: flex; flex-direction: column; gap: .35rem; padding: 1.2rem 1.3rem 1.4rem; flex: 1; }
.fcard-cat { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-500); font-weight: 500; }
.fcard-name { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--green-700); }
.fcard-desc { font-size: .9rem; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.fcard-price { margin-top: auto; padding-top: .4rem; font-family: var(--font-display); color: var(--ink); font-size: 1.05rem; }
.fcard-price .m-size { margin-right: .8rem; }

/* Short page banner */
.page-banner--short { min-height: 44vh; }

/* Menu page */
.menu-page { background: var(--cream); padding-bottom: 5rem; }
.menu-toolbar { position: sticky; top: 72px; z-index: 50; background: var(--green-900); box-shadow: 0 10px 24px -16px rgba(0,0,0,.6); }
.menu-toolbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem 0; }
.branch-tabs { display: inline-flex; background: rgba(255,255,255,.06); border: 1px solid rgba(201,162,77,.35); border-radius: 999px; padding: 4px; }
.branch-tab {
  font: 500 .8rem/1 var(--font-body); letter-spacing: .16em; text-transform: uppercase;
  border: 0; border-radius: 999px; padding: .75rem 1.4rem; cursor: pointer;
  background: transparent; color: rgba(248,243,232,.75); transition: background .25s, color .25s;
}
.branch-tab[aria-selected="true"] { background: var(--gold-500); color: var(--green-900); }
.branch-tab:not([aria-selected="true"]):hover { color: var(--gold-300); }
.menu-order-btn { white-space: nowrap; gap: .45em; }
.m-nav { display: flex; gap: .4rem; overflow-x: auto; padding: .6rem max(20px, calc((100% - 1200px) / 2)) .8rem; scrollbar-width: none; border-top: 1px solid rgba(201,162,77,.18); }
.m-nav::-webkit-scrollbar { display: none; }
.m-navlink { flex: none; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; color: rgba(248,243,232,.72); padding: .5rem .9rem; border-radius: 999px; border: 1px solid transparent; transition: color .2s, border-color .2s, background .2s; }
.m-navlink:hover { color: var(--gold-300); }
.m-navlink.is-active { color: var(--green-900); background: var(--gold-300); }

.menu-body { padding-top: 2.4rem; }
.menu-count { text-align: center; color: var(--muted); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; min-height: 1.2em; }
.menu-status { text-align: center; color: var(--muted); padding: 3rem 0; }
.menu-status a { color: var(--green-700); }
.m-cat { scroll-margin-top: 190px; padding: 2.6rem 0 1rem; }
.m-cat-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: .4rem 1rem; border-bottom: 2px solid var(--gold-500); padding-bottom: .8rem; margin-bottom: 1.2rem; }
.m-cat-head h2 { color: var(--green-700); font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 0; }
.m-cat-head p { flex-basis: 100%; order: 3; margin: 0; color: var(--muted); font-size: .95rem; }
.m-count { margin-left: auto; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-500); }
.m-sub { font-family: var(--font-body); font-weight: 500; font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-500); margin: 1.6rem 0 .6rem; }
.m-grid { list-style: none; margin: 0 0 1rem; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.2rem; }
.m-card {
  display: flex; flex-direction: column; background: var(--white); border: 1px solid #ece3cf;
  border-radius: 10px; overflow: hidden; box-shadow: 0 10px 26px -22px rgba(0,0,0,.5);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.m-card:hover { transform: translateY(-4px); box-shadow: 0 20px 34px -22px rgba(8,31,25,.55); border-color: var(--gold-300); }
.m-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-2); }
.m-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.m-card:hover .m-media img { transform: scale(1.05); }
.m-media.is-empty {
  background:
    url('../assets/logo.webp') center / 38% no-repeat,
    radial-gradient(circle at 50% 45%, var(--green-600), var(--green-900));
}
.m-card-body { display: flex; flex-direction: column; flex: 1; padding: 1rem 1.1rem 1.1rem; }
.m-name { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--ink); margin: 0 0 .35rem; letter-spacing: .02em; line-height: 1.3; }
.m-desc { font-size: .86rem; color: var(--muted); margin: 0 0 .9rem; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.m-card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: .8rem; padding-top: .8rem; border-top: 1px dashed #e3d8c0; }
.m-card-foot.has-sizes { align-items: flex-end; }
.m-price { font-family: var(--font-display); color: var(--green-700); font-size: 1.15rem; font-weight: 600; white-space: nowrap; }
.m-size { display: flex; align-items: baseline; gap: .4rem; font-size: .92rem; line-height: 1.6; }
.m-size span { font-family: var(--font-body); font-size: .7rem; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; min-width: 3.2em; }
.m-order {
  flex: none; display: inline-flex; align-items: center; gap: .35rem;
  font: 500 .74rem/1 var(--font-body); letter-spacing: .16em; text-transform: uppercase; text-decoration: none;
  background: var(--green-700); color: var(--gold-300); padding: .75rem 1.05rem; border-radius: 999px;
  transition: background .2s, color .2s, transform .2s;
}
.m-order::after { content: "+"; font-size: 1rem; line-height: 0; }
.m-order:hover { background: var(--gold-500); color: var(--green-900); }
.m-order:active { transform: scale(.96); }
.menu-note { margin-top: 3rem; text-align: center; font-size: .88rem; color: var(--muted); }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.contact-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 14px 34px -22px rgba(0,0,0,.45); scroll-margin-top: 90px; }
.contact-body { padding: 2rem 2.2rem 2.4rem; }
.contact-body h2 { color: var(--green-700); font-size: 2rem; margin-bottom: 1.2rem; }
.contact-list { margin: 0 0 1.6rem; display: grid; gap: .9rem; }
.contact-list div { display: grid; grid-template-columns: 90px 1fr; gap: 1rem; }
.contact-list dt { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-500); font-weight: 500; padding-top: .25rem; }
.contact-list dd { margin: 0; color: var(--ink); }
.contact-list a, .location .sipo-address a, .site-footer .sipo-address a { color: inherit; text-decoration: none; }
.contact-list a:hover { color: var(--gold-500); }
.hours-title { font-size: 1.05rem; color: var(--green-700); letter-spacing: .08em; margin: 0; }

@media (max-width: 1100px) {
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .featured-grid { grid-template-columns: 1fr; }
  .menu-toolbar { top: 72px; }
  .menu-toolbar-inner { gap: .5rem; padding: .6rem 0; }
  .branch-tabs { flex: 1; display: grid; grid-template-columns: 1fr 1fr; }
  .branch-tab { padding: .65rem .4rem; font-size: .72rem; letter-spacing: .1em; }
  .menu-order-btn { flex: none; padding: .75rem 1rem; }
  .order-from { display: none; }
  .m-nav { padding-top: .4rem; padding-bottom: .55rem; }
  .m-cat { scroll-margin-top: 200px; }
  .m-grid { grid-template-columns: 1fr 1fr; gap: .7rem; }
  .m-card-body { padding: .8rem .8rem .9rem; }
  .m-name { font-size: .9rem; }
  .m-desc { font-size: .8rem; -webkit-line-clamp: 2; }
  .m-card-foot { flex-direction: column; align-items: stretch; gap: .6rem; }
  .m-order { justify-content: center; }
  .contact-body { padding: 1.5rem; }
  .contact-list div { grid-template-columns: 1fr; gap: .2rem; }
}

/* Floating order button */
.fab { position: fixed; right: 24px; bottom: 24px; z-index: 90; display: flex; flex-direction: column; align-items: flex-end; gap: .7rem; }
.fab-btn {
  display: inline-flex; align-items: center; gap: .6rem; cursor: pointer; text-decoration: none;
  font: 500 .8rem/1 var(--font-body); letter-spacing: .16em; text-transform: uppercase;
  background: var(--gold-500); color: var(--green-900); border: 0; border-radius: 999px;
  padding: 1rem 1.5rem 1rem 1.25rem; box-shadow: 0 14px 30px -10px rgba(0,0,0,.55), 0 0 0 4px rgba(201,162,77,.25);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.fab-btn:hover { background: var(--gold-300); transform: translateY(-2px); }
.fab-btn:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }
.fab-icon { flex: none; }
.fab-menu {
  background: var(--green-900); border: 1px solid rgba(201,162,77,.4); border-radius: 12px; padding: .5rem;
  min-width: 190px; box-shadow: var(--shadow); animation: fab-in .2s ease;
}
.fab-menu[hidden] { display: none; }
.fab-menu-title { margin: .3rem .7rem .4rem; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-400); }
.fab-menu a { display: block; padding: .75rem .8rem; border-radius: 8px; color: var(--cream); text-decoration: none; font-size: .95rem; }
.fab-menu a:hover, .fab-menu a:focus-visible { background: var(--green-700); color: var(--gold-300); outline: none; }
@keyframes fab-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.nav-open .fab { display: none; }

@media (max-width: 640px) {
  .fab { right: 16px; bottom: 16px; }
  .fab-btn { width: 58px; height: 58px; padding: 0; justify-content: center; }
  .fab-text { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; padding-bottom: 5.5rem; }
  .footer-partners { justify-content: center; }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1360px) {
  .main-nav { gap: 1.4rem; }
  .main-nav ul { gap: 1.2rem; }
  .main-nav ul a { font-size: .76rem; letter-spacing: .12em; }
  .brand-name { display: none; }
}
@media (max-width: 1100px) {
  .nav-toggle { display: block; z-index: 110; }
  .main-nav {
    position: fixed; inset: 0; background: var(--green-900);
    flex-direction: column; justify-content: center; gap: 2.2rem;
    opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s;
  }
  .nav-open .main-nav { opacity: 1; visibility: visible; }
  .main-nav ul { flex-direction: column; align-items: center; gap: 1.3rem; }
  .main-nav ul a { font-size: 1rem; }
  .nav-ctas { flex-direction: column; align-items: stretch; }
  .nav-ctas .btn { padding: .9rem 1.6rem; font-size: .8rem; width: 100%; }
  .dropdown-menu { right: 50%; transform: translate(50%, -6px); }
  .dropdown:hover .dropdown-menu, .dropdown.open .dropdown-menu, .dropdown:focus-within .dropdown-menu { transform: translate(50%, 0); }
  .brand-name { display: inline; }

  .split, .location-grid { grid-template-columns: 1fr; }
  .split.reverse .split-text { order: 0; }
  .menu-cards, .offer-grid, .spaces { grid-template-columns: 1fr 1fr; }
  .dish-list { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .order-bg { background-attachment: scroll; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap { width: calc(100% - 32px); }
  .menu-cards, .offer-grid, .spaces, .banquets { grid-template-columns: 1fr; }
  .menu-card { aspect-ratio: 4 / 3; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery figure.wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand img { margin-inline: auto; }
  .location-body { padding: 1.5rem; }
  .hero-ctas .btn { width: 100%; max-width: 300px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
