/* ═══════════════════════════════════════════════════════
   FOUR COUNTIES SPICE — MAIN STYLESHEET
   Dark luxury restaurant theme: gold / black / cream
═══════════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─────────────────────────────────── */
:root {
  --gold:        #d4a14e;
  --gold-light:  #e5bb73;
  --gold-dim:    rgba(212, 161, 78, 0.15);
  --gold-border: rgba(212, 161, 78, 0.25);
  --black:       #050505;
  --dark:        #0b0b0b;
  --dark2:       #0f0f0f;
  --white:       #ffffff;
  --muted:       #bdbdbd;
  --muted-dark:  #888888;
  --transition:  all 0.35s ease;
  --radius:      2px;
  --shadow-gold: 0 0 40px rgba(212, 161, 78, 0.12);
}

/* ─── RESET & BASE ───────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover { color: var(--gold-light); }

ul { list-style: none; }

/* ─── CONTAINER ──────────────────────────────────────── */
.container {
  width: 90%;
  max-width: 1320px;
  margin: 0 auto;
}

/* ─── TYPOGRAPHY HELPERS ──────────────────────────────── */
.section-label {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
}

.section-intro {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  max-width: 580px;
}

.section-heading.center {
  text-align: center;
  margin-bottom: 64px;
}

.section-heading.center .section-intro {
  margin: 0 auto;
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 161, 78, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-lg {
  padding: 20px 48px;
  font-size: 14px;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 11px;
}

/* ─── SITE HEADER ────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 28px 0;
  transition: var(--transition);
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0) 100%);
  opacity: 1;
  transition: var(--transition);
  pointer-events: none;
}

.site-header.scrolled {
  padding: 16px 0;
  background: rgba(5,5,5,0.97);
  border-bottom: 1px solid var(--gold-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header.scrolled::before {
  opacity: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

@media (max-width: 1024px) {
  .main-navigation:not(.is-open) {
    right: -100% !important;
  }
}

/* Logo */
.site-logo img,
.site-logo .custom-logo {
  max-height: 72px;
  width: auto;
}

.logo-text-link {
  text-decoration: none;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}

.logo-text em {
  color: var(--gold);
  font-style: normal;
}

/* Nav */
.main-navigation {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-menu li { position: relative; }

.nav-menu li a {
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 0;
  position: relative;
  transition: var(--transition);
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-menu li a:hover {
  color: var(--gold);
}

.nav-menu li a:hover::after,
.nav-menu li.current-menu-item a::after {
  width: 100%;
}

.nav-menu li.current-menu-item > a {
  color: var(--gold);
}

/* Book button */
.book-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 12px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  border-radius: var(--radius);
}

.book-btn:hover {
  background: var(--gold);
  color: #000;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

/* ─── HERO SECTION ───────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at 70% 50%, rgba(212,161,78,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(212,161,78,0.04) 0%, transparent 50%),
              #0b0b0b;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.96) 0%,
    rgba(0, 0, 0, 0.84) 42%,
    rgba(0, 0, 0, 0.28) 100%
  );
  z-index: 1;
}

/* Subtle mandala decorative element */
.hero-mandala {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  border-radius: 50%;
  border: 1px solid rgba(212, 161, 78, 0.04);
  z-index: 1;
  pointer-events: none;
}

.hero-mandala::before,
.hero-mandala::after {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 161, 78, 0.05);
}

.hero-mandala::after {
  inset: 90px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.hero-logo-display {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-left {
  max-width: 680px;
}

.welcome-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--gold);
  letter-spacing: 6px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
}

.welcome-line {
  flex: 0 0 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-title-gold {
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 28px;
  line-height: 1.3;
}

.hero-desc {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
  max-width: 520px;
  margin-bottom: 0;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 48px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  justify-content: center;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─── INFO BAR ───────────────────────────────────────── */
.info-bar {
  background: #080808;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 22px 0;
}

.info-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.info-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.info-item a {
  color: var(--muted);
  text-decoration: none;
  transition: var(--transition);
}

.info-item a:hover { color: var(--gold); }

.info-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
}

.info-divider {
  width: 1px;
  height: 28px;
  background: var(--gold-border);
}

/* ─── FEATURES SECTION ───────────────────────────────── */
.features-section {
  padding: 120px 0;
  background: var(--dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.feature-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--gold-border);
  padding: 44px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-box:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  background: rgba(212, 161, 78, 0.04);
  box-shadow: var(--shadow-gold);
}

.feature-box:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  color: var(--gold);
  margin-bottom: 24px;
}

.feature-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.3;
  margin-bottom: 14px;
}

.feature-box p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

/* ─── ABOUT SECTION ──────────────────────────────────── */
.about-section {
  padding: 140px 0;
  background: #070707;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-inner {
  position: relative;
}

.about-image-inner img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
}

.about-image-inner::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  z-index: -1;
}

.about-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
}

.badge-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.badge-text {
  font-size: 10px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
  margin-top: 4px;
}

/* About content */
.about-content .section-title {
  margin-top: 16px;
}

.title-ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  margin-bottom: 32px;
}

.ornament-line {
  flex: 0 0 40px;
  height: 1px;
  background: var(--gold-border);
}

.about-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.95;
  margin-bottom: 24px;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 32px 0 40px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 15px;
}

.about-list li svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ─── MENU PREVIEW ───────────────────────────────────── */
.menu-preview-section {
  padding: 140px 0;
  background: var(--black);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
  justify-content: center;
}

.menu-card {
  background: var(--dark);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.menu-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.menu-card-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.menu-card:hover .menu-card-image img {
  transform: scale(1.06);
}

.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, transparent 60%);
}

.menu-card-body {
  padding: 28px 30px 32px;
}

.menu-card-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.menu-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.menu-card-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.menu-card-link {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: var(--transition);
}

.menu-card-link:hover {
  color: var(--gold-light);
  letter-spacing: 1px;
}

.menu-cta {
  text-align: center;
}

/* ─── TESTIMONIALS ───────────────────────────────────── */
.testimonials-section {
  padding: 120px 0;
  background: var(--dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--gold-border);
  padding: 44px 36px;
  transition: var(--transition);
  border-radius: var(--radius);
}

