@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --rust:   #8B3010;
  --gold:   #D4920A;
  --bg:     #fafaf8;
  --bg2:    #f4f2ef;
  --bg3:    #ede9e4;
  --border: rgba(0,0,0,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: #1c1917;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--rust); border-radius: 2px; }

/* ─── ACCESSIBILITY ──────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--rust);
  color: #fff;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* Focus visible — keyboard users only */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
}

/* ─── TYPOGRAPHY ─────────────────────────────────── */
.serif { font-family: 'Cormorant Garamond', serif; }

.label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rust);
}

.rule {
  width: 50px;
  height: 1px;
  background: var(--rust);
  display: block;
}

/* ─── NAV ────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}
#nav.scrolled {
  background: rgba(8,8,8,0.96);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
}

.nav-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-link:hover, .nav-link.active { color: #fff; }

#mobile-menu { display: none; }
#mobile-menu.open { display: flex; }

/* ─── BUTTONS ────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 13px 34px;
  background: var(--rust);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-primary:hover { background: #a0380f; }

.btn-outline {
  display: inline-block;
  padding: 12px 33px;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.04); }

/* ─── HERO SLIDER ────────────────────────────────── */
.hero-slider { position: relative; height: 100vh; overflow: hidden; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }

.slide-bg-1 {
  background: radial-gradient(ellipse at 60% 40%, #231008 0%, #100603 40%, #040200 100%);
}
.slide-bg-2 {
  background: radial-gradient(ellipse at 40% 60%, #2a1208 0%, #150804 40%, #050201 100%);
}
.slide-bg-3 {
  background: radial-gradient(ellipse at 35% 45%, #080c1a 0%, #030508 40%, #010102 100%);
}

.slide-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.slider-dot {
  width: 28px;
  height: 2px;
  background: rgba(255,255,255,0.55);
  border: none;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  padding: 0;
}
.slider-dot.active { background: #fff; width: 42px; }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}
.slider-arrow:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
.slider-arrow-prev { left: 28px; }
.slider-arrow-next { right: 28px; }

/* ─── PAGE HERO (inner pages) ────────────────────── */
.page-hero {
  height: 55vh;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #080808; /* fallback — real image injected per page */
}

/* ─── PLACEHOLDER IMAGES ─────────────────────────── */
.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ph::after {
  content: attr(data-label);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.1);
}
.ph-food  { background: linear-gradient(135deg, #100603 0%, #1e0d06 50%, #100603 100%); }
.ph-bar   { background: linear-gradient(135deg, #030610 0%, #060c1e 50%, #030610 100%); }
.ph-space { background: linear-gradient(135deg, #080808 0%, #131313 50%, #080808 100%); }
.ph-warm  { background: linear-gradient(135deg, #120804 0%, #241208 50%, #120804 100%); }

/* ─── REVEAL ANIMATIONS ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── MENU PAGE ──────────────────────────────────── */
.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.055);
}
.menu-row:last-child { border-bottom: none; }
.menu-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--rust);
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 2px 7px;
  border: 1px solid;
  margin-left: 8px;
  vertical-align: middle;
}
.badge-veg   { border-color: #4a9a4a; color: #4a9a4a; }
.badge-chef  { border-color: var(--gold); color: var(--gold); }

/* ─── FORMS ──────────────────────────────────────── */
.field {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  color: #fff;
  padding: 13px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}
.field:focus { border-color: rgba(255,255,255,0.28); }
.field::placeholder { color: rgba(255,255,255,0.26); }
select.field option { background: #111; color: #fff; }
.field-label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}

/* ─── GALLERY ────────────────────────────────────── */
.g-item { overflow: hidden; position: relative; cursor: pointer; }
.g-item .g-ov {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.35s;
}
.g-item:hover .g-ov { opacity: 1; }

/* ─── TESTIMONIAL ────────────────────────────────── */
.tcard {
  border: 1px solid rgba(255,255,255,0.07);
  padding: 36px 28px;
}
.stars { color: var(--gold); letter-spacing: 3px; }

/* ─── FOOTER ─────────────────────────────────────── */
footer a { text-decoration: none; transition: color 0.3s; }
footer a:hover { color: rgba(255,255,255,0.75) !important; }

/* ─── WHATSAPP FLOATING BUTTON ───────────────────── */
/* ── Floating Action Buttons (Shared Code) ─────────────── */
.float-btn {
  position: fixed;
  z-index: 89;
  width: 44px;
  height: 44px;
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  color: #fff;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s, opacity 0.3s, visibility 0.3s;
}
/* .float-btn:hover {
  transform: scale(1.1);
} */

/* WhatsApp */
#wa-btn {
  bottom: 24px;
  right: 24px;
  z-index: 90;
  background: var(--rust);
  box-shadow: 0 4px 16px rgba(139,48,16,0.30);
  animation: wa-pulse 3s ease-in-out infinite;
}
#wa-btn:hover { box-shadow: 0 6px 24px rgba(139,48,16,0.4); }
#wa-btn svg { width: 22px; height: 22px; }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(139,48,16,0.30); transform: scale(1); }
  50%       { box-shadow: 0 4px 22px rgba(139,48,16,0.45); transform: scale(1.05); }
}

/* Call Button */
#call-btn {
  bottom: 82px;
  right: 24px;
  background: var(--rust);
  box-shadow: 0 4px 12px rgba(139,48,16,0.30);
}
#call-btn:hover { box-shadow: 0 6px 20px rgba(139,48,16,0.4); }
#call-btn svg { width: 18px; height: 18px; }

/* Scroll to Top */
#top-btn {
  bottom: 140px;
  right: 24px;
  background: var(--rust);
  box-shadow: 0 4px 12px rgba(139,48,16,0.30);
  opacity: 0;
  visibility: hidden;
}
#top-btn.show {
  opacity: 1;
  visibility: visible;
}
#top-btn:hover { box-shadow: 0 6px 20px rgba(139,48,16,0.4); }
#top-btn svg { width: 20px; height: 20px; }

/* Cookie notice removed — add back when ready */

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.hide-scrollbar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

/* ─── AUTO FADE IMAGE LOOP ─── */
@keyframes fadeLoop3 {
  0%, 25% { opacity: 1; }
  33.33%, 91.66% { opacity: 0; }
  100% { opacity: 1; }
}
.img-loop-3 { position: relative; overflow: hidden; }
.img-loop-3 img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; animation: fadeLoop3 12s infinite;
}
.img-loop-3 img:nth-child(1) { animation-delay: 0s; opacity: 1; position: relative; }
.img-loop-3 img:nth-child(2) { animation-delay: 4s; }
.img-loop-3 img:nth-child(3) { animation-delay: 8s; }

/* ═══════════════════════════════════════════════════════
   PREMIUM ENHANCEMENTS
   ═══════════════════════════════════════════════════════ */

/* Font rendering */
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* ── Scroll progress bar ──────────────────────────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--rust), var(--gold));
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ── Nav underline slide ──────────────────────────────── */
.nav-link { position: relative; padding-bottom: 2px; }
.nav-link::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 0; height: 1px; background: var(--rust);
  transition: width 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* ── Button primary — shimmer + lift ─────────────────── */
