/* ============================================================
   AROMA TOUCH OF FLAVORS — Main Stylesheet
   Aesthetic: Light, refined, editorial restaurant — matching
   current site's white background, gold accents, clean spacing.
   ============================================================ */

:root {
  --gold:        #C9952A;
  --gold-light:  #D4A843;
  --gold-pale:   #F5E6C0;
  --crimson:     #8B1A1A;
  --crimson-deep:#5C0F0F;
  --dark:        #3A3535;
  --dark-mid:    #4A4444;
  --text-body:   #5a5454;
  --text-muted:  #8a8080;
  --text-nav:    #5a5454;
  --white:       #ffffff;
  --off-white:   #fafaf8;
  --border:      #e8e2dc;
  --nav-h:       80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--white);
  color: var(--text-body);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.75;
  /* Sticky footer — keeps footer at bottom even on short pages */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Main content grows to fill available space */
body > nav ~ *:not(footer#colophon) {
  flex-shrink: 0;
}

/* Push footer to bottom */
footer#colophon {
  margin-top: auto;
}

/* ── WORDPRESS ADMIN BAR ── */
body.admin-bar nav#main-nav { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar nav#main-nav { top: 46px; }
}

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
nav#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 4%;          /* fluid horizontal padding — no max-width cap */
  transition: box-shadow 0.3s ease;
}
nav#main-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* Nav inner stretches edge-to-edge with the nav bar */
.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo image */
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 56px;           /* taller nav bar shows more of the logo */
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  align-items: center;
}
.nav-links li a {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-nav);
  text-decoration: none;
  font-weight: 400;
  padding: 0.4rem 1.2rem;
  transition: color 0.25s;
  display: block;
}
.nav-links li a:hover,
.nav-links li.current-menu-item > a:not(.btn-reserve),
.nav-links li.current_page_item > a:not(.btn-reserve) {
  color: var(--gold);
}
/* Dots under active item — matching current site */
.nav-links li.current-menu-item > a:not(.btn-reserve)::after,
.nav-links li.current_page_item > a:not(.btn-reserve)::after {
  content: '\2022 \2022 \2022';
  display: block;
  font-size: 0.35rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-align: center;
  margin-top: 3px;
  line-height: 1;
}

.nav-links .btn-reserve a,
.nav-links li a.btn-reserve {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.5rem 1.3rem;
  margin-left: 0.5rem;
  transition: all 0.25s;
}
.nav-links .btn-reserve a:hover,
.nav-links li a.btn-reserve:hover {
  background: var(--gold);
  color: var(--white);
}
.nav-links .btn-reserve a::after { display: none !important; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.nav-toggle span {
  width: 24px;
  height: 1px;
  background: var(--dark);
  display: block;
  transition: all 0.3s;
}

/* ══════════════════════════════════════
   VIDEO HERO
══════════════════════════════════════ */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--nav-h);
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42);
}
.hero-video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #3a1a0a 0%, #5C0F0F 50%, #2a1005 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
.hero-video-placeholder .play-icon {
  width: 72px; height: 72px;
  border: 1px solid rgba(201,149,42,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hero-video-placeholder .play-icon::after {
  content: '';
  width: 0; height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 22px solid rgba(201,149,42,0.65);
  margin-left: 5px;
}
.hero-video-placeholder p {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 50%, transparent 100%),
    linear-gradient(to right, rgba(0,0,0,0.35) 0%, transparent 60%);
  z-index: 1;
}

/* Hero content — centered, clean */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 5%;
  max-width: 800px;
}
.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gold-light);
  margin-right: 12px;
  vertical-align: middle;
  opacity: 0.7;
}
.hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gold-light);
  margin-left: 12px;
  vertical-align: middle;
  opacity: 0.7;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
  letter-spacing: 0.02em;
}
.hero-title em { font-style: italic; color: var(--gold-light); }

.hero-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  max-width: 520px;
  margin: 0 auto 2.8rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.9s forwards;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}