.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.testimonial-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-card cite {
  font-style: normal;
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ─── BOOKING SECTION ────────────────────────────────── */
.booking-section {
  position: relative;
  padding: 120px 0;
  background: radial-gradient(ellipse at center, rgba(212,161,78,0.08) 0%, #050505 70%),
              #050505;
  overflow: hidden;
}

.booking-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
}

.booking-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.booking-content .section-title {
  margin-bottom: 20px;
}

.booking-content p {
  color: var(--muted);
  max-width: 500px;
  line-height: 1.8;
}

.booking-actions {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

/* ─── SITE FOOTER ────────────────────────────────────── */
.site-footer {
  background: #030303;
  border-top: 1px solid var(--gold-border);
}

.footer-top {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 56px;
}

.footer-brand .custom-logo {
  max-height: 80px;
  width: auto;
  margin-bottom: 20px;
}

.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-logo-text em {
  color: var(--gold);
  font-style: normal;
}

.footer-tagline {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-desc {
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.8;
  max-width: 340px;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-dark);
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

.footer-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gold-border);
  letter-spacing: 0.5px;
}

.footer-address {
  font-style: normal;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 16px;
}

.footer-link {
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--gold-light);
  letter-spacing: 0.5px;
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted-dark);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding-bottom: 10px;
}

.footer-hours li span:last-child {
  color: var(--muted);
}

.footer-hours .closed {
  color: #666;
}

.footer-note {
  margin-top: 14px;
  font-size: 12px;
  color: #555;
  font-style: italic;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted-dark);
  font-size: 14px;
}

.footer-contact-list li svg {
  color: var(--gold);
  flex-shrink: 0;
}

.footer-contact-list a {
  color: var(--muted-dark);
  transition: var(--transition);
}

.footer-contact-list a:hover {
  color: var(--gold);
}

.footer-book-btn {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 12px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  border-radius: var(--radius);
}

.footer-book-btn:hover {
  background: var(--gold);
  color: #000;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  color: #444;
  font-size: 13px;
}

.footer-tagline-bottom {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 15px;
}

.footer-bottom-nav {
  display: flex;
  gap: 28px;
}

.footer-bottom-nav a {
  color: #444;
  font-size: 12px;
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom-nav a:hover { color: var(--gold); }

/* ─── PAGE HERO (inner pages) ────────────────────────── */
.page-hero {
  position: relative;
  min-height: 340px;
  background: var(--dark);
  display: flex;
  align-items: flex-end;
  padding: 120px 0 60px;
  border-bottom: none;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,161,78,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 600;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.page-content-section {
  padding: 80px 0 120px;
  background: var(--black);
}

.page-content-inner {
  max-width: 900px;
}

.page-content-inner h2,
.page-content-inner h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
  margin: 40px 0 16px;
}

.page-content-inner p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 20px;
}

/* ─── POSTS GRID (archive) ───────────────────────────── */
.archive-content-section {
  padding: 80px 0 120px;
  background: var(--black);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.post-card {
  background: var(--dark);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.post-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.post-card-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .post-card-thumb img {
  transform: scale(1.04);
}

.post-card-body {
  padding: 28px 28px 32px;
}

.post-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.post-card-title a {
  color: var(--white);
}

.post-card-title a:hover { color: var(--gold); }

.post-card-date {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 14px;
}

.post-card-excerpt {
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ─── 404 PAGE ───────────────────────────────────────── */
.error-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--black);
  padding: 120px 0;
}

.error-inner {
  text-align: center;
}

.error-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 180px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-border);
  line-height: 1;
  margin-bottom: 20px;
}

.error-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  color: var(--white);
  margin-bottom: 20px;
}

.error-desc {
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.error-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* ─── ANIMATION ──────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

[data-animate="fade-up"] {
  transform: translateY(28px);
}

[data-animate="fade-right"] {
  transform: translateX(-28px);
}

[data-animate="fade-left"] {
  transform: translateX(28px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

/* ─── PAGINATION ─────────────────────────────────────── */
.pagination-wrap .nav-links {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.pagination-wrap .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold-border);
  color: var(--muted);
  font-size: 14px;
  transition: var(--transition);
}

.pagination-wrap .page-numbers.current,
.pagination-wrap .page-numbers:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

/* ─── UTILITIES ──────────────────────────────────────── */
.center { text-align: center; }

.text-gold { color: var(--gold); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ─── WORDPRESS CORE ─────────────────────────────────── */
.wp-caption { max-width: 100%; }
.wp-caption-text { color: var(--muted-dark); font-size: 13px; text-align: center; margin-top: 8px; }
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.wp-block-image { margin-bottom: 24px; }

/* Gutenberg content styles */
.entry-content h2,
.page-content-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--white);
  margin: 40px 0 16px;
}

.entry-content a,
.page-content-inner a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: var(--gold-border);
}

.entry-content a:hover,
.page-content-inner a:hover {
  color: var(--gold-light);
}

/* ─── POST META ──────────────────────────────────────── */
.post-meta {
  color: var(--muted-dark);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
  margin-top: 12px;
}

.meta-sep { color: var(--gold-border); }
.post-category {
  background: var(--gold);
  color: #000;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  text-decoration: none;
}

.post-meta-top {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
}

/* ── EXTRA STYLES: Real content additions ── */

