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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: #fff;
  text-align: center;
  padding: 10px 40px 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  border-bottom: 1px solid #e8e8e8;
}

.announcement-bar p {
  font-size: 16px;
  color: #333;
  letter-spacing: 0.5px;
}

.announcement-bar-dark {
  background: #111;
  border-bottom: none;
}

.announcement-bar-dark p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
}

.announcement-bar-dark .announcement-close {
  color: rgba(255,255,255,0.6);
}

.announcement-bar-dark .announcement-close:hover {
  color: #fff;
}

.announcement-close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 18px;
  color: #666;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
}

.announcement-close:hover {
  color: #000;
}

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

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

ul {
  list-style: none;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: top 0.3s;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 25px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-title {
  font-size: clamp(15px, 1.6vw, 22px);
  font-weight: 600;
  letter-spacing: clamp(2px, 0.3vw, 4px);
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.2;
}

.site-title a {
  color: #fff;
}

.site-subtitle {
  display: block;
  font-size: clamp(8px, 0.75vw, 11px);
  font-weight: 400;
  letter-spacing: clamp(1px, 0.2vw, 2px);
  text-transform: uppercase;
  opacity: 0.7;
  text-align: center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 24px);
}

.main-nav a {
  font-size: clamp(11px, 1.1vw, 16px);
  letter-spacing: clamp(1px, 0.15vw, 2px);
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: #fff;
}

.main-nav .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
}

.main-nav .social-link svg {
  width: 13px;
  height: 13px;
  fill: rgba(255,255,255,0.9);
  transition: fill 0.2s;
}

.main-nav .social-link:hover {
  border-color: #fff;
}

.main-nav .social-link:hover svg {
  fill: #fff;
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

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

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

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

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

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

.mobile-nav a {
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #333;
  font-weight: 500;
}

/* ===== INNER PAGE HEADER (dark text) ===== */
.inner-page .site-title,
.inner-page .site-title a,
.home-page .site-title,
.home-page .site-title a {
  color: #111;
}

.inner-page .main-nav a,
.home-page .main-nav a {
  color: #333;
}

.inner-page .main-nav a:hover,
.home-page .main-nav a:hover {
  color: #111;
}

.inner-page .main-nav .social-link,
.home-page .main-nav .social-link {
  border-color: #333;
}

.inner-page .main-nav .social-link svg,
.home-page .main-nav .social-link svg {
  fill: #333;
}

.inner-page .main-nav .social-link:hover,
.home-page .main-nav .social-link:hover {
  border-color: #111;
}

.inner-page .main-nav .social-link:hover svg,
.home-page .main-nav .social-link:hover svg {
  fill: #111;
}

.inner-page .hamburger span,
.home-page .hamburger span {
  background: #333;
}

/* Dark header bar */
.dark-header .site-header {
  background: rgb(18, 18, 18);
}

/* Home + all inner pages: off-white header bar */
.home-page .site-header,
.inner-page .site-header,
.menu-selection .site-header {
  background: rgb(245, 242, 238);
}

/* Active nav state */
.main-nav a.nav-active {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* ===== HERO ===== */
.hero {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero overlay content */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  padding-top: 80px;
}

.hero-links {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 40px;
}

.hero-link {
  font-size: 86px;
  font-weight: 300;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-decoration: none;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  transition: border-color 0.3s;
}

.hero-link:hover {
  border-bottom-color: #fff;
}

.hero-address {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.hero-tagline {
  color: rgba(255,255,255,0.85);
  font-size: 26px;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 1px;
}

/* ===== VISIT PAGE ===== */
.visit-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 40px 80px;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
  pointer-events: none;
  display: block;
}

.map-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}

.visit-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 40px;
  text-align: center;
}

.visit-info-col {
  padding: 40px 30px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.visit-info-col:nth-child(3n) {
  border-right: none;
}

.visit-info-col:nth-child(n+4) {
  border-bottom: none;
}

.visit-info-col h3 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 15px;
}

.visit-info-col p {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-size: 17px;
  color: #555;
  line-height: 1.8;
  margin: 0;
}

