@font-face {
  font-family: 'Bernardo Moda';
  src: url('../assets/Bernardo Moda contrast.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Theatre Brillion';
  src: url('../assets/Theater Brillion.woff2') format('woff2'),
       url('../assets/Theater Brillion.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0d0f14;
  --bg-soft: #101318;
  --text: #f5f5f5;
  --muted: rgba(255,255,255,0.72);
  --muted-2: rgba(255,255,255,0.55);
  --gold: #d7a540;
  --gold-soft: #efb651;
  --border: rgba(255,255,255,0.55);
  --max: 1080px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.container {
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto;
}

.section-dark {
  background: var(--bg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 175px;
  min-height: 56px;
  padding: 0 28px;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  transition: opacity 0.25s ease, background 0.25s ease;
}

.button:hover {
  opacity: 0.8;
}

.button-outline {
  border: 1px solid var(--border);
  color: #fff;
  background: transparent;
}

.eyebrow {
  margin-bottom: 10px;
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  color: var(--muted-2);
}

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  padding-top: 18px;
}

.nav-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
}

.nav-row > a:first-child {
  display: none;
}

.header-logo {
  width: 92px;
  opacity: 0;
  pointer-events: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.5vw, 44px);
  justify-content: space-between;
}

.main-nav a,
.footer-nav a {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav a {
  white-space: nowrap;
}

.main-nav a:hover,
.footer-nav a:hover,
.header-socials a:hover {
  opacity: 0.7;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-socials img {
  width: 13px;
  height: 13px;
}

.header-cta {
  min-width: 154px;
  min-height: 46px;
  padding: 0 22px;
}

.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

.mobile-menu-toggle {
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  background: rgba(13, 15, 20, 0.92);
  cursor: pointer;
}

.mobile-menu-toggle img {
  width: 20px;
  height: 20px;
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 17px;
  width: min(280px, calc(100% - 34px));
  padding: 14px 18px;
  background: rgba(13, 15, 20, 0.98);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 18px 34px rgba(0,0,0,0.34);
}

.mobile-menu a {
  display: block;
  padding: 11px 0;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header.mobile-menu-open .mobile-menu {
  display: block;
}

.hero {
  position: relative;
  min-height: 845px;
  background: #000;
}

.hero-image-wrap,
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 845px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 92px;
  padding-bottom: 145px;
}

.hero-brand-mark {
  width: 200px;
	margin-bottom: 40px;
}

.hero-number {
  font-family: 'Theatre Brillion', serif;
  font-weight: 100;
  font-size: clamp(6rem, 11vw, 10rem);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--gold-soft);
  margin-bottom: 26px;
}

.hero-tagline {
  font-family: 'Bernardo Moda', serif;
  margin-bottom: 34px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.95);
}

.page-hero .hero-tagline {
  margin-top: 22px;
  margin-bottom: 0;
}

.hero-tagline-separator {
  color: #f8bd4a;
  padding: 0 0.45em;
}

.hero-copy {
  max-width: 760px;
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
}

.page-hero,
.page-hero .hero-content {
  min-height: 520px;
}

.page-hero .hero-content {
  padding-top: 170px;
  padding-bottom: 82px;
}

.page-hero .hero-brand-mark {
  margin-bottom: 22px;
}

.page-hero .eyebrow {
  margin-bottom: 8px;
}

.page-title {
  font-family: 'Bernardo Moda', serif;
  font-size: clamp(3.2rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--gold-soft);
}

.events-section {
  padding: 82px 0 96px;
  background: #131313;
}

.events-container {
  max-width: 980px;
}

.events-intro {
  margin-bottom: 34px;
}

.event-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
  gap: 34px;
  align-items: center;
  padding: 22px;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

.event-card-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
}

.event-card .event-card-image-wrap,
.event-card-reverse .event-card-image-wrap {
  order: 2;
}

.event-card .event-card-content,
.event-card-reverse .event-card-content {
  order: 1;
}

.event-card-image-wrap {
  overflow: hidden;
  min-height: 260px;
  background: #000;
}

.event-card-image {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.event-card-content {
  padding: 10px 6px;
}

.event-card-day {
  margin-bottom: 10px;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.event-card-content h2 {
  margin-bottom: 16px;
  font-family: 'Bernardo Moda', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 0.95;
  font-weight: 400;
  color: var(--gold-soft);
}

.event-card-time {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
}

.menu-page-section {
  padding: 86px 0 96px;
	background:#131313;
}

.menu-page-container {
  max-width: 980px;
}

.roast-menu-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    linear-gradient(rgba(6, 6, 5, 0.68), rgba(6, 6, 5, 0.82)),
    url("../images/roast.jpg") center / cover no-repeat;
}

.roast-menu-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(215, 165, 64, 0.16), transparent 42%);
  pointer-events: none;
}