.hero-scroll-hint span {
  font-family: 'Lato', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(201,149,42,0.7), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--gold);
  color: var(--white);
  padding: 0.9rem 2.4rem;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
  border: 1px solid var(--gold);
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white);
}
.btn-outline {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2.4rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.55);
  transition: all 0.25s;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
/* Dark version for light sections */
.btn-outline-dark {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  background: transparent;
  color: var(--dark);
  padding: 0.9rem 2.4rem;
  text-decoration: none;
  border: 1px solid var(--dark);
  transition: all 0.25s;
  display: inline-block;
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }

/* ══════════════════════════════════════
   AWARD BAND
══════════════════════════════════════ */
.award-band {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.award-band p {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.award-band p.highlight { color: var(--gold); }
.award-band .dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   SECTION DEFAULTS
══════════════════════════════════════ */
section { padding: 6rem 5%; }

.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
/* Centered variant */
.section-label.center {
  justify-content: center;
}
.section-label.center::before,
.section-label.center::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
  letter-spacing: 0.01em;
}
.section-title em { font-style: italic; color: var(--gold); }

.section-body {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-body);
  font-weight: 300;
  max-width: 640px;
}

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
#about {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6rem;
  align-items: center;
  background: var(--white);
  padding: 7rem 8%;
}
.about-image-stack {
  position: relative;
  height: 520px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 74%; height: 78%;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%; height: 52%;
  object-fit: cover;
  border: 5px solid var(--white);
}
.about-img-placeholder-main {
  position: absolute;
  top: 0; left: 0;
  width: 74%; height: 78%;
  background: var(--off-white);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.about-img-placeholder-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%; height: 52%;
  background: var(--gold-pale);
  border: 5px solid var(--white);
  display: flex; align-items: center; justify-content: center;
}
.img-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.about-gold-line {
  position: absolute;
  top: 38%; left: -4%;
  width: 60px; height: 1px;
  background: var(--gold);
  opacity: 0.45;
}
.about-text p {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--text-body);
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.about-stat-row {
  display: flex;
  gap: 2.5rem;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-stat strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  color: var(--gold);
  display: block;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.about-stat span {
  font-family: 'Lato', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.byo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  padding: 0.55rem 1.1rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.8rem;
  background: var(--off-white);
}

/* ══════════════════════════════════════
   MENU HIGHLIGHTS
══════════════════════════════════════ */
#menu-highlights {
  background: var(--off-white);
  text-align: center;
  padding: 6rem 5%;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.menu-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
}
.menu-card-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  position: absolute; inset: 0;
}
.menu-card-bg-placeholder {
  width: 100%; height: 100%;
  transition: transform 0.7s ease;
  position: absolute; inset: 0;
}
.menu-card:hover .menu-card-bg,
.menu-card:hover .menu-card-bg-placeholder { transform: scale(1.05); }
.menu-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,15,5,0.88) 0%, rgba(30,15,5,0.1) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
  transition: background 0.4s;
}
.menu-card:hover .menu-card-overlay {
  background: linear-gradient(to top, rgba(30,15,5,0.93) 0%, rgba(30,15,5,0.15) 60%);
}
.menu-card-tag {
  font-family: 'Lato', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.menu-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.menu-card p.menu-card-desc {
  font-family: 'Lato', sans-serif;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s;
  font-weight: 300;
}
.menu-card:hover p.menu-card-desc { opacity: 1; transform: translateY(0); }
.menu-cta { margin-top: 3.5rem; }

/* ══════════════════════════════════════
   QUOTE SECTION
══════════════════════════════════════ */
#quote-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 5rem 18%;
  position: relative;
  overflow: hidden;
}
#quote-section::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 16rem;
  color: rgba(201,149,42,0.06);
  position: absolute;
  top: -3rem; left: 6%;
  line-height: 1;
  pointer-events: none;
}
#quote-section blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: var(--dark);
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}
#quote-section cite {
  font-family: 'Lato', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}
