/* ================================================
   THE COPPER TABLE — Main Stylesheet
   ================================================ */

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

:root {
  --copper:       #C17A3A;
  --copper-dark:  #9B5C1A;
  --copper-light: #D4965A;
  --copper-pale:  #EDD5BC;
  --cream:        #FAF7F0;
  --cream-dark:   #EDE5D4;
  --charcoal:     #2A2A2A;
  --charcoal-mid: #4A4A4A;
  --charcoal-lt:  #7A7A7A;
  --white:        #FFFFFF;
  --gold:         #C9A540;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.18);
  --radius-sm:  4px;
  --radius-md:  10px;
  --radius-lg:  20px;
  --transition: all 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; }

.eyebrow {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--copper);
  display: block;
  margin-bottom: 0.75rem;
}
.divider {
  width: 52px;
  height: 3px;
  background: var(--copper);
  margin: 1.25rem auto 2rem;
}
.divider.left { margin: 1.25rem 0 2rem; }

/* Layout */
.container        { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px;  margin: 0 auto; padding: 0 24px; }
.section          { padding: 88px 0; }
.section-cream    { background: var(--cream); }
.section-charcoal { background: var(--charcoal); }
.text-center      { text-align: center; }
.text-copper      { color: var(--copper); }
.text-cream-color { color: var(--cream); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: var(--radius-sm);
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}
.btn-primary   { background: var(--copper); color: var(--white); border-color: var(--copper); }
.btn-primary:hover  { background: var(--copper-dark); border-color: var(--copper-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--white); border-color: var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--charcoal); }
.btn-outline   { background: transparent; color: var(--copper); border-color: var(--copper); }
.btn-outline:hover   { background: var(--copper); color: var(--white); }
.btn-dark      { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.btn-dark:hover      { background: var(--charcoal-mid); transform: translateY(-2px); }

/* ================================================
   HEADER
   ================================================ */

.site-header { position: sticky; top: 0; z-index: 1000; background: var(--white); box-shadow: var(--shadow-sm); }

.top-bar {
  background: var(--charcoal);
  padding: 9px 0;
  font-size: 0.8rem;
  color: rgba(250,247,240,0.75);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.top-bar-left  { display: flex; gap: 20px; align-items: center; }
.top-bar-right { display: flex; gap: 16px; align-items: center; }
.top-bar a { color: rgba(250,247,240,0.75); }
.top-bar a:hover { color: var(--copper-pale); }
.top-bar i { color: var(--copper); margin-right: 5px; }
.top-phone { font-weight: 900; font-size: 0.88rem; color: var(--copper-pale) !important; }
.top-phone i { color: var(--copper-pale); }
.top-book-btn {
  background: var(--copper);
  color: var(--white) !important;
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  font-weight: 900;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.top-book-btn:hover { background: var(--copper-dark) !important; }

.main-nav { padding: 16px 0; }
.main-nav .container { display: flex; justify-content: space-between; align-items: center; }
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.5px;
}
.logo span { color: var(--copper); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--copper);
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--copper); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links .nav-cta-btn {
  background: var(--copper);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
}
.nav-links .nav-cta-btn:hover { background: var(--copper-dark); color: var(--white); }
.nav-links .nav-cta-btn::after { display: none; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); transition: var(--transition); }
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  background: var(--white);
  padding: 0;
  border-top: 2px solid var(--cream-dark);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.mobile-nav.is-open {
  display: block;
  max-height: 600px;
  padding: 24px;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--cream-dark);
}
.mobile-nav a:hover { color: var(--copper); }
.mobile-nav .mobile-book { margin-top: 20px; display: block; text-align: center; }

/* Sticky CTA – mobile only */
.sticky-book {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 998;
  background: var(--copper);
  color: var(--white);
  padding: 15px 44px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(193,122,58,0.55);
  white-space: nowrap;
}