.visit-enquiries {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-top: 80px;
  padding-bottom: 40px;
  align-items: start;
}

.visit-enquiries-title h2 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-size: 52px;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #111;
  line-height: 1;
}

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

.visit-form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.visit-form-field label {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
}

.visit-form-field .required {
  font-weight: 300;
  color: #999;
  font-size: 13px;
}

.visit-form-field input,
.visit-form-field textarea {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-size: 15px;
  border: 1px solid #ccc;
  padding: 10px 12px;
  outline: none;
  background: #fff;
  color: #111;
  transition: border-color 0.2s;
}

.visit-form-field input:focus,
.visit-form-field textarea:focus {
  border-color: #888;
}

.visit-form-field textarea {
  resize: vertical;
}

.visit-form-submit {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: none;
  border: 1px solid #ccc;
  padding: 10px 32px;
  cursor: pointer;
  color: #111;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.visit-form-submit:hover {
  background: rgb(245, 242, 238);
  border-color: #111;
}

.form-status {
  margin-top: 16px;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-align: center;
}

/* ===== FOOTER ===== */
.site-footer {
  background: rgb(245, 242, 238);
  padding: 80px 40px 60px;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-col {
  text-align: center;
}

.footer-col h3 {
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111;
}

.footer-col p,
.footer-col a {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
}

.footer-col a:hover {
  color: #111;
}

.hours-spacer {
  line-height: 1 !important;
}

/* Footer center column */
.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-title {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 15px;
}

.footer-social {
  margin-bottom: 30px;
}

.footer-social a {
  display: inline-block;
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: #555;
  transition: fill 0.2s;
}

.footer-social a:hover svg {
  fill: #111;
}

.footer-elephant {
  max-width: 320px;
  margin: 0 auto;
}

/* ===== PAGE HEADER (for inner pages) ===== */
.page-header {
  padding-top: 165px;
  padding-bottom: 40px;
  text-align: center;
}

.page-header h1 {
  font-size: 52px;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 400;
  color: #111;
}

/* ===== ELEPHANT LOGO ===== */
.elephant-logo {
  text-align: center;
  padding: 30px 0;
}

.elephant-logo img {
  max-width: 120px;
  margin: 0 auto;
}

.mobile-nav + .elephant-logo {
  padding-top: 150px;
}

.elephant-logo + .page-header {
  padding-top: 10px;
}

/* ===== MENU PAGE ===== */
.menu-elephant {
  padding-top: 175px;
}

.menu-nav {
  text-align: center;
  padding: 40px 30px 60px;
}

.menu-nav-links {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.menu-nav-link {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
  border: 1px solid #ccc;
  padding: 16px 52px;
  transition: background 0.3s, color 0.3s;
  background: none;
  display: inline-block;
}

.menu-nav-link:hover {
  background: rgb(245, 242, 238);
  color: #111;
  opacity: 1;
  border-color: #111;
}

/* Allergy Notice */
.allergy-notice {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 30px 60px;
}

.orderonline-page .allergy-notice p {
  font-size: 16px;
}

.allergy-notice p {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

/* Special Presentations */
.special-presentations {
  text-align: center;
  padding: 40px 30px 20px;
}

.special-presentations h2 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-size: 48px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #111;
  margin-bottom: 20px;
}

.special-subtitle {
  font-size: 16px;
  color: #555;
  font-style: italic;
  margin-bottom: 40px;
}

/* Menu pricing info boxes */
.menu-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 40px 60px;
}

.menu-info-box {
  text-align: center;
  padding: 40px 30px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

/* Remove right border from last column */
.menu-info-box:nth-child(3n) {
  border-right: none;
}

/* Remove bottom border from last row */
.menu-info-box:nth-child(n+4) {
  border-bottom: none;
}

.menu-info-box h3 {
  font-size: 17px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.menu-info-box p {
  font-size: 17px;
  color: #555;
  line-height: 1.8;
}

.menu-info-italic {
  font-style: italic;
}

/* ===== MENU SECTION NAV ===== */
.menu-section-nav {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  margin: 0 auto 50px;
  border: 1px solid #ccc;
  flex-wrap: wrap;
  background: rgb(245, 242, 238);
}

.menu-section-nav a {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #555;
  font-weight: 600;
  padding: 16px 28px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  border-right: 1px solid #ccc;
}

.menu-section-nav a:last-child {
  border-right: none;
}

.menu-section-nav a:hover {
  color: #111;
  background: rgba(0,0,0,0.03);
}

/* ===== MENU SECTION NAV — SIDEBAR ===== */
.menu-section-nav-sidebar {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;
  background: rgb(245, 242, 238);
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.menu-section-nav-sidebar.visible {
  opacity: 1;
  visibility: visible;
}

.menu-section-nav-sidebar a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  font-weight: 600;
  padding: 13px 16px;
  transition: color 0.2s, background 0.2s;
  border-bottom: 1px solid #ccc;
  text-decoration: none;
  max-width: 140px;
  line-height: 1.5;
}

.menu-section-nav-sidebar a:last-child {
  border-bottom: none;
}

.menu-section-nav-sidebar a:hover {
  color: #111;
  background: rgba(0, 0, 0, 0.04);
}

@media (max-width: 1200px) {
  .menu-section-nav-sidebar {
    display: none;
  }
}

/* ===== A LA CARTE / MENU DETAIL PAGES ===== */
.menu-page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px 60px;
}

.menu-category {
  margin-bottom: 50px;
  scroll-margin-top: 110px;
}

.menu-category h2 {
  font-size: 21px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e8e8e8;
  color: #111;
}

.menu-subcategory h3 {
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 25px 0 15px;
  color: #333;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.menu-item-info {
  flex: 1;
  padding-right: 20px;
}

.menu-item-name {
  font-size: 17px;
  font-weight: 600;
  color: #222;
  margin-bottom: 3px;
}

.alacarte-page .menu-item-name,
.fixed-menu-page .menu-item-name,
.takeaway-page .menu-item-name {
  text-transform: uppercase;
}

.menu-item-desc {
  font-size: 15px;
  color: #777;
  line-height: 1.5;
}

.menu-item-price {
  font-size: 17px;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}

.menu-note {
  text-align: center;
  font-style: italic;
  color: #777;
  font-size: 16px;
  margin: 20px 0;
  line-height: 1.6;
}

.allergy-note {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e8e8e8;
}

/* ===== CHEF'S RECOMMENDATIONS ===== */
.chefs-section {
  margin-top: 60px;
}

.chefs-dinner {
  border: 1px solid #e8e8e8;
  padding: 30px;
  margin-bottom: 30px;
}

.chefs-dinner h3 {
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  color: #111;
}

.chefs-dinner h4 {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 15px 0 8px;
  color: #555;
}

.chefs-dinner p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.chefs-price {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin-top: 15px;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 0 30px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
}

.gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

/* ===== PRESS PAGE ===== */
.press-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 30px 60px;
  text-align: center;
}

.press-content .press-credit {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 20px;
}

.press-content .press-title {
  font-size: 22px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 30px;
  color: #111;
}

.press-image {
  margin: 0 auto 40px;
}

.press-image img {
  width: 100%;
}

/* ===== ORDER ONLINE PAGE ===== */
.order-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 30px 60px;
  text-align: center;
}

