/*!
 * Unit Three Collective – Main Stylesheet
 * WordPress/Elementor-ready: uses standard WP body classes,
 * .site-header, .site-footer, .entry-content, .wp-block-* patterns
 * Bootstrap 5 base + custom overrides
 */

/* ─────────────────────────────────────────────
   CSS VARIABLES (Design Tokens)
───────────────────────────────────────────── */
:root {
  --utc-dark: #030213;
  --utc-white: #ffffff;
  --utc-bg-grey: #ececf0;
  --utc-newsletter: #e9ebef;
  --utc-text: #0a0a0a;
  --utc-muted: #717182;
  --utc-border: rgba(0, 0, 0, 0.10);
  --utc-radius: 10px;
  --utc-radius-pill: 9999px;
  --utc-shadow: 0 10px 15px -3px rgba(0, 0, 0, .10), 0 4px 6px -4px rgba(0, 0, 0, .10);
  --utc-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, .10), 0 8px 10px -6px rgba(0, 0, 0, .10);

  /* Typography */
  --font-base: 'Roboto', sans-serif;
  --font-heading: 'Roboto', sans-serif;
  --fs-xs: 12px;
  --fs-sm: 14px;
  --fs-base: 16px;
  --fs-md: 18px;
  --fs-lg: 20px;
  --fs-xl: 24px;
  --fs-2xl: 28px;
  --fs-3xl: 36px;
  --fs-4xl: 48px;
  --fs-5xl: 72px;
  --fs-6xl: 96px;

  /* Spacing */
  --section-py: 80px;
}

/* ─────────────────────────────────────────────
   GLOBAL RESET & BASE
───────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body.page,
body.single,
body.home,
body {
  font-family: var(--font-base);
  color: var(--utc-text);
  background: var(--utc-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .utc-section-title, .hero-title, .story-heading, .site-title {
  font-family: var(--font-heading);
  font-weight: 600;
}

a {
  color: inherit;
  transition: opacity .2s ease, color .2s ease;
}

a:hover {
  opacity: .8;
  text-decoration: none;
}

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

/* WP image alignment helpers */
.alignleft {
  float: left;
  margin: 0 1.5rem 1rem 0;
}

.alignright {
  float: right;
  margin: 0 0 1rem 1.5rem;
}

.aligncenter {
  display: block;
  margin: 0 auto 1rem;
}

/* ─────────────────────────────────────────────
   BOOTSTRAP OVERRIDES
───────────────────────────────────────────── */
.container,
.container-fluid {
  --bs-gutter-x: 60px;
}

/* ─────────────────────────────────────────────
   TYPOGRAPHY UTILITIES
───────────────────────────────────────────── */
.utc-section-title {
  font-size: clamp(24px, 3vw, var(--fs-3xl));
  font-weight: 600;
  letter-spacing: 0.37px;
  line-height: 1.11;
  color: var(--utc-text);
}

.utc-section-title.light {
  color: var(--utc-white);
}

.utc-section-sub {
  font-size: var(--fs-md);
  color: var(--utc-muted);
  letter-spacing: -0.44px;
  line-height: 28px;
  font-weight: 400;
}

/* ─────────────────────────────────────────────
   BUTTONS  (WP standard + custom)
───────────────────────────────────────────── */
/* Base – mirrors wp-element-button */
.wp-element-button,
.btn-utc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-base);
  font-weight: 400;
  letter-spacing: -0.31px;
  border-radius: var(--utc-radius);
  border: none;
  cursor: pointer;
  transition: opacity .2s ease, transform .15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.wp-element-button:hover,
.btn-utc:hover {
  opacity: .85;
  transform: translateY(-1px);
}

.wp-element-button:active,
.btn-utc:active {
  transform: translateY(0);
}

.btn-utc-primary {
  background: var(--utc-dark);
  color: var(--utc-white);
  font-size: var(--fs-base);
  padding: 12px 20px;
  height: 48px;
}

.btn-utc-primary-lg {
  background: var(--utc-dark);
  color: var(--utc-white);
  font-size: var(--fs-md);
  padding: 16px 28px;
  height: 60px;
}

.btn-utc-outline {
  background: #eceef2;
  color: var(--utc-dark);
  font-size: var(--fs-base);
  padding: 12px 20px;
  height: 48px;
}

.btn-utc-cart {
  background: var(--utc-dark);
  color: var(--utc-white);
  font-size: var(--fs-base);
  font-weight: 500;
  padding: 8px 20px;
  height: 40px;
}

.btn-utc-sm {
  background: var(--utc-dark);
  color: var(--utc-white);
  font-size: var(--fs-base);
  padding: 8px 16px;
  height: 40px;
}

.btn-utc img,
.wp-element-button img {
  width: 16px;
  height: 16px;
}

.btn-utc-primary-lg img {
  width: 20px;
  height: 20px;
}

/* ─────────────────────────────────────────────
   BADGES / PILLS
───────────────────────────────────────────── */
.utc-badge {
  display: inline-flex;
  align-items: center;
  background: var(--utc-dark);
  color: var(--utc-white);
  font-size: var(--fs-xs);
  font-weight: 400;
  line-height: 16px;
  padding: 3px 7px;
  border-radius: var(--utc-radius-pill);
}

.utc-badge-event {
  font-size: var(--fs-sm);
  padding: 4px 12px;
}

/* ─────────────────────────────────────────────
   SITE HEADER  (WP: .site-header)
───────────────────────────────────────────── */
.site-header {
  background: var(--utc-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  transition: box-shadow .3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, .4);
}

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

/* Logo – WP: .site-branding */
.site-branding .site-title,
.site-logo {
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--utc-white);
  letter-spacing: 0.07px;
  line-height: 32px;
  white-space: nowrap;
  text-decoration: none;
}

/* Nav – WP: .main-navigation */
.main-navigation .nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;
}

.main-navigation .nav-menu li a {
  display: block;
  font-size: var(--fs-base);
  font-weight: 400;
  color: var(--utc-white);
  letter-spacing: -0.31px;
  padding: 0 16px;
  line-height: 64px;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity .2s;
}

.main-navigation .nav-menu li a:hover,
.main-navigation .nav-menu li.current-menu-item a {
  opacity: .65;
}

.main-navigation .nav-menu li.current-menu-item a {
  opacity: 1;
  border-bottom: 2px solid var(--utc-white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 8px;
}

.header-actions .nav-visit {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-base);
  color: var(--utc-white);
  letter-spacing: -0.31px;
}

.header-actions .nav-visit img {
  width: 16px;
  height: 16px;
}

.header-actions .nav-cart img {
  width: 18px;
  height: 22px;
}

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

.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--utc-white);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--utc-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 0;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

.mobile-nav-drawer.open {
  transform: translateX(0);
}