.hero-hours { color: var(--gold-light, #e5bb73); font-size: .95rem; margin: -.5rem 0 1.2rem; letter-spacing: .04em; }

.hero-order-badges { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.order-badge { background: transparent; border: 1px solid var(--gold, #d4a14e); color: var(--gold, #d4a14e); padding: .45rem 1.1rem; border-radius: 4px; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; transition: background .25s, color .25s; }
.order-badge:hover { background: var(--gold, #d4a14e); color: #050505; }

.menu-sub-heading { font-family: 'Cormorant Garamond', serif; color: var(--gold, #d4a14e); font-size: 1.6rem; font-weight: 500; text-align: center; margin: 3rem 0 1.5rem; letter-spacing: .08em; }

.starters-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
.starters-grid .menu-card-image { height: 180px; overflow: hidden; }
.starters-grid .menu-card-image img { width: 100%; height: 100%; object-fit: cover; }
.starters-grid .menu-card-body { padding: 1.2rem 1.4rem; background: #0b0b0b; text-align: center; }
.starters-grid .menu-card-body h3 { font-size: 1rem; color: #fff; margin: 0 0 .5rem; }

.mains-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin: 1.5rem 0 2.5rem; }
.main-dish-item { background: #0b0b0b; border: 1px solid rgba(212,161,78,.15); border-left: 3px solid var(--gold, #d4a14e); padding: 1.4rem 1.6rem; border-radius: 4px; }
.main-dish-item h4 { color: var(--gold, #d4a14e); font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; margin: 0 0 .5rem; }
.main-dish-item p { color: #bdbdbd; font-size: .9rem; line-height: 1.6; margin: 0; }

.menu-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 3rem; padding-bottom: 1rem; }

.allergy-section { background: #0b0b0b; border-top: 1px solid rgba(212,161,78,.2); border-bottom: 1px solid rgba(212,161,78,.2); padding: 1.5rem 0; }
.allergy-inner { display: flex; align-items: flex-start; gap: 1rem; max-width: 860px; margin: 0 auto; }
.allergy-inner svg { color: var(--gold, #d4a14e); flex-shrink: 0; margin-top: 2px; }
.allergy-inner p { color: #bdbdbd; font-size: .9rem; line-height: 1.7; margin: 0; }
.allergy-inner strong { color: #fff; }

.footer-order-links { margin-top: 1rem; }


/* ── PAGE TEMPLATES ── */
.page-hero { padding: 7rem 0 3rem; border-bottom: none; }
.page-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 5vw, 3.5rem); color: #fff; margin: .5rem 0 0; }
.interior-page .about-section { padding: 4rem 0; }
.four-counties-highlight { color: var(--gold, #d4a14e); font-size: 1.1rem; letter-spacing: .05em; margin: 1rem 0; }
.services-section { padding: 4rem 0 5rem; }
.contact-section { padding: 4rem 0 5rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info h2 { margin-bottom: 2rem; }
.contact-block { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.8rem; color: #bdbdbd; line-height: 1.7; }
.contact-block svg { color: var(--gold, #d4a14e); flex-shrink: 0; margin-top: 3px; }
.contact-block a { color: #bdbdbd; text-decoration: none; }
.contact-block a:hover { color: var(--gold, #d4a14e); }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }


/* ═══════════════════════════════════════════════════════
   IMPROVEMENTS — v2.0
   Occasions, Menu Page, About Counties, Signatures
═══════════════════════════════════════════════════════ */

/* ─── OCCASIONS SECTION ──────────────────────────────── */
.occasions-section {
  padding: 100px 0;
  background: var(--dark2);
  position: relative;
}

.occasions-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.occasion-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--gold-border);
  padding: 42px 32px 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  animation-delay: var(--oc-delay, 0s);
}

.occasion-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dim) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.occasion-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s ease;
}

.occasion-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(212, 161, 78, 0.1);
}

.occasion-card:hover::before { opacity: 1; }
.occasion-card:hover::after { width: 100%; }

.occasion-icon-wrap {
  width: 72px;
  height: 72px;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
  position: relative;
  transition: var(--transition);
  background: rgba(212,161,78,0.05);
}

.occasion-card:hover .occasion-icon-wrap {
  background: var(--gold-dim);
  border-color: var(--gold);
  transform: rotate(5deg);
}

.occasion-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.occasion-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.occasion-tag {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.occasions-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ─── SIGNATURE SECTION ──────────────────────────────── */
.signature-section {
  padding: 100px 0;
  background: var(--black);
}

/* ─── MENU PAGE STYLES ───────────────────────────────── */
.menu-page-section {
  padding: 60px 0 0;
}

.menu-order-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 48px;
  background: linear-gradient(135deg, rgba(212,161,78,0.1) 0%, rgba(212,161,78,0.05) 100%);
  border: 1px solid var(--gold-border);
  margin-bottom: 64px;
  gap: 24px;
  flex-wrap: wrap;
}

.menu-order-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 4px;
}

.menu-order-text p {
  color: var(--muted);
  font-size: 14px;
}

.menu-order-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.menu-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.menu-section-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gold);
  margin-bottom: 16px;
}

.menu-section-ornament span {
  display: block;
  height: 1px;
  width: 60px;
  background: var(--gold-border);
}

.menu-category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.menu-category-subtitle {
  color: var(--muted);
  font-size: 15px;
  margin-top: 8px;
}

/* Main Dishes Grid */
.mains-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.main-dish-card {
  padding: 32px 36px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  transition: var(--transition);
}

.main-dish-card:hover {
  background: rgba(212,161,78,0.04);
  border-color: var(--gold-border);
}

.main-dish-card.chef-special {
  border-color: var(--gold-border);
  background: linear-gradient(135deg, rgba(212,161,78,0.06) 0%, transparent 100%);
}

.main-dish-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.main-dish-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.main-dish-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.spice-level {
  display: inline-block;
  padding: 3px 10px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}

.spice-level.mild { background: rgba(100,200,100,0.15); color: #7ec87e; border: 1px solid rgba(100,200,100,0.3); }
.spice-level.medium { background: rgba(212,161,78,0.15); color: var(--gold); border: 1px solid var(--gold-border); }
.spice-level.hot { background: rgba(220,80,60,0.15); color: #e07060; border: 1px solid rgba(220,80,60,0.3); }

.chef-badge {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 12px;
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ─── ABOUT COUNTIES SECTION ─────────────────────────── */
.about-counties-section {
  padding: 100px 0;
  background: var(--dark2);
  position: relative;
}

.about-counties-section::before {
  display: none;
}

.counties-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.counties-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.county-badge {
  padding: 40px 28px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--gold-border);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.county-badge::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.county-badge:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.county-badge:hover::after { width: 60%; }

.county-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
}

/* ─── HERO ORDER BADGES FIX ──────────────────────────── */
.hero-order-badges {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.order-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  text-decoration: none;
  background: rgba(255,255,255,0.03);
}

.order-badge:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .occasions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .counties-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .mains-grid {
    grid-template-columns: 1fr;
  }
  .menu-order-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .occasions-grid {
    grid-template-columns: 1fr;
  }
  .counties-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─── LOGO STYLES ────────────────────────────────────── */
.header-logo-img {
  max-height: 72px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4));
  transition: all 0.35s ease;
}

.site-header.scrolled .header-logo-img {
  max-height: 58px;
}

.footer-logo-img {
  max-height: 80px;
  width: auto;
  display: block;
  margin-bottom: 20px;
  opacity: 0.92;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

/* Hero logo — transparent PNG floats with glow */
.hero-logo-display img {
  width: 340px;
  max-width: 100%;
  filter: drop-shadow(0 0 30px rgba(212,161,78,0.4));
  animation: heroLogoFloat 6s ease-in-out infinite;
}

@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0px); filter: drop-shadow(0 0 30px rgba(212,161,78,0.3)); }
  50% { transform: translateY(-10px); filter: drop-shadow(0 20px 50px rgba(212,161,78,0.5)); }
}

/* Hero logo responsive */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-logo-display {
    display: none;
  }
}

@media (max-width: 768px) {
  .menu-grid,
  .starters-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .menu-grid,
  .starters-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ═══════════════════════════════════════════════════════
   v3 UPDATES — Hero Logo, Services 3-col, Centred boxes
═══════════════════════════════════════════════════════ */

/* ─── HERO: centred logo layout ─────────────────────── */
.hero-content--centred {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 48px;
  max-width: 680px;
  margin: 0 auto;
}

.hero-logo-main {
  margin-bottom: 32px;
  animation: heroLogoFloat 6s ease-in-out infinite;
}

.hero-logo-main-img {
  width: clamp(180px, 22vw, 320px);
  max-width: 100%;
  filter: drop-shadow(0 0 40px rgba(212,161,78,0.35));
}

.hero-content--centred .hero-desc {
  max-width: 540px;
  text-align: center;
}

.hero-content--centred .hero-hours {
  text-align: center;
}

.hero-content--centred .hero-buttons {
  justify-content: center;
}

.hero-content--centred .hero-order-badges {
  justify-content: center;
}

/* ─── ABOUT PAGE: logo instead of photo ─────────────── */
.about-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

.about-logo-img {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 0 30px rgba(212,161,78,0.25));
}

/* ─── SERVICES: 3-column centred grid ───────────────── */
.services-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.services-grid-3col .feature-box {
  width: 100%;
  text-align: center;
}

.services-grid-3col .feature-icon {
  margin: 0 auto 20px;
}

/* ─── FEATURES / WHY CHOOSE US: centred on all pages ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.features-grid .feature-box {
  width: 100%;
  text-align: center;
}

.features-grid .feature-icon {
  margin: 0 auto 20px;
}

/* ─── RESPONSIVE UPDATES ─────────────────────────────── */
@media (max-width: 900px) {
  .services-grid-3col {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid-3col,
  .features-grid {
    grid-template-columns: 1fr;
  }
  .hero-logo-main-img {
    width: clamp(260px, 85vw, 400px);
  }
}

/* ═══════════════════════════════════════════════════════
   v4 UPDATES — Logo size, centred layouts, animations
═══════════════════════════════════════════════════════ */

/* ─── HERO LOGO: 60% smaller ─────────────────────────── */
.hero-logo-main-img {
  width: clamp(200px, 28vw, 380px) !important;
  max-width: 100%;
  filter: drop-shadow(0 0 40px rgba(212,161,78,0.35));
}

/* ─── HEADER LOGO: use logo2 (dark bg transparent) ───── */
.header-logo-img {
  max-height: 68px !important;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,0.5));
  transition: all 0.3s ease;
}

/* ─── ABOUT SECTION: centred single column ───────────── */
.about-content-centred {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 0;
}

.about-content-centred .title-ornament {
  justify-content: center;
}

.about-list--centred {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin: 0 auto 32px;
}

/* ─── SERVICES: centred 3-col then 2-col fallback ────── */
.features-grid--centred {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px !important;
  max-width: 980px !important;
  margin: 0 auto !important;
  justify-items: center !important;
}

.features-grid--centred .feature-box {
  width: 100% !important;
  text-align: center !important;
}

.features-grid--centred .feature-icon {
  margin: 0 auto 20px !important;
}

/* ─── GLOBAL CENTRE: all section headings centred ────── */
.section-heading,
.section-heading.center {
  text-align: center;
}

.features-section .section-heading,
.about-section .section-heading {
  text-align: center;
}

/* ─── ANIMATIONS: scroll-triggered fade-up ───────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

[data-animate="fade-right"] {
  transform: translateX(-32px);
}

[data-animate="fade-left"] {
  transform: translateX(32px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ─── OCCASION CARDS: staggered entrance ─────────────── */
.occasion-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease calc(var(--oc-delay, 0s)),
              transform 0.6s ease calc(var(--oc-delay, 0s)),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.occasion-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Gold shimmer on section labels */
.section-label {
  background: linear-gradient(90deg, var(--gold) 0%, #f5d78e 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Pulse on CTA buttons */
.btn-primary {
  animation: btnPulse 3s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,161,78,0); }
  50% { box-shadow: 0 0 0 8px rgba(212,161,78,0.12); }
}

/* Feature box counter animation */
.feature-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.feature-box:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 48px rgba(212,161,78,0.12) !important;
}

/* Info bar slide-in */
.info-bar {
  animation: slideDown 0.6s ease 0.3s both;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .features-grid--centred {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .features-grid--centred {
    grid-template-columns: 1fr !important;
  }
  .hero-logo-main-img {
    width: clamp(180px, 75vw, 300px) !important;
  }
}

/* ═══════════════════════════════════════════════════════
   v5 — Footer logo, hero smaller, about centred, boxes centred
═══════════════════════════════════════════════════════ */

/* ─── FOOTER LOGO ────────────────────────────────────── */
.footer-logo-img {
  max-height: 80px !important;
  width: auto !important;
  display: block !important;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,0.4)) !important;
  margin-bottom: 12px !important;
}

/* ─── ABOUT PAGE + FRONT PAGE: centred single column ─── */
.about-content-centred {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 24px 80px;
}

.about-content-centred h2 {
  font-size: clamp(28px, 3.5vw, 48px);
}

.about-content-centred .title-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gold);
  margin: 16px auto 24px;
}

.about-content-centred .four-counties-highlight {
  color: var(--gold);
  font-size: 18px;
  margin: 16px 0;
}

/* ─── FRONT PAGE MIDDLE: narrow max-width, centred ────── */
.about-section .container,
.features-section .container,
.occasions-section .container,
.signature-section .container {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── FEATURE BOXES: centred 4-col, tight ───────────── */
.features-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  max-width: 1040px !important;
  margin: 0 auto !important;
  justify-items: center !important;
}

.features-grid .feature-box {
  text-align: center !important;
  width: 100% !important;
}

.features-grid .feature-icon {
  margin: 0 auto 20px !important;
}

/* About page features uses same centred grid */
.features-section .features-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}

/* ─── HERO: tighter top padding ─────────────────────── */
.hero-content--centred {
  padding-top: 56px !important;
  padding-bottom: 44px !important;
}

.hero-logo-main {
  margin-bottom: 20px !important;
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .features-grid,
  .features-section .features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 560px) {
  .features-grid,
  .features-section .features-grid {
    grid-template-columns: 1fr !important;
  }
  .hero-logo-main-img {
    width: clamp(160px, 70vw, 260px) !important;
  }
}

/* ═══════════════════════════════════════════════════════
   v6 — Hero 70% smaller, team photo, social icons, animations
═══════════════════════════════════════════════════════ */

/* ─── HERO: 70% smaller logo & tight layout ──────────── */
.hero-logo-main-img {
  width: clamp(140px, 16vw, 240px) !important;
  filter: drop-shadow(0 0 24px rgba(212,161,78,0.3)) !important;
}

.hero-logo-main {
  margin-bottom: 14px !important;
}

.hero-content--centred {
  padding-top: 40px !important;
  padding-bottom: 36px !important;
  max-width: 600px !important;
}

.hero-desc {
  font-size: 15px !important;
  margin-bottom: 8px !important;
}

.hero-hours {
  font-size: 13px !important;
  margin-bottom: 16px !important;
}

/* ─── TEAM PHOTO ─────────────────────────────────────── */
.team-photo-wrap {
  max-width: 520px;
  margin: 0 auto 60px;
  position: relative;
}

.team-photo-img {
  width: 100%;
  display: block;
  border: 1px solid var(--gold-border);
  filter: sepia(10%) brightness(0.95);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.team-photo-img:hover {
  filter: sepia(0%) brightness(1.05);
  transform: scale(1.01);
}

.team-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(212,161,78,0.2);
  pointer-events: none;
}

/* ─── CONTACT: SOCIAL MEDIA ICONS ────────────────────── */
.contact-social-block {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(212,161,78,0.15);
}

.contact-social-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}

.contact-social-icons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-icon-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icon-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: rgba(212,161,78,0.08);
  transition: width 0.3s ease;
}

.social-icon-btn:hover {
  color: var(--gold);
  border-color: var(--gold-border);
  transform: translateX(6px);
}

.social-icon-btn:hover::before {
  width: 100%;
}

.social-icon-btn svg {
  flex-shrink: 0;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.social-icon-btn span {
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
}

/* ─── FEATURE BOXES: properly centred ────────────────── */
.features-section .features-grid,
.about-section .features-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
  max-width: 1040px !important;
  margin: 40px auto 0 !important;
}

.feature-box {
  text-align: center !important;
}

.feature-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 20px !important;
}

/* ─── ENHANCED ANIMATIONS ────────────────────────────── */

/* Floating particles in hero */
.hero-section::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,161,78,0.06) 0%, transparent 70%);
  top: 20%;
  right: 15%;
  animation: particleFloat 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes particleFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  33% { transform: translate(20px, -30px) scale(1.1); opacity: 1; }
  66% { transform: translate(-15px, 20px) scale(0.9); opacity: 0.4; }
}

/* Gold border sweep on cards */
.occasion-card::before {
  transition: opacity 0.5s ease !important;
}

/* Section title underline draw */
.section-title {
  position: relative;
}

/* Staggered feature box entrance */
.features-grid .feature-box:nth-child(1) { transition-delay: 0.05s; }
.features-grid .feature-box:nth-child(2) { transition-delay: 0.15s; }
.features-grid .feature-box:nth-child(3) { transition-delay: 0.25s; }
.features-grid .feature-box:nth-child(4) { transition-delay: 0.35s; }
.features-grid .feature-box:nth-child(5) { transition-delay: 0.45s; }
.features-grid .feature-box:nth-child(6) { transition-delay: 0.55s; }

/* Smooth icon bounce on hover */
.feature-icon svg {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-box:hover .feature-icon svg {
  transform: translateY(-6px) scale(1.15);
}

/* Gold glow pulse on icons */
.feature-icon {
  position: relative;
}

.feature-icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,161,78,0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-box:hover .feature-icon::after {
  opacity: 1;
}

/* Menu cards scale in */
.menu-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease !important;
}

.menu-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* County badges pop in */
.county-badge {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, border-color 0.3s ease !important;
}

.county-badge.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Smooth scrollbar */
html {
  scroll-behavior: smooth;
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .features-section .features-grid,
  .about-section .features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 560px) {
  .features-section .features-grid,
  .about-section .features-grid {
    grid-template-columns: 1fr !important;
  }
  .hero-logo-main-img {
    width: clamp(130px, 55vw, 200px) !important;
  }
  .contact-social-icons {
    gap: 8px;
  }
}

/* ═══════════════════════════════════════════════════════
   v7 — About layout, hero smaller, boxes centred, footer
═══════════════════════════════════════════════════════ */

/* ─── ABOUT: story side-by-side ──────────────────────── */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}

.about-story-text {
  color: var(--muted);
}

.about-story-text p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-story-photo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-story-photo .team-photo-wrap {
  max-width: 100%;
  margin: 0;
}

.about-story-photo .team-photo-wrap::before {
  inset: -6px;
}

/* ─── ABOUT: features 2×2 centred grid ───────────────── */
.about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.about-features-grid .feature-box {
  text-align: center !important;
}

.about-features-grid .feature-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 20px !important;
}

/* ─── HOME: feature boxes centred 4-col ──────────────── */
.homepage .features-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  max-width: 1040px !important;
  margin: 40px auto 0 !important;
}