.order-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

.order-btn {
  display: inline-block;
  padding: 16px 50px;
  background: #333;
  color: #fff;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  border: 2px solid #333;
  transition: all 0.3s;
}

.order-btn:hover {
  background: #fff;
  color: #333;
}

/* ===== STORY PAGE ===== */
.story-image-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 30px 60px;
  text-align: center;
}

.story-image-content img {
  width: 100%;
  display: block;
}

.story-intro {
  text-align: center;
  padding: 10px 30px 40px;
}

.story-intro h1 {
  font-size: 52px;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 400;
  color: #111;
  margin-bottom: 16px;
}

.story-subtitle {
  font-size: 18px;
  font-style: italic;
  color: #777;
  font-weight: 300;
}

.story-banner {
  width: 100%;
  max-height: 220px;
  overflow: hidden;
}

.story-banner img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.story-body {
  background: #f0b08a;
  padding: 60px 30px 80px;
}

.story-body-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
}

.story-photo {
  text-align: center;
  margin-bottom: 30px;
}

.story-photo img {
  max-width: 160px;
  display: inline-block;
}

.story-pull {
  font-size: 18px;
  font-weight: 400;
  color: #111;
  text-align: center;
  margin-bottom: 30px;
  font-style: normal;
  letter-spacing: 0.5px;
}