.mobile-nav-drawer a {
  font-size: var(--fs-lg);
  color: var(--utc-white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  letter-spacing: -0.31px;
}

/* ─────────────────────────────────────────────
   HERO  (.wp-block-cover equivalent)
───────────────────────────────────────────── */
.wp-block-cover.hero-section {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.wp-block-cover__background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.wp-block-cover__background::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
}

.wp-block-cover__inner-blocks {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
}

.hero-title {
  font-size: clamp(42px, 8vw, var(--fs-6xl));
  font-weight: 600;
  color: var(--utc-white);
  letter-spacing: 0.12px;
  line-height: 1.0;
}

.hero-sub {
  font-size: clamp(20px, 3.5vw, 48px);
  font-weight: 600;
  color: var(--utc-white);
  letter-spacing: 0.12px;
  line-height: 1.2;
}

.hero-desc {
  font-size: clamp(16px, 2vw, var(--fs-xl));
  font-weight: 400;
  color: var(--utc-white);
  line-height: 1.4;
}

/* ─────────────────────────────────────────────
   SECTIONS
───────────────────────────────────────────── */
.utc-section {
  padding: var(--section-py) 0;
}

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

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

.utc-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.utc-section-header .utc-section-title {
  margin-bottom: 12px;
}

/* ─────────────────────────────────────────────
   PRODUCT CARDS  (.wp-block-woocommerce-product-list-item)
───────────────────────────────────────────── */
.utc-product-card {
  background: var(--utc-white);
  border: 1px solid var(--utc-border);
  border-radius: var(--utc-radius);
  overflow: hidden;
  box-shadow: var(--utc-shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}

.utc-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--utc-shadow-lg);
}

.utc-product-card .card-img-wrap {
  overflow: hidden;
}

.utc-product-card .card-img-wrap img {
  width: 100%;
  aspect-ratio: 405 / 403;
  object-fit: cover;
  transition: transform .4s ease;
}

.utc-product-card:hover .card-img-wrap img {
  transform: scale(1.04);
}

.utc-product-card .card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.utc-product-card .card-title {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--utc-text);
  letter-spacing: -0.45px;
  line-height: 28px;
  margin: 0;
}

.utc-product-card .card-desc {
  font-size: var(--fs-sm);
  color: var(--utc-muted);
  letter-spacing: -0.15px;
  line-height: 20px;
}

.product-meta {
  display: flex;
  gap: 16px;
  font-size: var(--fs-sm);
  color: var(--utc-muted);
}

.card-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
}

.product-price {
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--utc-text);
  letter-spacing: 0.07px;
  line-height: 32px;
}

/* ─────────────────────────────────────────────
   TAP CARDS
───────────────────────────────────────────── */
.utc-tap-card {
  background: var(--utc-white);
  border: 1px solid var(--utc-border);
  border-radius: var(--utc-radius);
  overflow: hidden;
  display: flex;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}

.utc-tap-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--utc-shadow);
}

.utc-tap-card .tap-img {
  width: 168px;
  min-width: 168px;
  object-fit: cover;
  transition: transform .4s ease;
}

.utc-tap-card:hover .tap-img {
  transform: scale(1.04);
}

.utc-tap-card .tap-body {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  overflow: hidden;
}

.utc-tap-card .tap-name {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--utc-text);
  letter-spacing: -0.45px;
  line-height: 28px;
  margin: 6px 0 2px;
}

.utc-tap-card .tap-style {
  font-size: var(--fs-sm);
  color: var(--utc-muted);
  margin: 0;
}

.utc-tap-card .tap-style.font-large {
  font-size: 16px;
}

.tap-stats {
  display: flex;
  gap: 14px;
  font-size: var(--fs-sm);
  color: var(--utc-muted);
}

.tap-stats strong {
  color: var(--utc-text);
  font-weight: 500;
}

/* ─────────────────────────────────────────────
   EVENT CARDS
───────────────────────────────────────────── */
.utc-event-card {
  background: var(--utc-white);
  border: 1px solid var(--utc-border);
  border-radius: var(--utc-radius);
  overflow: hidden;
  box-shadow: var(--utc-shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}

.utc-event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--utc-shadow-lg);
}

.utc-event-card .event-img-wrap {
  position: relative;
  height: 227px;
  overflow: hidden;
}

.utc-event-card .event-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.utc-event-card:hover .event-img-wrap img {
  transform: scale(1.05);
}

.utc-event-card .event-badge-wrap {
  position: absolute;
  top: 16px;
  left: 16px;
}

.utc-event-card .event-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.utc-event-card .event-title {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--utc-text);
  letter-spacing: -0.45px;
  line-height: 28px;
  margin: 0;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  color: var(--utc-muted);
}

.event-meta-row img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.event-desc {
  font-size: var(--fs-sm);
  color: var(--utc-muted);
  line-height: 20px;
}

.event-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.event-price {
  font-size: var(--fs-md);
  color: var(--utc-text);
  letter-spacing: -0.44px;
}

/* ─────────────────────────────────────────────
   OUR STORY SECTION
───────────────────────────────────────────── */
.story-content .story-heading {
  font-size: clamp(28px, 3vw, var(--fs-3xl));
  font-weight: 600;
  color: var(--utc-white);
  letter-spacing: 0.37px;
  line-height: 40px;
  margin-bottom: 24px;
}

.story-content p {
  font-size: var(--fs-base);
  color: var(--utc-white);
  opacity: .9;
  letter-spacing: -0.31px;
  line-height: 24px;
  margin-bottom: 10px;
}

.story-content .story-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-base);
  color: var(--utc-white);
  margin-top: 12px;
}

.story-content .story-link img {
  width: 16px;
  height: 16px;
}

.story-img {
  width: 100%;
  aspect-ratio: 616 / 384;
  object-fit: cover;
  border-radius: var(--utc-radius);
  box-shadow: var(--utc-shadow-lg);
  transition: transform .4s ease;
}

.story-img:hover {
  transform: scale(1.02);
}

/* ─────────────────────────────────────────────
   TAPROOM INFO SECTION
───────────────────────────────────────────── */
.taproom-col h3 {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--utc-text);
  letter-spacing: -0.45px;
  text-align: center;
  margin-bottom: 16px;
}

.taproom-col p,
.taproom-col a {
  font-size: var(--fs-base);
  color: var(--utc-muted);
  letter-spacing: -0.31px;
  line-height: 24px;
  text-align: center;
  display: block;
  margin-bottom: 4px;
}

.taproom-col a {
  text-decoration: underline;
}

.taproom-col a:hover {
  color: var(--utc-dark);
  opacity: 1;
}

/* ─────────────────────────────────────────────
   NEWSLETTER
───────────────────────────────────────────── */
.newsletter-section {
  background: var(--utc-newsletter);
  padding: 48px 0;
}

.newsletter-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--utc-dark);
  letter-spacing: 0.07px;
  margin-bottom: 12px;
}

.newsletter-heading img {
  width: 32px;
  height: 32px;
}

.newsletter-body p {
  font-size: var(--fs-base);
  color: var(--utc-muted);
  letter-spacing: -0.31px;
  line-height: 24px;
}

.newsletter-form .form-control {
  height: 50px;
  border: 1px solid var(--utc-border);
  border-radius: var(--utc-radius);
  font-size: var(--fs-base);
  font-family: var(--font-base);
  padding: 12px 16px;
  background: var(--utc-white);
  color: var(--utc-text);
}

.newsletter-form .form-control:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(3, 2, 19, .15);
  border-color: var(--utc-dark);
}