/* ================================================
   HERO
   ================================================ */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(135deg, rgba(42,42,42,0.88) 0%, rgba(155,92,26,0.55) 100%),
    url('https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center 40%;
}
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 680px; }
.hero-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--copper-pale);
  padding: 6px 18px;
  border: 1px solid rgba(212,150,90,0.45);
  border-radius: 50px;
  margin-bottom: 1.75rem;
}
.hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2.5vw, 1.4rem);
  color: var(--copper-pale);
  margin-bottom: 1.5rem;
}
.hero p { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 500px; margin-bottom: 2.5rem; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.45); font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
  animation: scrollBounce 2.4s infinite;
}
.hero-scroll::after { content: ''; width: 1px; height: 36px; background: rgba(255,255,255,0.3); }
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* ================================================
   TRUST BAR
   ================================================ */

.trust-bar { background: var(--cream); padding: 22px 0; border-top: 3px solid var(--copper); border-bottom: 1px solid var(--cream-dark); }
.trust-badges { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; color: var(--charcoal-mid); }
.badge-icon {
  width: 40px; height: 40px; background: var(--copper); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1rem; flex-shrink: 0;
}

/* ================================================
   FEATURED IN
   ================================================ */

.featured-in { padding: 56px 0; background: var(--white); border-bottom: 1px solid var(--cream-dark); }
.featured-logos { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 2rem; }
.feat-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal-lt);
  padding: 10px 22px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  letter-spacing: 0.3px;
  transition: var(--transition);
}
.feat-logo:hover { color: var(--copper); border-color: var(--copper-pale); }

/* ================================================
   ABOUT INTRO (homepage)
   ================================================ */

.about-intro { padding: 88px 0; }
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-intro-img {
  position: relative;
  height: 520px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-intro-img img { width: 100%; height: 100%; object-fit: cover; }
.about-intro-img::after {
  content: '';
  position: absolute; bottom: -18px; right: -18px;
  width: 160px; height: 160px;
  border: 3px solid var(--copper);
  border-radius: var(--radius-md);
  z-index: -1;
}
.stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin: 2rem 0; padding: 2rem 0; border-top: 1px solid var(--cream-dark); border-bottom: 1px solid var(--cream-dark); }
.stat-item { text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700; color: var(--copper); line-height: 1; display: block; }
.stat-label  { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--charcoal-lt); margin-top: 6px; display: block; }

/* ================================================
   BOOKING SECTION
   ================================================ */

.booking-section { background: var(--charcoal); padding: 88px 0; }
.booking-section h2 { color: var(--cream); }
.booking-section .eyebrow { color: var(--copper-light); }
.booking-form {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 48px;
  margin-top: 3rem;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.72rem; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase; color: var(--charcoal-mid); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--copper); box-shadow: 0 0 0 3px rgba(193,122,58,0.12); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.form-note { font-size: 0.82rem; color: var(--charcoal-lt); }
.form-note i { color: var(--copper); margin-right: 5px; }

/* ================================================
   OFFERS
   ================================================ */

.offers-section { background: var(--cream); padding: 88px 0; }
.offers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin-top: 3rem; }
.offer-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); position: relative; }
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.offer-card-img { height: 200px; overflow: hidden; position: relative; }
.offer-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.offer-card:hover .offer-card-img img { transform: scale(1.06); }
.offer-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--copper); color: var(--white);
  font-size: 0.68rem; font-weight: 900; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px;
}
.offer-card-body { padding: 26px; }
.offer-card-body h3 { font-size: 1.25rem; margin-bottom: 8px; }
.offer-card-body p { font-size: 0.88rem; color: var(--charcoal-mid); margin-bottom: 16px; }
.offer-price { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--copper); display: block; margin-bottom: 18px; }

/* ================================================
   TESTIMONIALS
   ================================================ */