.btn-primary {
  position: relative; overflow: hidden;
  transition: background 0.3s,
              transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,0.13) 50%, transparent 62%);
  transform: translateX(-130%);
  transition: transform 0.6s ease;
  pointer-events: none;
}
.btn-primary:hover {
  background: #9e3912;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,48,16,0.32);
}
.btn-primary:hover::after { transform: translateX(130%); }
.btn-primary:active      { transform: translateY(0); box-shadow: none; }

/* ── Button outline — fill rise + lift ───────────────── */
.btn-outline {
  position: relative; overflow: hidden;
  transition: border-color 0.3s, color 0.3s,
              transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-outline::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 0; background: rgba(255,255,255,0.05);
  transition: height 0.3s ease; pointer-events: none;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.55); transform: translateY(-2px); }
.btn-outline:hover::before { height: 100%; }
.btn-outline:active { transform: translateY(0); }

/* ── Reveal — spring easing ──────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ── Rule — gold gradient ────────────────────────────── */
.rule {
  background: linear-gradient(90deg, var(--rust), rgba(212,146,10,0.45));
  width: 50px;
}

/* ── Testimonial cards — quote deco + hover lift ─────── */
.tcard {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.007) 100%);
  transition: border-color 0.4s ease,
              transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease;
}
.tcard::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 96px; color: rgba(139,48,16,0.1);
  position: absolute; top: 4px; left: 16px;
  line-height: 1; pointer-events: none; user-select: none;
}
.tcard:hover {
  border-color: rgba(139,48,16,0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}

/* ── Gallery preview items ───────────────────────────── */
.g-item img { transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.g-item:hover img { transform: scale(1.07); }
.g-item .g-ov {
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.12) 55%, transparent 100%);
}

