/*
Theme Name: Brodeto
Theme URI: https://brodeto.com
Description: Custom WordPress theme for Brodeto, an Adriatic seafood restaurant in Raleigh, NC.
Version: 1.0.0
Author: Crawford Hospitality
Author URI: https://crawfordhospitality.com
License: Proprietary
Text Domain: brodeto
*/

@font-face {
  font-family: 'Aguzzo';
  src: url('Aguzzo-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bruna';
  src: url('Bruna-Regular.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LittleBosquee';
  src: url('LittleBosquee.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Legacy aliases: pre-existing styles reference 'Tiller' and Lexend; map them
   to Brodeto's display and body faces so the rest of the file works unchanged. */
@font-face {
  font-family: 'Tiller';
  src: url('Bruna-Regular.otf') format('opentype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sweet Sans Pro';
  src: url('Aguzzo-Regular.otf') format('opentype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lexend Deca';
  src: url('Aguzzo-Regular.otf') format('opentype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --bg: #FFFBF5;
  --bg-alt: #F5EBE0;
  --gold: #C05329;
  --gold-light: #D26841;
  --gold-dark: #9C3F1E;
  --teal: #2B4A54;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #888888;
  --white: #222222;
  --cream: #FFFBF5;
  --divider: #E4D8C8;
}

html { background: var(--bg); scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Aguzzo', 'Sweet Sans Pro', 'Lexend Deca', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

p { text-wrap: pretty; }

body:after {
  background: var(--bg);
  content: " ";
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
}

#canvas {
  position: relative;
  z-index: 2;
}

/* ===== 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(255,251,245,0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  z-index: 50;
}
.nav-logo,
nav#main-nav .custom-logo,
nav#main-nav .custom-logo-link img {
  height: 56px;
  width: auto;
  max-width: 280px;
}
.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.active {
  padding-bottom: 2px;
}
.nav-links a.active::after { transform: scaleX(1); }
nav#main-nav .nav-logo,
nav#main-nav a:has(> img),
nav#main-nav a:has(> .nav-logo) {
  transition: opacity 0.3s;
}
nav#main-nav .nav-logo {
  height: auto;
  width: 100%;
}
nav#main-nav a:has(> img),
nav#main-nav a:has(> .nav-logo) {
  max-width: 230px;
  width: calc(100% - 50px);
}
nav#main-nav a:has(> img):hover,
nav#main-nav a:has(> .nav-logo):hover { opacity: 0.7; }
.nav-btn,
.nav-links .nav-btn {
  color: var(--gold);
  background-color: var(--bg);
  border: 0 solid transparent;
  border-image: url('images/border-tile.jpg') 30 / 10px / 0 round;
  padding: 13px 18px 12px;
  font-size: 16px;
  letter-spacing: 2px;
}
.nav-btn:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.nav-btn-persistent {
  display: none;
}

/* 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: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* 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;
}
@media (max-width: 499px) {
  body.nav-open nav#main-nav .menu {
    display: flex;
    position: static;
    padding: 0;
    width: 100%;
  }
}

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

/* 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,
.nav-links a:not(.nav-btn) {
  position: relative;
  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: color 0.3s ease;
}
nav#main-nav .menu li a::after,
.nav-links a:not(.nav-btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
}
nav#main-nav .menu li a:hover::after,
.nav-links a:not(.nav-btn):hover::after {
  transform: scaleX(1);
}
nav#main-nav .menu li.current-menu-item > a::after,
nav#main-nav .menu li.current-menu-ancestor > a::after,
nav#main-nav .menu li.current-menu-parent > a::after {
  transform: scaleX(1);
}
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;
  padding-bottom: 2px;
}


/* ===== HERO ===== */
.hero {
  width: 100%;
  height: 60vh;
  min-height: 350px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0e4d2, #e8d9c2);
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 55% 40% at 50% 62%,
      rgba(0,0,0,0.35) 0%,
      rgba(0,0,0,0.12) 65%,
      rgba(0,0,0,0) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.08) 0%,
      rgba(0,0,0,0.15) 40%,
      rgba(0,0,0,0.40) 72%,
      rgba(255,251,245,0.85) 92%,
      rgba(255,251,245,1) 100%
    );
}
.hero-content {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
  padding: 0 20px 24px;
}
.hero-content .hero-eyebrow {
  font-family: 'Tiller', 'Sweet Sans Pro', sans-serif;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  margin: 0 0 18px;
  opacity: 1;
  text-shadow: 0 2px 14px rgba(0,0,0,0.9), 0 0 24px rgba(0,0,0,0.7), 0 1px 2px rgba(0,0,0,0.95);
}
.hero-content h1 {
  font-family: 'Bruna', 'Tiller', sans-serif;
  font-size: 52px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.22em;
  line-height: 1.1;
  text-transform: uppercase;
  text-wrap: pretty;
  margin: 0 0 18px;
  text-indent: 0.22em; /* offset trailing letter-spacing for true centering */
  text-shadow: 0 2px 18px rgba(0,0,0,0.85), 0 0 40px rgba(0,0,0,0.7), 0 1px 2px rgba(0,0,0,0.9);
}
.hero-content .hero-divider {
  display: block;
  width: 56px;
  height: 1px;
  margin: 0 auto 18px;
  background: var(--gold-light, #D26841);
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
  opacity: 0.85;
}
.hero-content .hero-sub {
  font-family: 'Tiller', 'Sweet Sans Pro', sans-serif;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 500;
  text-shadow: 0 1px 12px rgba(0,0,0,0.75);
  max-width: 640px;
  margin: 0 auto 8px;
}
.hero-content .hero-meta {
  font-family: 'Aguzzo', 'Sweet Sans Pro', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #ffffff;
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7), 0 1px 2px rgba(0,0,0,0.85);
  margin: 0;
  opacity: 0.92;
}
.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, #f0e4d2, #e8d9c2);
}
.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-hero .hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0.10) 40%,
    rgba(0,0,0,0.35) 78%,
    rgba(255,251,245,0.85) 95%,
    rgba(255,251,245,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: 14px;
  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;
}
.text-section p a,
.cta-section p a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(192, 83, 41, 0.4);
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.text-section p a:hover,
.cta-section p a:hover {
  color: var(--gold-dark);
  text-decoration-color: var(--gold-dark);
}

/* 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, #f0e4d2, #e8d9c2);
}
.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(0,0,0,0.0) 60%, rgba(0,0,0,0.2) 100%);
  pointer-events: none;
}


/* ===== TWO-COLUMN TEXT ===== */
.two-col {
  max-width: 1060px;
  margin: 0 auto;
  padding: 48px 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: center;
}
.two-col .col .section-label {
  font-family: 'Tiller', sans-serif;
  font-size: 15px;
  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;
  color: var(--gold);
  background-color: var(--bg);
  border: 0 solid transparent;
  border-image: url('images/border-tile.jpg') 30 / 10px / 0 round;
  padding: 16px 26px 15px;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Tiller', 'Sweet Sans Pro', 'Lexend Deca', sans-serif;
  font-weight: 600;
  transition: color 0.35s ease, text-decoration-color 0.35s ease;
  text-decoration: underline solid transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.cta-btn:hover,
.cta-btn:focus-visible {
  color: var(--gold-dark);
  text-decoration-color: currentColor;
}
.cta-btn:active {
  color: var(--gold-dark);
}

/* CTA row layout */
.cta-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 32px;
}


/* ===== CREDENTIALS ROW ===== */
.credentials {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.credentials__item {
  font-family: 'Bruna', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  color: var(--teal);
  text-decoration: none;
}
a.credentials__item:hover { text-decoration: underline; }
.credentials__sep {
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}


/* ===== 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;
  color: var(--gold);
  background-color: var(--bg);
  border: 0 solid transparent;
  border-image: url('images/border-tile.jpg') 30 / 10px / 0 round;
  padding: 12px 22px 11px;
  font-family: 'Tiller', 'Sweet Sans Pro', sans-serif;
  font-size: 12px;
  font-weight: 600;
  margin: 5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s, color 0.2s;
}
.hours-bar .menu-btn:hover {
  background-color: var(--bg-alt);
  color: var(--gold-dark);
}
.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: 54px;
  width: auto;
  opacity: 1;
  mix-blend-mode: multiply;
  filter: contrast(1.4) saturate(0);
  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);
}
/* Fallback header for single posts without a featured image.
   Keeps a visible H1 so the document structure doesn't jump
   from <title> straight to H2. */
.post-header {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 28px 0;
  text-align: center;
}
.post-header .post-title {
  font-family: 'Bruna', 'Tiller', sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.18em;
  line-height: 1.15;
  text-transform: uppercase;
  text-wrap: pretty;
  margin: 0;
  text-indent: 0.18em;
}
.post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 28px 60px;
}
.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);
}


/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 40px 24px;
  background-color: #E8DED6;
  border-top: 1px solid var(--divider);
}
.footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 18px;
}
footer p {
  font-size: 12.5px;
  color: var(--text);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  text-wrap: pretty;
}
footer a {
  color: var(--text);
  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 {
  position: relative;
  display: inline-block;
  font-family: 'Bruna', 'Aguzzo', serif;
  font-size: 17px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--gold);
  opacity: 1;
  transition: color 0.25s ease;
}
.footer-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
}
.footer-links a:hover { color: var(--gold-dark); }
.footer-links a:hover::after {
  transform: scaleX(1);
  background: var(--gold-dark);
}
.footer-copy {
  font-size: 11px;
  color: var(--text-light);
  opacity: 1;
  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 PAGE (food + drinks) =====
   Matches the production brodeto.com/food/ layout:
   - Cream background, dark text, Aguzzo body font
   - Section titles: Bruna, uppercase, gold, LEFT-aligned, no rule
   - Items rendered inline: plain name + italic <em> wrapping desc+price
   - Two-column grid on desktop
*/
.menu-tabs-wrap {
  display: flex;
  justify-content: flex-start;
  padding: 24px 0 8px;
}
.menu-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.menu-tab {
  font-family: 'Bruna', 'Aguzzo', sans-serif;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1.5px solid var(--gold);
  padding: 10px 22px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
.menu-tab.active {
  background: var(--gold);
  color: #fffbf5;
}
.menu-tab:hover:not(.active) {
  background: rgba(192, 83, 41, 0.08);
}
.menu-panel {
  display: none;
  padding: 32px 0 24px;
}
.menu-panel.active {
  display: block;
}
.menu-page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 8px 60px 64px;
}
.menu-section {
  display: block;
  width: 100%;
  margin: 0 0 44px;
  border: 0;
  border-image: none;
}
.menu-section-title {
  font-family: 'Bruna', 'Aguzzo', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.195em; /* ~3.5px at 18px */
  text-transform: uppercase;
  text-align: left;
  margin: 0 0 12px;
  line-height: 1.2;
}
.menu-section-note {
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text-light);
  text-transform: uppercase;
  margin: -4px 0 14px;
}
.menu-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 56px;
  row-gap: 0;
}
.menu-item {
  list-style: none;
  padding: 4px 0;
  border-bottom: none;
  font-family: 'Aguzzo', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.55;
  text-wrap: pretty;
}
.menu-item-name {
  display: block;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  letter-spacing: 0;
  text-transform: none;
}
.menu-item-meta {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  font-style: italic;
}
.menu-item-price {
  margin-left: 10px;
}
.menu-section--inline .menu-item-name {
  display: inline;
}