.homepage .features-grid .feature-box {
  text-align: center !important;
}

.homepage .features-grid .feature-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 20px !important;
}

/* ─── HERO: final size fix ────────────────────────────── */
.hero-section {
  min-height: 44vh !important;
}

.hero-content--centred {
  padding-top: 36px !important;
  padding-bottom: 32px !important;
  max-width: 560px !important;
}

.hero-logo-main-img {
  width: clamp(120px, 14vw, 200px) !important;
}

.hero-logo-main {
  margin-bottom: 12px !important;
}

.hero-desc {
  font-size: 14px !important;
  line-height: 1.6 !important;
  margin-bottom: 6px !important;
}

.hero-hours {
  font-size: 12px !important;
  margin-bottom: 14px !important;
}

/* ─── FOOTER: Book a Table button ────────────────────── */
.footer-order-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.footer-book-table-btn {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: var(--gold) !important;
  color: #000 !important;
  border-color: var(--gold) !important;
}

.footer-book-table-btn:hover {
  background: #c8922a !important;
  color: #000 !important;
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 860px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-story-photo {
    order: -1;
  }

  .about-features-grid {
    grid-template-columns: 1fr;
  }

  .homepage .features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .homepage .features-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-logo-main-img {
    width: clamp(110px, 50vw, 170px) !important;
  }
}