.roast-menu-container {
  position: relative;
  max-width: 980px;
  text-align: center;
}

.roast-menu-section .eyebrow {
  margin-bottom: 8px;
}

.roast-menu-section .page-title {
  margin-bottom: 46px;
}

.roast-menu-title {
  font-family: 'Bernardo Moda', serif;
  font-size: clamp(3.2rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--gold-soft);
}

.roast-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px 72px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255,255,255,0.26);
  background: rgba(8, 8, 7, 0.68);
  backdrop-filter: blur(2px);
}

.roast-menu-category h2 {
  background: rgba(0,0,0,0.18);
}

.roast-menu-note {
  max-width: 780px;
  margin: 34px auto 0;
  text-align: center;
}

.roast-menu-note p {
  margin: 0;
  font-size: 0.65rem;
  line-height: 1.65;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.roast-menu-note p + p {
  margin-top: 14px;
  color: var(--gold-soft);
}

.web-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 58px 72px;
}

.web-menu-grid.wine-drinks-grid {
  display: block;
  column-count: 2;
  column-gap: 72px;
}

.web-menu-grid.menu-flow-grid {
  display: block;
  column-count: 2;
  column-gap: 72px;
}

.web-menu-grid.menu-columns-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px;
  align-items: start;
}

.menu-column {
  display: grid;
  gap: 30px;
  align-content: start;
}

.wine-drinks-grid .web-menu-category {
  display: inline-block;
  width: 100%;
  margin-bottom: 30px;
  break-inside: avoid;
}

.wine-drinks-grid.drink-items-flow {
  column-count: 1;
}

.drink-items-flow .web-menu-list {
  display: block;
  column-count: 2;
  column-gap: 72px;
}

.grouped-items-flow {
  column-count: 1;
}

.grouped-items-flow .web-menu-category {
  display: block;
}

.grouped-items-flow .web-menu-list {
  display: block;
  column-count: 2;
  column-gap: 72px;
}

.drink-items-flow .web-menu-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 17px;
  break-inside: avoid;
}

.grouped-items-flow .web-menu-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 17px;
  break-inside: avoid;
}

.drinks-section-title {
  margin: 0 0 34px;
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}

.wine-drinks-grid + .drinks-section-title {
  margin-top: 72px;
}

.menu-flow-grid .web-menu-category {
  display: inline-block;
  width: 100%;
  margin-bottom: 30px;
  break-inside: avoid;
}

.web-menu-category h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin: 0 auto 34px;
  border: 1px solid rgba(255,255,255,0.28);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

.web-menu-list {
  display: grid;
  gap: 17px;
}

.web-menu-item h3 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  margin-bottom: 4px;
  font-size: 0.88rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}

.web-menu-item h3 span {
  color: var(--gold-soft);
  white-space: nowrap;
}

.web-menu-item p {
  max-width: 420px;
  font-size: 0.72rem;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(215,165,64,0.72);
}

.wine-meta {
  margin-bottom: 8px;
  max-width: 420px;
  font-size: 0.72rem;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}

.wine-note {
  margin-top: 72px;
  text-align: center;
  font-size: 0.72rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
}

.allergen-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.allergen-badges span,
.allergen-key-grid strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  min-height: 24px;
  border: 1px solid rgba(248,189,74,0.72);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: 0.52rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
}

.web-menu-note {
  max-width: 640px;
  margin: 72px auto 0;
  text-align: center;
  font-size: 0.68rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.42);
}

.allergen-key h2 {
  margin-top: 34px;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.78);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.allergen-key-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 18px;
  margin-bottom: 26px;
  text-align: left;
}

.allergen-key-grid span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.62);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-page-section {
  padding: 86px 0 96px;
  background: #131313;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 64px;
  align-items: stretch;
}

.contact-page-copy {
  max-width: 560px;
}

.contact-detail-list {
  display: grid;
  gap: 16px;
  margin: 30px 0 34px;
}

.contact-detail-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  color: rgba(255,255,255,0.86);
  font-size: 0.88rem;
  line-height: 1.5;
}

.contact-detail-item img {
  width: 16px;
  flex: 0 0 16px;
}

