/* ═══════════════════════════════════════════════
   THE WAGGON & HORSES — GLOBAL DESIGN SYSTEM
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Cormorant+SC:wght@300;400;500&family=Jost:wght@300;400;500&display=swap');

/* ── TOKENS ── */
:root {
  --forest: #1a2e1e;
  --forest-light: #253c2a;
  --gold: #b8922a;
  --gold-light: #d4aa4a;
  --gold-pale: #e8c870;
  --ivory: #f5f0e8;
  --ivory-dark: #e8e0d0;
  --parchment: #f0e8d8;
  --oak: #3d2b1a;
  --oak-light: #5c3d20;
  --charcoal: #161310;
  --charcoal-mid: #221e19;
  --charcoal-soft: #2a2520;
  --oxblood: #6b1f1f;
  --warm-white: #faf8f4;
  --text-dark: #1a1510;
  --text-mid: #3a3028;
  --text-light: #7a6a55;
  --radius: 2px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.4s var(--ease);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

img,
video {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.3;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--charcoal);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ── TYPE ── */
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.label {
  font-family: 'Cormorant SC', serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

.serif-italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
}

/* ── LAYOUT ── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-pad {
  padding: 110px 0;
}

.section-pad-sm {
  padding: 72px 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 30px;
  font-family: 'Cormorant SC', serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  border: none;
  transition: all 0.35s;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 146, 42, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(245, 240, 232, 0.35);
}

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

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid rgba(61, 43, 26, 0.35);
}

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

.btn-text {
  background: none;
  padding: 0;
  font-family: 'Cormorant SC', serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  border-bottom: 1px solid rgba(184, 146, 42, 0.35);
  padding-bottom: 3px;
  color: var(--gold);
  transition: border-color 0.3s;
}

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


/* Gallery Strip css code of index.html */
.gm-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gm-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gm-item:hover .gm-inner img {
  transform: scale(1.05);
}

/* Events Preview code index.html */
.event-card-top {
  position: relative;
  overflow: hidden;
}

.event-card-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-card-top .date-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}

/* Page Hero reservation.html css code */
.page-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* sunday roast extra css */
.sunday-hero-extra-img-bg {
  position: relative;
  /* ← add this if not already there */
  overflow: hidden;
  /* ← add this if not already there */
}

/* Private dinning css right side image */
.private-intro-visual-bg {
  position: relative;
  overflow: hidden;
}

/* Contact us - tell us more private hire page */
/* ENQUIRY CONTACT GRID */
.enquiry-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3px;
  max-width: 860px;
  margin: 0 auto 64px;
}

.enquiry-card {
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184, 146, 42, 0.15);
  transition: border-color 0.3s;
}

.enquiry-card:hover {
  border-color: rgba(184, 146, 42, 0.4);
}

.enquiry-card-dark {
  background: var(--charcoal);
}

.enquiry-card-oak {
  background: var(--oak);
}

.enquiry-card-circles::before,
.enquiry-card-circles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.enquiry-card-circles::before {
  width: 160px;
  height: 160px;
  top: -40px;
  right: -40px;
  border: 1px solid rgba(184, 146, 42, 0.06);
}

.enquiry-card-circles::after {
  width: 100px;
  height: 100px;
  top: -10px;
  right: -10px;
  border: 1px solid rgba(184, 146, 42, 0.1);
}

.enquiry-card-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(184, 146, 42, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.enquiry-card-label {
  font-family: 'Cormorant SC', serif;
  font-size: 0.66rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.enquiry-card-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--ivory);
  display: block;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
  transition: color 0.3s;
  line-height: 1.2;
}

.enquiry-card-value--email {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  word-break: break-all;
}

.enquiry-card-value:hover {
  color: var(--gold-light);
}

.enquiry-card-desc {
  font-size: 0.86rem;
  color: rgba(245, 240, 232, 0.4);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 32px;
}

.enquiry-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant SC', serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  border-bottom: 1px solid rgba(184, 146, 42, 0.3);
  padding-bottom: 3px;
  transition: border-color 0.3s, gap 0.3s;
}