/* ═══════════════════════════════════════════════════════
   v8 — Footer buttons, mobile menu guaranteed fix, boxes
═══════════════════════════════════════════════════════ */

/* ─── FOOTER: side-by-side Order Online | Just Eat ───── */
.footer-order-links {
  display: flex !important;
  flex-direction: row !important;
  gap: 10px !important;
  margin-top: 20px !important;
  flex-wrap: wrap;
}

.footer-action-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  padding: 11px 18px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  border-radius: 2px !important;
  white-space: nowrap !important;
}

.footer-action-btn--gold {
  background: var(--gold) !important;
  color: #000 !important;
  border: 1px solid var(--gold) !important;
}

.footer-action-btn--gold:hover {
  background: #b8832a !important;
  color: #000 !important;
}

.footer-action-btn--outline {
  background: transparent !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold) !important;
}

.footer-action-btn--outline:hover {
  background: var(--gold) !important;
  color: #000 !important;
}

/* ─── MOBILE HAMBURGER: guaranteed visible ────────────── */
@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 8px !important;
    z-index: 9999 !important;
    position: relative !important;
  }

  .hamburger-line {
    display: block !important;
    width: 24px !important;
    height: 2px !important;
    background: var(--gold) !important;
    transition: all 0.3s ease !important;
    transform-origin: center !important;
  }

  .main-navigation {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: min(300px, 88vw) !important;
    height: 100vh !important;
    background: rgba(5,5,5,0.98) !important;
    border-left: 1px solid var(--gold-border) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 80px 40px !important;
    transition: right 0.4s cubic-bezier(0.25,0.46,0.45,0.94) !important;
    z-index: 1001 !important;
  }

  .main-navigation.is-open {
    right: 0 !important;
  }

  .nav-menu {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 28px !important;
  }

  .nav-menu li a {
    font-size: 16px !important;
    letter-spacing: 2px !important;
    color: var(--white) !important;
  }

  .nav-menu li a:hover {
    color: var(--gold) !important;
  }

  .book-btn {
    display: none !important;
  }

  /* Hamburger X animation */
  .mobile-menu-toggle.is-open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
  }

  .mobile-menu-toggle.is-open .hamburger-line:nth-child(2) {
    opacity: 0 !important;
    transform: scaleX(0) !important;
  }

  .mobile-menu-toggle.is-open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
  }
}