/* ── Gallery page cards ──────────────────────────────── */
.g-card .g-ph { transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1); }
.g-card:hover .g-ph { transform: scale(1.05); }

/* ── Slider arrows — rust accent on hover ────────────── */
.slider-arrow {
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.2s;
}
.slider-arrow:hover {
  background: rgba(139,48,16,0.2);
  border-color: var(--rust);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}

/* ── Scrollbar — gradient ────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--rust), var(--gold));
  border-radius: 2px;
}

/* ── Form fields — rust focus glow ──────────────────── */
.field:focus {
  border-color: var(--rust);
  box-shadow: 0 0 0 3px rgba(139,48,16,0.13);
}

/* ── Hero heading depth ──────────────────────────────── */
.hero-slide h1 { text-shadow: 0 2px 48px rgba(0,0,0,0.55); }

/* ── Section blockquote border refinement ────────────── */
.border-l-2 { border-image: linear-gradient(to bottom, var(--rust), transparent) 1; }

/* ── Footer font size boost ──────────────────────────── */
footer p,
footer span,
footer address,
footer a,
footer li { font-size: 15px; }
footer .label { font-size: 13px !important; }
.footer-nav-link { font-size: 14px !important; }

/* ── Footer — dark theme ────────────────────────────── */
footer {
  background: #000 !important;
  border-top: 1px solid rgba(255,255,255,0.07) !important;
  color: #ffffff !important;
}
footer p,
footer span,
footer address,
footer div { color: rgba(255,255,255,0.65) !important; }
footer h2, footer h3, footer h4 { color: #ffffff !important; }
footer a { color: rgba(255,255,255,0.55) !important; text-decoration: none; }
footer a:hover { color: #ffffff !important; }
footer a svg { transition: stroke 0.3s; stroke: rgba(255,255,255,0.45); }
footer a:hover svg { stroke: var(--rust); }
footer [class*="text-white"] { color: rgba(255,255,255,0.65) !important; }
footer [style*="color:#D4920A"],
footer [style*="color: #D4920A"] { color: var(--gold) !important; }
footer .label { color: var(--gold) !important; }
footer [style*="border-color"] { border-color: rgba(255,255,255,0.07) !important; }
footer [class*="border-white"] { border-color: rgba(255,255,255,0.07) !important; }
footer [style*="background:rgba(255,255,255"] { background: rgba(255,255,255,0.06) !important; }
footer [style*="width:1px"] { background: rgba(255,255,255,0.10) !important; }

/* ── Footer social links — icon colour on hover ─────── */
footer a svg { transition: stroke 0.3s; }
footer a:hover svg { stroke: var(--rust); }

/* ── Page entrance ───────────────────────────────────── */
body { animation: pageFadeIn 0.55s ease-out both; }
@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ── img-loop fade — smoother ────────────────────────── */
@keyframes fadeLoop3 {
  0%, 28%  { opacity: 1; }
  36%, 92% { opacity: 0; }
  100%     { opacity: 1; }
}

/* ── Scroll hint animation ───────────────────────────── */
@keyframes scrollPulse {
  0%, 100% { opacity: 0.15; transform: scaleY(1); }
  50%       { opacity: 0.45; transform: scaleY(1.15); }
}

/* ── Stars shimmer ───────────────────────────────────── */
.stars {
  background: linear-gradient(90deg, var(--gold), #f0c040, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 4px;
}

/* ── Section heading hover — gold underline ──────────── */
section h2.serif {
  display: inline-block;
  position: relative;
}

/* ── Quote strip — italic letter-spacing ─────────────── */
.hero-slide em { font-style: italic; color: rgba(255,255,255,0.92); }

/* ── CTA strip background ────────────────────────────── */
section.py-16.bg-\[#0f0f0f\] {
  background: linear-gradient(135deg, #0d0d0d 0%, #0f0d0c 50%, #0d0d0d 100%) !important;
}

/* ── Blockquote border — gradient ────────────────────── */
.border-l-2[style*="border-color:#8B3010"] {
  border-image: linear-gradient(to bottom, #8B3010, rgba(139,48,16,0.2)) 1;
  border-left-width: 2px;
  border-left-style: solid;
}

/* ── Nav scrolled state — refined ───────────────────── */
#nav.scrolled {
  background: rgba(6,6,6,0.97);
  box-shadow: 0 1px 24px rgba(0,0,0,0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* ── Image sections — subtle border on hover ─────────── */
.img-loop-3 {
  transition: box-shadow 0.4s ease;
}
.img-loop-3:hover {
  box-shadow: 0 0 0 1px rgba(139,48,16,0.18), 0 24px 60px rgba(0,0,0,0.4);
}

/* ── Footer social icon links ────────────────────────── */
.footer-social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, background 0.3s;
  text-decoration: none;
}
.footer-social-link:hover {
  border-color: var(--rust);
  background: rgba(139,48,16,0.12);
}
.footer-social-link--wa:hover {
  border-color: #25D366;
  background: rgba(37,211,102,0.08);
}

/* ── Footer nav links ────────────────────────────────── */
.footer-nav-link {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.32);
  text-decoration: none;
  transition: color 0.25s, padding-left 0.25s;
  padding-left: 0;
}
.footer-nav-link:hover {
  color: rgba(255,255,255,0.75);
  padding-left: 6px;
}

/* ═══════════════════════════════════════════════════════
   LIGHT THEME OVERRIDES
   ═══════════════════════════════════════════════════════ */

/* ── Nav — always dark, light text ──────────────────── */
#nav {
  background: #000;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
#nav.scrolled {
  background: rgba(0,0,0,0.99) !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-link { color: rgba(255,255,255,0.70); }
.nav-link:hover, .nav-link.active { color: #ffffff; }
.nav-link::after { background: var(--rust); }

/* ── Btn outline — dark border/text on light bg ──────── */
.btn-outline {
  border-color: rgba(28,25,23,0.30);
  color: #1c1917;
}
.btn-outline:hover {
  border-color: rgba(28,25,23,0.65);
  background: rgba(28,25,23,0.04);
}
.btn-outline::before { background: rgba(28,25,23,0.04); }

/* ── Testimonial cards — light surface ───────────────── */
.tcard {
  background: #ffffff;
  border-color: rgba(0,0,0,0.09);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.tcard:hover {
  border-color: rgba(139,48,16,0.25);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}
.tcard::before { color: rgba(139,48,16,0.07); }

/* ── Form fields — light bg ──────────────────────────── */
.field {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.13);
  color: #1c1917;
}
.field::placeholder { color: rgba(28,25,23,0.55); }
.field:focus {
  border-color: var(--rust);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(139,48,16,0.10);
}
select.field option { background: #fff; color: #1c1917; }
.field-label { color: rgba(28,25,23,0.75); }

/* ── Menu row dividers ───────────────────────────────── */
.menu-row { border-bottom-color: rgba(0,0,0,0.07); }



/* ── Main content — text overrides ──────────────────── */
/* Catch-all: any text-white/X in content becomes dark */
main#main-content [class*="text-white"] {
  color: rgba(28,25,23,0.85) !important;
}
/* Specific hierarchy */
main#main-content .text-white             { color: #1c1917 !important; }
main#main-content .text-white\/90,
main#main-content .text-white\/85         { color: rgba(28,25,23,0.96) !important; }
main#main-content .text-white\/75,
main#main-content .text-white\/70         { color: rgba(28,25,23,0.90) !important; }
main#main-content .text-white\/55,
main#main-content .text-white\/50,
main#main-content .text-white\/45         { color: rgba(28,25,23,0.85) !important; }
main#main-content .text-white\/40,
main#main-content .text-white\/35         { color: rgba(28,25,23,0.80) !important; }
main#main-content .text-white\/30,
main#main-content .text-white\/28,
main#main-content .text-white\/25         { color: rgba(28,25,23,0.70) !important; }
main#main-content .text-white\/22,
main#main-content .text-white\/20,
main#main-content .text-white\/18         { color: rgba(28,25,23,0.60) !important; }
main#main-content .text-white\/15,
main#main-content .text-white\/12         { color: rgba(28,25,23,0.50) !important; }

/* ── Hero Banners — keep white text over dark images ── */
.page-hero, .hero-slider { color: #fff; }
.page-hero h1, .hero-slider h1 { color: #fff !important; }
.page-hero .label, .hero-slider .label { color: rgba(255,255,255,0.75) !important; }

.page-hero [class*="text-white"],
.hero-slider [class*="text-white"] {
  color: rgba(255,255,255,0.70) !important;
}
.page-hero .text-white,
.hero-slider .text-white { color: #fff !important; }

.page-hero .text-white\/90, .hero-slider .text-white\/90,
.page-hero .text-white\/85, .hero-slider .text-white\/85 {
  color: rgba(255,255,255,0.90) !important;
}
.page-hero .text-white\/75, .hero-slider .text-white\/75,
.page-hero .text-white\/70, .hero-slider .text-white\/70 {
  color: rgba(255,255,255,0.75) !important;
}
.page-hero .text-white\/55, .hero-slider .text-white\/55,
.page-hero .text-white\/50, .hero-slider .text-white\/50,
.page-hero .text-white\/45, .hero-slider .text-white\/45 {
  color: rgba(255,255,255,0.55) !important;
}
.page-hero .text-white\/40, .hero-slider .text-white\/40,
.page-hero .text-white\/35, .hero-slider .text-white\/35,
.page-hero .text-white\/30, .hero-slider .text-white\/30,
.page-hero .text-white\/28, .hero-slider .text-white\/28,
.page-hero .text-white\/25, .hero-slider .text-white\/25,
.page-hero .text-white\/22, .hero-slider .text-white\/22 {
  color: rgba(255,255,255,0.35) !important;
}

/* ── Main content — border overrides ────────────────── */
main#main-content [class*="border-white"] {
  border-color: rgba(0,0,0,0.08) !important;
}

/* ── Slider arrows — rust accent still works ─────────── */
.slider-arrow { border-color: rgba(0,0,0,0.22); color: rgba(0,0,0,0.55); }
.slider-arrow:hover {
  background: rgba(139,48,16,0.12);
  border-color: var(--rust);
  color: var(--rust);
}

/* ── Font size improvements (mobile-first) ───────────── */
main#main-content p { font-size: 17px; line-height: 1.9; }
@media (max-width: 768px) {
  main#main-content p { font-size: 15px; }
  main#main-content .text-\[12px\] { font-size: 13px; }
}

/* ── Blockquote border on light bg ───────────────────── */
.border-l-2[style*="border-color:#8B3010"] {
  border-image: none;
  border-left-color: #8B3010;
}

/* ── Testimonial scroll buttons on light bg ─────────── */
main#main-content button[aria-label="Previous Review"],
main#main-content button[aria-label="Next Review"] {
  border-color: rgba(0,0,0,0.14) !important;
  color: rgba(28,25,23,0.55) !important;
}
main#main-content button[aria-label="Previous Review"]:hover,
main#main-content button[aria-label="Next Review"]:hover {
  border-color: var(--rust) !important;
  color: var(--rust) !important;
}

/* ── Booking Modal ───────────────────────────────────── */
#bm-box label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(28,25,23,0.50);
  margin-bottom: 7px;
}
#bm-box input,
#bm-box select,
#bm-box textarea {
  width: 100%;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.14);
  color: #1c1917;
  padding: 12px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.03em;
  outline: none;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.25s, background 0.25s;
  box-sizing: border-box;
}
#bm-box input::placeholder,
#bm-box textarea::placeholder { color: rgba(28,25,23,0.30); }
#bm-box input:focus,
#bm-box select:focus,
#bm-box textarea:focus {
  border-color: #8B3010;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(139,48,16,0.10);
  outline: none;
}
#bm-box select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(28,25,23,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
#bm-box select option { background: #fff; color: #1c1917; }
#bm-box textarea { resize: vertical; min-height: 80px; line-height: 1.6; }
#bm-box input[type="date"]::-webkit-calendar-picker-indicator {
  filter: none; cursor: pointer; opacity: 0.5;
}