.enquiry-card-link:hover {
  border-color: var(--gold);
  gap: 16px;
}

/* PROMISE STRIP */
.enquiry-promise {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
}

.enquiry-promise-item {
  background: var(--parchment);
  border: 1px solid rgba(61, 43, 26, 0.1);
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.3s;
}

.enquiry-promise-item:hover {
  border-color: rgba(184, 146, 42, 0.25);
}

.enquiry-promise-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(184, 146, 42, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.enquiry-promise-title {
  font-family: 'Cormorant SC', serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  display: block;
  margin-bottom: 7px;
}

.enquiry-promise-text {
  font-size: 0.84rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.65;
}

/* MOBILE */
@media(max-width: 600px) {
  .enquiry-card {
    padding: 36px 28px;
  }

  .enquiry-promise {
    grid-template-columns: 1fr;
  }
}

/* Drinks section css of idnex.html */
.drink-tile-bg {
  position: relative;
  overflow: hidden;
}

.drink-tile-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Feature event on whatson Page css code */
.featured-event-visual-bg {
  position: relative;

  overflow: hidden;

}

/* ── HERO MENU BUTTONS ── */
.hero-menu-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

@media (max-width: 600px) {
  .hero-menu-btns .btn {
    width: 100%;
    text-align: center;
  }
}

/* What's on event images css code */
/* EVENT CARDS */
.events-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.event-full-card {
  background: var(--charcoal-mid);
  border: 1px solid rgba(184, 146, 42, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.event-full-card:hover {
  border-color: rgba(184, 146, 42, 0.3);
  transform: translateY(-4px);
}

/* IMAGE AREA */
.efc-top {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--charcoal);
}

.efc-top img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.event-full-card:hover .efc-top img {
  transform: scale(1.05);
}

.efc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 7, 4, 0.72) 0%, rgba(10, 7, 4, 0.1) 60%);
  z-index: 1;
}

/* DATE BADGE */
.efc-date {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--charcoal);
  width: 52px;
  height: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.efc-date .day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
}

.efc-date .mon {
  font-family: 'Cormorant SC', serif;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* CARD BODY */
.efc-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.efc-body .label {
  margin-bottom: 2px;
}

.efc-body h3 {
  font-size: 1.22rem;
  color: var(--ivory);
  line-height: 1.2;
}

.efc-body .time {
  font-family: 'Cormorant SC', serif;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  color: rgba(245, 240, 232, 0.38);
  margin-bottom: 4px;
}

/* BOOK NOW BUTTON */
.efc-btn {
  display: inline-block;
  margin-top: auto;
  padding: 11px 22px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: 'Cormorant SC', serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-align: center;
  transition: background 0.3s, transform 0.2s;
  align-self: flex-start;
}

.efc-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* TABLET */
@media(max-width: 1024px) {
  .events-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media(max-width: 600px) {
  .events-list {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .efc-top {
    aspect-ratio: 16/9;
  }

  .efc-body {
    padding: 20px;
  }

  .efc-body h3 {
    font-size: 1.1rem;
  }

  .efc-btn {
    width: 100%;
    text-align: center;
    align-self: stretch;
    padding: 13px;
  }
}

/* sunday roast menu css code */
/* MENU BLOCK */
.menu-block {
  max-width: 720px;
  margin: 0 auto;
}

.menu-block-header {
  margin-bottom: 32px;
}

.menu-block-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--text-dark);
  margin-bottom: 12px;
}

.menu-block-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 560px;
}

/* ALLERGEN */
.allergen {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--text-light);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}

/* ORNAMENT DIVIDER */
.menu-ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 720px;
  margin: 52px auto;
}

.menu-ornament-line {
  flex: 1;
  height: 1px;
  background: rgba(61, 43, 26, 0.15);
}