.testimonials-section { background: var(--charcoal); padding: 88px 0; }
.testimonials-section h2 { color: var(--cream); }
.testimonials-section .eyebrow { color: var(--copper-light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 3rem; }
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,0.09); border-color: var(--copper); }
.stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text { font-style: italic; color: rgba(250,247,240,0.88); line-height: 1.8; font-size: 0.93rem; margin-bottom: 22px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--copper); display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 700; color: var(--white); font-size: 1.1rem; flex-shrink: 0;
}
.author-info strong { display: block; color: var(--cream); font-size: 0.88rem; }
.author-info span   { color: var(--copper-light); font-size: 0.78rem; }

/* ================================================
   INSTAGRAM PLACEHOLDER
   ================================================ */

.instagram-section { padding: 88px 0; background: var(--cream); }
.insta-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 8px; margin-top: 2.5rem; }
.insta-item { aspect-ratio: 1; overflow: hidden; position: relative; cursor: pointer; border-radius: 4px; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.insta-item:hover img { transform: scale(1.08); }
.insta-overlay {
  position: absolute; inset: 0;
  background: rgba(193,122,58,0.65);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition); color: var(--white); font-size: 1.5rem;
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-cta { text-align: center; margin-top: 2rem; }

/* ================================================
   GIFT VOUCHERS
   ================================================ */

.vouchers-section {
  background: linear-gradient(135deg, var(--charcoal) 0%, #4a2a0a 100%);
  padding: 88px 0;
}
.voucher-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.voucher-content h2 { color: var(--cream); }
.voucher-content p  { color: rgba(250,247,240,0.75); }
.voucher-content .eyebrow { color: var(--copper-light); }
.voucher-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.voucher-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--copper), var(--gold)); }
.voucher-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--charcoal); }
.voucher-logo span { color: var(--copper); }
.voucher-card .sub { font-size: 0.82rem; color: var(--charcoal-lt); margin: 6px 0 16px; }
.voucher-amount { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--copper); display: block; margin: 12px 0 20px; line-height: 1; }
.voucher-options { display: flex; gap: 10px; justify-content: center; margin-bottom: 24px; flex-wrap: wrap; }
.voucher-option {
  padding: 8px 18px; border: 2px solid var(--cream-dark); border-radius: 50px;
  font-size: 0.82rem; font-weight: 900; color: var(--charcoal-mid); cursor: pointer;
  transition: var(--transition);
}
.voucher-option:hover, .voucher-option.active { border-color: var(--copper); color: var(--copper); }

/* ================================================
   PRIVATE DINING SECTION
   ================================================ */

.private-dining-section { background: var(--cream); padding: 88px 0; }
.private-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.private-img { height: 480px; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-lg); }
.private-img img { width: 100%; height: 100%; object-fit: cover; }
.private-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 1.75rem 0; }
.private-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--charcoal-mid); }
.private-feature i { color: var(--copper); margin-top: 3px; flex-shrink: 0; }

/* ================================================
   FOOTER
   ================================================ */

.site-footer { background: var(--charcoal); color: var(--cream); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--cream); display: block; margin-bottom: 1rem; }
.footer-logo span { color: var(--copper); }
.footer-brand p { color: rgba(250,247,240,0.55); font-size: 0.88rem; line-height: 1.8; }
.footer-socials { display: flex; gap: 10px; margin-top: 1.5rem; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,247,240,0.7); font-size: 0.88rem; transition: var(--transition);
}
.social-btn:hover { background: var(--copper); border-color: var(--copper); color: var(--white); }
.footer-col h5 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; font-weight: 700;
  color: var(--cream); margin-bottom: 1.4rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--copper);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(250,247,240,0.6); font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--copper-light); padding-left: 5px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact-item i { color: var(--copper); margin-top: 3px; flex-shrink: 0; font-size: 0.9rem; }