.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  padding: 0.75rem 1.8rem;
  margin-top: 2.5rem;
  color: var(--text-muted);
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: var(--off-white);
}
.award-badge::before, .award-badge::after {
  content: '★';
  font-size: 0.65rem;
  color: var(--gold);
}

/* ══════════════════════════════════════
   EXPERIENCE / PRIVATE DINING
══════════════════════════════════════ */
#experience {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
  background: var(--off-white);
  padding: 0;
}
.experience-image {
  min-height: 560px;
  background: var(--border);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.experience-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.experience-text {
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.experience-text > p.body-copy {
  font-family: 'Lato', sans-serif;
  font-size: 0.93rem;
  line-height: 2;
  color: var(--text-body);
  font-weight: 300;
  margin: 1.6rem 0 2.2rem;
}
.feature-list { list-style: none; margin-bottom: 2.8rem; }
.feature-list li {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--text-body);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 300;
}
.feature-list li::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   GALLERY
══════════════════════════════════════ */
#gallery { padding: 0; background: var(--white); }
.gallery-header { padding: 5rem 5% 3rem; text-align: center; }
.gallery-strip {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3px;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-placeholder {
  width: 100%; height: 100%;
  transition: transform 0.6s ease;
}
.gallery-item:hover .gallery-item-placeholder { transform: scale(1.04); }

/* ══════════════════════════════════════
   CATERING PAGE — contact block styling
══════════════════════════════════════ */
.catering-contact-block {
  text-align: center;
  padding: 5rem 5%;
  border-top: 1px solid var(--border);
}
.catering-person {
  margin: 2rem 0;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.catering-person:last-child { border-bottom: none; }
.catering-person strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--dark);
  display: block;
  margin-bottom: 0.3rem;
}
.catering-person .title {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.catering-person .phone {
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  color: var(--text-body);
  font-weight: 700;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer#colophon {
  background: var(--dark);
  padding: 3rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 3px solid var(--gold);
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.08em;
}
.footer-note {
  font-family: 'Lato', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4);
  text-align: center;
}
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a {
  font-family: 'Lato', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--gold-light); }

/* ══════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   INNER PAGE — hero banner
══════════════════════════════════════ */
.page-banner {
  width: 100%;
  height: 320px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: flex-end;
  margin-top: var(--nav-h);
}
.page-banner img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}
.page-banner-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--crimson) 100%);
}
.page-banner-content {
  position: relative; z-index: 1;
  padding: 2rem 5%;
  width: 100%;
}
.page-banner-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  #about { gap: 4rem; padding: 6rem 5%; }
  .experience-text { padding: 5rem 4rem; }
}
@media (max-width: 900px) {
  #about, #experience { grid-template-columns: 1fr; }
  .about-image-stack { height: 300px; }
  .experience-image { min-height: 280px; }
  .experience-text { padding: 4rem 5%; }
  .contact-top { padding: 3rem 5%; }
  .contact-cols { grid-template-columns: 1fr; gap: 2rem; }
  .contact-map-full iframe { height: 280px; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  #quote-section { padding: 5rem 8%; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--white); padding: 1.5rem 2rem 2rem; gap: 0; border-bottom: 1px solid var(--border); box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 0.85rem 0; font-size: 0.85rem; }
  .nav-links li.current-menu-item > a::after { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 600px) {
  .menu-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .about-stat-row { gap: 1.5rem; flex-wrap: wrap; }
  .award-band { gap: 0.6rem 1rem; }
  .award-band .dot { display: block; }
  footer#colophon { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 1rem; }
}


/* ══ CONTACT ══ */
#contact {
  background: var(--white);
  padding: 0;
}

/* Top info row — full width, two columns inside */
.contact-top {
  padding: 5rem 8%;
  border-bottom: 1px solid var(--border);
}
.contact-top-left { width: 100%; }

.contact-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2.5rem;
}
.contact-col {}