.story-body-inner p {
  font-size: 16px;
  color: #3a2a1a;
  line-height: 1.85;
  margin-bottom: 20px;
}

.story-signature {
  margin: 30px 0 8px;
}

.story-signature img {
  max-width: 120px;
}

.story-name {
  font-size: 16px;
  color: #3a2a1a;
  font-weight: 500;
  margin-bottom: 40px !important;
}

.story-elephant {
  text-align: center;
  margin-top: 10px;
}

.story-elephant img {
  max-width: 120px;
}

@media (max-width: 700px) {
  .story-intro h1 { font-size: 36px; }
  .story-body-inner { padding: 0 10px; }
}

/* ===== TERMS PAGE ===== */
.terms-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 80px;
  text-align: center;
}

.terms-heading {
  font-size: 52px;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 400;
  color: #111;
  margin-bottom: 60px;
}

.terms-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 90px;
  align-items: start;
}

.terms-col h2 {
  font-size: 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
  color: #111;
  margin-bottom: 24px;
}

.terms-col p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .terms-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ===== FIXED MENU SPECIFICS ===== */
.fixed-menu-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  padding: 0 30px;
}

.fixed-menu-header .price-highlight {
  font-size: 22px;
  font-weight: 600;
  color: #111;
  margin-bottom: 15px;
}

.fixed-menu-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

.fixed-menu-header .note {
  font-size: 13px;
  color: #999;
  font-style: italic;
  margin-top: 15px;
}

/* Fixed menu items — centred, no prices */
.fixed-menu-items .menu-subcategory {
  text-align: center;
}
.fixed-menu-items .menu-subcategory h3 {
  text-align: center;
}
.fixed-menu-items .menu-item {
  display: block;
  text-align: center;
  border-bottom: none;
  padding: 4px 0;
}
.fixed-menu-items .menu-item-info {
  padding: 0;
}
.fixed-menu-items .menu-item-name {
  font-size: 16px;
  font-weight: 400;
  color: #555;
  line-height: 1.8;
  text-transform: uppercase;
  display: block;
}

.fixed-menu-items .menu-item-desc {
  display: block;
  font-size: 13px;
  color: #999;
  margin-top: -4px;
  margin-bottom: 6px;
}

/* Fixed menu accordion */
.fixed-menu-items .menu-category {
  border-top: 1px solid #ccc;
  margin-bottom: 0;
}
.fixed-menu-items .menu-category:last-of-type {
  border-bottom: 1px solid #ccc;
}
.fixed-menu-items .menu-category h2 {
  cursor: pointer;
  user-select: none;
  margin-bottom: 0;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: color 0.2s;
}
.fixed-menu-items .menu-category h2:hover {
  color: #555;
}
.fixed-menu-items .menu-category h2::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: #aaa;
  line-height: 1;
}
.fixed-menu-items .menu-category.open h2::after {
  content: '\2212';
}
.fixed-menu-items .accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s ease;
}
.fixed-menu-items .menu-category.open .accordion-content {
  max-height: 3000px;
  padding-bottom: 36px;
}

.menu-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.menu-column h3 {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}

