/* ======================================================
   MEDAUR BY BEEF HOUSE — Main Stylesheet
   Headings: Flatline (Adobe Fonts) | fallback: Cormorant Garamond
   Body:     brandon-grotesque (Adobe Fonts) | fallback: Josefin Sans
====================================================== */

@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&family=Great+Vibes&family=Josefin+Sans:wght@100;200;300;400;600&family=Aboreto&family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&display=swap');

/* ==================== VARIABLES ==================== */
:root {
  --font-heading:  'Aboreto', 'Cormorant Garamond', Georgia, serif;
  --font-body:     'brandon-grotesque', 'Josefin Sans', sans-serif;
  --font-script:   'Great Vibes', cursive;

  --dark:          #0A0806;
  --dark-2:        #121008;
  --dark-3:        #1E1A12;
  --sand:          #C4A882;
  --sand-light:    #E2CDB0;
  --sand-dark:     #9A7D58;
  --gold:          #B8945A;
  --cream:         #F8F2ED;
  --cream-2:       #EAE3D8;
  --white:         #FFFFFF;
  --text:          #1A140D;
  --text-muted:    #7A6854;

  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --transition:    all 0.45s var(--ease);
  --fast:          all 0.25s var(--ease);
}

.container-fluid{
  max-width: 90%;
}
/* ==================== RESET ==================== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px;width: 100%; }
img  { display:block; max-width:100%; }
a    { text-decoration:none; }
ul   { list-style:none; margin:0; padding:0; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.85;
  overflow-x: hidden;
  
}
html, body {
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: 1.05;
}

/* ==================== UTILITY ==================== */
.label-tag {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 400;
  display: block;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.05em;
}
.section-title.light { color: var(--white); }
.section-lead {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.95;
  letter-spacing: 0.03em;
}
.section-lead.light { color: rgba(255,255,255,0.72); }

.divider-line {
  width: 1px; height: 48px;
  background: var(--sand);
  margin: 1.5rem auto;
  opacity: 0.45;
  display: block;
}

/* ==================== BUTTONS ==================== */
.btn-ghost {
  display: inline-block;
  border: 1px solid currentColor;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0.95rem 2.6rem;
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
  color: var(--dark);
}
.btn-ghost:hover  { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-ghost.light  { color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-ghost.light:hover { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn-ghost.sand   { color: var(--sand); border-color: var(--sand); }
.btn-ghost.sand:hover { background: var(--sand); color: var(--dark); }

/* ==================== NAVBAR ==================== */
.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  padding: 0.8rem 2.5rem;
  transition: var(--transition);
}

/* Scrolled: white glassmorphism background */
.main-nav.scrolled {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Left cluster */
.nav-left {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex: 1;
}

/* Hamburger */
.hamburger-btn {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; gap: 5px;
  padding: 4px 0;
}
.hamburger-btn span {
  display: block; width: 26px; height: 1.2px;
  background: var(--white);
  transition: var(--fast);
}
.hamburger-btn:hover span { background: var(--sand); }
/* Scrolled → black lines */
.main-nav.scrolled .hamburger-btn span { background: var(--dark); }
.main-nav.scrolled .hamburger-btn:hover span { background: var(--gold); }

/* MENU text */
.nav-menu-text {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  cursor: pointer;
  transition: color 0.25s;
  text-transform: uppercase;
}
.nav-menu-text:hover { color: var(--sand); }
/* Scrolled → black */
.main-nav.scrolled .nav-menu-text { color: var(--dark); }
.main-nav.scrolled .nav-menu-text:hover { color: var(--gold); }

/* Language switcher */
.nav-lang {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  cursor: pointer;
}
.nav-lang-label {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.25s;
  user-select: none;
}
.nav-lang-arrow {
  font-size: 8px;
  color: rgba(255,255,255,0.55);
  transition: all 0.25s;
}
.nav-lang:hover .nav-lang-label { color: var(--sand); }
.nav-lang:hover .nav-lang-arrow { color: var(--sand); transform: rotate(180deg); }
/* Scrolled → black */
.main-nav.scrolled .nav-lang-label { color: rgba(10,8,6,0.8); }
.main-nav.scrolled .nav-lang-arrow { color: rgba(10,8,6,0.45); }
.main-nav.scrolled .nav-lang:hover .nav-lang-label { color: var(--gold); }
.main-nav.scrolled .nav-lang:hover .nav-lang-arrow { color: var(--gold); transform: rotate(180deg); }

.nav-lang-drop {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 0;
  background: rgba(10,8,6,0.96);
  border: 1px solid rgba(196,168,130,0.15);
  min-width: 120px;
  display: none;
  flex-direction: column;
  z-index: 100;
}
.nav-lang:hover .nav-lang-drop { display: flex; }
.nav-lang-drop a {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.65);
  padding: 0.75rem 1rem;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-lang-drop a:hover,
.nav-lang-drop a.active { color: var(--sand); }

/* Center Logo — NEVER changes on scroll (intentional) */
.nav-logo {
  flex: 0 0 auto;
  white-space: nowrap;
  transition: opacity 0.25s;
}
.nav-logo:hover { opacity: 0.8; }

/* Right */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}
.nav-book {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.24em;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 0.55rem 1.6rem;
  transition: var(--fast);
}
.nav-book:hover { background: var(--sand); color: var(--dark); border-color: var(--sand); }
/* Scrolled → black */
.main-nav.scrolled .nav-book { color: var(--dark); border-color: rgba(10,8,6,0.28); }
.main-nav.scrolled .nav-book:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }

/* ==================== NAV OVERLAY (drops from top) ==================== */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--dark);
  transform: translateY(-100%);
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.nav-overlay.open { transform: translateY(0); }