.footer-contact-item p, .footer-contact-item a { color: rgba(250,247,240,0.62); font-size: 0.88rem; margin: 0; line-height: 1.6; }
.footer-contact-item a:hover { color: var(--copper-light); }
.footer-booking-box {
  background: rgba(193,122,58,0.14);
  border: 1px solid rgba(193,122,58,0.3);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-top: 1rem;
}
.footer-booking-box p { color: rgba(250,247,240,0.75); font-size: 0.82rem; margin-bottom: 10px; }
.footer-big-phone { font-family: 'Playfair Display', serif; font-size: 1.55rem; font-weight: 700; color: var(--copper-light); display: block; margin-bottom: 12px; }
.footer-bottom { background: rgba(0,0,0,0.28); padding: 18px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { color: rgba(250,247,240,0.38); font-size: 0.78rem; margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(250,247,240,0.38); font-size: 0.78rem; }
.footer-bottom-links a:hover { color: var(--copper-light); }

/* ================================================
   PAGE HERO (inner pages)
   ================================================ */

.page-hero {
  padding: 80px 0 60px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.22;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(42,42,42,0.92) 0%, rgba(155,92,26,0.45) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--cream); margin-bottom: 0.5rem; }
.page-hero .eyebrow { color: var(--copper-light); }
.page-hero p { color: rgba(250,247,240,0.72); font-size: 1rem; max-width: 500px; margin-top: 1rem; margin-bottom: 0; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(250,247,240,0.5); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--copper-light); }
.breadcrumb i { font-size: 0.65rem; }

/* ================================================
   MENU PAGE
   ================================================ */

.menu-sticky-nav { position: sticky; top: 79px; z-index: 90; background: var(--white); border-bottom: 2px solid var(--cream-dark); }
.menu-tabs { display: flex; overflow-x: auto; scrollbar-width: none; }
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab-link {
  padding: 15px 26px;
  font-size: 0.76rem; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--charcoal-lt); white-space: nowrap;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  display: block; transition: var(--transition);
}
.menu-tab-link:hover, .menu-tab-link.active { color: var(--copper); border-bottom-color: var(--copper); }

.menu-section-content { padding: 72px 0; }
.menu-section-content:nth-child(even) { background: var(--cream); }
.menu-section-header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 3rem; }
.time-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cream-dark); padding: 8px 18px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700; color: var(--charcoal-mid);
}
.time-badge i { color: var(--copper); }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 22px; }
.menu-item {
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
  position: relative;
}
.menu-item:hover { border-color: var(--copper-pale); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.menu-item.chef-pick { border-color: var(--copper); }
.menu-item.chef-pick::before {
  content: "Chef's Pick";
  position: absolute; top: -10px; left: 20px;
  background: var(--copper); color: var(--white);
  font-size: 0.66rem; font-weight: 900; letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 12px; border-radius: 50px;
}
.menu-item-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 9px; }
.item-name { font-family: 'Playfair Display', serif; font-size: 1.08rem; font-weight: 600; color: var(--charcoal); line-height: 1.3; }
.item-price { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--copper); white-space: nowrap; flex-shrink: 0; }
.item-desc { font-size: 0.85rem; color: var(--charcoal-lt); line-height: 1.65; margin: 0; }
.item-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.tag {
  font-size: 0.66rem; font-weight: 900; letter-spacing: 0.5px;
  padding: 3px 9px; border-radius: 50px; text-transform: uppercase;
}
.tag-v   { background: #e8f5e9; color: #2e7d32; }
.tag-gf  { background: #fff3e0; color: #e65100; }
.tag-loc { background: var(--cream-dark); color: var(--copper-dark); }
.tag-pop { background: rgba(193,122,58,0.1); color: var(--copper-dark); }

/* Drinks (dark) */
.drinks-wrapper { background: var(--charcoal); padding: 72px 0; }
.drinks-wrapper h2 { color: var(--cream); margin-bottom: 0.5rem; }
.drinks-wrapper .eyebrow { color: var(--copper-light); }
.drinks-wrapper .divider { background: var(--copper); margin: 1.25rem 0 3rem; }
.drinks-sub { margin-bottom: 3rem; }
.drinks-sub h3 { color: var(--cream); font-size: 1.4rem; margin-bottom: 1.5rem; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.drinks-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.drink-item {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); padding: 22px; transition: var(--transition);
}
.drink-item:hover { background: rgba(255,255,255,0.1); border-color: var(--copper); }
.drink-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 8px; }
.drink-name  { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--cream); line-height: 1.3; }
.drink-price { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--copper-light); white-space: nowrap; }
.drink-desc  { font-size: 0.83rem; color: rgba(250,247,240,0.6); line-height: 1.6; margin: 0; }