/* Sides "name, description price" — all italic, single line */
.menu-section--inline-italic .menu-item-name {
  display: inline;
  font-style: italic;
  text-transform: lowercase;
}
.menu-section--inline-italic .menu-item-name::after {
  content: ', ';
}

/* Dessert in a decorative tiled-border frame, centered, no section title */
.menu-section--bordered-box {
  border-style: solid;
  border-width: 28px;
  border-image: url('images/border-tile.jpg') 30 / 14px / 0 round;
  padding: 10px 16px 4px;
  text-align: center;
  max-width: 380px;
  margin: 0 auto 56px 0;
}
.menu-section--bordered-box .menu-section-title { display: none; }
.menu-section--bordered-box .menu-items {
  grid-template-columns: 1fr;
  row-gap: 14px;
}
.menu-section--bordered-box .menu-item {
  padding: 0;
  line-height: 1.4;
}
.menu-section--bordered-box .menu-item-name { display: block; }

/* 2-col row: left col (Crudo + divider + Breads) | right col (Small Plates) */
.menu-row-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.menu-col {
  min-width: 0;
}

/* Fishbone divider between section groups */
.menu-divider {
  margin: 4px 0 32px;
}
.menu-divider img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Pasta & Rice — scalloped border frame */
.menu-section--pasta {
  border-style: solid;
  border-width: 30px;
  border-image-slice: 57 57 57 57;
  border-image-width: 30px 30px 30px 30px;
  border-image-outset: 0px 0px 0px 0px;
  border-image-repeat: round round;
  border-image-source: url('images/border.gif');
  background-color: #F6F0E9;
  padding: 32px 40px 16px;
  margin-bottom: 64px;
}