.newsletter-form .btn-subscribe {
  height: 50px;
  background: var(--utc-dark);
  color: var(--utc-white);
  border: none;
  border-radius: var(--utc-radius);
  padding: 0 28px;
  font-size: var(--fs-base);
  font-weight: 500;
  font-family: var(--font-base);
  letter-spacing: -0.31px;
  cursor: pointer;
  transition: opacity .2s;
  white-space: nowrap;
}

.newsletter-form .btn-subscribe:hover {
  opacity: .85;
}

/* ─────────────────────────────────────────────
   SITE FOOTER  (.site-footer)
───────────────────────────────────────────── */
.site-footer {
  background: var(--utc-dark);
  padding: 48px 0 32px;
}

.footer-brand .footer-logo {
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--utc-white);
  letter-spacing: 0.07px;
  display: block;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: var(--fs-base);
  color: var(--utc-white);
  opacity: .8;
  letter-spacing: -0.31px;
  line-height: 24px;
}

.footer-widget h4,
.widget-title {
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--utc-white);
  letter-spacing: -0.31px;
  margin-bottom: 16px;
}

.footer-widget ul,
.widget_nav_menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-widget ul li a,
.widget_nav_menu ul li a {
  font-size: var(--fs-base);
  color: var(--utc-white);
  opacity: .8;
  letter-spacing: -0.31px;
  line-height: 24px;
  text-decoration: none;
  transition: opacity .2s;
}

.footer-widget ul li a:hover,
.widget_nav_menu ul li a:hover {
  opacity: 1;
}

.footer-contact-info p,
.footer-contact-info a {
  font-size: var(--fs-base);
  color: var(--utc-white);
  opacity: .8;
  letter-spacing: -0.31px;
  line-height: 24px;
  display: block;
  margin-bottom: 8px;
}

.footer-contact-info a {
  text-decoration: underline;
}

.footer-contact-info a:hover {
  opacity: 1;
}

.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding-top: 28px;
  margin-top: 40px;
}

.site-footer .footer-bottom p {
  font-size: var(--fs-base);
  color: var(--utc-white);
  opacity: .75;
  text-align: center;
  letter-spacing: -0.31px;
}

/* ─────────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────────── */
.page-hero {
  background: var(--utc-dark);
  padding: 80px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--utc-white);
  letter-spacing: 0.12px;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: var(--fs-md);
  color: var(--utc-white);
  opacity: .8;
  letter-spacing: -0.44px;
}

/* ─────────────────────────────────────────────
   BREADCRUMB  (.breadcrumbs WP)
───────────────────────────────────────────── */
.breadcrumbs,
.breadcrumb-trail {
  padding: 12px 0;
  font-size: var(--fs-sm);
  color: var(--utc-muted);
}

.breadcrumbs a,
.breadcrumb-trail a {
  color: var(--utc-dark);
}

.breadcrumbs a:hover,
.breadcrumb-trail a:hover {
  opacity: .7;
}

/* ─────────────────────────────────────────────
   SHOP / TAP LIST PAGE
───────────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-btn {
  background: var(--utc-newsletter);
  color: var(--utc-text);
  border: 1px solid var(--utc-border);
  border-radius: var(--utc-radius-pill);
  font-size: var(--fs-sm);
  font-family: var(--font-base);
  padding: 6px 18px;
  cursor: pointer;
  transition: all .2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--utc-dark);
  color: var(--utc-white);
  border-color: var(--utc-dark);
}

/* ─────────────────────────────────────────────
   CONTACT FORM
───────────────────────────────────────────── */
.utc-form .form-label {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--utc-text);
  margin-bottom: 6px;
}

.utc-form .form-control,
.utc-form textarea {
  border: 1px solid var(--utc-border);
  border-radius: var(--utc-radius);
  font-size: var(--fs-base);
  font-family: var(--font-base);
  padding: 12px 16px;
  color: var(--utc-text);
  transition: border-color .2s, box-shadow .2s;
}

.utc-form .form-control:focus,
.utc-form textarea:focus {
  border-color: var(--utc-dark);
  box-shadow: 0 0 0 3px rgba(3, 2, 19, .12);
  outline: none;
}

.utc-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* ─────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────── */
/* Fade up on scroll */
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}

.anim-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.anim-stagger>* {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}

.anim-stagger.visible>*:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}

.anim-stagger.visible>*:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: .1s;
}

.anim-stagger.visible>*:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: .2s;
}

.anim-stagger.visible>*:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: .3s;
}

.anim-stagger.visible>*:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: .4s;
}

.anim-stagger.visible>*:nth-child(6) {
  opacity: 1;
  transform: none;
  transition-delay: .5s;
}

/* Fade in */
.anim-fade-in {
  opacity: 0;
  transition: opacity .7s ease;
}

.anim-fade-in.visible {
  opacity: 1;
}

/* Scale in */
.anim-scale-in {
  opacity: 0;
  transform: scale(.95);
  transition: opacity .6s ease, transform .6s ease;
}

.anim-scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .site-header .header-inner {
    padding: 0 32px;
  }

  :root {
    --section-py: 64px;
  }
}

@media (max-width: 991px) {

  .main-navigation,
  .header-actions {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .site-header .header-inner {
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 48px;
  }

  .wp-block-cover.hero-section {
    height: 480px;
  }

  .newsletter-section .row {
    flex-direction: column;
    gap: 24px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form .btn-subscribe {
    width: 100%;
  }
}

@media (max-width: 576px) {

  .container,
  .container-fluid {
    --bs-gutter-x: 20px;
  }

  :root {
    --section-py: 40px;
  }

  .utc-tap-card .tap-img {
    width: 120px;
    min-width: 120px;
  }
}

.elementor-editor-active .anim-fade-up {
  opacity: 1;
}

.elementor-editor-active .anim-stagger>* {
  opacity: 1;
}

.hours-title.taproom-col h3 {
  text-align: left;
}

.taproom-col .content {
  color: #717182;
}

.location-col .content {
  text-align: center;
}

.shop-hero {
  background: var(--utc-dark);
  padding: 80px 0 72px;
  text-align: center;
}

.shop-hero .hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 16px;
}

.shop-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.shop-hero .hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, .55);
  max-width: 520px;
  margin: 0 auto;
  animation: none;
}

/* ─── Shop Toolbar ─── */
.shop-toolbar {
  position: sticky;
  top: 64px;
  z-index: 100;
  background: var(--utc-bg-grey);
  border-bottom: 1px solid var(--utc-border);
  padding: 16px 0;
}

.shop-toolbar .toolbar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Search */
.search-wrap {
  position: relative;
  flex: 1;
  min-width: 200px;
  max-width: 340px;
}

.search-wrap .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  pointer-events: none;
  opacity: .5;
}

.search-wrap input {
  width: 100%;
  height: 44px;
  padding: 0 16px 0 40px;
  border: 1px solid var(--utc-border);
  border-radius: var(--utc-radius);
  background: #fff;
  font-family: var(--font-base);
  font-size: 14px;
  color: var(--utc-text);
  outline: none;
  transition: border-color .2s;
}

