/*
Theme Name: Crawford Brothers
Theme URI: https://crawfordbrotherssteakhouse.com
Description: Custom WordPress theme for Crawford Brothers Steakhouse, Cary NC.
Version: 1.0.0
Author: Crawford Hospitality
Author URI: https://crawfordbrotherssteakhouse.com
License: Proprietary
Text Domain: crawford-brothers
*/

@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@300;400;500&display=swap');

@font-face {
  font-family: 'Tiller';
  src: url('Tiller-Medium.otf') format('opentype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #100906;
  --bg-alt: #1a1410;
  --gold: #BB8E5A;
  --gold-light: #d0a46e;
  --gold-dark: #9a7545;
  --text: #c2b5a6;
  --text-light: #9a8c7e;
  --white: #FAF4F1;
  --cream: #FAF4F1;
  --divider: #3b2f1e;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg) url('images/bg.webp') center top / cover fixed;
  color: var(--text);
  font-family: 'Sweet Sans Pro', 'Lexend Deca', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}


/* ===== NAVIGATION ===== */
nav#main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 16px 20px;
  border-bottom: 1px solid var(--divider);
  position: sticky;
  top: 0;
  width: 100%;
  overflow: hidden;
  background: rgba(16,9,6,0.75);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  z-index: 50;
}
.nav-logo {
  height: 56px;
  width: auto;
}
.nav-logo-text {
  font-family: 'Tiller', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
}
nav a {
  color: var(--gold);
  text-decoration: none;
  font-family: 'Tiller', sans-serif;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  transition: opacity 0.3s;
}
nav#main-nav a img {
  display: block;
}
nav#main-nav a:hover { opacity: 0.7; }
nav#main-nav a.active {
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.nav-btn {
  border: 1px solid var(--gold);
  padding: 8px 20px;
  transition: background 0.3s, color 0.3s;
}
.nav-btn:hover {
  background: var(--gold);
  color: var(--bg);
}
.nav-btn-persistent {
  position: absolute;
  display: block;
  top: 448px;
  left: 0;
  right: 0;
  width: 175px;
  margin: auto;
  text-align: center;
}

/* Mobile nav toggle */
.nav-toggle { display: block; cursor: pointer; margin-left: auto; padding: 6px; flex-shrink: 0; }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  margin: 5px 0;
  transition: 0.3s;
}

/* Nav links — hidden until opened */
.nav-links {
  display: none;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 28px calc(100% - 640px) 0;
}
.nav-links a {
  font-size: 15px;
  letter-spacing: 0.18em;
  padding: 8px 1px 8px 2px;
}
body.nav-open .nav-links {
  display: flex;
  margin: 0 auto;
}

/* Nav footer — shown inside mobile menu */
.nav-footer {
  display: block;
  width: 100%;
  text-align: center;
  padding: 24px 0 0;
  margin-top: 70px;
  border-top: 1px solid var(--divider);
}
.nav-footer p {
  font-size: 14px;
  color: #e8e0d8;
  margin-bottom: 8px;
}
.nav-footer p a {
  font-size: 14px;
  color: #e8e0d8;
  margin-bottom: 8px;
  text-decoration: none;
  font-family: 'Sweet Sans Pro', 'Lexend Deca', sans-serif;
  letter-spacing: 0px;
  text-transform: none;
  font-weight: 100;
  transition: opacity 0.3s;
}

/* WordPress menu — hidden until opened */
nav#main-nav .menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  list-style: none;
  margin: 0;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 28px 24px 0;
}
nav#main-nav .menu li { display: block; }
nav#main-nav .menu li a {
  color: var(--gold);
  text-decoration: none;
  font-family: 'Tiller', sans-serif;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: opacity 0.3s;
}
nav#main-nav .menu li a:hover { opacity: 0.7; }
nav#main-nav .menu li.current-menu-item > a,
nav#main-nav .menu li.current-menu-ancestor > a,
nav#main-nav .menu li.current-menu-parent > a {
  opacity: 1;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
nav#main-nav .menu li.current-menu-item > a:hover,
nav#main-nav .menu li.current-menu-ancestor > a:hover,
nav#main-nav .menu li.current-menu-parent > a:hover { opacity: 0.7; }