.nav-overlay-close {
  position: absolute;
  top: 1.8rem; right: 2.5rem;
  background: none; border: none;
  color: rgba(255,255,255,0.45);
  font-size: 1.8rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 100;
  line-height: 1;
  transition: color 0.25s;
}
.nav-overlay-close:hover { color: var(--sand); }

.nav-overlay-logo {
  position: absolute;
  top: 1.6rem; left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  opacity: 0.95;
}

.nav-overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}
.nav-overlay-links a {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  line-height: 1.25;
  transition: color 0.3s, letter-spacing 0.3s;
  display: block;
}
.nav-overlay-links a:hover { color: var(--white); letter-spacing: 0.14em; }
.nav-overlay-links a.active { color: rgba(255,255,255,0.88); }

.nav-overlay-reserve { margin-top: 2.5rem; }
.nav-overlay-reserve a {
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  letter-spacing: 0.26em !important;
  color: var(--sand) !important;
  border: 1px solid rgba(196,168,130,0.35);
  padding: 0.8rem 2.4rem;
  text-transform: uppercase;
  transition: var(--fast);
  display: inline-block;
}
.nav-overlay-reserve a:hover { background: var(--sand) !important; color: var(--dark) !important; }

.nav-overlay-bottom {
  position: absolute;
  bottom: 2.5rem;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-overlay-bottom a {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  transition: color 0.25s;
}
.nav-overlay-bottom a:hover { color: var(--sand); }
.nav-overlay-bottom span {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: block;
}

/* ==================== HERO ==================== */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/img/hero-beef.jpg');
  background-size: cover;
  background-position:20% 60%;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,5,2,0.10) 0%,
    rgba(8,5,2,0.30) 55%,
    rgba(8,5,2,0.6) 100%
  );
}
.hero-warm {
  position: absolute; inset: 0;
  background: rgba(60,30,5,0.15);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 2rem;
}
.hero-location {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  margin-bottom: 1.6rem;
  display: block;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 0.1em;
}
.hero-sub-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 2.2rem);
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0;
}
.hero-script {
  font-family: var(--font-script);
  font-size: 40px;
  color: var(--white);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 2.2rem;
}
.hero-cats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}
.hero-cats a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: rgba(255,255,255,0.3);
  transition: var(--fast);
}
.hero-cats a:hover { color: var(--sand); text-decoration-color: var(--sand); }
.hero-cats-sep {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-body);
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 300;
}
.scroll-hint-line {
  width: 1px;
  background: rgba(196,168,130,0.6);
  margin: 0.6rem auto 0;
  animation: scrollPulse 2.4s ease infinite;
}
@keyframes scrollPulse {
  0%   { height:0;    opacity:1; }
  100% { height:50px; opacity:0; }
}