.search-wrap input::placeholder {
  color: var(--utc-muted);
}

.search-wrap input:focus {
  border-color: var(--utc-dark);
}

/* Selects */
.shop-select {
  height: 44px;
  padding: 0 36px 0 14px;
  border: 1px solid var(--utc-border);
  border-radius: var(--utc-radius);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23717182' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 12px center;
  -webkit-appearance: none;
  appearance: none;
  font-family: var(--font-base);
  font-size: 14px;
  color: var(--utc-text);
  cursor: pointer;
  outline: none;
  transition: border-color .2s;
  white-space: nowrap;
}

.shop-select:focus {
  border-color: var(--utc-dark);
}

.shop-select.select-style {
  min-width: 132px;
}

.shop-select.select-sort {
  min-width: 185px;
}

/* Result count */
.result-count {
  margin-left: auto;
  font-size: 13px;
  color: var(--utc-muted);
  white-space: nowrap;
}

/* ─── Product Grid ─── */
.shop-section {
  padding: 48px 0 80px;
}

.shop-product-card {
  background: #fff;
  border-radius: var(--utc-radius);
  overflow: hidden;
  box-shadow: var(--utc-shadow);
  transition: transform .28s ease, box-shadow .28s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.shop-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--utc-shadow-lg);
}

.shop-product-card.hidden {
  display: none !important;
}

.pc-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f4f4f6;
}

.pc-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.shop-product-card:hover .pc-image-wrap img {
  transform: scale(1.04);
}

.pc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--utc-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.pc-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pc-name {
  font-size: 18px;
  font-weight: 500;
  color: var(--utc-text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.pc-desc {
  font-size: 13px;
  color: var(--utc-muted);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}

.pc-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.pc-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pc-stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--utc-muted);
}

.pc-stat-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--utc-text);
}

.pc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.pc-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--utc-text);
  letter-spacing: -.02em;
}

.btn-add-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 18px;
  background: var(--utc-dark);
  color: #fff;
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 500;
  border: none;
  border-radius: var(--utc-radius);
  cursor: pointer;
  transition: background .2s, transform .15s;
  white-space: nowrap;
  min-width: 130px;
  justify-content: center;
}

.btn-add-cart:hover {
  background: #1a1a2e;
  transform: translateY(-1px);
}

.btn-add-cart:active {
  transform: translateY(0);
}

.btn-add-cart.added {
  background: #2a7a3b;
}

.btn-add-cart svg {
  flex-shrink: 0;
}

/* ─── Empty state ─── */
.shop-empty {
  text-align: center;
  padding: 64px 24px;
  color: var(--utc-muted);
  display: none;
}

.shop-empty.show {
  display: block;
}

.shop-empty svg {
  margin-bottom: 20px;
  opacity: .35;
}

.shop-empty p {
  font-size: 16px;
}

/* ─── Responsive tweaks ─── */
@media (max-width: 768px) {
  .shop-hero {
    padding: 56px 0 52px;
  }

  .shop-toolbar {
    top: 0;
  }

  .search-wrap {
    max-width: 100%;
  }

  .result-count {
    display: none;
  }
}

@media (max-width: 480px) {
  .shop-select.select-sort {
    min-width: 150px;
  }
}

.events-hero {
  background: #fff;
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--utc-border);
}

.events-hero .hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--utc-muted);
  margin-bottom: 16px;
}

.events-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  color: var(--utc-text);
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.events-hero .hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--utc-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ─── Filter Bar ─── */
body .events-filter-bar {
  background: #fff;
  padding: 28px 0;
  border-bottom: 1px solid var(--utc-border);
  position: sticky;
  top: 64px;
  z-index: 100;
}

.filter-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 20px;
  border-radius: 100px;
  border: 1px solid var(--utc-border);
  background: #fff;
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 500;
  color: var(--utc-text);
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s;
  white-space: nowrap;
}

.filter-pill:hover {
  background: #f0f0f3;
  border-color: #c8c8d0;
}

.filter-pill.active {
  background: var(--utc-dark);
  color: #fff;
  border-color: var(--utc-dark);
}

/* ─── Events Section ─── */
.events-section {
  background: #f7f7f9;
  padding: 40px 0 80px;
}

.events-count {
  font-size: 14px;
  color: var(--utc-muted);
  margin-bottom: 28px;
}

/* ─── Event Card ─── */
.event-card {
  background: #fff;
  border-radius: var(--utc-radius);
  overflow: hidden;
  box-shadow: var(--utc-shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .28s ease, box-shadow .28s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--utc-shadow-lg);
}

.event-card.hidden {
  display: none !important;
}

/* Card image */
.ec-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 308 / 173;
  overflow: hidden;
  background: #e8e8ec;
  flex-shrink: 0;
}

.ec-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.event-card:hover .ec-image-wrap img {
  transform: scale(1.04);
}

/* Placeholder bg for cards without images */
.ec-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4a 100%);
}

.ec-placeholder svg {
  opacity: .18;
}

/* Category badge */
.ec-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--utc-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

/* Card body */
.ec-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ec-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--utc-text);
  line-height: 1.35;
  margin-bottom: 16px;
}

.ec-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.ec-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ec-meta-row svg {
  flex-shrink: 0;
  color: var(--utc-muted);
}

.ec-meta-text {
  font-size: 13px;
  color: var(--utc-muted);
  line-height: 1.4;
}

.ec-desc {
  font-size: 13px;
  color: var(--utc-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.ec-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.ec-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--utc-text);
}

.ec-price.free {
  font-size: 16px;
  font-weight: 600;
  color: #2a7a3b;
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 20px;
  background: var(--utc-dark);
  color: #fff;
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 500;
  border: none;
  border-radius: var(--utc-radius);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, transform .15s;
}

.btn-learn-more:hover {
  background: #1a1a2e;
  color: #fff;
  transform: translateY(-1px);
}

.btn-learn-more:active {
  transform: translateY(0);
}

/* ─── Empty state ─── */
.events-empty {
  text-align: center;
  padding: 64px 24px;
  color: var(--utc-muted);
  display: none;
  grid-column: 1 / -1;
}

.events-empty.show {
  display: block;
}

.events-empty p {
  font-size: 16px;
  margin-top: 16px;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .events-hero {
    padding: 56px 0 44px;
  }

  .events-filter-bar {
    top: 0;
    padding: 20px 0;
  }

  .filter-pill {
    font-size: 13px;
    height: 38px;
    padding: 0 16px;
  }
}

.functions-hero {
  background: var(--utc-dark);
  /* #030213 */
  padding: 100px 0 88px;
  text-align: center;
}

.functions-hero h1 {
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 500;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.functions-hero .hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, .55);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ─────────────────────────────────────────
       SECTION 1 – Perfect For Any Occasion
       bg: #fff
    ───────────────────────────────────────── */
.occasions-section {
  background: #fff;
  padding: 80px 0 88px;
}

.occasions-section .section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: var(--utc-text);
  letter-spacing: -.02em;
  text-align: center;
  margin-bottom: 56px;
}

/* Occasion cards */
.occasion-card {
  background: #fff;
  border: 1px solid var(--utc-border);
  border-radius: var(--utc-radius);
  padding: 28px 28px 32px;
  height: 100%;
  transition: box-shadow .25s ease, transform .25s ease;
}