.menu-column ul {
  font-size: 14px;
  color: #555;
  line-height: 2;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-columns {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .footer-elephant {
    max-width: 250px;
  }

  .menu-info-grid {
    grid-template-columns: 1fr;
    padding: 40px 30px;
  }

  .menu-info-box {
    border-right: none;
    border-bottom: 1px solid #ccc;
  }

  .menu-info-box:nth-child(3n) {
    border-right: none;
  }

  .menu-info-box:nth-child(n+4) {
    border-bottom: 1px solid #ccc;
  }

  .menu-info-box:last-child {
    border-bottom: none;
  }

  .menu-nav-links {
    gap: 40px;
  }

  .menu-nav-link {
    font-size: 36px;
  }

  .special-presentations h2 {
    font-size: 36px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-columns {
    grid-template-columns: 1fr;
  }

  .hero-links {
    gap: 40px;
  }

  .hero-link {
    font-size: 56px;
  }
}

/* Section nav: prevent wrapping at mid-range — scroll horizontally instead */
@media (max-width: 1200px) and (min-width: 1025px) {
  .menu-section-nav {
    max-width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 40px;
  }

  .menu-section-nav a {
    flex-shrink: 0;
    padding: 14px 20px;
    font-size: 12px;
    letter-spacing: 2px;
  }
}


/* ===== HAMBURGER / MOBILE NAV — kicks in at ≤1024px ===== */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-inner {
    padding: 15px 20px;
  }

  .site-title {
    font-size: 16px;
    letter-spacing: 2px;
  }

  .site-subtitle {
    font-size: 7px;
    letter-spacing: 1px;
  }

  .announcement-bar p {
    font-size: 13px;
  }

  .menu-section-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin-bottom: 40px;
  }

  .menu-section-nav a {
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    text-align: center;
    padding: 14px 10px;
  }

  .menu-section-nav a:nth-child(2n) {
    border-right: none;
  }

  .menu-section-nav a:last-child {
    border-bottom: none;
  }

  /* Span full width only when last item is odd-numbered (unpaired) */
  .menu-section-nav a:nth-child(odd):last-child {
    grid-column: 1 / -1;
    border-right: none;
  }

  .special-presentations h2 {
    font-size: 28px;
  }

  .menu-elephant {
    padding-top: 60px;
  }
}