/* CTA */
.menu-cta {
  text-align: center;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.menu-cta-note {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* MOBILE */
@media(max-width: 600px) {
  .menu-block-header h2 {
    font-size: 1.6rem;
  }

  .menu-ornament {
    margin: 36px auto;
  }
}

/* Mneu page top menu options css code */
/* MENU NAV MOBILE */
.menu-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--charcoal-mid);
  border-bottom: 1px solid rgba(184, 146, 42, 0.12);
}

.menu-tabs {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 0;
  padding: 0;
}

.menu-tabs::-webkit-scrollbar {
  display: none;
}

.menu-tab {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 16px 22px;
  font-family: 'Cormorant SC', serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: rgba(245, 240, 232, 0.45);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}

.menu-tab:hover {
  color: rgba(245, 240, 232, 0.8);
}

.menu-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

@media(max-width: 768px) {
  .menu-nav .container {
    padding: 0 !important;
  }

  .menu-tabs {
    padding: 0 20px;
    gap: 0;
  }

  .menu-tab {
    padding: 14px 18px;
    font-size: 0.64rem;
  }

  /* Fade indicator on right to hint scrollability */
  .menu-nav::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 100%;
    background: linear-gradient(to right, transparent, var(--charcoal-mid));
    pointer-events: none;
  }
}

/* Footer center in Mobile view css code */
@media(max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 18px;
  }

  .footer-tagline {
    margin: 0 auto 22px;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-col ul {
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

/* Mobile Menu changes css code */
@media(max-width: 768px) {
  .mobile-nav-drawer {
    padding: 0;
    justify-content: center;
    align-items: center;
    overflow-y: hidden;
    gap: 0;
    display: flex;
    flex-direction: column;
  }

  .mobile-nav-drawer a {
    font-family: 'Cormorant SC', serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: rgba(245, 240, 232, 0.7);
    padding: 11px 0;
    width: 80%;
    text-align: center;
    border-bottom: 1px solid rgba(184, 146, 42, 0.1);
    transition: color 0.3s, border-color 0.3s;
  }

  /* .mobile-nav-drawer a:first-child {
    border-top: 1px solid rgba(184, 146, 42, 0.1);
  } */

  .mobile-nav-drawer a:hover,
  .mobile-nav-drawer a.active {
    color: var(--gold);
    border-bottom-color: rgba(184, 146, 42, 0.25);
  }

  .mobile-nav-drawer .mobile-book {
    margin-top: 18px;
    width: 80%;
    text-align: center;
    padding: 12px;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    border: none !important;
    background: var(--gold);
    color: var(--charcoal);
  }
}

/* ── ORNAMENT ── */
.ornament-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto 56px;
  max-width: 260px;
}

.ornament-divider.light::before,
.ornament-divider.light::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(184, 146, 42, 0.35);
}

.ornament-divider.dark::before,
.ornament-divider.dark::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(61, 43, 26, 0.28);
}

.ornament-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── HEADER ── */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}

#header.scrolled {
  background: rgba(16, 12, 8, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 14px 48px;
  border-bottom: 1px solid rgba(184, 146, 42, 0.14);
}

.header-logo {
  height: 50px;
  width: auto;
  transition: height var(--transition);
}

#header.scrolled .header-logo {
  height: 40px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-family: 'Cormorant SC', serif;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  color: rgba(245, 240, 232, 0.8);
  transition: color 0.3s;
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

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

.header-nav a:hover::after {
  transform: scaleX(1);
}

.header-nav a.active {
  color: var(--gold-light);
}

.header-nav a.active::after {
  transform: scaleX(1);
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ivory);
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ── FIX: Override DesignMyNight style bleed on header button ── */
#header .btn-gold,
#header .btn.btn-gold {
  background: var(--gold) !important;
  color: var(--charcoal) !important;
  border-color: var(--gold) !important;
}

/* Privacy Policy - Terms and conditions center css code */
@media (max-width: 768px) {
  .footer-legal {
    justify-content: center;
    text-align: center;
  }
}