.occasion-card:hover {
  box-shadow: var(--utc-shadow-lg);
  transform: translateY(-3px);
}

.occasion-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: block;
}

.occasion-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--utc-text);
  letter-spacing: -.01em;
  margin-bottom: 12px;
}

.occasion-card p {
  font-size: 14px;
  color: var(--utc-muted);
  line-height: 1.7;
  margin: 0;
}

/* ─────────────────────────────────────────
       SECTION 2 – Our Venue
       bg: #f7f7f9 (light grey)
    ───────────────────────────────────────── */
.venue-section {
  /* background: #f7f7f9; */
  padding: 80px 0 88px;
}

.venue-section .venue-heading {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: var(--utc-text);
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.venue-section .venue-desc {
  font-size: 15px;
  color: var(--utc-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

/* Feature rows */
.venue-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.venue-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.venue-feature-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.venue-feature-body h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--utc-text);
  margin-bottom: 4px;
  letter-spacing: -.01em;
}

.venue-feature-body p {
  font-size: 13px;
  color: var(--utc-muted);
  line-height: 1.65;
  margin: 0;
}

/* Venue image */
.venue-img-wrap {
  border-radius: var(--utc-radius);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 473 / 266;
  box-shadow: var(--utc-shadow-lg);
}

.venue-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.venue-img-wrap:hover img {
  transform: scale(1.03);
}

/* ─────────────────────────────────────────
       SECTION 3 – Ready to Book
       bg: #fff
    ───────────────────────────────────────── */
.book-section {
  /* background: #fff; */
  padding: 88px 0 96px;
  text-align: center;
}

.book-section h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: var(--utc-text);
  letter-spacing: -.02em;
  margin-bottom: 18px;
}

.book-section .book-sub {
  font-size: 16px;
  color: var(--utc-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.btn-book-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 60px;
  padding: 0 36px;
  background: var(--utc-dark);
  color: #fff;
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -.01em;
  border: none;
  border-radius: var(--utc-radius);
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s;
}

.btn-book-cta:hover {
  background: #1a1a2e;
  color: #fff;
  transform: translateY(-2px);
}

.btn-book-cta:active {
  transform: translateY(0);
}

/* ─────────────────────────────────────────
       Responsive
    ───────────────────────────────────────── */
@media (max-width: 991px) {
  .venue-img-wrap {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .functions-hero {
    padding: 72px 0 64px;
  }

  .occasions-section,
  .venue-section,
  .book-section {
    padding: 60px 0 68px;
  }
}

.elementor-editor-active [data-anim] {
  opacity: 1;
}

.findus-hero {
  background: var(--utc-dark);
  padding: 100px 0 88px;
  text-align: center;
}

.findus-hero h1 {
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 500;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.findus-hero .hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, .55);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ─── Intro text (white) ─── */
.findus-intro {
  background: #fff;
  padding: 48px 0 52px;
  text-align: center;
  border-bottom: 1px solid var(--utc-border);
}

.findus-intro p {
  font-size: 15px;
  color: var(--utc-muted);
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto 8px;
}

.findus-intro .note {
  font-size: 13px;
  color: #aaaabc;
  font-style: italic;
}

/* ─── Section wrapper ─── */
.findus-section {
  padding: 72px 0 80px;
}

.findus-section.bg-grey {
  /* background: #f7f7f9; */
}

.findus-section.bg-white {
  background: #fff;
}

.findus-section-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  color: var(--utc-text);
  letter-spacing: -.02em;
  text-align: center;
  margin-bottom: 40px;
}

/* ─── Location Card ─── */
.loc-card {
  background: #fff;
  border: 1px solid var(--utc-border);
  border-radius: var(--utc-radius);
  padding: 24px 26px 26px;
  height: 100%;
  transition: box-shadow .22s ease, transform .22s ease;
}

.loc-card:hover {
  box-shadow: var(--utc-shadow-lg);
  transform: translateY(-3px);
}

/* bars section cards sit on white, give them slight grey bg */
.findus-section.bg-white .loc-card {
  background: #f7f7f9;
}

.loc-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.loc-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--utc-text);
  line-height: 1.3;
  margin: 0;
}

.loc-pin {
  flex-shrink: 0;
  color: var(--utc-muted);
  margin-top: 2px;
  opacity: .6;
}

.loc-type {
  font-size: 12px;
  font-weight: 500;
  color: var(--utc-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 4px;
}

.loc-address {
  font-size: 13px;
  color: var(--utc-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}

.loc-available-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--utc-text);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 6px;
}

.loc-available-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.loc-available-list li {
  font-size: 13px;
  color: var(--utc-muted);
  line-height: 1.55;
  padding-left: 14px;
  position: relative;
}

.loc-available-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--utc-muted);
}

/* ─── CTA sections ─── */
.stock-section {
  /* background: #fff; */
  padding: 80px 0 88px;
  text-align: center;
  border-top: 1px solid var(--utc-border);
}

.stock-section h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  color: var(--utc-text);
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.stock-section .stock-sub {
  font-size: 15px;
  color: var(--utc-muted);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.btn-wholesale {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 60px;
  padding: 0 32px;
  background: var(--utc-dark);
  color: #fff;
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--utc-radius);
  text-decoration: none;
  transition: background .2s, transform .15s;
}

.btn-wholesale:hover {
  background: #1a1a2e;
  color: #fff;
  transform: translateY(-2px);
}

.visit-direct {
  /* background: #f7f7f9; */
  padding: 64px 0 72px;
  text-align: center;
}

.visit-direct h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 500;
  color: var(--utc-text);
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.visit-direct .visit-sub {
  font-size: 15px;
  color: var(--utc-muted);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.visit-direct-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-view-loc {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 28px;
  background: transparent;
  color: var(--utc-text);
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid var(--utc-text);
  border-radius: var(--utc-radius);
  text-decoration: none;
  transition: background .2s, color .2s;
}

.btn-view-loc:hover {
  background: var(--utc-text);
  color: #fff;
}

.btn-book-table {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 28px;
  background: var(--utc-dark);
  color: #fff;
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--utc-radius);
  text-decoration: none;
  transition: background .2s, transform .15s;
}

.btn-book-table:hover {
  background: #1a1a2e;
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .findus-hero {
    padding: 72px 0 60px;
  }

  .findus-section {
    padding: 52px 0 60px;
  }
}

/* ─── Hero (dark, seamless with header) ─── */
.faq-hero {
  background: var(--utc-dark);
  padding: 100px 0 88px;
  text-align: center;
}

.faq-hero h1 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.faq-hero .hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, .55);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ─── FAQ content area (white) ─── */
.faq-content {
  background: #fff;
  padding: 72px 0 80px;
}

/* ─── FAQ group ─── */
.faq-group {
  margin-bottom: 56px;
}

.faq-group:last-child {
  margin-bottom: 0;
}

.faq-group-title {
  font-size: 30px;
  font-weight: 400;
  color: var(--utc-text);
  letter-spacing: -.01em;
  margin-bottom: 20px;
  padding-bottom: 16px;
}