/* ─── FEATURE BOXES: responsive grid on all sizes ────── */
@media (max-width: 768px) {
  /* Inline grid override for home 4-col → 2-col */
  [style*="grid-template-columns:repeat(4,1fr)"],
  [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* About 2-col → 1-col */
  [style*="grid-template-columns:repeat(2,1fr)"],
  [style*="grid-template-columns: repeat(2, 1fr)"] {
    grid-template-columns: 1fr !important;
  }

  .about-story-grid {
    grid-template-columns: 1fr !important;
  }

  .about-story-photo {
    order: -1 !important;
  }
}

@media (max-width: 480px) {
  [style*="grid-template-columns:repeat(4,1fr)"],
  [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
}

/* ─── NAV OVERLAY ────────────────────────────────────── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

/* ═══════════════════════════════════════════════════════
   v9 — White line fix, mobile menu, mobile boxes
═══════════════════════════════════════════════════════ */

/* ─── Remove ALL decorative dividing lines between sections ─ */
section::before,
section::after {
  /* Only remove height-based pseudo lines, not background ones */
}

.about-counties-section::before,
.occasions-section::before,
.features-section::before,
.signature-section::before {
  display: none !important;
}

/* ─── MOBILE: home feature boxes ─────────────────────── */
@media (max-width: 767px) {
  /* Force all inline-style grids to 1 column on mobile */
  [style*="grid-template-columns:repeat(4"] {
    grid-template-columns: 1fr !important;
  }

  [style*="grid-template-columns:repeat(2"] {
    grid-template-columns: 1fr !important;
  }

  /* About story stacks vertically */
  .about-story-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .about-story-photo {
    order: -1 !important;
  }

  /* Footer buttons stack on very small screens */
  .footer-order-links {
    flex-direction: column !important;
  }

  .footer-action-btn {
    width: 100% !important;
    justify-content: center !important;
  }

  /* Hero tighter on mobile */
  .hero-content--centred {
    padding-top: 28px !important;
    padding-bottom: 24px !important;
  }

  .hero-logo-main-img {
    width: clamp(100px, 45vw, 160px) !important;
  }
}

/* ─── MOBILE MENU: hamburger always visible under 1024px ─ */
@media (max-width: 1024px) {
  /* Hide desktop nav from flow - it's handled as fixed overlay */
  .main-navigation {
    /* Already positioned fixed off-screen - just ensure hamburger visible */
  }

  .mobile-menu-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 5px !important;
    width: 40px !important;
    height: 40px !important;
    background: none !important;
    border: 1px solid var(--gold-border) !important;
    cursor: pointer !important;
    z-index: 1002 !important;
    position: relative !important;
    padding: 8px !important;
  }

  .hamburger-line {
    display: block !important;
    width: 20px !important;
    height: 1.5px !important;
    background: var(--gold) !important;
    transition: all 0.3s ease !important;
  }
}

/* ═══════════════════════════════════════════════════════
   v10 — Video hero, mobile boxes fix, about cleanup
═══════════════════════════════════════════════════════ */

/* ─── HERO VIDEO ─────────────────────────────────────── */
.hero-video-wrap {
  width: 100%;
  max-width: 680px;
  margin: 0 auto 24px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--gold-border);
  box-shadow: 0 0 60px rgba(212,161,78,0.15);
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
  max-height: 380px;
  object-fit: cover;
}