/* ==================== EXPLORE SECTION ==================== */
.explore-section {
  background: #f8f2ed;
  position: relative;
  z-index: 10;
  padding: 10rem 0 5rem;
  
  overflow: visible!important;
}
.explore-head {
  padding: 0 2.5rem;
  margin-bottom: 3rem;
 
  gap: 1.5rem;
  position: relative;
  z-index: 20;
}
.explore-head-text h2 {
  font-family: var(--font-heading);
  
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.explore-head-text p {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.05em;
}
.explore-filter { display: flex; gap: 0.8rem; align-items: center; flex-wrap: wrap; }
.explore-filter-btn {
  background: none;
  border: 1px solid rgba(26,20,13,0.2);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--text-muted);
  padding: 0.55rem 1.3rem;
  cursor: pointer;
  display: flex; align-items: center; gap: 0.4rem;
  transition: var(--fast);
}
.explore-filter-btn:hover { color: var(--dark); border-color: rgba(26,20,13,0.45); }
.explore-filter-btn i { font-size: 9px; }

.exp-card { cursor: pointer; }
.exp-card-img-wrap { overflow: hidden; }
.exp-card-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease);
}
.exp-card:hover .exp-card-img { transform: scale(1.05); }
.exp-card-region {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 300;
  margin-top: 1rem;
  margin-bottom: 0.3rem;
}
.exp-card-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  display: flex; align-items: center; gap: 0.4rem;
  transition: color 0.25s;
}
.exp-card-name i { font-size: 0.72rem; transition: transform 0.25s; }
.exp-card:hover .exp-card-name { color: var(--gold); }
.exp-card:hover .exp-card-name i { transform: translateX(4px); }
.exp-card-type {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
}

.explore-carousel.owl-carousel .owl-stage-outer { padding-left: 2.5rem; }
.owl-dots { margin-top: 2.2rem; text-align: center; }
.owl-dot span {
  width: 5px !important; height: 5px !important;
  background: rgba(196,168,130,0.25) !important;
  border-radius: 50% !important;
  margin: 0 4px !important;
  transition: all 0.3s !important;
}
.owl-dot.active span {
  background: var(--sand) !important;
  width: 24px !important;
  border-radius: 3px !important;
}

/* Previous section needs z-index so the title layers correctly */
.section-cream {
  position: relative;
  z-index: 1;
  padding-bottom: 12em;
}

/* Reduce the top padding — the title's negative margin handles the gap */
.explore-section {
  padding-top: 5rem;
  position: relative;
  z-index: 10;
  background-color: white;
}

.container:has(.explore-section) {
  position: relative;
  z-index: 10;
  overflow: visible;
}

.explore-big-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 12vw, 17rem);
  font-weight: 100;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 0.85;
  white-space: nowrap;
  display: block;
  width: 100%;
  padding: 0 2.5rem;

  /* Overlap into the section above */
  margin-top: -0.6em;
  margin-bottom: 0;

  position: relative;
  z-index: 100!important;
}
/* ==================== SECTIONS ==================== */
section { padding: 10rem 0; }
.section-dark    { background: var(--dark-2); }
.section-cream   { background: white;  }
.section-cream-2 { background: var(--cream-2);}

/* ==================== ABOUT TEASER ==================== */
.about-img-wrap img,
.about-img-wrap video {
  width: 100%;
  height: 600x;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease);
}
.about-text-wrap { padding: 2rem 0 2rem 3rem; }
.about-script {
  font-family: var(--font-script);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--gold);
  display: block;
  margin: 0.6rem 0 1.5rem;
}

/* ================================================================
   SIGNATURE DISHES — Nikki Beach scattered editorial layout
================================================================ */
.sig-section {
  position: relative;
  
  overflow: visible; /* remove hidden if you had it */
}

.sig-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 3rem;
  padding-bottom: 6em;
  min-height: 680px;
  align-items: center;
  column-gap: 2rem;
}

.sig-col-l {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  padding-top: 6rem;
  align-self: start;
  margin-top: 2rem;
}

.sig-col-r {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  padding-bottom: 5rem;
  align-self: end;
  margin-bottom: 2rem;
}

.sig-col-c {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  gap: 1.4rem;
}