.accordion.faq-accordion {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 25px;
  border-radius: 10px;
}

/* ─── Accordion overrides ─── */
.faq-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid var(--utc-border);
  border-radius: 0 !important;
  background: transparent;
}

.faq-accordion .accordion-item:first-child {
  /* border-top: 1px solid var(--utc-border); */
}

.faq-accordion .accordion-item:last-child {
  border-bottom: none;
}

.faq-accordion .accordion-button {
  font-family: var(--font-base);
  font-size: 18px;
  font-weight: 500;
  color: var(--utc-text);
  background: transparent;
  padding: 22px 0;
  box-shadow: none !important;
  border-radius: 0 !important;
  gap: 16px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--utc-text);
  background: transparent;
}

.faq-accordion .accordion-button::after {
  /* Custom chevron */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23717182' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-size: 20px;
  width: 20px;
  height: 20px;
  margin-left: auto;
  flex-shrink: 0;
  transition: transform .25s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23030213' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}

.faq-accordion .accordion-body {
  font-size: 15px;
  color: var(--utc-muted);
  line-height: 1.75;
  padding: 0 0 22px;
  background: transparent;
}

.faq-accordion .accordion-collapse {
  border: none;
}

.faq-accordion .accordion-body p {
  margin: 0;
}

.faq-accordion .accordion-body p+p {
  margin-top: 10px;
}

/* ─── Still Have Questions (grey) ─── */
.faq-cta {
  background: #f7f7f9;
  padding: 80px 0 88px;
  text-align: center;
  border-top: 1px solid var(--utc-border);
}

.faq-cta h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  color: var(--utc-text);
  letter-spacing: -.02em;
  margin-bottom: 14px;
}

.faq-cta .cta-sub {
  font-size: 16px;
  color: var(--utc-muted);
  margin-bottom: 36px;
}

.faq-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-email-us {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 28px;
  background: var(--utc-dark);
  color: #fff;
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--utc-radius);
  text-decoration: none;
  transition: background .2s, transform .15s;
}

.btn-email-us:hover {
  background: #1a1a2e;
  color: #fff;
  transform: translateY(-1px);
}

.btn-call-us {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 28px;
  background: transparent;
  color: var(--utc-text);
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid var(--utc-text);
  border-radius: var(--utc-radius);
  text-decoration: none;
  transition: background .2s, color .2s;
}

.btn-call-us:hover {
  background: var(--utc-text);
  color: #fff;
}

@media (max-width: 767px) {
  .faq-hero {
    padding: 72px 0 60px;
  }

  .faq-content {
    padding: 52px 0 60px;
  }
}

.about-hero {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--utc-dark);
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://www.figma.com/api/mcp/asset/a5e4d48f-77d2-4cc9-93bb-51ae8523c444");
  background-size: cover;
  background-position: center;
  opacity: .55;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-hero h1 {
  font-size: clamp(44px, 7vw, 72px);
  font-weight: 500;
  color: #fff;
  letter-spacing: .04em;
  line-height: 1;
  margin: 0;
}

/* ─── Crafted with Passion (white) ─── */
.about-intro {
  background: #fff;
  padding: 80px 0 72px;
}

.about-intro h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--utc-text);
  letter-spacing: -.02em;
  margin-bottom: 24px;
  line-height: 1.15;
}

.about-intro p {
  font-size: 16px;
  color: #4a5565;
  line-height: 1.75;
  margin-bottom: 14px;
  max-width: 760px;
}

.about-intro p:last-child {
  margin-bottom: 0;
}

/* ─── Our Values (light grey) ─── */
.about-values {
  background: #f7f7f9;
  padding: 64px 0 64px;
}

.about-values h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--utc-text);
  letter-spacing: -.02em;
  text-align: center;
  margin-bottom: 56px;
}

.value-card {
  text-align: center;
}

.value-icon-wrap {
  width: 64px;
  height: 64px;
  background: #fef3c6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

body .value-icon-wrap img {
  width: 32px;
  height: 32px;
  display: block;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--utc-text);
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  color: #4a5565;
  line-height: 1.65;
  margin: 0;
}

/* ─── Meet the Brewers (white) ─── */
.about-team {
  padding: 64px 0 64px;
}

.about-team h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--utc-text);
  letter-spacing: -.02em;
  text-align: center;
  margin-bottom: 16px;
}

.about-team .team-sub {
  font-size: 16px;
  color: #4a5565;
  text-align: center;
  margin-bottom: 56px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.team-card {
  text-align: center;
}

.team-avatar {
  width: 192px;
  height: 192px;
  border-radius: 50%;
  background: #d1d5dc;
  margin: 0 auto 20px;
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--utc-text);
  letter-spacing: -.02em;
  margin-bottom: 6px;
}

.team-card .team-role {
  font-size: 16px;
  color: #e17100;
  font-weight: 500;
  margin-bottom: 10px;
}

.team-card .team-bio {
  font-size: 14px;
  color: #4a5565;
  line-height: 1.6;
  margin: 0;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Visit Our Taproom (dark) ─── */
.about-taproom {
  background: var(--utc-dark);
  padding: 80px 0 88px;
}

.about-taproom h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  color: #fff;
  letter-spacing: -.02em;
  text-align: center;
  margin-bottom: 12px;
}

.about-taproom .taproom-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .55);
  text-align: center;
  margin-bottom: 56px;
}

.taproom-col h4 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -.01em;
}

/* .taproom-col p,
.taproom-col a {
  font-size: 15px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.75;
  display: block;
  text-decoration: none;
}

.taproom-col a:hover {
  color: rgba(255, 255, 255, .9);
  text-decoration: underline;
} */

.taproom-divider {
  height: 1px;
  background: rgba(255, 255, 255, .12);
  margin: 48px 0;
}

.taproom-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-taproom-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  background: #fff;
  color: var(--utc-dark);
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--utc-radius);
  text-decoration: none;
  transition: opacity .2s, transform .15s;
}

.btn-taproom-primary:hover {
  opacity: .88;
  color: var(--utc-dark);
  transform: translateY(-1px);
}

.btn-taproom-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  background: transparent;
  color: rgba(255, 255, 255, .85);
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid rgba(255, 255, 255, .35);
  border-radius: var(--utc-radius);
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}

.btn-taproom-outline:hover {
  border-color: rgba(255, 255, 255, .75);
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

/* ─── Responsive ─── */
@media (max-width: 991px) {
  .about-team .team-card {
    margin-bottom: 48px;
  }

  .about-team .team-card:last-child {
    margin-bottom: 0;
  }

  .value-card {
    margin-bottom: 40px;
  }

  .value-card:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .about-hero {
    height: 380px;
  }

  .about-intro {
    padding: 56px 0 52px;
  }

  .about-values,
  .about-team {
    padding: 40px 0 44px;
  }

  .about-taproom {
    padding: 56px 0 64px;
  }

  .taproom-col {
    margin-bottom: 32px;
  }

  .taproom-col:last-child {
    margin-bottom: 0;
  }
}

.contact-hero {
  background: var(--utc-dark);
  padding: 80px 0 72px;
  text-align: center;
}

.contact-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.contact-hero .hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, .55);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ─── Main contact section (white) ─── */
.contact-main {
  background: #fff;
  padding: 80px 0 88px;
}