/* ===== HERO ===== */
.hero {
  width: 100%;
  height: 60vh;
  min-height: 350px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2a2220, #1a1614);
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,22,20,0.2) 0%,
    rgba(26,22,20,0.1) 30%,
    rgba(26,22,20,0.55) 60%,
    rgba(26,22,20,0.85) 80%,
    rgba(26,22,20,1) 100%
  );
}
.hero-content {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
  padding: 0 20px 24px;
}
.hero-content h1 {
  font-family: 'Tiller', sans-serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.125em;
  line-height: 1.2;
  text-transform: uppercase;
  text-wrap: pretty;
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.9), 0 0 60px rgba(0,0,0,0.5);
}
.hero-content .hero-sub {
  font-size: 14px;
  letter-spacing: 0.175em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  text-shadow: 0 1px 12px rgba(0,0,0,0.95);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.hero-content .hero-sub em {
  display: block;
  height: 0;
  overflow: hidden;
  width: 0;
}


/* ===== PAGE HERO (shorter, for interior pages) ===== */
.page-hero {
  width: 100%;
  height: 35vh;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2a2220, #1a1614);
}
.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-hero .hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(26,22,20,0.3) 0%,
    rgba(26,22,20,0.1) 40%,
    rgba(26,22,20,0.6) 80%,
    rgba(26,22,20,1) 100%
  );
}
.page-hero .hero-content { bottom: 30px; }
.page-hero .hero-content h1 { font-size: 28px; }


/* ===== TEXT SECTIONS ===== */
.text-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 30px 28px 30px;
  text-align: center;
}
.text-section p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  margin: 0 auto 24px;
  max-width: 610px;
  text-wrap: pretty;
}
.text-section.main p {
  font-size: 18px;
  margin: 0 auto 5px;
}
.section-label {
  font-family: 'Tiller', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 600;
}
.text-section h2 {
  font-family: 'Tiller', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  text-wrap: pretty;
  text-transform: uppercase;
  line-height: 1.15;
}

/* Wide text section for content-heavy pages */
.text-section.wide {
  max-width: 840px;
  text-align: left;
}
.text-section.wide p {
  margin: 0 0 20px;
  max-width: none;
}
.text-section.wide h2 {
  text-align: left;
}
.text-section.wide h2.has-text-align-center {
  text-align: center;
}
.text-section.wide h3 {
  font-family: 'Tiller', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--gold);
  margin: 40px 0 16px;
  letter-spacing: 0.125em;
  text-transform: uppercase;
}
.text-section img, .text-section.wide img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
  margin: 30px 0;
}
.wp-block-columns {
  gap: 40px !important;
}

/* WordPress content inside text-section */
.text-section.wp-content p:empty { display: none; }
.text-section.wp-content h2,
.text-section.wide.wp-content h2 { margin: 28px auto 16px; }
.text-section.wp-content h3 {
  font-family: 'Tiller', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--gold);
  margin: 40px auto 16px;
  letter-spacing: 0.125em;
  text-wrap: pretty;
  text-transform: uppercase;
}
.text-section.wp-content ul,
.text-section.wp-content ol {
  padding-left: 20px;
  margin: 0 auto 20px;
}
.text-section.wp-content li {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 6px;
}
.text-section.wp-content a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.3s;
}
.text-section.wp-content a:hover { opacity: 0.7; }