.contact-detail { margin-bottom: 2rem; }
.contact-detail h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-weight: 700;
}
.contact-detail p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.65;
}
.contact-detail a { color: var(--dark); text-decoration: none; transition: color 0.25s; }
.contact-detail a:hover { color: var(--gold); }

/* Hours — two-column day/time grid */
.hours-grid {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0.45rem 1.5rem;
  margin-top: 0.5rem;
}
.hours-grid span {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  color: var(--text-body);
  font-weight: 300;
  line-height: 1.5;
}
.hours-grid span:nth-child(odd) {
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  padding-top: 0.05rem;
}

/* Social icons */
.social-row { display: flex; gap: 0.75rem; margin-top: 2rem; flex-wrap: wrap; }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.25s;
  flex-shrink: 0;
  font-size: 15px;
  line-height: 1;
}
.social-link i {
  font-size: 15px;
  line-height: 1;
  display: block;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* Map — full width strip below info */
.contact-map-full { width: 100%; }
.contact-map-full iframe { display: block; width: 100%; height: 420px; border: none; }

.map-placeholder-block {
  background: var(--off-white);
  padding: 4rem 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
  border-top: 1px solid var(--border);
}
.map-pin {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.map-pin::after {
  content: '';
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.map-placeholder-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  max-width: 360px;
}
.map-address {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--dark);
  line-height: 1.7;
  font-weight: 400;
}
.btn-directions {
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 0.7rem 1.8rem;
  transition: all 0.25s;
  background: var(--white);
}
.btn-directions:hover { border-color: var(--gold); background: var(--gold); color: var(--white); }
/* Ensure page content areas fill available height for sticky footer */
#hero,
main {
  flex: 1 0 auto;
}
footer#colophon {
  flex-shrink: 0;
}


/* ══════════════════════════════════════
   SECONDARY / INNER PAGES
══════════════════════════════════════ */

/* Any page that isn't the front page gets generous content padding */
.page-content,
.entry-content,
.site-main {
  padding-top: calc( var(--nav-h) + 4rem );
  padding-bottom: 6rem;
}

/* WordPress default page template wrapper */
.page-template-default main,
body:not(.home) main {
  padding-top: calc( var(--nav-h) + 5rem );
  padding-bottom: 7rem;
  padding-left: 8%;
  padding-right: 8%;
  max-width: 860px;
  margin: 0 auto;
}

/* Inner page headings */
body:not(.home) main h1,
body:not(.home) main h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
body:not(.home) main h1 { font-size: clamp(2rem, 4vw, 3rem); }
body:not(.home) main h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-top: 3rem; }

body:not(.home) main p {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 2;
  color: var(--text-body);
  font-weight: 300;
  margin-bottom: 1.6rem;
  max-width: 680px;
}

body:not(.home) main a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,149,42,0.3);
  transition: border-color 0.2s;
}
body:not(.home) main a:hover {
  border-color: var(--gold);
}

body:not(.home) main ul,
body:not(.home) main ol {
  margin: 1rem 0 1.8rem 1.5rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text-body);
  font-weight: 300;
}

body:not(.home) main ul li,
body:not(.home) main ol li {
  margin-bottom: 0.5rem;
}

/* Page banner for inner pages with featured image */
.page-banner {
  width: 100%;
  height: 300px;
  margin-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.page-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  position: absolute; inset: 0;
}
.page-banner-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  padding: 3rem 8%;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 70%);
}
.page-banner-overlay h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.02em;
  margin: 0;
}

/* Nav link spacing — slightly more breathing room between items */
.nav-links li a {
  padding: 0.4rem 1rem;
}

@media (max-width: 600px) {
  .nav-logo-img { height: 44px; }
  nav#main-nav { padding: 0 5%; }
}

/* Mobile: stack contact cols and put hours below phone/address */
@media (max-width: 900px) {
  .contact-cols {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-col--info  { order: 1; }
  .contact-col--hours { order: 2; padding-top: 2rem; border-top: 1px solid var(--border); margin-top: 1rem; }
}