/* ─── Left: Contact Information ─── */
.contact-info-heading {
  font-size: 30px;
  font-weight: 500;
  color: var(--utc-text);
  letter-spacing: .01em;
  margin-bottom: 32px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(3, 2, 19, .10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-box svg {
  width: 24px;
  height: 24px;
}

.contact-item-body h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--utc-text);
  letter-spacing: -.02em;
  margin-bottom: 4px;
  line-height: 1.5;
}

.contact-item-body p,
.contact-item-body a {
  font-size: 15px;
  color: var(--utc-muted);
  line-height: 1.65;
  display: block;
  text-decoration: none;
}

.contact-item-body a:hover {
  color: var(--utc-text);
}

/* Follow Us */
.follow-us {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--utc-border);
}

.follow-us h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--utc-text);
  margin-bottom: 16px;
  letter-spacing: -.02em;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon-btn {
  width: 48px;
  height: 48px;
  background: rgba(3, 2, 19, .10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .2s;
}

.social-icon-btn:hover {
  background: rgba(3, 2, 19, .18);
}

.social-icon-btn svg {
  width: 22px;
  height: 22px;
}

body .social-icon-btn img {
  width: 22px;
  height: 22px;
  display: block;
}

/* ─── Right: Contact Form card ─── */
.contact-form-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 10px;
  padding: 36px;
}

.contact-form-card h2 {
  font-size: 28px;
  font-weight: 500;
  color: var(--utc-text);
  letter-spacing: .01em;
  margin-bottom: 28px;
}

/* Form fields */
.cf-label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--utc-text);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}

.cf-input,
.cf-select,
.cf-textarea {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 10px;
  font-family: var(--font-base);
  font-size: 15px;
  color: var(--utc-text);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.cf-input,
.cf-select {
  height: 46px;
  padding: 0 16px;
}

.cf-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23717182' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

.cf-textarea {
  padding: 12px 16px;
  height: 162px;
  resize: vertical;
  line-height: 1.65;
}

.cf-input::placeholder,
.cf-textarea::placeholder {
  color: rgba(10, 10, 10, .40);
}

.cf-input:focus,
.cf-select:focus,
.cf-textarea:focus {
  border-color: rgba(3, 2, 19, .45);
  box-shadow: 0 0 0 3px rgba(3, 2, 19, .06);
}

.cf-select option[value=""] {
  color: rgba(10, 10, 10, .40);
}

.btn-send {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 28px;
  background: var(--utc-dark);
  color: #fff;
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 500;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s, transform .15s;
  text-decoration: none;
}

.btn-send:hover {
  background: #1a1a2e;
  color: #fff;
  transform: translateY(-1px);
}

/* Success / error states */
.cf-success {
  display: none;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 15px;
  color: #15803d;
  margin-top: 16px;
}

/* ─── Find Us map section (grey) ─── */
.contact-map {
  background: #ececf0;
  padding: 72px 0 80px;
}

.contact-map h2 {
  font-size: 30px;
  font-weight: 500;
  color: var(--utc-text);
  text-align: center;
  letter-spacing: .01em;
  margin-bottom: 32px;
}

.map-wrapper {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 10px;
  overflow: hidden;
  height: 460px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ─── Visit Our Taproom (dark) ─── */
.contact-taproom {
  background: var(--utc-dark);
  padding: 80px 0 88px;
}

.contact-taproom h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  color: #fff;
  letter-spacing: -.02em;
  text-align: center;
  margin-bottom: 12px;
}

.contact-taproom .taproom-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .55);
  text-align: center;
  margin-bottom: 52px;
}

.taproom-col h4 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -.01em;
}

/* .taproom-col p,
.taproom-col a {
  font-size: 15px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.75;
  display: block;
  text-decoration: none;
}

.taproom-col a:hover {
  color: rgba(255, 255, 255, .9);
  text-decoration: underline;
} */

.taproom-divider {
  height: 1px;
  background: rgba(255, 255, 255, .12);
  margin: 48px 0;
}

.taproom-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-taproom-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  background: #fff;
  color: var(--utc-dark);
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
}

.btn-taproom-primary:hover {
  opacity: .88;
  color: var(--utc-dark);
  transform: translateY(-1px);
}

.btn-taproom-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  background: transparent;
  color: rgba(255, 255, 255, .85);
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid rgba(255, 255, 255, .35);
  border-radius: 10px;
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}

.btn-taproom-outline:hover {
  border-color: rgba(255, 255, 255, .75);
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

/* ─── Responsive ─── */
@media (max-width: 991px) {
  .contact-info-col {
    margin-bottom: 48px;
  }
}

@media (max-width: 767px) {
  .contact-hero {
    padding: 60px 0 52px;
  }

  .contact-main {
    padding: 52px 0 60px;
  }

  .contact-form-card {
    padding: 24px 20px;
  }

  .contact-map {
    padding: 52px 0 60px;
  }

  .map-wrapper {
    height: 300px;
  }

  .contact-taproom {
    padding: 56px 0 64px;
  }

  .taproom-col {
    margin-bottom: 28px;
  }

  .taproom-col:last-child {
    margin-bottom: 0;
  }
}

.visit-hero {
  background: var(--utc-dark);
  padding: 88px 0 80px;
  text-align: center;
}

.visit-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.visit-hero .hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, .55);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── Info cards + Map section (light grey) ─── */
.visit-info {
  background: #f7f7f9;
  padding: 80px 0 88px;
}

/* Info cards (left column) */
.info-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .10), 0 2px 4px rgba(0, 0, 0, .10);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.info-card:last-child {
  margin-bottom: 0;
}

.info-icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #fef3c6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon-box svg {
  width: 24px;
  height: 24px;
  color: #d97706;
}

.info-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--utc-text);
  letter-spacing: -.02em;
  margin-bottom: 6px;
  line-height: 1.4;
}

.info-card-body p,
.info-card-body a {
  font-size: 15px;
  color: #4a5565;
  line-height: 1.65;
  display: block;
  margin: 0;
  text-decoration: none;
}

.info-card-body a:hover {
  color: var(--utc-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Map placeholder / embed (right column) */
.map-col-inner {
  background: #d1d5dc;
  border-radius: 10px;
  height: 100%;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.map-col-inner iframe {
  width: 100%;
  flex: 1;
  border: none;
  display: block;
}

/* ─── What to Expect section (white) ─── */
.visit-expect {
  background: #fff;
  padding: 80px 0 88px;
}

.visit-expect h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--utc-text);
  text-align: center;
  letter-spacing: -.02em;
  margin-bottom: 56px;
}

.expect-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--utc-text);
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.expect-item p {
  font-size: 15px;
  color: #4a5565;
  line-height: 1.7;
  margin: 0;
}