.text-section.wide.wp-content {
  max-width: 920px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.text-section.wide.wp-content > *:first-child {
  margin-top: 0;
}

.text-section.wide.wp-content > *:last-child {
  margin-bottom: 0;
}

.text-section.wide.wp-content p {
  max-width: 700px;
  margin: 0 auto 28px;
}

.text-section.wide.wp-content h2,
.text-section.wide.wp-content h3 {
  margin-bottom: 22px;
  max-width: 700px;
}

.text-section.wide.wp-content h2:not(:first-child),
.text-section.wide.wp-content h3:not(:first-child) {
  margin-top: 52px;
}

.text-section.wide.wp-content + .photo-section.single,
.photo-section.single + .text-section.wide.wp-content {
  margin-top: 8px;
}

.photo-section.single {
  max-width: 960px;
  margin: 0 auto 30px;
  padding: 0 28px;
}

.photo-section.single .photo-block {
  height: 340px;
}

.text-section.wp-content .wp-block-button {
  margin: 6px;
}

.text-section.wp-content .wp-block-button.has-custom-width {
  width: auto;
}

.text-section.wp-content .wp-block-button__link,
.text-section.wp-content .wp-element-button {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 0;
  color: var(--gold);
  padding: 16px 44px;
  font-family: 'Sweet Sans Pro', 'Lexend Deca', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2.5px;
  line-height: 1.2;
  min-height: 48px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.text-section.wp-content .wp-block-button__link:hover,
.text-section.wp-content .wp-block-button__link:focus,
.text-section.wp-content .wp-element-button:hover,
.text-section.wp-content .wp-element-button:focus {
  background: var(--gold);
  color: var(--bg);
  opacity: 1;
}

/* Let the drinks page image break wider than the readable copy column. */
.page-id-60 .text-section.wp-content > .wp-block-image {
  width: min(1200px, calc(100vw - 80px));
  max-width: none;
  aspect-ratio: 2.3 / 1;
  overflow: hidden;
  margin: 42px 50%;
  transform: translateX(-50%);
}

.page-id-60 .text-section.wp-content > .wp-block-image img {
  width: 100%;
  height: 100%;
  max-height: none;
  margin: 0;
  object-fit: cover;
  object-position: center 58%;
}


/* ===== PHOTO SECTIONS ===== */
.photo-section {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 4px;
}
.photo-section.single { display: block; }
.photo-section.full-bleed { max-width: 100%; }
.photo-block {
  flex: 1;
  height: 220px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2a2220, #1a1614);
}
.photo-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}
.photo-block:hover img { transform: scale(1.03); }
.photo-block.tall { height: 300px; }
.photo-section.single .photo-block { height: 280px; }
.photo-block .overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,22,20,0.0) 60%, rgba(26,22,20,0.3) 100%);
  pointer-events: none;
}


/* ===== TWO-COLUMN TEXT ===== */
.two-col {
  max-width: 1060px;
  margin: 0 auto;
/*  padding: 64px 28px;*/
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: left;
}
.two-col .col .section-label {
  font-family: 'Tiller', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
  display: block;
}
.two-col .col p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text);
  margin: 0 0 20px;
  text-wrap: pretty;
}


/* ===== GOLD DIVIDER ===== */
.gold-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
  opacity: 0.4;
}


/* ===== CTA SECTION ===== */
.cta-section {
  max-width: 740px;
  margin: 0 auto;
  padding: 64px 28px;
  text-align: center;
}
.cta-section h2 {
  font-family: 'Tiller', sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 18px;
  letter-spacing: 0.125em;
  text-wrap: pretty;
  text-transform: uppercase;
}
.cta-section p {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 32px;
  line-height: 1.85;
  text-wrap: pretty;
}
.cta-btn {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 16px 44px;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Sweet Sans Pro', 'Lexend Deca', sans-serif;
  font-weight: 400;
  transition: background 0.3s, color 0.3s;
  min-height: 48px;
}
.cta-btn:hover {
  background: var(--gold);
  color: var(--bg);
}