/* Brodeto + Peka signature items */
.menu-signature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  margin: 0 0 56px;
  text-align: center;
}
.menu-signature-icon {
  display: block;
  max-width: 90px;
  height: auto;
  margin: 0 auto 6px;
}
.menu-signature-name {
  font-family: 'Aguzzo', serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 2px;
}
.menu-signature-meta {
  font-family: 'Aguzzo', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
}
.menu-signature-price {
  font-family: 'Aguzzo', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
}

/* Wine sections — mixed-case names, italic region/vintage */
.menu-section--wine {
  margin: 0 0 44px;
}
.wine-styles-grid {
  columns: 1;
}
.wine-style-group {
  break-inside: avoid;
  margin-bottom: 28px;
}
.wine-style-group:last-child {
  margin-bottom: 0;
}
.menu-subsection-title {
  text-align: left;
  font-family: 'Bruna', 'Aguzzo', sans-serif;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
  margin: 18px 0 8px;
}
.wine-style-group:first-child .menu-subsection-title {
  margin-top: 0;
}
.menu-section--wine .menu-items {
  grid-template-columns: 1fr;
}
.menu-section--wine .menu-item-name {
  font-family: inherit;
  font-style: italic;
}

/* Drinks page — two column layout (wines left, cocktails/beer/NA right) */
.drinks-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.drinks-col { min-width: 0; }
.drinks-two-col .menu-items { grid-template-columns: 1fr !important; column-gap: 0 !important; }
.drinks-two-col .wine-styles-grid { columns: 1 !important; }