/* ===== PHONE LAYOUT — content stacks at ≤768px ===== */
@media (max-width: 768px) {
  .hero {
    height: 100vh;
  }

  .hero-links {
    flex-direction: column;
    gap: 25px;
  }

  .hero-link {
    font-size: 44px;
  }

  .hero-address {
    font-size: 14px;
    letter-spacing: 2px;
    text-align: center;
  }

  .hero-tagline {
    font-size: 20px;
    text-align: center;
  }

  .page-header {
    padding-top: 140px;
    padding-bottom: 20px;
  }

  .page-header h1 {
    font-size: 36px;
  }

  .menu-page-content {
    padding: 0 20px 40px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    padding: 0 15px 40px;
  }

  .site-footer {
    padding: 40px 20px;
  }

  .chefs-dinner {
    padding: 20px 15px;
  }

  .menu-nav-links {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .menu-nav-link {
    font-size: 30px;
  }

  .visit-content {
    padding: 30px 20px 60px;
  }

  .visit-info-grid {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .visit-info-col {
    border-right: none;
    border-bottom: 1px solid #ccc;
  }

  .visit-info-col:nth-child(3n) {
    border-right: none;
  }

  .visit-info-col:nth-child(n+4) {
    border-bottom: 1px solid #ccc;
  }

  .visit-info-col:last-child {
    border-bottom: none;
  }

  .visit-enquiries {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 60px;
  }

  .visit-enquiries-title h2 {
    font-size: 48px;
  }

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

/* ===== DARK MODE TOGGLE BUTTON ===== */
.dark-mode-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #fff;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.inner-page .dark-mode-toggle,
.home-page .dark-mode-toggle {
  color: #333;
}

.icon-sun {
  display: none;
}

.icon-moon {
  display: block;
}

[data-theme="dark"] .icon-sun {
  display: block;
}

[data-theme="dark"] .icon-moon {
  display: none;
}

/* ===== 404 PAGE ===== */
.error-page {
  text-align: center;
  padding: 160px 20px 80px;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error-page .elephant-logo {
  padding-top: 0;
  margin-bottom: 20px;
}

.error-code {
  font-size: clamp(72px, 12vw, 120px);
  letter-spacing: 10px;
  font-weight: 300;
  color: #111;
  margin: 0;
  line-height: 1;
}

.error-message {
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #777;
  margin: 20px 0 40px;
}

.error-home-link {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #111;
  padding-bottom: 3px;
  transition: opacity 0.3s ease;
}

.error-home-link:hover {
  opacity: 0.6;
}

/* ===== DARK MODE OVERRIDES ===== */
[data-theme="dark"] body {
  background: #1a1a1a;
  color: rgb(245, 242, 238);
}

/* Header */
[data-theme="dark"] .site-header {
  background: #242424 !important;
}

[data-theme="dark"] .site-title a,
[data-theme="dark"] .site-title {
  color: rgb(245, 242, 238);
}

[data-theme="dark"] .main-nav a {
  color: rgba(245, 242, 238, 0.85);
}

[data-theme="dark"] .main-nav a:hover {
  color: rgb(245, 242, 238);
}

[data-theme="dark"] .main-nav .social-link {
  border-color: rgba(245, 242, 238, 0.5);
}

[data-theme="dark"] .main-nav .social-link svg {
  fill: rgba(245, 242, 238, 0.85);
}

[data-theme="dark"] .main-nav .social-link:hover {
  border-color: rgb(245, 242, 238);
}

[data-theme="dark"] .main-nav .social-link:hover svg {
  fill: rgb(245, 242, 238);
}

[data-theme="dark"] .hamburger span {
  background: rgb(245, 242, 238);
}

[data-theme="dark"] .dark-mode-toggle {
  color: rgb(245, 242, 238);
}

/* Announcement bar */
[data-theme="dark"] .announcement-bar {
  background: #242424;
  border-bottom-color: #3a3a3a;
}

[data-theme="dark"] .announcement-bar p {
  color: rgba(245, 242, 238, 0.85);
}

[data-theme="dark"] .announcement-close {
  color: rgba(245, 242, 238, 0.6);
}

[data-theme="dark"] .announcement-close:hover {
  color: rgb(245, 242, 238);
}

/* Mobile nav */
[data-theme="dark"] .mobile-nav {
  background: rgba(26, 26, 26, 0.98);
}

[data-theme="dark"] .mobile-nav a {
  color: rgb(245, 242, 238);
}

/* Page headers & text */
[data-theme="dark"] .page-header h1 {
  color: rgb(245, 242, 238);
}

/* Footer */
[data-theme="dark"] .site-footer {
  background: #242424;
}

[data-theme="dark"] .footer-col h2,
[data-theme="dark"] .footer-col h3 {
  color: rgb(245, 242, 238);
}

[data-theme="dark"] .footer-col p,
[data-theme="dark"] .footer-col a {
  color: #aaa;
}

[data-theme="dark"] .footer-col a:hover {
  color: rgb(245, 242, 238);
}

[data-theme="dark"] .footer-title {
  color: rgb(245, 242, 238);
}

[data-theme="dark"] .footer-social svg {
  fill: #aaa;
}

/* Menu page */
[data-theme="dark"] .menu-nav-link {
  color: rgb(245, 242, 238);
  border-color: #3a3a3a;
}

[data-theme="dark"] .menu-nav-link:hover {
  background: #2e2e2e;
  border-color: #555;
  color: rgb(245, 242, 238);
}

[data-theme="dark"] .special-presentations h2,
[data-theme="dark"] .special-presentations p {
  color: rgb(245, 242, 238);
}

[data-theme="dark"] .menu-info-box {
  border-color: #3a3a3a;
}

[data-theme="dark"] .menu-info-box h3 {
  color: rgb(245, 242, 238);
}

[data-theme="dark"] .menu-info-box p {
  color: #aaa;
}

[data-theme="dark"] .menu-section-nav {
  background: #242424;
  border-color: #3a3a3a;
}

[data-theme="dark"] .menu-section-nav a {
  color: #aaa;
  border-color: #3a3a3a;
}

[data-theme="dark"] .menu-section-nav a:hover,
[data-theme="dark"] .menu-section-nav a.nav-active {
  color: rgb(245, 242, 238);
  background: #2e2e2e;
}

[data-theme="dark"] .menu-section-nav-sidebar {
  background: #3a3a3a;
  border-color: #4a4a4a;
}

[data-theme="dark"] .menu-section-nav-sidebar a {
  color: #ccc;
  border-color: #4a4a4a;
}

[data-theme="dark"] .menu-section-nav-sidebar a:hover {
  color: rgb(245, 242, 238);
  background: rgba(255, 255, 255, 0.08);
}

/* Menu items */
[data-theme="dark"] .menu-item-name {
  color: rgb(245, 242, 238);
}

[data-theme="dark"] .menu-item-price {
  color: #aaa;
}

[data-theme="dark"] .menu-item-desc {
  color: #777;
}

[data-theme="dark"] .menu-section-title {
  color: rgb(245, 242, 238);
  border-color: #3a3a3a;
}

[data-theme="dark"] .menu-category h2,
[data-theme="dark"] .menu-subcategory h3 {
  color: rgb(245, 242, 238);
}

[data-theme="dark"] .allergy-notice,
[data-theme="dark"] .allergy-notice p {
  color: rgb(245, 242, 238);
}

/* Visit page */
[data-theme="dark"] .visit-info-col {
  border-color: #3a3a3a;
}

[data-theme="dark"] .visit-info-col h3 {
  color: rgb(245, 242, 238);
}

[data-theme="dark"] .visit-info-col p {
  color: #aaa;
}

[data-theme="dark"] .visit-form-field input,
[data-theme="dark"] .visit-form-field textarea {
  background: #2e2e2e;
  border-color: #3a3a3a;
  color: rgb(245, 242, 238);
}

[data-theme="dark"] .visit-form-field input:focus,
[data-theme="dark"] .visit-form-field textarea:focus {
  border-color: #666;
}

[data-theme="dark"] .visit-form-field label {
  color: rgb(245, 242, 238);
}

[data-theme="dark"] .visit-form-submit {
  color: rgb(245, 242, 238);
  border-color: #3a3a3a;
}

[data-theme="dark"] .visit-form-submit:hover {
  background: #2e2e2e;
  border-color: #666;
}

[data-theme="dark"] .visit-enquiries-title h2 {
  color: rgb(245, 242, 238);
}

/* Story page */
[data-theme="dark"] .story-intro h1 {
  color: rgb(245, 242, 238);
}

[data-theme="dark"] .story-subtitle {
  color: #aaa;
}

[data-theme="dark"] .story-text h2,
[data-theme="dark"] .story-text h3,
[data-theme="dark"] .story-text p {
  color: rgb(245, 242, 238);
}

/* Terms page */
[data-theme="dark"] .terms-heading,
[data-theme="dark"] .terms-content h2,
[data-theme="dark"] .terms-content h3,
[data-theme="dark"] .terms-content p,
[data-theme="dark"] .terms-content li {
  color: rgb(245, 242, 238);
}

/* Press page */
[data-theme="dark"] .press-credit {
  color: #aaa;
}

/* Fixed menu & accordion */
[data-theme="dark"] .fixed-menu-items .menu-item-name {
  color: rgb(245, 242, 238);
}

[data-theme="dark"] .accordion-header {
  color: rgb(245, 242, 238);
  border-color: #3a3a3a;
}

[data-theme="dark"] .accordion-header:hover {
  background: #242424;
}

[data-theme="dark"] .accordion-content {
  background: #1a1a1a;
  border-color: #3a3a3a;
}

[data-theme="dark"] .error-code {
  color: rgb(245, 242, 238);
}

[data-theme="dark"] .error-message {
  color: #999;
}

[data-theme="dark"] .error-home-link {
  color: rgb(245, 242, 238);
  border-bottom-color: rgb(245, 242, 238);
}

/* ===== BACK TO TOP BUTTON (mobile only) ===== */
.back-to-top {
  display: none;
}

@media (max-width: 1200px) {
  .back-to-top {
    display: block;
    position: fixed;
    bottom: 24px;
    right: 20px;
    background: rgba(17, 17, 17, 0.65);
    color: rgb(245, 242, 238);
    border: none;
    padding: 10px 18px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 998;
  }

  .back-to-top.visible {
    opacity: 1;
    visibility: visible;
  }
}