/* ===== HOURS BAR ===== */
.hours-bar {
  max-width: 800px;
  margin: 0 auto;
  padding: 52px 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.hours-bar .col { text-align: center; }
.hours-bar .col:first-child {
  border-bottom: 1px solid var(--divider);
  padding-bottom: 32px;
}
.hours-bar .menu-btn {
  display: inline-block;
  margin-top: 4px;
  padding: 8px 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 13px;
  margin: 5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.hours-bar .menu-btn:hover {
  background: var(--gold);
  color: var(--bg);
}
.hours-bar .label {
  font-family: 'Tiller', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.hours-bar .value {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}
.hours-bar .cb-logo-img {
  height: 90px;
  width: auto;
  opacity: 0.35;
  display: none;
}
.hours-bar .cb-logo {
  font-family: 'Tiller', sans-serif;
  font-size: 40px;
  color: var(--gold);
  opacity: 0.35;
  font-weight: 600;
}


/* ===== CONTENT CARDS (for menu, press, etc.) ===== */
.card-grid {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.card {
  background: var(--bg-alt);
  border: 1px solid var(--divider);
  padding: 32px;
  transition: border-color 0.3s;
}
.card:hover { border-color: var(--gold-dark); }
.card h3 {
  font-family: 'Tiller', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 0.125em;
  text-transform: uppercase;
}
.card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  text-wrap: pretty;
}


/* ===== INFO BLOCK (hours, contact details) ===== */
.info-grid {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.info-block .info-label {
  font-family: 'Tiller', sans-serif;
  font-size: 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
  font-weight: 600;
}
.info-block p + .info-label {
  margin-top: 40px;
}
.info-block p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin: 0;
}
.info-block a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.3s;
}
.info-block a:hover { opacity: 0.7; }


/* ===== PRESS LOGOS ===== */
.press-intro,
.press-grid + .text-section {
  padding-left: 36px;
  padding-right: 36px;
}
.press-grid {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 0 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.press-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 36px 28px;
  background: transparent;
  border-bottom: 1px solid var(--divider);
  border-left: 4px solid transparent;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, background 0.25s;
}
.press-card:nth-of-type(odd) {
  border-right: 1px solid var(--divider);
}
.press-card:hover {
  border-left-color: var(--gold);
  background: var(--bg-alt);
}
.press-card--no-link { cursor: default; }
.press-card--no-link:hover {
  border-left-color: transparent;
  background: var(--bg);
}
.press-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
}
.press-card__pub {
  font-family: 'Tiller', sans-serif;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.press-card__date {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
}
.press-card__excerpt {
  font-size: 14px;
  color: var(--white);
  line-height: 1.7;
  margin: 0;
  opacity: 0.8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.press-card__cta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  transition: opacity 0.2s;
}
.press-card:hover .press-card__cta { opacity: 1; }
.press-grid + .text-section a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ===== BLOG LISTING ===== */
.blog-grid {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
  display: flex;
  flex-direction: column;
}
.blog-card {
  text-decoration: none;
  display: block;
  padding: 60px 0;
  border-bottom: 1px solid var(--divider);
}
.blog-card:first-child { border-top: 1px solid var(--divider); }
.blog-card:hover .blog-card-title { color: var(--gold-dark); }
.blog-card-body { }
.blog-card-title {
  font-family: 'Tiller', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.25;
  transition: color 0.2s;
}
.blog-card-category {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted, #8a7d65);
  margin-bottom: 8px;
  font-family: 'Tiller', sans-serif;
}
.blog-card-date {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted, #8a7d65);
  margin-bottom: 20px;
  font-family: 'Tiller', sans-serif;
}
.blog-card-excerpt {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
}


/* ===== SINGLE POST ===== */
.post-hero {
  height: 55vh;
  min-height: 320px;
  max-height: 600px;
}
.post-hero .hero-content {
  bottom: 40px;
}
.post-hero .hero-content .post-date {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-family: 'Tiller', sans-serif;
}
.post-hero .hero-content h1 {
  font-size: 30px;
  text-wrap: pretty;
  margin-bottom: 0;
}
.post-intro-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 36px 24px 0;
  text-align: center;
}
.post-intro {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text);
}
.post-content {
/*  max-width: 700px;*/
  margin: 0 auto;
/*  padding: 30px 24px 50px;*/
}
.post-content p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 22px;
  text-wrap: pretty;
}
.post-content h2 {
  font-family: 'Tiller', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  margin: 40px 0 16px;
  letter-spacing: 0.125em;
  text-wrap: pretty;
  text-transform: uppercase;
}
.post-content h3 {
  font-family: 'Tiller', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  margin: 30px 0 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.post-content a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.3s;
}
.post-content a:hover { opacity: 0.7; }
.post-content ul, .post-content ol {
  padding-left: 24px;
  margin-bottom: 22px;
}
.post-content li {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 6px;
}
.post-content img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--divider);
}
.post-nav {
  max-width: 700px;
  margin: 0 auto;
/*  display: flex;*/
/*  justify-content: space-between;*/
  border-top: 1px solid var(--divider);
  padding: 20px 24px 40px;
}
.post-nav a {
  display: block;
}
.post-nav a:last-of-type {
  text-align: right;
}
.post-nav a:first-of-type {
  text-align: left;
  margin-bottom: 10px;
}
.post-nav a {
  color: var(--gold);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Tiller', sans-serif;
  transition: opacity 0.3s;
}
.post-nav a:hover { opacity: 0.7; }


/* ===== MAP EMBED ===== */
.map-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 24px;
}
.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: 1px solid var(--divider);
  filter: grayscale(60%) contrast(1.1) brightness(0.8);
}