/* ================================================
   ABOUT PAGE
   ================================================ */

.about-story-section { padding: 88px 0; }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.img-stack { position: relative; height: 580px; }
.img-stack-main {
  position: absolute; top: 0; left: 0; width: 78%; height: 74%;
  border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-lg);
}
.img-stack-main img { width: 100%; height: 100%; object-fit: cover; }
.img-stack-accent {
  position: absolute; bottom: 0; right: 0; width: 54%; height: 47%;
  border-radius: var(--radius-md); overflow: hidden;
  border: 5px solid var(--white); box-shadow: var(--shadow-lg);
}
.img-stack-accent img { width: 100%; height: 100%; object-fit: cover; }
.blockquote {
  border-left: 4px solid var(--copper);
  padding: 16px 20px;
  margin: 2rem 0;
  background: var(--cream);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--charcoal-mid);
}

.values-section { background: var(--cream); padding: 88px 0; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; margin-top: 3rem; }
.value-card {
  padding: 32px 24px; text-align: center;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-md);
  transition: var(--transition);
  background: var(--white);
}
.value-card:hover { border-color: var(--copper); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value-icon { font-size: 2rem; display: block; margin-bottom: 14px; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.value-card p { font-size: 0.86rem; color: var(--charcoal-mid); line-height: 1.7; margin: 0; }

.team-section { padding: 88px 0; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 36px; margin-top: 3rem; }
.team-card { text-align: center; }
.team-photo {
  width: 180px; height: 180px; border-radius: 50%; overflow: hidden;
  margin: 0 auto 20px; border: 4px solid var(--copper-pale);
  box-shadow: var(--shadow-md);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card .role { color: var(--copper); font-size: 0.78rem; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; display: block; }
.team-card p { font-size: 0.88rem; color: var(--charcoal-mid); }

.awards-section { background: var(--charcoal); padding: 72px 0; }
.awards-section h2 { color: var(--cream); }
.awards-section .eyebrow { color: var(--copper-light); }
.awards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-top: 3rem; }
.award-item {
  text-align: center; padding: 28px 20px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); transition: var(--transition);
}
.award-item:hover { border-color: var(--copper); background: rgba(193,122,58,0.1); }
.award-icon { font-size: 2.2rem; display: block; margin-bottom: 10px; }
.award-item h4 { color: var(--cream); font-size: 0.9rem; margin-bottom: 6px; }
.award-item p { color: rgba(250,247,240,0.5); font-size: 0.78rem; margin: 0; }

/* ================================================
   GALLERY PAGE
   ================================================ */

.gallery-section { padding: 60px 0 88px; }
.gallery-filters { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn {
  padding: 9px 22px; border: 2px solid var(--cream-dark); border-radius: 50px;
  font-size: 0.76rem; font-weight: 900; letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; background: var(--white); color: var(--charcoal-mid); transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--copper); color: var(--white); border-color: var(--copper); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.g-item { position: relative; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; }
.g-item img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.45s ease; display: block; }
.g-item.tall img { height: 574px; }
.g-item.wide { grid-column: span 2; }
.g-item.wide img { height: 280px; width: 100%; }
.g-item:hover img { transform: scale(1.06); }
.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(42,42,42,0.75) 0%, transparent 55%);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; padding: 20px;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay p { color: var(--white); font-size: 0.82rem; font-weight: 700; margin: 0; letter-spacing: 0.5px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.93);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius-md); }
.lb-close {
  position: absolute; top: 22px; right: 22px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: none;
  color: var(--white); font-size: 1.3rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.lb-close:hover { background: var(--copper); }

/* ================================================
   CONTACT PAGE
   ================================================ */

.contact-main { padding: 88px 0; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; }
.contact-details h2 { margin-bottom: 2rem; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--cream-dark); }
.contact-item:last-of-type { border-bottom: none; }
.c-icon {
  width: 48px; height: 48px; background: var(--cream); border: 2px solid var(--copper-pale);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--copper); flex-shrink: 0;
}
.c-item-content strong { display: block; font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--charcoal-mid); margin-bottom: 5px; }
.c-item-content p, .c-item-content a { color: var(--charcoal); font-size: 0.93rem; margin: 0; line-height: 1.6; }
.c-item-content a:hover { color: var(--copper); }