.contact-detail-item[href] {
  color: var(--gold-soft);
}

.contact-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 46px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-message {
  margin-bottom: 22px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.form-message-success {
  color: var(--gold-soft);
}

.form-message-error {
  color: #f3a6a6;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font: inherit;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 140px;
  padding: 14px;
  resize: vertical;
}

.contact-form select option {
  color: #111;
}

.contact-map-wrap {
  min-height: 820px;
  overflow: hidden;
  align-self: stretch;
}

.contact-map-wrap #google-map {
  width: 100%;
  height: 100%;
  min-height: 820px;
}

.info-section {
  padding: 82px 0 88px;
}

.info-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 220px minmax(220px, 1fr);
  align-items: stretch;
  gap: 44px;
}

.info-card {
  text-align: center;
  padding-top: 20px;
}

.info-card h2,
.recommend-copy h2,
.promo-content h2,
.footer-hours h3 {
  font-family: 'Bernardo Moda', serif;
  font-weight: 400;
  color: var(--gold-soft);
}

.info-card h2 {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 0.95;
  margin-bottom: 34px;
}

.hours-block {
  margin-bottom: 18px;
}

.hours-block.compact {
  margin-bottom: 24px;
}

.hours-day {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: capitalize;
  margin-bottom: 6px;
}

.hours-time {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
}

.offer-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 36px;
}

.offer-list li {
  font-size: 1rem;
  color: var(--muted);
}

.info-center-image-wrap {
  width: 220px;
  margin: 0 auto;
  height: 100%;
}

.info-center-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-center-image.top {
  min-height: 100%;
}

.info-center-image.bottom {
  height: 94px;
  margin-top: 14px;
}

.feature-strip {
  position: relative;
  height: 323px;
  overflow: hidden;
  background: #000;
  --feature-parallax-base: -90px;
  --feature-parallax-offset: 0px;
}

.feature-strip img {
  width: 100%;
  height: calc(100% + 180px);
  object-fit: cover;
  transform: translate3d(0, calc(var(--feature-parallax-base) + var(--feature-parallax-offset)), 0);
  will-change: transform;
}

.recommend-section {
  padding: 92px 0 94px;
}

.recommend-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 56px;
  align-items: center;
  max-width: 900px;
}

.recommend-copy {
  max-width: 520px;
}

.recommend-copy h2 {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1;
  margin-bottom: 42px;
}

.dish-list {
  display: grid;
  gap: 22px;
  margin-bottom: 42px;
}

.dish-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.dish-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.dish-item p {
  font-size: 0.69rem;
  line-height: 1.55;
  color: rgba(215,165,64,0.85);
}

.dish-item span {
  font-size: 0.98rem;
  font-weight: 600;
  color: #fff;
}

.recommend-image-wrap {
  width: 100%;
  max-width: 320px;
  justify-self: end;
}

.recommend-image-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.promo-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.promo-tile img,
#google-map {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* overlay stays same */
.promo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.36);
}

/* CENTER TEXT */
.promo-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

#google-map {
  filter: grayscale(90%) brightness(0.72) contrast(1.05);
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.36);
}

.promo-content {
  position: absolute;
  z-index: 2;
}

.promo-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;
  color: #fff;
  margin-bottom: 10px;
}

.promo-content p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.68);
}

.site-footer {
  padding: 72px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 0.7fr minmax(260px, 1fr);
  align-items: center;
  gap: 48px;
}

.footer-wordmark {
  width: 188px;
  margin-bottom: 36px;
}

.footer-contact-list {
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 330px;
  justify-items: start;
  margin-top: 28px;
}

.footer-contact-list li {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: 0.72rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.84);
}

.footer-contact-list img {
  width: 14px;
  flex: 0 0 14px;
}

.footer-contact-list a {
  color: var(--gold-soft);
}

.footer-center {
  display: flex;
  justify-content: center;
}

.footer-logo-mark {
  width: 118px;
}

.footer-right {
  display: flex;
  justify-content: end;
  align-items: center;
}
.footer-hours,
.footer-nav {
  align-self: center;
}

.footer-hours h3 {
  font-size: 1.7rem;
  line-height: 1;
  color: rgba(255,255,255,0.92);
  margin-bottom: 18px;
}

.footer-hours p {
  display: grid;
  gap: 2px;
  margin-bottom: 12px;
}

.footer-hours span {
  font-size: 0.58rem;
  color: var(--gold);
}