/* mobile nav drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--charcoal);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav-drawer.open {
  transform: translateX(0);
}

.mobile-nav-drawer a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--ivory);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.mobile-nav-drawer a:hover {
  color: var(--gold);
}

.mobile-nav-drawer .mobile-book {
  margin-top: 16px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--oak) 0%, var(--forest) 50%, var(--charcoal) 100%);
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(184, 146, 42, 0.07) 0%, transparent 65%);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 10, 6, 0.55);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-content .label {
  margin-bottom: 18px;
}

.page-hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  color: var(--ivory);
  margin-bottom: 20px;
}

.page-hero-content p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: rgba(245, 240, 232, 0.65);
  max-width: 560px;
  margin: 0 auto;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--charcoal-mid);
  padding: 14px 0;
  border-bottom: 1px solid rgba(184, 146, 42, 0.1);
}

.breadcrumb nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb a,
.breadcrumb span {
  font-family: 'Cormorant SC', serif;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  color: rgba(245, 240, 232, 0.35);
  transition: color 0.3s;
}

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

.breadcrumb span.current {
  color: var(--gold);
}

.breadcrumb .sep {
  color: rgba(184, 146, 42, 0.3);
}

/* ── HERO VIDEO BACKGROUND ── */
.hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── IMAGE PLACEHOLDER ── */
.img-ph {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.img-ph .img-ph-label {
  font-family: 'Cormorant SC', serif;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  color: rgba(184, 146, 42, 0.3);
}

.img-ph svg {
  opacity: 0.12;
}

.img-ph-dark {
  background: linear-gradient(135deg, var(--charcoal-mid), var(--charcoal));
}

.img-ph-oak {
  background: linear-gradient(135deg, #3d2b1a, #2a1e10);
}

.img-ph-forest {
  background: linear-gradient(135deg, #1a2e1e, #0f2015);
}

.img-ph-warm {
  background: linear-gradient(135deg, #4a2e0a, #2a1a06);
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.10s;
}

.reveal-delay-2 {
  transition-delay: 0.20s;
}

.reveal-delay-3 {
  transition-delay: 0.30s;
}

.reveal-delay-4 {
  transition-delay: 0.40s;
}

.reveal-delay-5 {
  transition-delay: 0.50s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

/* ── SECTION HEADINGS ── */
.section-heading {
  margin-bottom: 64px;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--ivory);
  margin-top: 14px;
}

.section-heading h2.dark {
  color: var(--text-dark);
}

.section-heading p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(245, 240, 232, 0.55);
  max-width: 580px;
  margin-top: 18px;
  font-weight: 300;
}

.section-heading p.dark {
  color: var(--text-mid);
}

.section-heading.center p {
  margin: 18px auto 0;
}

/* ── MARQUEE STRIP ── */
.marquee-strip {
  background: var(--gold);
  padding: 28px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 70px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--charcoal);
  opacity: 0.8;
  flex-shrink: 0;
}

.marquee-track .dot {
  font-style: normal;
  opacity: 0.4;
  flex-shrink: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ── TESTIMONIAL ── */
.testimonial-card {
  padding: 44px 38px;
  border: 1px solid rgba(184, 146, 42, 0.12);
  background: var(--charcoal-mid);
}

.testimonial-card .quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 12px;
}

.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.12rem;
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.72;
  margin-bottom: 22px;
}

.testimonial-card cite {
  font-family: 'Cormorant SC', serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-style: normal;
}

/* ── CARDS ── */
.card {
  background: var(--charcoal-mid);
  border: 1px solid rgba(184, 146, 42, 0.1);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.35s;
}

.card:hover {
  border-color: rgba(184, 146, 42, 0.3);
  transform: translateY(-5px);
}

.card-img {
  position: relative;
  overflow: hidden;
}

.card-img-inner {
  transition: transform 0.75s var(--ease);
}

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

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

.card-body .label {
  margin-bottom: 10px;
}

.card-body h3 {
  font-size: 1.45rem;
  color: var(--ivory);
  margin-bottom: 10px;
}

.card-body p {
  font-size: 0.86rem;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.68;
  font-weight: 300;
}

/* ── FORM ── */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-family: 'Cormorant SC', serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(184, 146, 42, 0.18);
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--ivory);
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(245, 240, 232, 0.3);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23b8922a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-field select option {
  background: var(--charcoal-mid);
  color: var(--ivory);
}