.contact-form-box { background: var(--cream); border-radius: var(--radius-md); padding: 42px; }
.contact-form-box h3 { margin-bottom: 1.5rem; }

.map-section { padding: 0 0 88px; }
.map-placeholder {
  height: 420px; background: var(--cream-dark);
  border-radius: var(--radius-md); position: relative; overflow: hidden;
  border: 2px solid var(--cream-dark); display: flex; align-items: center; justify-content: center;
}
.map-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 44px, rgba(193,122,58,0.06) 44px, rgba(193,122,58,0.06) 45px),
    repeating-linear-gradient(90deg, transparent, transparent 44px, rgba(193,122,58,0.06) 44px, rgba(193,122,58,0.06) 45px);
}
.map-pin-content { position: relative; z-index: 1; text-align: center; }
.pin-icon { font-size: 3rem; display: block; animation: pinBounce 2.2s infinite; }
.map-pin-content strong { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--charcoal); display: block; margin: 8px 0 4px; }
.map-pin-content span { font-size: 0.85rem; color: var(--charcoal-lt); }
.map-link { display: inline-block; margin-top: 14px; font-size: 0.8rem; font-weight: 900; color: var(--copper); letter-spacing: 1px; text-transform: uppercase; }
.map-link:hover { text-decoration: underline; }
@keyframes pinBounce { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }

.hours-section { background: var(--charcoal); padding: 72px 0; }
.hours-section h2 { color: var(--cream); }
.hours-section .eyebrow { color: var(--copper-light); }
.hours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 2.5rem; }
.hours-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); padding: 28px; }
.hours-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.hours-card-head i { font-size: 1.3rem; color: var(--copper); }
.hours-card-head h4 { color: var(--cream); font-size: 1rem; }
.hours-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.hours-row:last-child { border-bottom: none; }
.hours-row .day  { color: rgba(250,247,240,0.58); font-size: 0.83rem; }
.hours-row .time { color: var(--copper-light); font-size: 0.83rem; font-weight: 700; }

/* ================================================
   CTA BAND
   ================================================ */

.cta-band { background: var(--copper); padding: 72px 0; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p  { color: rgba(255,255,255,0.82); max-width: 540px; margin: 0 auto 2.5rem; }
.cta-band .btn-secondary:hover { color: var(--copper); }

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

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-story-grid, .voucher-grid, .private-grid { grid-template-columns: 1fr; gap: 40px; }
  .img-stack { height: 420px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .top-bar-left { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .sticky-book { display: block; }

  .hero { min-height: 75vh; }
  .hero-cta { flex-direction: column; align-items: flex-start; }

  .about-intro-grid { grid-template-columns: 1fr; }
  .about-intro-img { height: 300px; }
  .about-intro-img::after { display: none; }

  .insta-grid { grid-template-columns: repeat(3,1fr); }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .g-item.tall, .g-item.wide { grid-row: auto; grid-column: auto; }
  .g-item.tall img, .g-item.wide img { height: 220px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .menu-grid { grid-template-columns: 1fr; }
  .team-grid  { grid-template-columns: repeat(2,1fr); }
  .booking-form { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero { min-height: 85vh; padding-bottom: 80px; }
  .trust-badges { gap: 18px; justify-content: flex-start; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .insta-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .featured-logos { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
}