/* ─── HOME FEATURE BOXES: mobile 1-column ────────────── */
/* Target both the inline-style grid and class-based grid */
@media (max-width: 900px) {
  /* Catch inline style grids — repeat(4...) → 2 cols */
  .homepage [style*="repeat(4"],
  .homepage [style*="repeat(4,"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 560px) {
  /* All grids → 1 col on phones */
  .homepage [style*="repeat(4"],
  .homepage [style*="repeat(4,"],
  .homepage [style*="repeat(2"],
  .homepage [style*="repeat(2,"] {
    grid-template-columns: 1fr !important;
  }

  /* Video smaller on phone */
  .hero-video {
    max-height: 220px;
  }

  .hero-video-wrap {
    max-width: 100%;
  }
}

/* ─── ABOUT PAGE: no stray lines ─────────────────────── */
.interior-page section {
  border-top: none !important;
  border-bottom: none !important;
}

/* Override - keep gold border on header when scrolled */
.site-header.scrolled {
  border-bottom: 1px solid var(--gold-border) !important;
}

/* ─── WHITE LINE FINAL FIX: ensure no gap between sections ─ */
.about-section,
.about-counties-section,
.features-section,
.booking-section {
  margin: 0 !important;
  outline: none !important;
}

/* Remove any pseudo-element lines on about page sections */
.interior-page section::before {
  display: none !important;
}

/* But keep the header pseudo-element */
.site-header::before {
  display: block !important;
}

/* ═══════════════════════════════════════════════════════
   FINAL OVERRIDE — logo size, no video
═══════════════════════════════════════════════════════ */
.hero-logo-main-img {
  width: 160px !important;
  max-width: 160px !important;
  height: auto !important;
  display: block !important;
  margin: 0 auto !important;
  filter: drop-shadow(0 0 20px rgba(212,161,78,0.25)) !important;
}

.hero-logo-main {
  margin-bottom: 16px !important;
}

@media (max-width: 560px) {
  .hero-logo-main-img {
    width: 120px !important;
    max-width: 120px !important;
  }
}

/* ═══════════════════════════════════════════════════════
   FINAL FIXES — feature grid, mobile menu, logo size
═══════════════════════════════════════════════════════ */

/* ─── FEATURE GRID: proper responsive ───────────────── */
.fcs-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .fcs-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .fcs-feature-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── LOGO: hard small size ──────────────────────────── */
.hero-logo-main-img {
  width: 140px !important;
  max-width: 140px !important;
  height: auto !important;
}

/* ─── MOBILE MENU: show hamburger below 1024px ───────── */
@media (min-width: 1025px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  .main-navigation {
    position: static !important;
    height: auto !important;
    width: auto !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    flex-direction: row !important;
    right: auto !important;
  }
}

@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    width: 44px !important;
    height: 44px !important;
    background: transparent !important;
    border: 1px solid var(--gold-border) !important;
    cursor: pointer !important;
    z-index: 1002 !important;
    padding: 8px !important;
    flex-shrink: 0 !important;
  }

  .hamburger-line {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    background: var(--gold) !important;
    transition: transform 0.3s ease, opacity 0.3s ease !important;
    transform-origin: center !important;
  }

  .main-navigation {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: min(300px, 85vw) !important;
    height: 100vh !important;
    background: #050505 !important;
    border-left: 1px solid var(--gold-border) !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 80px 40px !important;
    z-index: 1001 !important;
    transition: right 0.35s ease !important;
  }

  .main-navigation.is-open {
    right: 0 !important;
  }

  .nav-menu {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 32px !important;
  }

  .nav-menu a {
    font-size: 15px !important;
    letter-spacing: 2px !important;
    color: #fff !important;
  }

  .nav-menu a:hover {
    color: var(--gold) !important;
  }

  .book-btn {
    display: none !important;
  }

  /* Hamburger → X */
  .mobile-menu-toggle.is-open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
  }
  .mobile-menu-toggle.is-open .hamburger-line:nth-child(2) {
    opacity: 0 !important;
  }
  .mobile-menu-toggle.is-open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
  }
}

/* ═══════════════════════════════════════════════════════
   ABOUT PAGE: nuclear option — hide ALL page content output
   The boxes come from WordPress editor content on the About
   page. This CSS hides everything injected by the_content()
   on that page while keeping our custom template visible.
═══════════════════════════════════════════════════════ */
.interior-page .page-content-section,
.interior-page .page-content-inner,
body.page-id-about .page-content-section,
body.page-template-page-about .page-content-section {
  display: none !important;
}

/* Hide any injected content that appears after our about-section */
.interior-page > main > .page-content-section {
  display: none !important;
}

/* ═══════════════════════════════════════════════════════
   FINAL CLEAN — Hero split, social pills, footer buttons
═══════════════════════════════════════════════════════ */

/* ─── HERO: logo left, text right ───────────────────── */
.hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-top: 100px;
  padding-bottom: 80px;
  min-height: 70vh;
}

.hero-split-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-large {
  width: clamp(220px, 28vw, 380px);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(212,161,78,0.3));
  animation: heroLogoFloat 6s ease-in-out infinite;
}

.hero-split-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-split-right .hero-title {
  font-size: clamp(40px, 5vw, 72px);
  margin-bottom: 8px;
}

.hero-split-right .hero-subtitle {
  margin-bottom: 16px;
}

.hero-split-right .hero-desc {
  margin-bottom: 8px;
  max-width: 480px;
}