/* ── Testimonial quote size ──────────────────────────── */
.tcard p.serif {
  font-size: 17px !important;
  line-height: 1.7 !important;
}
@media (min-width: 640px) {
  .tcard p.serif { font-size: 19px !important; }
}

/* ── Global Font Weight Boost ───────────────────────── */
/* Serif headings: light (300) → regular (400) */
/* No !important — allows font-bold/font-semibold overrides on individual elements */
.serif { font-weight: 400; }

/* Body/paragraph text: regular (400) → medium (500) */
body { font-weight: 500; }
p    { font-weight: 500; }

/* Remap Tailwind font-light (300) → 400 site-wide */
.font-light { font-weight: 400 !important; }

/* Keep explicitly heavy elements unchanged */
.label,
.nav-link,
.btn-primary,
.btn-outline,
.menu-price,
.field-label,
.skip-link { font-weight: 600 !important; }
/* ── Spinner / Loading State ────────────────────────── */
.btn-loading {
  position: relative !important;
  color: transparent !important;
  pointer-events: none !important;
}
/* Spinner */
.btn-loading::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  width: 14px !important;
  height: 14px !important;
  top: 50% !important;
  left: 20% !important; /* Position left of text */
  margin-top: -7px !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 50% !important;
  border-top-color: #fff !important;
  background: none !important;
  transform: none !important;
  animation: btn-spin 0.6s linear infinite !important;
  z-index: 10 !important;
}
/* Text */
.btn-loading::before {
  content: "Sending..." !important;
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  font-size: 9px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  z-index: 9 !important;
  padding-left: 18px !important; /* Offset for spinner */
}
@keyframes btn-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── QUOTE STRIP SPECIFIC INDEX ─────────────────────────── */
.quote-strip-index {
  font-size: 32px !important;
  line-height: 1.1 !important;
  margin-bottom: 24px !important;
}

@media (min-width: 768px) {
  .quote-strip-index {
    font-size: 42px !important;
    
  }
}

@media (min-width: 1024px) {
  .quote-strip-index {
    font-size: 52px !important;
  }
}

.quote-sub-index {
  font-size: 13px !important;
  letter-spacing: 0.25em !important;
  color: rgba(28,25,23,0.55) !important;
  text-transform: uppercase !important;
}

@media (max-width: 768px) {
  .quote-sub-index {
    font-size: 10px !important;
  }
}

@media (min-width: 1024px) {
  .quote-sub-index {
    font-size: 13px !important;
  }
}

/* QUOTE STRIP ABOUT */

.quote-strip-about {
  font-size: 24px !important;
  line-height: 1.1 !important;
  margin-bottom: 24px !important;
}

@media (min-width: 768px) {
  .quote-strip-about {
    font-size: 38px !important;
    
  }
}

@media (min-width: 1024px) {
  .quote-strip-about {
    font-size: 46px !important;
  }
}