.sig-img {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.sig-img img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.sig-img:hover img { transform: scale(1.05); }

.sig-img-a img { margin-right: 3rem; }
.sig-img-b img { margin-left: 3rem; height: 400px; }
.sig-img-c img { margin-right: 3rem;height: 400px; }
.sig-img-d img { margin-left: 3rem; }

.sig-caption {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-top: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.25s;
}
.sig-caption i { font-size: 10px; transition: transform 0.25s; }
.sig-img:hover .sig-caption { color: var(--dark); }
.sig-img:hover .sig-caption i { transform: translateX(4px); }

.sig-brand {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.2rem;
}
.sig-brand-script {
  font-family: var(--font-script);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}
.sig-brand-sep {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--sand);
  font-weight: 200;
}
.sig-brand-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 300;
}

.sig-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--dark);
  line-height: 1.18;
}

.sig-body {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.95;
  max-width: 360px;
  letter-spacing: 0.03em;
}

.sig-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: rgba(0,0,0,0.3);
  transition: color 0.25s, text-decoration-color 0.25s;
  margin-top: 0.4rem;
}
.sig-cta:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

@media (max-width: 991px) {
  .sig-grid { grid-template-columns: 1fr 1fr; min-height: auto; padding: 0 2rem; }
  .sig-col-c { grid-column: 1 / 3; order: -1; padding-bottom: 3rem; }
  .sig-col-l { padding-top: 0; margin-top: 0; }
  .sig-col-r { padding-bottom: 0; margin-bottom: 0; }
}
@media (max-width: 576px) {
  .sig-grid { grid-template-columns: 1fr; }
  .sig-col-c { grid-column: 1; }
  .sig-col-r { display: none; }
}



/* ==================== TESTIMONIALS ==================== */
.testimonial-card { text-align:center; padding:3rem 2rem; }
.testimonial-stars { color:var(--gold); font-size:0.85rem; letter-spacing:0.15em; margin-bottom:1.5rem; }
.testimonial-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-weight: 300; font-style: italic;
  color: var(--dark); line-height: 1.7;
  max-width: 560px; margin: 0 auto 2rem;
}
.testimonial-author {
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--sand); font-weight: 400;
}
.testimonial-location {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px; color: rgba(255,255,255,0.55);
  margin-top: 0.3rem; font-weight: 300;
}


/* ==================== FOOTER V2 (Nikki Beach style) ==================== */
.footer-v2 {
  background-color: white;
  border-top:1px solid rgb(233, 230, 230);
  padding: 4rem 6rem 0;
}

.footer-v2-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 4rem;
  min-height: 180px;
}

/* ---- Left ---- */
.footer-v2-left {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.footer-v2-tagline {
  font-family: var(--font-script);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--dark);
  line-height: 1.25;
  font-weight: 400;
}

.footer-v2-socials {
  display: flex;
  gap: 0.5rem;
}

.footer-v2-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(26, 20, 13, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 17px;
  transition: var(--fast);
}

.footer-v2-socials a:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

/* ---- Right ---- */
.footer-v2-right {
  display: flex;
  gap: 5rem;
}

.footer-v2-col {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  text-align: right;
}

.footer-v2-col a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: color 0.22s;
}

.footer-v2-col a:hover { color: var(--dark); }

/* ---- Bottom bar ---- */
.footer-v2-bottom {
  border-top: 1px solid rgba(26, 20, 13, 0.07);
  padding: 1.6rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-v2-bottom span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.footer-v2-bottom a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.22s;
}

.footer-v2-bottom a:hover { color: var(--dark); }

/* ---- Responsive ---- */
@media (max-width: 767px) {
  .footer-v2 { padding: 3rem 2rem 0; }
  .footer-v2-main {
    flex-direction: column;
    gap: 3rem;
  }
  .footer-v2-right { gap: 2.5rem; }
  .footer-v2-col { text-align: left; }
}