.hero-split-right .hero-hours {
  margin-bottom: 24px;
}

.hero-split-right .hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
    padding-top: 80px;
    padding-bottom: 60px;
    min-height: auto;
  }
  .hero-logo-large {
    width: clamp(160px, 50vw, 260px);
  }
  .hero-split-right .hero-buttons {
    justify-content: center;
  }
  .hero-split-right .hero-desc {
    margin: 0 auto 8px;
  }
}

/* ─── SOCIAL PILLS: compact horizontal ──────────────── */
.contact-social-icons {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 8px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.25s ease;
  background: rgba(212,161,78,0.05);
  white-space: nowrap;
}

.social-pill:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.social-pill svg {
  flex-shrink: 0;
}

/* ─── FOOTER BUTTONS: side by side small ────────────── */
.footer-order-links {
  display: flex !important;
  flex-direction: row !important;
  gap: 8px !important;
  margin-top: 16px !important;
  flex-wrap: wrap !important;
}

.footer-action-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 9px 14px !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  white-space: nowrap !important;
}

.footer-action-btn--gold {
  background: var(--gold) !important;
  color: #000 !important;
  border: 1px solid var(--gold) !important;
}

.footer-action-btn--gold:hover {
  background: #b8832a !important;
}

.footer-action-btn--outline {
  background: transparent !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold-border) !important;
}

.footer-action-btn--outline:hover {
  background: var(--gold) !important;
  color: #000 !important;
  border-color: var(--gold) !important;
}

/* ═══════════════════════════════════════════════════════
   DEFINITIVE HERO + ABOUT FIX
═══════════════════════════════════════════════════════ */

/* ─── CLEAN HERO ─────────────────────────────────────── */
.fcs-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 64px;
  padding-top: 100px;
  padding-bottom: 80px;
  min-height: 72vh;
}

.fcs-hero-logo {
  flex: 0 0 auto;
}

.fcs-hero-logo-img {
  width: 300px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 32px rgba(212,161,78,0.3));
  animation: heroLogoFloat 6s ease-in-out infinite;
}

.fcs-hero-text {
  flex: 1;
}

.fcs-hero-text .hero-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 8px;
  max-width: 480px;
}

.fcs-hero-text .hero-hours {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.fcs-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .fcs-hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 28px;
    padding-top: 80px;
    padding-bottom: 60px;
    min-height: auto;
  }
  .fcs-hero-logo-img {
    width: 200px;
  }
  .fcs-hero-btns {
    justify-content: center;
  }
  .fcs-hero-text .hero-desc {
    margin: 0 auto 8px;
  }
}

@media (max-width: 480px) {
  .fcs-hero-logo-img {
    width: 160px;
  }
}

/* ─── FOOTER: plain inline side-by-side links ────────── */
.footer-order-links {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: 16px !important;
  flex-wrap: wrap !important;
}

.footer-inline-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  color: var(--gold) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  transition: opacity 0.2s ease !important;
}

.footer-inline-btn:hover {
  opacity: 0.75 !important;
}

.footer-inline-btn svg {
  color: var(--gold) !important;
  flex-shrink: 0 !important;
}

.footer-btn-divider {
  color: var(--gold-border);
  font-size: 14px;
  user-select: none;
}

/* ─── FOOTER INLINE BUTTONS: smaller, force one line ─── */
.footer-order-links {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 12px !important;
  flex-wrap: nowrap !important;
}

.footer-inline-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  color: var(--gold) !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  white-space: nowrap !important;
  transition: opacity 0.2s ease !important;
}

.footer-inline-btn:hover { opacity: 0.7 !important; }
.footer-inline-btn svg { width: 12px !important; height: 12px !important; flex-shrink: 0 !important; color: var(--gold) !important; }
.footer-btn-divider { color: rgba(212,161,78,0.4); font-size: 12px; flex-shrink: 0; }

/* ─── NEW ABOUT PAGE: mobile stacking ───────────────── */
@media (max-width: 700px) {
  .interior-page [style*="grid-template-columns:1fr 1fr"],
  .interior-page [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

/* ─── ABOUT PAGE: clean rebuild ─────────────────────── */
.about-clean-section { padding: 72px 0; background: #050505; }
.about-counties-clean { padding: 64px 0; background: #080808; }
.about-cta-clean { padding: 72px 0; background: #050505; }

.about-clean-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-clean-heading {
  text-align: center;
  margin-bottom: 48px;
}

.about-clean-heading .title-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gold);
  margin-top: 16px;
}

.about-clean-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-clean-text p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 15px;
  margin-bottom: 16px;
}

.about-counties-inline {
  color: var(--gold);
}

.about-team-img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto;
  border: 1px solid rgba(212,161,78,0.2);
}

.about-counties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin: 0 auto 32px;
}

.about-county-badge {
  padding: 28px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212,161,78,0.15);
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--gold);
  letter-spacing: 0.5px;
  transition: background 0.3s ease;
}

.about-county-badge:hover {
  background: rgba(212,161,78,0.06);
}

.about-location-text {
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.about-cta-address {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 12px auto 32px;
}

.about-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  .about-clean-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-counties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── ABOUT PAGE: fix width and remove white line ────── */
.about-clean-section,
.about-counties-clean,
.about-cta-clean {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  margin: 0 !important;
}

.about-clean-wrap {
  max-width: 1000px !important;
  margin: 0 auto !important;
  padding: 0 40px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.about-clean-body {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 56px !important;
  align-items: center !important;
}

/* No white lines between sections */
.interior-page section {
  border-top: none !important;
  border-bottom: none !important;
}

@media (max-width: 720px) {
  .about-clean-body {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .about-clean-wrap {
    padding: 0 20px !important;
  }
}

/* ─── ABOUT PAGE: fix overflow and padding ───────────── */
.interior-page {
  overflow-x: hidden !important;
}

.about-clean-section .container,
.about-clean-wrap {
  padding-left: 40px !important;
  padding-right: 40px !important;
  max-width: 1060px !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
  width: 100% !important;
}

.about-clean-text p,
.about-location-text {
  overflow-wrap: break-word !important;
  word-wrap: break-word !important;
}

@media (max-width: 600px) {
  .about-clean-wrap {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