/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 40px 24px;
  border-top: 1px solid var(--divider);
}
.footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 18px;
}
footer p {
  font-size: 12.5px;
  color: #e8e0d8;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  text-wrap: pretty;
}
footer a {
  color: #e8e0d8;
  text-decoration: none;
}
.footer-address,
.footer-phone {
  color: inherit;
  opacity: 1;
  transition: opacity 0.2s;
}
.footer-address:hover,
.footer-phone:hover { opacity: 0.8; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 14px;
}
.footer-links a {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 0.8; }
.footer-copy {
  font-size: 11px;
  opacity: 0.4;
  margin-top: 12px;
}
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 14px 0;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  transition: background 0.3s, color 0.3s;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--bg);
}
.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}


/* ===== SISTER CONCEPTS ===== */
.sister-concepts {
  background: #fff;
  text-align: center;
  padding: 16px 0 22px;
}
.sister-heading {
  font-family: 'Tiller', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.sister-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 32px;
  max-width: 380px;
  margin: 0 auto;
}
.sister-logos a {
  display: inline-flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.sister-logos a:hover { opacity: 1; }
.sister-logos img {
  height: 52px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}
/* Sous Terre is a landscape photo — control by width instead of height */
.sister-logos a:nth-child(3) img {
  height: auto;
  width: 140px;
  max-width: 140px;
}


/* ===== MENU PAGE ===== */
.menu-tabs-wrap {
  display: flex;
  justify-content: center;
  padding: 30px 20px 0;
}
.menu-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.menu-tab {
  font-family: 'Tiller', sans-serif;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(180,140,80,0.35);
  padding: 12px 24px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.menu-tab.active {
  background: #2a2220;
  border-color: var(--gold);
}
.menu-tab:hover:not(.active) {
  background: rgba(42,34,32,0.5);
  border-color: var(--gold);
}
.menu-panel {
  display: none;
  max-width: 500px;
  margin: 0 auto;
  padding: 40px 20px 12px;
}
.menu-panel.active {
  display: block;
}
.menu-section {
  margin-bottom: 56px;
}
.menu-section-title {
  font-family: 'Tiller', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 14px;
}
.menu-section-rule {
  width: 44px;
  height: 1px;
  background: var(--divider);
  margin: 0 auto 28px;
}
.menu-subsection-title {
  text-align: center;
  font-family: 'Tiller', sans-serif;
  font-size: 13px;
  letter-spacing: 0.26em;
  color: var(--gold-light);
  text-transform: uppercase;
  font-weight: 600;
  margin: 50px 0 12px;
  opacity: 0.75;
}
.menu-subsection-title:first-of-type {
  margin-top: 0;
}
.menu-section-note {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 18px;
  margin-top: -8px;
}
.menu-items {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 40px;
}
.menu-item {
  padding: 13px 0;
  border-bottom: 1px solid var(--divider);
}
.menu-item-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.menu-item-name {
  font-family: 'Tiller', sans-serif;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
  line-height: 1.4;
  text-wrap: pretty;
}
.menu-item-price {
  font-family: 'Tiller', sans-serif;
  font-size: 15px;
  color: var(--gold);
  flex-shrink: 0;
}
.menu-item-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 3px 0 0;
  text-wrap: pretty;
}

/* Wine sections — mixed-case bold names, not uppercase Tiller; always single column */
.menu-section--wine {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.menu-section--wine .menu-items {
  grid-template-columns: 1fr;
}
.menu-section--wine .menu-item-name {
  font-family: 'Lexend Deca', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
}

/* Compact sections (Sauces & Additions, Accompaniments) */
.menu-section--compact .menu-item {
  padding: 9px 0;
  border-bottom: none;
}
.menu-section--compact.sauces .menu-items {
  margin: 0 auto;
  max-width: 300px;
}
.menu-section--compact .menu-item-name {
  font-family: 'Sweet Sans Pro', 'Lexend Deca', sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--text);
}
.menu-section--compact .menu-item-price {
  font-size: 12px;
}
.menu-disclaimer {
  padding: 0 0 24px;
  text-align: center;
}
.menu-disclaimer p {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-light);
  line-height: 1.7;
  text-wrap: pretty;
}
.menu-reservation-wrap {
  text-align: center;
  padding: 8px 0 32px;
}
.menu-reservation-btn {
  display: inline-block;
  font-family: 'Tiller', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 11px 36px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.menu-reservation-btn:hover {
  background: var(--gold);
  color: var(--bg);
}


/* ===== 404 PAGE ===== */
.error-404 {
  max-width: 600px;
  margin: 0 auto;
  padding: 120px 40px;
  text-align: center;
}
.error-404 h1 {
  font-family: 'Tiller', sans-serif;
  font-size: 100px;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
}
.error-404 h2 {
  font-family: 'Tiller', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.125em;
  text-transform: uppercase;
  text-wrap: pretty;
  margin-bottom: 16px;
}
.error-404 p {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 32px;
  line-height: 1.8;
  text-wrap: pretty;
}


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

/* Mobile-only refinements (below desktop nav breakpoint) */
@media (max-width: 899px) {

  /* Hero: deepen the lower overlay so text always reads clearly */
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(26,22,20,0.1)  0%,
      rgba(26,22,20,0.2)  25%,
      rgba(26,22,20,0.65) 55%,
      rgba(26,22,20,0.92) 78%,
      rgba(26,22,20,1)    100%
    );
  }

  /* Photo modules: force equal heights for all blocks in a row */
  .photo-block,
  .photo-block.tall {
    height: 300px;
  }
  .photo-section.single {
    padding: 0 24px;
  }
  .photo-section.single .photo-block { height: 320px; }
  .photo-section { gap: 2px; }

  /* Text sections: give content-heavy pages more room to breathe */