/* ==================== PAGE HERO (inner pages) ==================== */
.page-hero {
  height:65vh; min-height:440px;
  position:relative; display:flex;
  align-items:center; justify-content:center;
  overflow:hidden; text-align:center;
}
.page-hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; }
.page-hero-overlay { position:absolute; inset:0; background:rgba(10,6,2,0.5); }
.page-hero-warm { position:absolute; inset:0; background:rgba(60,30,5,0.15); pointer-events:none; }
.page-hero-content { position:relative; z-index:2; color:var(--white); }
.page-hero-label {
  font-family:var(--font-body); font-size:11px;
  letter-spacing:0.32em; text-transform:uppercase;
  color:rgba(255,255,255,0.6); font-weight:300; margin-bottom:1rem; display:block;
}
.page-hero-title {
  font-family:var(--font-heading);
  font-size:clamp(2.8rem,6vw,5.5rem);
  font-weight:300; letter-spacing:0.1em;
  text-transform:uppercase; color:var(--white); margin-bottom:0.4rem;
}
.page-hero-script {
  font-family:var(--font-script);
  font-size:clamp(2rem,4vw,3.5rem);
  color:rgba(255,255,255,0.78); line-height:1.3;
}

/* ==================== ABOUT PAGE ==================== */
.about-philosophy { background:var(--dark); padding:9rem 0; text-align:center; }
.big-quote {
  font-family:var(--font-heading);
  font-size:clamp(1.5rem,3vw,2.8rem);
  font-weight:300; font-style:italic;
  color:var(--white); letter-spacing:0.03em;
  line-height:1.55; max-width:800px; margin:0 auto;
}
.big-quote-attr {
  font-family:var(--font-body); font-size:11px;
  letter-spacing:0.28em; color:var(--sand);
  text-transform:uppercase; margin-top:2rem; font-weight:300;
}
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--cream-2); }
.value-card { background:var(--cream); padding:3.5rem 2.5rem; text-align:center; transition:background 0.3s; }
.value-card:hover { background:var(--white); }
.value-icon { font-size:1.4rem; color:var(--sand); margin-bottom:1.3rem; }
.value-title {
  font-family:var(--font-heading); font-size:1.3rem;
  font-weight:400; letter-spacing:0.08em;
  text-transform:uppercase; margin-bottom:0.8rem;
}
.value-desc {
  font-family:var(--font-body); font-size:13px;
  font-weight:300; color:var(--text-muted); line-height:2;
}
.team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }
.team-card { text-align:center; }
.team-img {
  width:100%; height:330px; object-fit:cover;
  margin-bottom:1.4rem; filter:grayscale(20%); transition:filter 0.5s;
}
.team-card:hover .team-img { filter:grayscale(0); }
.team-name {
  font-family:var(--font-heading); font-size:1.15rem;
  font-weight:400; letter-spacing:0.08em;
  text-transform:uppercase; margin-bottom:0.3rem;
}
.team-role { font-family:var(--font-script); font-size:1.4rem; color:var(--gold); }

/* ==================== MENU PAGE ==================== */
.menu-filter {
  display:flex; justify-content:center; flex-wrap:wrap;
  margin-bottom:5rem; border-bottom:1px solid rgba(0,0,0,0.07);
}
.menu-filter-btn {
  background:none; border:none; cursor:pointer;
  font-family:var(--font-body); font-size:11px;
  letter-spacing:0.22em; text-transform:uppercase; font-weight:300;
  color:var(--text-muted); padding:1rem 1.6rem;
  border-bottom:2px solid transparent; margin-bottom:-1px; transition:color 0.25s;
}
.menu-filter-btn.active { color:var(--dark); border-bottom-color:var(--gold); }
.menu-section { display:none; }
.menu-section.active { display:block; }
.menu-section-title {
  font-family:var(--font-heading); font-size:clamp(1.8rem,3vw,2.8rem);
  font-weight:300; letter-spacing:0.1em;
  text-transform:uppercase; text-align:center; margin-bottom:0.4rem;
}
.menu-section-script {
  font-family:var(--font-script); font-size:2.2rem;
  color:var(--gold); text-align:center; display:block; margin-bottom:3.5rem;
}
.menu-items { display:grid; grid-template-columns:repeat(2,1fr); gap:0; }
.menu-item {
  padding:2rem 0; border-bottom:1px solid rgba(0,0,0,0.06);
  display:flex; align-items:flex-start; justify-content:space-between; gap:2rem;
}
.menu-item:nth-child(odd)  { padding-right:3rem; border-right:1px solid rgba(0,0,0,0.06); }
.menu-item:nth-child(even) { padding-left:3rem; }
.menu-item-name {
  font-family:var(--font-heading); font-size:1.25rem;
  font-weight:400; letter-spacing:0.05em; margin-bottom:0.35rem;
}
.menu-item-desc {
  font-family:var(--font-body); font-size:13px;
  font-weight:300; color:var(--text-muted); letter-spacing:0.03em; line-height:1.8;
}
.menu-item-price {
  font-family:var(--font-heading); font-size:1.15rem;
  font-weight:400; color:var(--gold); white-space:nowrap; flex-shrink:0;
}
.menu-note {
  text-align:center; font-family:var(--font-body);
  font-size:13px; color:var(--text-muted);
  letter-spacing:0.06em; font-style:italic; margin-top:3rem;
}