/* Wines: one inline italic line per bottle */
.drinks-col--wines .menu-item--wine {
  padding: 2px 0;
  font-size: 15px;
  line-height: 1.55;
}
.drinks-col--wines .menu-item-line {
  font-style: italic;
}
.drinks-col--wines .menu-item--wine .menu-item-price {
  margin-left: 6px;
  font-style: normal;
}
.drinks-col--wines .menu-subsection-title {
  font-family: 'LittleBosquee', 'Bruna', 'Aguzzo', sans-serif;
  color: var(--text);
  font-size: 16px;
  letter-spacing: 0.18em;
  font-weight: 400;
  text-transform: uppercase;
  margin: 18px 0 6px;
}

/* Featured Pour rendered as a small italic sub-block, not a major gold heading */
.drinks-col--wines .menu-section--wine-featured {
  margin: 4px 0 28px;
}
.drinks-col--wines .menu-section--wine-featured .menu-section-title {
  font-family: 'Aguzzo', sans-serif;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text);
  font-style: italic;
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 2px;
}
.drinks-col--wines .menu-section--wine-featured .menu-section-rule { display: none; }
.drinks-col--wines .menu-section--wine-featured .menu-item--wine .menu-item-price {
  display: block;
  margin: 0;
}

/* Right column shared: centered sections */
.drinks-col--other .menu-section { text-align: center; margin: 0 0 32px; }
.drinks-col--other .menu-section-title { text-align: center; }
.drinks-col--other .menu-items { justify-items: center; }
.drinks-col--other .menu-item {
  padding: 6px 0 10px;
  text-align: center;
  max-width: 320px;
}
.drinks-col--other .menu-item-meta {
  display: block;
  font-style: italic;
  line-height: 1.5;
}
.drinks-col--other .menu-item-price {
  display: block;
  margin: 2px 0 0;
  font-style: normal;
}

/* Cocktails-only: Little Bosquee uppercase name */
.menu-section--cocktail .menu-item-name {
  display: block;
  font-family: 'LittleBosquee', 'Bruna', 'Aguzzo', sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
}

/* Inline parenthetical tag (e.g. "(spirit free)") next to the name */
.menu-item-name .menu-item-tag {
  font-family: 'Aguzzo', sans-serif;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  color: var(--gold);
  margin-left: 4px;
}

/* On Tap / Cans & Bottles: plain centered name */
.menu-section--plain-centered .menu-item-name {
  display: block;
  font-family: 'Aguzzo', sans-serif;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 2px;
}

/* Non-Alcoholic: price inline with name */
.menu-section--inline-price .menu-item-name { display: inline; margin: 0; }
.menu-section--inline-price .menu-item-meta {
  display: inline;
  font-style: normal;
}
.menu-section--inline-price .menu-item-price {
  display: inline;
  margin: 0 0 0 6px;
}

@media (min-width: 900px) {
  .drinks-two-col {
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
    gap: 72px;
    align-items: start;
  }
}