.footer-hours strong {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.footer-nav {
  display: grid;
  gap: 8px;
  justify-items: start;
  text-align: left;
}

.footer-nav a {
  white-space: nowrap;
}

.credit {
  margin-top: 42px;
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.34);
}

.credit a {
  color: rgba(215,165,64,0.72);
}

@media (max-width: 1060px) {
  .container {
    width: min(calc(100% - 48px), var(--max));
  }

  .main-nav {
    gap: clamp(12px, 1.65vw, 18px);
    flex-wrap: nowrap;
    justify-content: center;
  }

  .main-nav a {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }

  .nav-row {
    grid-template-columns: 1fr auto auto;
    justify-items: stretch;
    gap: 14px;
  }

  .header-logo {
    width: 72px;
  }

  .footer-grid,
  .footer-right,
  .promo-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-grid {
    max-width: 760px;
    margin: 0 auto;
  }

  .contact-map-wrap,
  .contact-map-wrap #google-map {
    min-height: 420px;
  }

  .recommend-image-wrap,
  .info-center-image-wrap {
    justify-self: center;
  }

  .footer-left,
  .footer-center,
  .footer-right,
  .footer-nav {
    justify-items: center;
    text-align: center;
    justify-content: center;
  }

  .footer-contact-list {
    max-width: 520px;
    justify-items: center;
  }

}

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 34px), var(--max));
  }

  .site-header {
    padding-top: 16px;
  }

  .nav-row {
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: stretch;
    gap: 12px;
  }

  .main-nav,
  .header-socials,
  .header-cta {
    display: none;
  }

  .header-logo-link {
    justify-self: start;
  }

  .header-logo {
    width: 72px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .main-nav a,
  .footer-nav a {
    font-size: 0.56rem;
  }

  .header-socials {
    gap: 12px;
  }

  .header-cta {
    min-width: 138px;
    min-height: 42px;
  }

  .hero,
  .hero-content {
    min-height: 760px;
  }

  .page-hero,
  .page-hero .hero-content {
    min-height: 520px;
  }

  .hero-content {
    padding-top: 178px;
    padding-bottom: 90px;
  }

  .page-hero .hero-content {
    padding-top: 132px;
    padding-bottom: 72px;
  }

  .event-card,
  .event-card-reverse {
    grid-template-columns: 1fr;
  }

  .event-card-image-wrap,
  .event-card-image {
    min-height: 220px;
  }

  .hero-brand-mark {
    width: 94px;
  }

  .hero-tagline {
    font-size: 0.82rem;
    line-height: 1.6;
    letter-spacing: 0.1em;
  }

  .hero-copy {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .info-section,
  .recommend-section,
  .menu-page-section,
  .contact-page-section,
  .site-footer {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .contact-cta-row .button {
    width: 100%;
  }

  .contact-map-wrap,
  .contact-map-wrap #google-map {
    min-height: 320px;
  }

  .allergen-key-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    max-width: 760px;
    margin: 0 auto;
  }

  .footer-grid,
  .footer-right {
    grid-template-columns: 1fr;
  }

  .recommend-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
  }

  .web-menu-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .web-menu-grid.wine-drinks-grid {
    column-count: 1;
  }

  .drink-items-flow .web-menu-list {
    column-count: 1;
  }

  .grouped-items-flow .web-menu-list {
    column-count: 1;
  }

  .web-menu-grid.menu-flow-grid {
    column-count: 1;
  }

  .web-menu-grid.menu-columns-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .roast-menu-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 26px 20px;
  }

  .recommend-image-wrap {
    width: 100%;
    max-width: none;
  }

  .info-center-image-wrap {
    height: auto;
  }

  .info-center-image-wrap {
    width: 100%;
  }

  .info-center-image.top {
    height: 285px;
    min-height: 0;
  }

  .info-card h2,
  .recommend-copy h2,
  .promo-content h2 {
    line-height: 1.05;
  }

  .offer-list li,
  .hours-time,
  .dish-item span {
    font-size: 0.92rem;
  }

  .feature-strip {
    height: 240px;
    --feature-parallax-base: -56px;
  }

  .feature-strip img {
    height: calc(100% + 112px);
  }

  .recommend-image-wrap img {
    height: 380px;
  }

  .dish-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .promo-tile {
    min-height: 280px;
  }

  .footer-wordmark {
    width: 150px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-logo-mark {
    width: 96px;
  }

  .footer-contact-list li {
    text-align: center;
  }

  .credit {
    margin-top: 28px;
    font-size: 0.56rem;
    line-height: 1.5;
    padding: 0 10px;
  }
}