/*  .text-section { padding: 56px 0; }*/
/*  .text-section h2 { font-size: 24px; }
  .two-col .col p { line-height: 1.9; }
  .text-section.wide.wp-content {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .text-section.wide.wp-content p {
    max-width: calc(100% - 50px);
    margin-bottom: 30px;
  }
  .text-section.wide.wp-content h2,
  .text-section.wide.wp-content h3 {
    max-width: calc(100% - 50px);
    margin-bottom: 24px;
  }
  .text-section.wide.wp-content h2:not(:first-child),
  .text-section.wide.wp-content h3:not(:first-child) {
    margin-top: 56px;
  }*/

  /* CTAs */
  .cta-section h2 { font-size: 26px; }

  /* Hours bar */
  .hours-bar .label { letter-spacing: 0.2em; }

  /* Footer: more air between groups */
  footer { padding: 40px 24px 32px; }
}


@media (min-width: 400px) {
  .nav-btn-persistent {
    display: inline-block; flex-shrink: 0;
    position: relative;
    margin: 0 0 0 auto;
    top: auto; left: auto; right: auto;
  }
  .nav-footer {
    margin-top: 4px;
  }
  .nav-links {
    gap: 22px 36px;
/*    margin-right: 20px;*/
    padding: 28px calc(100% - 640px) 0;
  }
  .nav-toggle { margin-left: 20px; }
}

@media (min-width: 450px) {
  .hours-bar { grid-template-columns: 1fr 1fr; gap: 0; }
  .hours-bar .col:first-child {
    border-bottom: none;
    border-right: 1px solid var(--divider);
    padding-bottom: 0;
    padding-right: 24px;
  }
  .hours-bar .col:last-child { padding-left: 24px; }  
  
  .hero-content .hero-sub em {
    display: inline;
    height: auto;
    overflow: visible;
    width: auto;
  }
}

.footer-links-pair {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.footer-links-pair a + a::before {
  content: "|";
  color: var(--gold);
  opacity: 0.75;
  margin: 0 10px;
}
.footer-links-pair--lg {
  flex-direction: column;
  gap: 10px;
}
.footer-links-pair--lg a + a::before {
  display: none;
}

@media (min-width: 480px) {
  .press-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { padding: 40px 24px; }
  .nav-logo { height: 80px; }
  .hours-bar .col { max-width: 164px; }
  .hours-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 30px 0px;
    max-width: 680px;
    margin: 0 auto;
  }
  .hours-bar .cb-logo-img { display: block; }
  .hours-bar .col:first-child { border-right: none; border-bottom: none; padding-right: 0; padding-bottom: 0; }
  .hours-bar .col:last-child { padding-left: 0; }

  
}

@media (min-width: 650px) {
  .footer-links-pair--lg {
    flex-direction: row;
    gap: 0;
  }
  .footer-links-pair--lg a + a::before {
    display: inline;
  }
  .hours-bar {
    gap: 60px;
  }
}

@media (min-width: 500px) and (max-width: 899px) {
  body.nav-open .nav-links,
  body.nav-open nav .menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }
  body.nav-open .nav-links a:last-of-type:nth-child(odd),
  body.nav-open nav .menu li:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
  .nav-footer { grid-column: 1 / -1; }
}