/* ─── Responsive ─── */
@media (max-width: 991px) {
  .map-col-inner {
    min-height: 360px;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .visit-hero {
    padding: 64px 0 56px;
  }

  .visit-info {
    padding: 56px 0 64px;
  }

  .visit-expect {
    padding: 56px 0 64px;
  }

  .expect-item {
    margin-bottom: 36px;
  }

  .expect-item:last-child {
    margin-bottom: 0;
  }
}

.visit-info .container {
  max-width: 1125px;
}

li.menu-item:hover .dropdown-menu a {
  color: #000;
  line-height: 1;
}

li.menu-item:hover .dropdown-menu {
  display: block;
}

.bat-hero {
  background: var(--utc-dark);
  padding: 88px 0 80px;
  text-align: center;
}

.bat-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.bat-hero .hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, .55);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── Form section (white) ─── */
.bat-form-section {
  background: #fff;
  padding: 80px 0 0;
}

.bat-form-wrap {
  max-width: 768px;
  margin: 0 auto;
}

/* Form card */
.bat-form-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 10px;
  padding: 33px;
}

/* Field label with icon */
.bat-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--utc-text);
  margin-bottom: 8px;
  letter-spacing: .01em;
}

.bat-label .lbl-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #717182;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bat-label .lbl-icon svg {
  width: 16px;
  height: 16px;
}

.bat-label .req {
  color: #e17100;
  margin-left: 1px;
}

/* Inputs / select / textarea */
.bat-control {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 14px;
  font-family: var(--font-base);
  font-size: 15px;
  color: var(--utc-text);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .18);
  border-radius: 8px;
  outline: none;
  transition: border-color .18s, box-shadow .18s;
  appearance: none;
  -webkit-appearance: none;
}

.bat-control::placeholder {
  color: #a0a0b0;
}

.bat-control:focus {
  border-color: #030213;
  box-shadow: 0 0 0 3px rgba(3, 2, 19, .10);
}

.bat-control.is-invalid {
  border-color: #dc3545;
}

.bat-control.is-valid {
  border-color: #198754;
}

/* Select arrow */
.bat-select-wrap {
  position: relative;
}

.bat-select-wrap .bat-control {
  padding-right: 36px;
  cursor: pointer;
}

.bat-select-wrap::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #717182;
  pointer-events: none;
}

/* Textarea */
.bat-textarea {
  height: 114px;
  padding: 12px 14px;
  resize: vertical;
  line-height: 1.55;
}

/* Date input */
.bat-control[type="date"] {
  padding: 0 14px;
  color: var(--utc-text);
}

.bat-control[type="date"]::-webkit-calendar-picker-indicator {
  opacity: .5;
  cursor: pointer;
}

/* Form grid */
.bat-field-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 575px) {
  .bat-field-group {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.bat-field {
  display: flex;
  flex-direction: column;
}

/* Submit button */
.bat-submit-btn {
  display: block;
  width: 100%;
  height: 52px;
  background: #030213;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: var(--font-base);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  transition: background .2s, opacity .2s;
  margin-top: 28px;
}

.bat-submit-btn:hover {
  background: #1a1832;
}

.bat-submit-btn:active {
  opacity: .88;
}

/* Helper text */
.bat-helper {
  text-align: center;
  font-size: 14px;
  color: #717182;
  margin-top: 16px;
  line-height: 1.5;
}

/* Field validation message */
.bat-err {
  font-size: 12px;
  color: #dc3545;
  margin-top: 5px;
  display: none;
}

.bat-control.is-invalid~.bat-err {
  display: block;
}

/* ─── Info cards (grey) ─── */
.bat-info-section {
  background: #ececf0;
  padding: 0 0 80px;
}

.bat-info-cards {
  max-width: 768px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 575px) {
  .bat-info-cards {
    grid-template-columns: 1fr;
  }
}

.bat-info-card {
  background: #ececf0;
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 10px;
  padding: 24px;
}

.bat-info-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--utc-text);
  letter-spacing: -.01em;
  margin-bottom: 10px;
  line-height: 1.3;
}

.bat-info-card p {
  font-size: 14px;
  color: #4a5565;
  line-height: 1.65;
  margin: 0;
}

.bat-info-card p a {
  color: var(--utc-text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── Success toast ─── */
.bat-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #030213;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 9999;
  white-space: nowrap;
}

.bat-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 767px) {
  .bat-hero {
    padding: 64px 0 56px;
  }

  .bat-form-section {
    padding: 56px 0 0;
  }

  .bat-info-section {
    padding: 0 0 56px;
  }

  .bat-form-card {
    padding: 24px 20px;
  }
}

.tap-hero {
  background: #fff;
  padding: 72px 0 48px;
  text-align: center;
}

.tap-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--utc-text);
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.tap-hero .hero-sub {
  font-size: 16px;
  color: #717182;
  margin: 0 auto;
}

/* ─── Beer list section ─── */
.tap-list {
  background: #fff;
  padding: 0 0 88px;
}

.tap-count {
  font-size: 14px;
  color: #717182;
  margin-bottom: 24px;
  letter-spacing: .01em;
}

/* ─── Beer card ─── */
.beer-card {
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  background: #fff;
  height: 100%;
}

/* Left: beer photo */
.beer-card-img {
  width: 168px;
  min-width: 168px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: #d1d5dc;
}

body .beer-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right: beer info */
.beer-card-body {
  padding: 24px;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Title row */
.beer-card-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.beer-card-name {
  font-size: 24px;
  font-weight: 500;
  color: var(--utc-text);
  letter-spacing: .003em;
  line-height: 1.3;
  margin: 0;
}

.beer-card-type {
  font-size: 14px;
  color: #717182;
  margin: 4px 0 0;
  line-height: 1.4;
}

/* Tap badge */
.tap-badge {
  display: inline-block;
  background: #030213;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  padding: 5px 12px 6px;
  border-radius: 9999px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Description */
.beer-card-desc {
  font-size: 16px;
  color: #717182;
  line-height: 1.5;
  margin: 12px 0 16px;
}

/* ABV / IBU row */
.beer-card-stats {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: #717182;
  margin-bottom: 16px;
  line-height: 1.4;
}

.beer-card-stats strong {
  color: var(--utc-text);
  font-weight: 400;
}

/* Tasting Notes */
.beer-section-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--utc-text);
  margin-bottom: 8px;
  display: block;
}

.beer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.beer-tag {
  background: #ececf0;
  border-radius: 4px;
  font-size: 12px;
  color: var(--utc-text);
  padding: 4px 8px;
  line-height: 1.4;
  white-space: nowrap;
}

/* Pairs Well With */
.beer-pairs {
  font-size: 14px;
  color: #717182;
  line-height: 1.55;
  margin: 0;
}

/* Card grid */
.beer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 991px) {
  .beer-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile card: stack image on top */
@media (max-width: 575px) {
  .beer-card {
    flex-direction: column;
  }

  .beer-card-img {
    width: 100%;
    min-width: unset;
    height: 200px;
    position: relative;
  }

  .beer-card-img img {
    position: absolute;
  }

  .beer-card-name {
    font-size: 20px;
  }
}

/* ─── Responsive ─── */
@media (max-width: 767px) {
  .tap-hero {
    padding: 56px 0 36px;
  }

  .tap-list {
    padding: 0 0 56px;
  }
}

.tap-list .container {
  max-width: 1100px;
}