.form-light .form-field input,
.form-light .form-field select,
.form-light .form-field textarea {
  background: var(--warm-white);
  border-color: rgba(61, 43, 26, 0.2);
  color: var(--text-dark);
}

.form-light .form-field input::placeholder,
.form-light .form-field textarea::placeholder {
  color: var(--text-light);
}

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

/* ── VISIT BLOCK ── */
.visit-detail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.visit-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(184, 146, 42, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.visit-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.visit-detail h4 {
  font-family: 'Cormorant SC', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 7px;
}

.visit-detail p {
  font-size: 0.88rem;
  line-height: 1.72;
  color: rgba(245, 240, 232, 0.55);
  font-weight: 300;
}

.visit-detail p.dark {
  color: var(--text-mid);
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(184, 146, 42, 0.1);
  padding: 72px 0 40px;
}

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

.footer-logo {
  height: 46px;
  width: auto;
  margin-bottom: 18px;
  filter: brightness(0.82);
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.38);
  line-height: 1.7;
  max-width: 270px;
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(184, 146, 42, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}

.footer-social:hover {
  border-color: var(--gold);
  background: rgba(184, 146, 42, 0.08);
}

.footer-social svg {
  width: 15px;
  height: 15px;
  stroke: rgba(245, 240, 232, 0.45);
  fill: none;
}

.footer-col h5 {
  font-family: 'Cormorant SC', serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col ul li a {
  font-size: 0.86rem;
  color: rgba(245, 240, 232, 0.42);
  transition: color 0.3s;
  font-weight: 300;
}

.footer-col ul li a:hover {
  color: var(--ivory);
}

.footer-col p {
  font-size: 0.86rem;
  color: rgba(245, 240, 232, 0.42);
  line-height: 1.78;
  font-weight: 300;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(184, 146, 42, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom p {
  font-size: 0.76rem;
  color: rgba(245, 240, 232, 0.22);
  font-weight: 300;
}

.footer-legal {
  display: flex;
  gap: 22px;
}

.footer-legal a {
  font-size: 0.76rem;
  color: rgba(245, 240, 232, 0.22);
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: rgba(245, 240, 232, 0.5);
}

/* ── STICKY MOBILE CTA ── */
.sticky-book {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--charcoal);
  border-top: 1px solid rgba(184, 146, 42, 0.18);
  padding: 12px 20px;
}

.sticky-book a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: 'Cormorant SC', serif;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
}

/* ── ACCORDION ── */
.accordion-item {
  border-bottom: 1px solid rgba(184, 146, 42, 0.12);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--ivory);
  gap: 20px;
}

.accordion-trigger svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.accordion-trigger.open svg {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.accordion-body-inner {
  padding: 0 0 24px;
  font-size: 0.92rem;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.82;
  font-weight: 300;
}

/* ── BADGE / LABEL ── */
.badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(184, 146, 42, 0.12);
  font-family: 'Cormorant SC', serif;
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.badge-oxblood {
  background: rgba(107, 31, 31, 0.25);
  color: #d4685a;
}

/* ── ACCESSIBILITY helpers ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ── RESPONSIVE ── */
@media (max-width:1024px) {
  .container {
    padding: 0 32px;
  }

  .container-narrow {
    padding: 0 32px;
  }

  #header {
    padding: 18px 32px;
  }

  #header.scrolled {
    padding: 14px 32px;
  }

  .header-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav-drawer {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width:768px) {
  .section-pad {
    padding: 72px 0;
  }

  .section-pad-sm {
    padding: 52px 0;
  }

  .container {
    padding: 0 20px;
  }

  .container-narrow {
    padding: 0 20px;
  }

  #header {
    padding: 16px 20px;
  }

  .sticky-book {
    display: block;
  }

  body {
    padding-bottom: 64px;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}