@media (min-width: 700px) {
  .sister-heading { font-size: 16px; }
  .sister-logos { max-width: 980px;}
  .sister-logos img { height: 70px; max-width: 180px; }
/*  .sister-logos a:nth-child(3) img { width: 200px; max-width: 200px; }*/

  .info-grid { grid-template-columns: 1fr 1fr; gap: 50px; padding: 40px; }
  
  .menu-tabs {
    gap: 18px;
  }
  .menu-tab {
    font-size: 16px;
    letter-spacing: 0.14em;
    padding: 14px 45px;
  }
  

  .menu-panel { max-width: 1000px; }
  .menu-items { grid-template-columns: 1fr 1fr; }
  .menu-item { padding: 16px 0; }
  .menu-section--compact.sauces .menu-items {
      column-gap: 60px;
      margin: 0 auto;
      max-width: 600px;
  }
  .menu-disclaimer { padding: 0 0 24px; }
}

@media (min-width: 900px) {
  nav#main-nav {
    flex-wrap: nowrap;
    gap: 20px;
    min-width: 360px;
    padding: 25px 40px;
  }
  body.nav-open .nav-links {
    display: flex;
    margin: 0 0 0 auto;
  }
  .nav-logo {
    height: 90px;
  }
  .nav-toggle { display: none; }
  .nav-links {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2px 32px;
    padding: 10px 0;
    margin-left: auto;
    top: auto;
    left: auto;
    right: auto;
    max-width: 450px;
  }
  .nav-links a { font-size: 13px; letter-spacing: 2.5px; }
  .nav-btn-persistent { margin-left: 0; order: 99; }
  .nav-footer { display: none; }
  nav .menu {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px 36px;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    position: static;
    top: auto;
    left: auto;
    right: auto;
  }
  nav .menu li a { font-size: 13px; letter-spacing: 2.5px; }

  .menu-items {  }
  .menu-item { padding: 16px 0; }
  .menu-section--compact.sauces .menu-items {
    grid-template-columns: 1fr 1fr 1fr;
      margin: 0 auto;
      max-width: 900px;
  }
  .hero { height: 85vh; min-height: 500px; max-height: 750px; }
  .hero-content h1 { font-size: 48px; }

  .page-hero { height: 45vh; min-height: 300px; max-height: 450px; }
  .page-hero .hero-content { bottom: 40px; }
  .page-hero .hero-content h1 { font-size: 42px; }

/*  .text-section { padding: 40px; }*/
  .text-section h2 { font-size: 28px; }

  .page-id-60 .text-section.wp-content > .wp-block-image {
    width: min(1320px, calc(100vw - 120px));
  }

  .photo-block { height: 420px; }
  .photo-block.tall { height: 500px; }
  .photo-section.single .photo-block { height: 400px; }
  .photo-section.dessert .photo-block { height: 360px; margin: 0 auto; width: 700px;}

  .two-col { grid-template-columns: 1fr 1fr; gap: 80px; padding: 70px 40px; }

  .cta-section { padding: 60px 40px; }


  .card-grid { grid-template-columns: 1fr 1fr; padding: 40px; }

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

  .blog-grid { padding: 80px 40px; }

  .post-hero { height: 60vh; min-height: 380px; }
  .post-hero .hero-content h1 { font-size: 42px; }
  .post-intro-wrap { padding: 50px 40px 0; }
  .post-content { padding: 0 0 70px; }
  .post-nav { padding: 30px 40px 60px; }

  .map-wrapper { padding: 0 40px 40px; }
}

@media (max-width: 767px) {
  .page-id-60 .text-section.wp-content > .wp-block-image {
    width: 100%;
    aspect-ratio: 1.7 / 1;
    margin: 30px 0;
    transform: none;
  }
}

@media (min-width: 900px) {
  .sister-logos { gap: 65px; }
  .sister-logos img { height: 80px; max-width: 180px; }
/*  .sister-logos a:nth-child(3) img { width: 200px; max-width: 200px; }*/
  
}


@media (min-width: 1250px) {
  .nav-links { flex-wrap: nowrap; max-width: unset; }
  nav#main-nav .menu { flex-wrap: nowrap; }
}

@media (min-width: 1350px) {
  nav#main-nav {
    padding: 25px calc(50% - 660px);
  }
  .nav-links a {
      font-size: 15px;
      letter-spacing: 2.8px;
  }
}