/* ==================== GALLERY PAGE ==================== */
.gallery-filter {
  display:flex; justify-content:center; gap:2.5rem;
  flex-wrap:wrap; margin-bottom:4rem;
}
.gallery-filter-btn {
  background:none; border:none; cursor:pointer;
  font-family:var(--font-body); font-size:11px;
  letter-spacing:0.26em; text-transform:uppercase; font-weight:300;
  color:var(--text-muted); padding-bottom:5px; position:relative;
  transition:color 0.25s;
}
.gallery-filter-btn::after {
  content:''; position:absolute; bottom:0; left:0; right:0;
  height:1px; background:var(--gold); transform:scaleX(0); transition:transform 0.3s;
}
.gallery-filter-btn.active, .gallery-filter-btn:hover { color:var(--dark); }
.gallery-filter-btn.active::after, .gallery-filter-btn:hover::after { transform:scaleX(1); }

.gallery-masonry { columns:3; column-gap:5px; }
.gallery-item { break-inside:avoid; margin-bottom:5px; overflow:hidden; cursor:pointer; position:relative; }
.gallery-item img { width:100%; display:block; transition:transform 0.9s var(--ease); }
.gallery-item:hover img { transform:scale(1.06); }
.gallery-item-overlay {
  position:absolute; inset:0; background:rgba(10,6,2,0.5);
  opacity:0; transition:opacity 0.35s;
  display:flex; align-items:center; justify-content:center;
}
.gallery-item:hover .gallery-item-overlay { opacity:1; }
.gallery-item-overlay i { color:var(--white); font-size:1.2rem; }

.lightbox {
  position:fixed; inset:0; background:rgba(0,0,0,0.95);
  z-index:999999; display:none; align-items:center; justify-content:center;
}
.lightbox.open { display:flex; }
.lightbox img { max-width:90vw; max-height:90vh; object-fit:contain; }
.lightbox-close {
  position:absolute; top:2rem; right:2.5rem;
  background:none; border:none; color:rgba(255,255,255,0.55);
  font-size:2rem; cursor:pointer;
  font-family:var(--font-heading); font-weight:100; line-height:1; transition:color 0.2s;
}
.lightbox-close:hover { color:var(--sand); }

/* ==================== CONTACT ==================== */
.contact-wrap { display:grid; grid-template-columns:1fr 1.5fr; gap:0; }
.contact-info-panel { background:var(--dark); padding:5rem 4rem; color:var(--white); }
.contact-detail { display:flex; gap:1rem; margin-bottom:1.3rem; align-items:flex-start; }
.contact-detail i { color:var(--sand); font-size:13px; margin-top:0.15rem; flex-shrink:0; }
.contact-detail-text {
  font-family:var(--font-body); font-size:13px;
  font-weight:300; color:rgba(255,255,255,0.68); line-height:1.7;
}
.contact-detail-text strong {
  display:block; font-weight:400; color:var(--white);
  font-size:10px; letter-spacing:0.2em; text-transform:uppercase; margin-bottom:0.2rem;
}
.hours-table { width:100%;  }
.hours-table tr { border-bottom:1px solid rgba(255,255,255,0.06); }
.hours-table td {
  font-family:var(--font-body); font-size:13px;
  font-weight:300; color:rgba(255,255,255,0.58); padding:0.2rem 0;
}
.hours-table td:last-child { text-align:right; color:rgba(255,255,255,0.42); }
.contact-form-panel { background:var(--cream); padding:5rem 4rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; }
.form-group { margin-bottom:1.5rem; }
.form-label {
  font-family:var(--font-body); font-size:11px;
  letter-spacing:0.24em; text-transform:uppercase;
  font-weight:300; color:var(--text-muted); display:block; margin-bottom:0.6rem;
}
.form-control-custom {
  width:100%; background:transparent; border:none;
  border-bottom:1px solid rgba(0,0,0,0.14); padding:0.75rem 0;
  font-family:var(--font-body); font-size:14px; font-weight:300;
  color:var(--text); transition:border-color 0.25s; outline:none; border-radius:0;
}
.form-control-custom:focus { border-bottom-color:var(--gold); }
.form-control-custom::placeholder { color:rgba(0,0,0,0.28); }
select.form-control-custom { appearance:none; cursor:pointer; }