/* 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 20px;
  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(0,0,0,0.05) 0%,
      rgba(0,0,0,0.15) 28%,
      rgba(0,0,0,0.45) 62%,
      rgba(255,251,245,0.85) 92%,
      rgba(255,251,245,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; }

  /* Credentials: stack vertically on mobile with bullets as their own line between items */
  .credentials {
    flex-direction: column;
    gap: 10px;
    padding: 0 24px 40px;
  }
  .credentials__item {
    font-size: 12px;
    letter-spacing: 1.8px;
    text-align: center;
  }
  .credentials__sep {
    font-size: 20px;
    line-height: 1;
  }

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

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


@media (min-width: 400px) {
  .nav-footer {
    margin-top: 4px;
  }
  .nav-links {
    gap: 22px 36px;
/*    margin-right: 20px;*/
    padding: 28px calc(100% - 640px) 0;
  }
}

@media (min-width: 500px) {
  .nav-btn-persistent {
    display: inline-block; flex-shrink: 0;
    position: relative;
    margin: 0 0 0 auto;
    top: auto; left: auto; right: auto;
  }
  .nav-toggle { margin-left: 20px; }
  .nav-btn-menu { display: none; }
}

@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: 20px;
}
.footer-links-pair a + a::before {
  content: "|";
  position: absolute;
  left: -13px;
  top: 0;
  color: var(--gold);
  opacity: 0.75;
  pointer-events: none;
}
.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,
  nav#main-nav .custom-logo,
  nav#main-nav .custom-logo-link img { height: 44px; }
  .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: 20px;
  }
  .footer-links-pair--lg a + a::before {
    display: inline;
  }
  .hours-bar {
    gap: 60px;
  }
}

@media (min-width: 800px) {
  footer {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-areas:
      "logo  info    links"
      "logo  social  links"
      "copy  copy    copy ";
    justify-content: center;
    align-items: start;
    column-gap: 30px;
    row-gap: 0;
    padding: 52px 80px;
  }
  .footer-logo {
    grid-area: logo;
    height: 100px;
    align-self: start;
    margin-bottom: 0;
  }
  .footer-info {
    grid-area: info;
    text-align: left;
  }
  .footer-info p {
    font-size: 13px;
    margin-bottom: 4px;
    white-space: nowrap;
  }
  .footer-social {
    grid-area: social;
    justify-content: flex-start;
    margin: 10px 0 0;
  }
  .footer-links {
    grid-area: links;
    align-self: start;
    align-items: flex-end;
    gap: 4px;
    margin: 0 0 0 40px;
    text-align: right;
  }
  .footer-links-pair {
    justify-content: flex-end;
    width: 100%;
  }
  .footer-links-pair--lg {
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
  }
  .footer-links-pair--lg a + a::before {
    display: none;
  }
  .footer-copy {
    grid-area: copy;
    margin-top: 24px;
    text-align: center;
  }
}

@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 > span:last-of-type:nth-of-type(odd),
  body.nav-open .nav-links > a:last-of-type:nth-of-type(odd),
  body.nav-open nav .menu li:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
  }
  .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: 12px;
  }
  .menu-tab {
    font-size: 20px;
    letter-spacing: 0.1em;
    padding: 10px 28px;
  }

  .menu-items { grid-template-columns: 1fr 1fr; }
  .menu-item { padding: 4px 0; }
  .menu-row-2col {
    grid-template-columns: 1fr 1fr;
    gap: 0 56px;
    align-items: start;
  }
  .menu-row-2col .menu-items {
    grid-template-columns: 1fr;
  }
  .wine-styles-grid {
    columns: 1;
  }
  .wine-style-group:first-child .menu-subsection-title:first-child {
    margin-top: 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,
  nav#main-nav .custom-logo,
  nav#main-nav .custom-logo-link img {
    height: 52px;
  }
  .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-btn-menu { display: none; }
  .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 { grid-template-columns: 1fr 1fr; column-gap: 80px; }
  .menu-item { padding: 4px 0; }
  .menu-row-2col { gap: 0 80px; }
  .menu-row-2col .menu-items { grid-template-columns: 1fr; column-gap: 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: 76px; letter-spacing: 0.28em; text-indent: 0.28em; }
  .hero-content .hero-eyebrow { font-size: 14px; letter-spacing: 0.4em; margin-bottom: 24px; }
  .hero-content .hero-divider { width: 72px; margin-bottom: 22px; }
  .hero-content .hero-sub { font-size: 18px; }
  .hero-content .hero-meta { font-size: 16px; }

  .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; }
  .two-col .col .section-label { font-size: 16px; }

  .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;
  }
}