.map-embed { height:400px; }
.map-embed iframe { width:100%; height:100%; border:0; display:block; }
.enquiry-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--cream-2); }
.enquiry-card { background:var(--cream); padding:3rem 2rem; text-align:center; transition:background 0.3s; }
.enquiry-card:hover { background:var(--white); }
.enquiry-card-icon { font-size:1.5rem; color:var(--sand); margin-bottom:1.2rem; }
.enquiry-card-title {
  font-family:var(--font-heading); font-size:1.15rem;
  letter-spacing:0.1em; text-transform:uppercase; font-weight:400; margin-bottom:0.7rem;
}
.enquiry-card-text {
  font-family:var(--font-body); font-size:13px;
  font-weight:300; color:var(--text-muted); line-height:1.9;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width:991px) {
  .values-grid { grid-template-columns:repeat(2,1fr); }
  .team-grid { grid-template-columns:repeat(2,1fr); }
  .contact-wrap { grid-template-columns:1fr; }
  .contact-info-panel, .contact-form-panel { padding:4rem 2.5rem; }
  .menu-items { grid-template-columns:1fr; }
  .menu-item:nth-child(odd), .menu-item:nth-child(even) { padding:1.5rem 0; border-right:none; border-left:none; }
  .gallery-masonry { columns:2; }
  .about-text-wrap { padding:2rem 0; }
  .enquiry-cards { grid-template-columns:1fr; }
}
@media (max-width:767px) {
  section { padding:5rem 0; }
  .nav-menu-text { display:none; }
  .nav-book { display:none; }      
  .nav-right { display: none; }        /* hide the empty right slot */
  .nav-logo  { margin-left: auto; }    /* push logo to the far right */
  .main-nav { padding:1.2rem 1.5rem; }
  .gallery-grid-home { grid-template-columns:repeat(2,1fr); grid-template-rows:auto; }
  .gallery-grid-home .g-1 { grid-column:1/3; }
  .gallery-grid-home .g-2, .gallery-grid-home .g-3,
  .gallery-grid-home .g-4, .gallery-grid-home .g-5 { grid-column:auto; }
  .values-grid { grid-template-columns:1fr; }
  .team-grid { grid-template-columns:1fr 1fr; }
  .gallery-masonry { columns:2; }
  .form-row { grid-template-columns:1fr; }
  .explore-head { flex-direction:column; align-items:flex-start; }
  .explore-carousel.owl-carousel .owl-stage-outer { padding-left:1.5rem; }
}
@media (max-width:480px) {
  .gallery-masonry { columns:1; }
  .hero-cats { flex-direction:column; gap:0.8rem; }
  .hero-cats-sep { display:none; }
  .hero-title { font-size: clamp(3rem, 14vw, 5rem); }
}


.bg-section1{
  background: url('/img/CY6A0170.webp')rgba(0, 0, 0, 0.48);
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
  color: white;
  
}

.visit-info .footer-info-line {
  color: var(--text-muted);
  font-size: 15px;
}

.visit-info .footer-info-line i {
  color: var(--gold);
  font-size: 15px;
}

.visit-info .hours-table td {
  color: var(--text-muted);
  font-size: 15px;
}

.nav-lang {
  position: relative; /* needed for the pseudo-element */
}

/* Invisible bridge that fills the gap between trigger and dropdown */
.nav-lang::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 0.8rem; /* same value as the gap in top: calc(100% + 0.8rem) */
}