﻿/*
 * THOLCH Components CSS
 * Shared component and page styling used across all views.
 * Breakpoint-specific layout belongs in mobile.css, tablet.css, or desktop.css.
 */
a {
  color: var(--tholch-amber);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover,
a:focus {
  color: var(--tholch-green);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--tholch-gold);
  outline-offset: 4px;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.65em;
  color: var(--tholch-ink);
  font-family: var(--tholch-font-heading);
  line-height: 1.12;
}

p {
  margin: 0 0 1.2em;
}

.wp-site-blocks,
.site {
  min-height: 100vh;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 0.65rem 0.9rem;
  clip: auto;
  color: #fff;
  background: var(--tholch-green);
}

.container {
  width: min(100% - 32px, var(--tholch-container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(31, 27, 23, 0.94);
  border-bottom: 1px solid rgba(255, 250, 242, 0.14);
  box-shadow: 0 16px 36px rgba(31, 27, 23, 0.16);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.site-branding {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  flex: 0 0 auto;
  min-width: 0;
}

.site-branding__text {
  display: grid;
  max-width: min(58vw, 190px);
  min-width: 0;
}

.site-branding .custom-logo-link {
  display: inline-flex;
  max-width: min(42vw, 170px);
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.site-branding .custom-logo-link:not(:has(img)) {
  line-height: 0.9;
}

.custom-logo {
  display: block;
  max-width: 150px;
  height: auto;
}

.site-branding .custom-logo {
  width: auto;
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
  filter: none;
}

.site-title {
  margin: 0;
  font-family: var(--tholch-font-body);
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.site-title a {
  color: #fffaf2;
  text-decoration: none;
}

.site-description {
  margin: 0.1rem 0 0;
  color: rgba(255, 250, 242, 0.68);
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-branding__text .site-description {
  display: none;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  color: #fffaf2;
  background: rgba(255, 250, 242, 0.08);
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: var(--tholch-radius);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible,
.menu-toggle[aria-expanded="true"] {
  color: var(--tholch-ink);
  background: var(--tholch-gold);
  border-color: var(--tholch-gold);
}

.menu-toggle__bars,
.menu-toggle__bars::before,
.menu-toggle__bars::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle__bars {
  position: relative;
}

.menu-toggle__bars::before,
.menu-toggle__bars::after {
  position: absolute;
  left: 0;
}

.menu-toggle__bars::before {
  top: -7px;
}

.menu-toggle__bars::after {
  top: 7px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars::before {
  transform: translateY(7px) rotate(90deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars::after {
  opacity: 0;
}

.primary-menu,
.primary-menu ul {
  display: flex;
  align-items: center;
  gap: clamp(0.95rem, 2vw, 1.65rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu--mobile {
  display: none;
}

.primary-menu a {
  display: block;
  max-width: 100%;
  color: #fffaf2;
  font-size: clamp(0.78rem, 0.9vw, 0.94rem);
  font-weight: 900;
  overflow-wrap: break-word;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.2;
  transition: color 160ms ease;
}

.primary-menu a:hover,
.primary-menu a:focus,
.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a {
  color: var(--nav-hover-color, var(--tholch-gold));
}

.primary-menu .menu-item--cta > a {
  padding: 0.7rem 0.95rem;
  color: var(--tholch-ink);
  background: var(--tholch-gold);
  border: 1px solid var(--tholch-gold);
  border-radius: var(--tholch-radius);
  box-shadow: 0 10px 22px rgba(197, 139, 44, 0.2);
}

.primary-menu .menu-item--cta > a:hover,
.primary-menu .menu-item--cta > a:focus {
  color: #fffaf2;
  background: var(--tholch-amber);
  border-color: var(--tholch-amber);
}

.hero {
  display: grid;
  align-items: center;
  min-height: calc(100vh - 84px);
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: linear-gradient(125deg, rgba(52, 71, 54, 0.95), rgba(31, 27, 23, 0.90));
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.hero-kicker,
.entry-meta,
.archive-description,
.card-meta {
  color: var(--tholch-gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(3rem, 8vw, 6.5rem);
}

.hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-panel {
  padding: clamp(1.5rem, 4vw, 2rem);
  background: rgba(255, 250, 242, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--tholch-radius);
  box-shadow: var(--tholch-shadow);
  color: var(--tholch-ink);
}

.hero-panel h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.button,
.wp-block-button__link,
button[type="submit"],
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.15rem;
  color: #fff;
  background: var(--tholch-amber);
  border: 0;
  border-radius: var(--tholch-radius);
  font-weight: 800;
  line-height: 1.15;
  max-width: 100%;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  overflow-wrap: break-word;
  cursor: pointer;
}

.button:hover,
.button:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus,
button[type="submit"]:hover,
button[type="submit"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  color: #fff;
  background: var(--tholch-green);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="number"],
textarea,
select {
  width: 100%;
  max-width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.8rem;
  color: var(--tholch-ink);
  background: #fffaf2;
  border: 1px solid var(--tholch-border);
  border-radius: var(--tholch-radius);
  font: inherit;
}

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

.site-main {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.front-page {
  padding: 0;
}

.home-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: end;
  padding: clamp(5rem, 18vw, 8rem) 0 clamp(2rem, 10vw, 5rem);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(150deg, rgba(13, 18, 14, 0.28), rgba(31, 27, 23, 0.92) 68%),
    var(--hero-image, linear-gradient(135deg, #2f3d2d, #1f1b17 54%, #9b3f25));
  background-position: center;
  background-size: cover;
}

.home-hero::before {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 42%;
  background: linear-gradient(0deg, rgba(31, 27, 23, 0.96), rgba(31, 27, 23, 0));
  content: "";
}

.home-hero__inner {
  max-width: 980px;
  margin-inline: auto;
}

.home-hero h1 {
  max-width: 780px;
  margin-bottom: 0.25em;
  color: #fff;
  font-family: var(--tholch-font-body);
  font-size: clamp(4rem, 21vw, 9rem);
  font-weight: 950;
  line-height: 0.84;
  text-transform: uppercase;
}

.home-hero__lede {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 4vw, 1.35rem);
  font-weight: 650;
}

.home-section {
  padding: clamp(3.5rem, 12vw, 7rem) 0;
}

.section-kicker {
  margin-bottom: 0.9rem;
  color: var(--tholch-amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-hero .section-kicker,
.tholch-home-hero .section-kicker,
.beer-archive-hero .section-kicker,
.single-beer-hero .section-kicker,
.out-there-hero .section-kicker,
.single-out-there-hero .section-kicker,
.location-hero .section-kicker,
.updates-hero .section-kicker,
.single-update-hero .section-kicker,
.trade-hero .section-kicker,
.contact-hero .section-kicker,
.tholch-find-section .section-kicker,
.tholch-trade-section .section-kicker,
.tholch-social-section .section-kicker,
.contact-trade-cta .section-kicker,
.about-cta .section-kicker {
  color: #fffaf2;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(1.8rem, 6vw, 3rem);
}

.section-heading h2,
.split-layout h2,
.find-panel h2,
.story-panel h2,
.trade-grid h2,
.social-panel h2,
.contact-panel h2 {
  font-family: var(--tholch-font-body);
  font-size: clamp(2.25rem, 9vw, 5rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button-row .button {
  flex: 1 1 180px;
}

.reveal-on-scroll {
  opacity: 1;
  transform: none;
}

.js-scroll-effects .reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js-scroll-effects .reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.button--light {
  color: var(--tholch-ink);
  background: #fffaf2;
}

.button--light:hover,
.button--light:focus {
  color: #fff;
  background: var(--tholch-amber);
}

.button--ghost {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.button--ghost:hover,
.button--ghost:focus {
  color: var(--tholch-ink);
  background: #fffaf2;
}

.button--dark {
  background: var(--tholch-ink);
}

.brand-statement {
  background: #fffaf2;
}

.split-layout,
.find-panel,
.trade-grid,
.social-panel {
  display: grid;
  gap: clamp(1.5rem, 7vw, 4rem);
}

.statement-copy {
  max-width: 690px;
  color: #3a332c;
  font-size: clamp(1.05rem, 3vw, 1.32rem);
}

.feature-grid {
  display: grid;
  gap: 1rem;
}

.feature-card,
.event-card,
.placeholder-panel {
  background: var(--tholch-surface);
  border: 1px solid var(--tholch-border);
  border-radius: var(--tholch-radius);
  box-shadow: var(--tholch-shadow);
}

.feature-card {
  overflow: hidden;
}

.feature-card__media {
  display: grid;
  min-height: 220px;
  background:
    linear-gradient(135deg, rgba(197, 139, 44, 0.30), rgba(52, 71, 54, 0.28)),
    #251f19;
  text-decoration: none;
}

.feature-card__media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.feature-card__body,
.event-card,
.placeholder-panel {
  padding: clamp(1rem, 5vw, 1.35rem);
}

.feature-card h3,
.event-card h3 {
  margin-bottom: 0.45rem;
  font-family: var(--tholch-font-body);
  font-size: clamp(1.45rem, 5vw, 2rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.feature-card h3 a,
.event-card h3 a,
.link-list a {
  color: var(--tholch-ink);
  text-decoration: none;
}

.feature-card h3 a:hover,
.feature-card h3 a:focus,
.event-card h3 a:hover,
.event-card h3 a:focus,
.link-list a:hover,
.link-list a:focus {
  color: var(--tholch-amber);
}

.find-section,
.trade-section {
  color: #fff;
  background: var(--tholch-green);
}

.find-panel,
.trade-grid {
  align-items: center;
}

.find-panel h2,
.trade-grid h2,
.social-panel h2 {
  color: #fff;
}

.find-panel p,
.trade-grid p,
.social-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.link-list {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
}

.link-list a {
  display: block;
  padding: 0.8rem 0;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  font-weight: 850;
  text-transform: uppercase;
}

.community-section {
  background:
    linear-gradient(90deg, rgba(141, 75, 34, 0.10), transparent 42%),
    var(--tholch-bg);
}

.event-stack {
  display: grid;
  gap: 1rem;
}

.story-panel,
.contact-panel {
  max-width: 980px;
}

.story-panel p,
.contact-panel p {
  max-width: 700px;
  font-size: clamp(1.05rem, 3vw, 1.28rem);
}

.brothers-section {
  background: #e9d8b9;
}

.trade-section {
  background:
    linear-gradient(135deg, rgba(155, 63, 37, 0.95), rgba(31, 27, 23, 0.96)),
    var(--tholch-ink);
}

.social-section {
  background: #1f1b17;
}

.social-panel {
  align-items: center;
}

.contact-cta {
  background: #fffaf2;
}

.contact-panel {
  text-align: left;
}

.text-link {
  color: var(--tholch-amber);
  font-weight: 900;
  text-transform: uppercase;
  text-decoration-thickness: 0.12em;
}

.has-age-gate {
  overflow: hidden;
}

.has-cookie-modal {
  overflow: hidden;
}

.tholch-age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 5vw, 2rem);
  color: #fffaf2;
  background:
    radial-gradient(circle at 80% 15%, rgba(197, 139, 44, 0.32), transparent 22rem),
    linear-gradient(135deg, rgba(52, 71, 54, 0.96), rgba(31, 27, 23, 0.98));
}

.tholch-age-gate[hidden] {
  display: none;
}

.tholch-age-gate__panel {
  width: min(100%, 560px);
  padding: clamp(1.35rem, 6vw, 2.25rem);
  background: rgba(31, 27, 23, 0.72);
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: var(--tholch-radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.tholch-age-gate__brand,
.tholch-age-gate__question {
  color: var(--tholch-gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tholch-age-gate h2 {
  color: #fffaf2;
  font-family: var(--tholch-font-body);
  font-size: clamp(2.25rem, 12vw, 4.5rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.tholch-age-gate p {
  color: rgba(255, 250, 242, 0.84);
  font-weight: 750;
}

.tholch-age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.tholch-age-gate__notice {
  margin: 1rem 0 0;
  font-size: clamp(0.82rem, 3vw, 0.95rem);
  line-height: 1.45;
}

.tholch-age-gate__notice a {
  color: #fffaf2;
  font-weight: 950;
  text-decoration: underline;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.18em;
}

.tholch-age-gate__message {
  margin: 1rem 0 0;
  color: #fffaf2;
}

.tholch-cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 900;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.tholch-cookie-banner[hidden],
.tholch-cookie-modal[hidden] {
  display: none;
}

.tholch-cookie-banner__content {
  width: min(100%, 980px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  color: #fffaf2;
  background: rgba(31, 27, 23, 0.96);
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: var(--tholch-radius);
  box-shadow: 0 18px 50px rgba(31, 27, 23, 0.28);
  pointer-events: auto;
}

.tholch-cookie-banner__title {
  margin: 0 0 0.25rem;
  color: var(--tholch-gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tholch-cookie-banner p:not(.tholch-cookie-banner__title) {
  margin: 0;
  color: rgba(255, 250, 242, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.tholch-cookie-banner__actions,
.tholch-cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

.tholch-cookie-banner__actions .button,
.tholch-cookie-modal__actions .button {
  min-height: 42px;
  padding: 0.65rem 0.85rem;
  font-size: 0.72rem;
}

.tholch-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 5vw, 2rem);
  background: rgba(31, 27, 23, 0.68);
}

.tholch-cookie-modal__panel {
  width: min(100%, 660px);
  max-height: min(86vh, 760px);
  overflow-y: auto;
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 4vw, 1.5rem);
  color: #1f1b17;
  background: #fffaf2;
  border: 1px solid rgba(31, 27, 23, 0.16);
  border-radius: var(--tholch-radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.tholch-cookie-modal__panel:focus {
  outline: 3px solid var(--tholch-gold);
  outline-offset: 3px;
}

.tholch-cookie-modal__head {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
}

.tholch-cookie-modal__head h2 {
  margin: 0;
  font-family: var(--tholch-font-body);
  font-size: clamp(2rem, 8vw, 3.4rem);
  font-weight: 950;
  line-height: 0.94;
  text-transform: uppercase;
}

.tholch-cookie-modal__close {
  width: 42px;
  height: 42px;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  color: #fffaf2;
  background: #1f1b17;
  border: 0;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.tholch-cookie-modal__close:focus-visible,
.footer-legal-links button:focus-visible {
  outline: 3px solid var(--tholch-gold);
  outline-offset: 3px;
}

.tholch-cookie-choice {
  display: grid;
  gap: 0.6rem;
  padding: 0.85rem;
  background: rgba(197, 139, 44, 0.1);
  border: 1px solid rgba(31, 27, 23, 0.12);
  border-radius: var(--tholch-radius);
}

fieldset.tholch-cookie-choice {
  margin: 0;
  padding-top: 0.85rem;
}

.tholch-cookie-choice h3,
.tholch-cookie-choice legend {
  margin: 0;
  color: #1f1b17;
  font-family: var(--tholch-font-body);
  font-size: 1.3rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.tholch-cookie-choice legend {
  float: left;
  width: 100%;
  padding: 0;
}

.tholch-cookie-choice legend + * {
  clear: both;
}

.tholch-cookie-choice legend.screen-reader-text {
  float: none;
  width: 1px;
  padding: 0;
  margin: -1px;
}

.tholch-cookie-choice legend.screen-reader-text + * {
  clear: none;
}

.tholch-cookie-choice p {
  margin: 0;
  color: rgba(31, 27, 23, 0.74);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.4;
}

.tholch-cookie-choice span {
  width: fit-content;
  padding: 0.25rem 0.5rem;
  color: #fffaf2;
  background: #344736;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tholch-cookie-choice label {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  font-weight: 850;
}

.tholch-cookie-modal__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.tholch-cookie-modal__links a {
  color: #344736;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tholch-home {
  overflow: hidden;
}

.tholch-home-hero {
  align-items: center;
  min-height: calc(100svh - 72px);
  padding: clamp(5rem, 18vw, 9rem) 0 clamp(3rem, 10vw, 5rem);
  background:
    radial-gradient(circle at 80% 20%, rgba(197, 139, 44, 0.38), transparent 28rem),
    linear-gradient(145deg, rgba(31, 27, 23, 0.36), rgba(31, 27, 23, 0.94) 70%),
    var(--hero-image, linear-gradient(135deg, #344736, #1f1b17 48%, #8d4b22));
  background-position: center;
  background-size: cover;
}

.tholch-home-hero__inner {
  display: grid;
  gap: clamp(2rem, 8vw, 4rem);
  align-items: end;
}

.tholch-home-hero__content {
  max-width: 920px;
}

.tholch-home-hero h1 {
  max-width: 860px;
  font-size: clamp(4.2rem, 18vw, 10.5rem);
  letter-spacing: 0;
}

.tholch-home-hero__lede {
  max-width: 740px;
  color: rgba(255, 250, 242, 0.88);
  font-size: clamp(1.12rem, 4vw, 1.55rem);
  font-weight: 700;
  line-height: 1.35;
}

.tholch-home-hero__badge {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  max-width: 300px;
}

.tholch-home-hero__badge span,
.tholch-home-hero__badge a {
  display: grid;
  min-height: 74px;
  place-items: center;
  color: #fffaf2;
  background: rgba(255, 250, 242, 0.12);
  border: 1px solid rgba(255, 250, 242, 0.28);
  border-radius: var(--tholch-radius);
  font-size: clamp(1.35rem, 8vw, 2.8rem);
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
}

.tholch-home-hero__badge a:hover,
.tholch-home-hero__badge a:focus {
  color: #1f1b17;
  background: #fffaf2;
}

.tholch-quick-path-section {
  padding: clamp(2rem, 6vw, 3.5rem) 0;
  background: #fffaf2;
  border-bottom: 1px solid var(--tholch-border);
}

.tholch-quick-path__heading {
  display: grid;
  gap: 0.35rem;
  margin-bottom: clamp(1rem, 4vw, 1.5rem);
}

.tholch-quick-path__heading h2 {
  margin: 0;
  font-family: var(--tholch-font-body);
  font-size: 2rem;
  font-weight: 950;
  line-height: 0.94;
  text-transform: uppercase;
}

.tholch-quick-path-grid {
  display: grid;
  gap: 0.85rem;
}

.tholch-quick-path-card {
  display: grid;
  gap: 0.8rem;
  align-content: start;
  padding: clamp(1rem, 4vw, 1.25rem);
  background: var(--tholch-bg);
  border: 1px solid var(--tholch-border);
  border-radius: var(--tholch-radius);
}

.tholch-quick-path-card h3 {
  margin: 0;
  font-family: var(--tholch-font-body);
  font-size: 1.45rem;
  font-weight: 950;
  line-height: 0.95;
  text-transform: uppercase;
}

.tholch-quick-path-card p {
  margin: 0;
  color: #3a332c;
  font-weight: 750;
  line-height: 1.45;
}

.tholch-quick-path-card .button {
  justify-self: start;
  margin-top: 0.15rem;
}

.tholch-statement,
.tholch-find-panel,
.tholch-trade-panel,
.tholch-social-panel {
  display: grid;
  gap: clamp(1.8rem, 7vw, 4rem);
}

.tholch-statement-section {
  background: #fffaf2;
}

.tholch-statement h2,
.tholch-section-heading h2,
.tholch-find-panel h2,
.tholch-split-heading h2,
.tholch-story-panel h2,
.tholch-trade-panel h2,
.tholch-social-panel h2,
.tholch-contact-panel h2 {
  font-family: var(--tholch-font-body);
  font-size: clamp(2.25rem, 10vw, 5.75rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.tholch-beers-section {
  background:
    linear-gradient(90deg, rgba(197, 139, 44, 0.12), transparent 45%),
    var(--tholch-bg);
}

.tholch-card-grid {
  display: grid;
  gap: 1rem;
}

.tholch-card {
  overflow: hidden;
  color: var(--tholch-ink);
  background: var(--tholch-surface);
  border: 1px solid var(--tholch-border);
  border-radius: var(--tholch-radius);
  box-shadow: var(--tholch-shadow);
}

.tholch-beer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.tholch-beer-card .tholch-card__body {
  flex: 0 0 auto;
  padding: 0.9rem 1rem 1rem;
  background: var(--tholch-surface);
  border: 1px solid var(--tholch-border);
  border-radius: var(--tholch-radius);
  box-shadow: var(--tholch-shadow);
  text-align: center;
}

.tholch-beer-card__name {
  margin: 0;
  font-size: clamp(1.05rem, 3vw, 1.45rem);
}

.tholch-card__media {
  position: relative;
  display: grid;
  min-height: 240px;
  aspect-ratio: 4 / 3;
  place-items: center;
  overflow: hidden;
  background: var(
    --beer-card-background,
    linear-gradient(135deg, rgba(197, 139, 44, 0.38), rgba(52, 71, 54, 0.28)),
    #251f19
  );
  color: #fffaf2;
  text-decoration: none;
}

.tholch-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Shared beer cards use one dynamic image source; breakpoints only resize the frame. */
.tholch-beer-card .tholch-beer-card__media img {
  display: block;
  width: auto;
  height: 86%;
  max-width: 90%;
  max-height: 86%;
  object-fit: contain;
  object-position: center center;
}

.tholch-beer-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(380px, 34vw, 520px);
  padding: 1.6rem 0.9rem 2.4rem;
  border: 1px solid var(--tholch-border);
  border-radius: var(--tholch-radius);
  box-shadow: var(--tholch-shadow);
}

.tholch-event-card .tholch-card__media img {
  object-position: var(--event-card-image-position, center center);
}

.tholch-card__placeholder {
  padding: 1rem;
  color: #000000;
  font-size: clamp(1.55rem, 8vw, 3rem);
  font-weight: 950;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}

.tholch-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(1rem, 5vw, 1.35rem);
}

.tholch-card__meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-content: flex-start;
  min-height: 6.4rem;
  margin-bottom: 0.75rem;
}

.tholch-card__meta-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.25rem 0.55rem;
  color: var(--tholch-ink);
  background: rgba(197, 139, 44, 0.18);
  border: 1px solid rgba(141, 75, 34, 0.18);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tholch-card h3 {
  margin-bottom: 0.55rem;
  font-family: var(--tholch-font-body);
  font-size: clamp(1.45rem, 6vw, 2.2rem);
  font-weight: 950;
  line-height: 0.95;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.tholch-card h3 a {
  color: var(--tholch-ink);
  text-decoration: none;
}

.tholch-card h3 a:hover,
.tholch-card h3 a:focus {
  color: var(--tholch-amber);
}

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

.tholch-card__link {
  width: fit-content;
  margin-top: auto;
  padding-top: 1.15rem;
  color: var(--tholch-amber);
  font-size: 1.05rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
  text-transform: uppercase;
}

.tholch-card__link:hover,
.tholch-card__link:focus {
  color: var(--tholch-green);
}

.beer-archive-hero {
  padding: clamp(3.5rem, 10vw, 6rem) 0 clamp(2rem, 7vw, 3.5rem);
  color: #fffaf2;
  background:
    radial-gradient(circle at 82% 12%, rgba(197, 139, 44, 0.32), transparent 24rem),
    linear-gradient(135deg, rgba(52, 71, 54, 0.96), rgba(31, 27, 23, 0.98));
}

.beer-archive-hero h1 {
  max-width: 880px;
  color: #fffaf2;
  font-family: var(--tholch-font-body);
  font-weight: 950;
  line-height: 0.92;
  text-transform: uppercase;
}

.beer-archive-hero p {
  max-width: 680px;
  color: rgba(255, 250, 242, 0.78);
  font-size: clamp(1.05rem, 3vw, 1.3rem);
  font-weight: 700;
}

.beer-archive-content {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.single-beer {
  padding: 0;
}

.single-beer-hero {
  position: relative;
  isolation: isolate;
  min-height: auto;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fffaf2;
  background:
    radial-gradient(circle at 82% 12%, rgba(197, 139, 44, 0.34), transparent 26rem),
    linear-gradient(135deg, rgba(52, 71, 54, 0.96), rgba(31, 27, 23, 0.98));
}

.single-beer-hero__background {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.single-beer-hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-beer-hero.has-image::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(140deg, rgba(31, 27, 23, 0.72), rgba(31, 27, 23, 0.94) 66%);
  content: "";
}

.single-beer-hero__inner {
  display: grid;
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: center;
  justify-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  text-align: center;
}

.single-beer-hero__content {
  max-width: 880px;
}

.single-beer-hero h1 {
  margin-inline: auto;
  max-width: 820px;
  color: var(--beer-hero-title-color, #fffaf2);
  font-family: var(--tholch-font-body);
  font-size: clamp(4rem, 18vw, 10rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.84;
  text-transform: uppercase;
}

.single-beer-hero__lede {
  margin-inline: auto;
  max-width: 720px;
  color: rgba(255, 250, 242, 0.86);
  font-size: clamp(1.1rem, 4vw, 1.45rem);
  font-weight: 750;
  line-height: 1.35;
}

.single-beer-hero .button-row {
  justify-content: center;
}

.single-beer-hero__product {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: clamp(1rem, 5vw, 1.5rem);
  background: rgba(255, 250, 242, 0.10);
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: var(--tholch-radius);
  backdrop-filter: blur(10px);
}

.single-beer-hero__product img {
  max-height: min(58vh, 520px);
  width: auto;
  object-fit: contain;
}

.single-beer-details {
  position: relative;
  isolation: isolate;
  padding: clamp(3.5rem, 10vw, 6.5rem) 0;
  overflow: hidden;
  background: var(--beer-details-background-color, #fffaf2);
}

.single-beer-details.has-background-image {
  background:
    var(--beer-details-background-image),
    var(--beer-details-background-color, #fffaf2);
  background-position: center;
  background-size: cover;
}

.single-beer-details.has-background-image::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(255, 250, 242, 0.84);
  content: "";
}

.single-beer-details.has-no-background-overlay::before {
  content: none;
}

.single-beer-details__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: stretch;
  width: min(100%, 980px);
  margin-inline: auto;
}

.single-beer-details.has-details-product .single-beer-details__grid {
  grid-template-columns: minmax(160px, 0.45fr) minmax(0, 0.9fr);
  width: min(100%, 920px);
}

.single-beer-details.layout-image-left-content-right .single-beer-details__product {
  grid-column: 1;
  grid-row: 1;
}

.single-beer-details.layout-image-left-content-right .single-beer-details__content {
  grid-column: 2;
  grid-row: 1;
}

.single-beer-details.layout-content-left-image-right.has-details-product .single-beer-details__grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(160px, 0.45fr);
}

.single-beer-details.layout-content-left-image-right .single-beer-details__product {
  grid-column: 2;
  grid-row: 1;
}

.single-beer-details.layout-content-left-image-right .single-beer-details__content {
  grid-column: 1;
  grid-row: 1;
}

.single-beer-details.layout-image-top-content-bottom.has-details-product .single-beer-details__grid,
.single-beer-details.layout-content-top-image-bottom.has-details-product .single-beer-details__grid {
  grid-template-columns: minmax(0, 760px);
  width: min(100%, 760px);
}

.single-beer-details.layout-image-top-content-bottom .single-beer-details__product,
.single-beer-details.layout-image-top-content-bottom .single-beer-details__content,
.single-beer-details.layout-content-top-image-bottom .single-beer-details__product,
.single-beer-details.layout-content-top-image-bottom .single-beer-details__content {
  grid-column: 1;
}

.single-beer-details.layout-image-top-content-bottom .single-beer-details__product {
  grid-row: 1;
}

.single-beer-details.layout-image-top-content-bottom .single-beer-details__content {
  grid-row: 2;
}

.single-beer-details.layout-content-top-image-bottom .single-beer-details__content {
  grid-row: 1;
}

.single-beer-details.layout-content-top-image-bottom .single-beer-details__product {
  grid-row: 2;
}

.single-beer-details__product {
  display: grid;
  place-items: start center;
  min-width: 0;
  align-self: start;
}

.single-beer-details__product img {
  width: min(100%, var(--beer-details-product-width, 320px));
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.single-beer-details__placeholder {
  display: grid;
  width: min(100%, 280px);
  min-height: 220px;
  place-items: center;
  padding: 1rem;
  color: var(--tholch-ink);
  background: rgba(197, 139, 44, 0.24);
  border: 1px solid rgba(141, 75, 34, 0.22);
  border-radius: var(--tholch-radius);
  font-family: var(--tholch-font-body);
  font-size: clamp(1.55rem, 8vw, 3rem);
  font-weight: 950;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}

.single-beer-details__content {
  display: grid;
  gap: 1.25rem;
  align-content: start;
  min-width: 0;
  height: 100%;
}

.single-beer-copy h2 {
  max-width: 520px;
  font-family: var(--tholch-font-body);
  font-size: clamp(1.75rem, 4.6vw, 2.8rem);
  font-weight: 950;
  line-height: 0.94;
  text-transform: uppercase;
}

.single-beer-copy .section-kicker {
  color: var(--beer-details-kicker-color, var(--tholch-amber));
}

.single-beer-copy .entry-content {
  max-width: 760px;
  font-size: clamp(1.05rem, 3vw, 1.22rem);
}

.single-beer-specs {
  align-self: end;
  width: min(100%, 420px);
  margin-top: auto;
  padding: clamp(1rem, 5vw, 1.4rem);
  background: var(--tholch-bg);
  border: 1px solid var(--tholch-border);
  border-radius: var(--tholch-radius);
  box-shadow: var(--tholch-shadow);
}

.single-beer-spec-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.single-beer-about {
  margin-bottom: 1.3rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--tholch-border);
}

.single-beer-about:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.single-beer-about h2 {
  margin-bottom: 0.55rem;
  font-family: var(--tholch-font-body);
  font-size: 1.2rem;
  font-weight: 950;
  text-transform: uppercase;
}

.single-beer-about p {
  margin-bottom: 0;
  color: var(--tholch-ink);
  font-size: clamp(1rem, 2.4vw, 1.16rem);
  font-weight: 750;
  line-height: 1.45;
}

.single-beer-spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--tholch-border);
}

.single-beer-spec-list li:first-child {
  padding-top: 0;
}

.single-beer-spec-list span {
  color: var(--beer-stylebox-specs-color, var(--tholch-muted));
  font-size: inherit;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.single-beer-spec-list strong {
  color: var(--tholch-ink);
  font-weight: 950;
  text-align: right;
}

.single-beer-flavor {
  max-width: 520px;
  padding-top: 1.1rem;
  border-top: 1px solid var(--tholch-border);
}

.single-beer-flavor h2 {
  margin-bottom: 0.5rem;
  font-family: var(--tholch-font-body);
  font-size: 1.2rem;
  font-weight: 950;
  text-transform: uppercase;
}

.single-beer-flavor p {
  margin-bottom: 0;
}

.single-beer-cta {
  color: #fffaf2;
  background:
    radial-gradient(circle at 85% 0%, rgba(197, 139, 44, 0.32), transparent 24rem),
    linear-gradient(135deg, rgba(141, 75, 34, 0.96), rgba(31, 27, 23, 0.98));
  padding: clamp(3rem, 9vw, 5rem) 0;
}

.single-beer-cta__inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.single-beer-cta h2 {
  max-width: 780px;
  color: #fffaf2;
  font-family: var(--tholch-font-body);
  font-size: clamp(2rem, 8vw, 4.4rem);
  font-weight: 950;
  line-height: 0.94;
  text-transform: uppercase;
}

.out-there-section {
  background: #251f19;
  color: #fffaf2;
}

.out-there-section__heading {
  display: grid;
  gap: 1.25rem;
  align-items: end;
  margin-bottom: clamp(1.75rem, 5vw, 3rem);
}

.out-there-section__heading h2,
.out-there-hero h1,
.single-out-there-hero h1 {
  font-family: var(--tholch-font-body);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.88;
  text-transform: uppercase;
}

.out-there-section__heading h2 {
  max-width: 820px;
  color: #fffaf2;
  font-size: clamp(2.4rem, 8vw, 5.4rem);
}

.out-there-section__heading p:not(.section-kicker) {
  max-width: 720px;
  color: rgba(255, 250, 242, 0.74);
  font-size: clamp(1.05rem, 2.6vw, 1.3rem);
  font-weight: 750;
}

.out-there-grid {
  display: grid;
  gap: 1rem;
}

.out-there-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  color: var(--tholch-ink);
  background: var(--tholch-bg);
  border: 1px solid rgba(31, 27, 23, 0.14);
  border-radius: var(--tholch-radius);
  box-shadow: var(--tholch-shadow);
}

.out-there-card::before {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 3.2rem;
  height: 3.2rem;
  border: 2px solid rgba(197, 139, 44, 0.7);
  border-radius: 50%;
  content: "";
  opacity: 0.8;
  transform: rotate(-12deg);
}

.out-there-card__media {
  position: relative;
  display: grid;
  min-height: 250px;
  aspect-ratio: 4 / 3;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #344736, #1f1b17 60%, #8d4b22);
  color: #fffaf2;
  text-decoration: none;
}

.out-there-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
}

.out-there-card__media span {
  padding: 1rem;
  font-size: clamp(1.8rem, 8vw, 3.4rem);
  font-weight: 950;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}

.out-there-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(1rem, 4vw, 1.35rem);
}

.out-there-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.6rem;
  margin-bottom: 0.9rem;
}

.out-there-stamp {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.35rem 0.65rem;
  color: #1f1b17;
  background: rgba(197, 139, 44, 0.2);
  border: 1px solid rgba(141, 75, 34, 0.32);
  border-radius: 2px;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(-1.5deg);
}

.out-there-card__logo,
.single-out-there-side__logo {
  width: auto;
  max-width: min(128px, 38vw);
  max-height: 64px;
  height: auto;
  object-fit: contain;
}

.out-there-card h3 {
  margin-bottom: 0.65rem;
  font-family: var(--tholch-font-body);
  font-size: clamp(1.65rem, 5vw, 2.45rem);
  font-weight: 950;
  line-height: 0.92;
  text-transform: uppercase;
}

.out-there-card h3 a {
  color: inherit;
  text-decoration: none;
}

.out-there-card p {
  color: rgba(31, 27, 23, 0.78);
  font-size: 1.02rem;
  font-weight: 700;
}

.out-there-card__actions,
.out-there-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
}

.out-there-card__actions a,
.out-there-link-row a {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.45rem 0.7rem;
  color: var(--tholch-ink);
  background: rgba(197, 139, 44, 0.18);
  border: 1px solid rgba(141, 75, 34, 0.22);
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.out-there-card__actions a:hover,
.out-there-card__actions a:focus,
.out-there-link-row a:hover,
.out-there-link-row a:focus {
  color: #fffaf2;
  background: var(--tholch-green);
}

.out-there-card__actions .out-there-card__link {
  color: #fffaf2;
  background: var(--tholch-green);
  border-color: var(--tholch-green);
  box-shadow: 0 10px 24px rgba(31, 27, 23, 0.16);
}

.out-there-card__actions .out-there-card__link:hover,
.out-there-card__actions .out-there-card__link:focus {
  color: var(--tholch-ink);
  background: var(--tholch-gold);
  border-color: var(--tholch-gold);
}

.out-there-hero,
.single-out-there-hero {
  color: #fffaf2;
  background:
    linear-gradient(110deg, rgba(31, 27, 23, 0.92), rgba(52, 71, 54, 0.78)),
    #251f19;
}

.out-there-hero {
  padding: clamp(3.5rem, 10vw, 6rem) 0 clamp(2rem, 7vw, 3.5rem);
}

.out-there-hero h1 {
  max-width: 980px;
  color: var(--tholch-gold);
  font-size: clamp(4rem, 14vw, 9rem);
}

.out-there-hero p:not(.section-kicker) {
  max-width: 720px;
  color: rgba(255, 250, 242, 0.78);
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  font-weight: 750;
}

.out-there-archive-content,
.single-out-there-content-section {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  background: var(--tholch-bg);
}

.tholch-moments {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  color: #fffaf2;
  background:
    linear-gradient(135deg, rgba(31, 27, 23, 0.96), rgba(52, 71, 54, 0.9)),
    #251f19;
}

.tholch-moments__heading {
  display: grid;
  gap: 0.75rem;
  max-width: 860px;
  margin-bottom: clamp(1.5rem, 5vw, 2.6rem);
}

.tholch-moments__heading h2 {
  margin: 0;
  color: var(--tholch-gold);
  font-family: var(--tholch-font-body);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.86;
  text-transform: uppercase;
}

.tholch-moments__heading p:not(.section-kicker) {
  max-width: 720px;
  color: rgba(255, 250, 242, 0.78);
  font-size: clamp(1.02rem, 2.4vw, 1.25rem);
  font-weight: 760;
}

.tholch-moments__grid {
  display: grid;
  gap: clamp(0.6rem, 2vw, 1rem);
}

.tholch-moments__item {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #344736;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: var(--tholch-radius);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
}

.tholch-moments__item:nth-child(4n+2) {
  transform: rotate(0.6deg);
}

.tholch-moments__item:nth-child(4n+3) {
  transform: rotate(-0.5deg);
}

.tholch-moments__item img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.06);
}

.tholch-moment-lightbox-trigger {
  width: 100%;
  display: block;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: inherit;
  cursor: pointer;
}

.tholch-moment-lightbox-trigger:focus-visible {
  outline: 3px solid var(--tholch-gold);
  outline-offset: 3px;
}

.has-tholch-moment-lightbox,
body.has-tholch-moment-lightbox {
  overflow: hidden;
}

.tholch-moment-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 4vw, 1.5rem);
  background: rgba(0, 0, 0, 0.78);
}

.tholch-moment-lightbox[hidden] {
  display: none;
}

.tholch-moment-lightbox__dialog {
  position: relative;
  width: min(100%, 980px);
  display: grid;
  place-items: center;
}

.tholch-moment-lightbox__image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: min(82svh, 820px);
  object-fit: contain;
  background: #1f1b17;
  border: 1px solid rgba(255, 250, 242, 0.24);
  border-radius: var(--tholch-radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

.tholch-moment-lightbox__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  color: #1f1b17;
  background: var(--tholch-gold);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.34);
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
}

.tholch-moment-lightbox__close:hover,
.tholch-moment-lightbox__close:focus {
  color: #fffaf2;
  background: var(--tholch-rust);
}

.tholch-moment-lightbox__close:focus-visible {
  outline: 3px solid #fffaf2;
  outline-offset: 3px;
}

.tholch-moments__actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.5rem, 5vw, 2.5rem);
}

.tholch-moments__button {
  color: var(--tholch-ink);
  background: var(--tholch-gold);
  border-color: var(--tholch-gold);
}

.tholch-moments__button:hover,
.tholch-moments__button:focus {
  color: #fffaf2;
  background: var(--tholch-rust);
  border-color: var(--tholch-rust);
}

.out-there-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: clamp(1.5rem, 5vw, 2.5rem);
}

.out-there-filter a {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.45rem 0.75rem;
  color: var(--tholch-ink);
  background: rgba(197, 139, 44, 0.14);
  border: 1px solid rgba(141, 75, 34, 0.2);
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.out-there-filter a:hover,
.out-there-filter a:focus,
.out-there-filter a.is-active {
  color: #fffaf2;
  background: var(--tholch-ink);
}

.single-out-there-hero {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.single-out-there-hero__inner {
  display: grid;
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: center;
}

.single-out-there-hero h1 {
  max-width: 780px;
  margin-top: 0.8rem;
  color: var(--tholch-gold);
  font-size: clamp(3.6rem, 12vw, 8rem);
}

.single-out-there-hero__image {
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.2);
  border-radius: var(--tholch-radius);
  transform: rotate(1deg);
}

.single-out-there-hero__image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.single-out-there-layout {
  display: grid;
  gap: clamp(1.5rem, 5vw, 3rem);
}

.single-out-there-content {
  max-width: 760px;
  color: var(--tholch-ink);
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 720;
  line-height: 1.55;
}

.single-out-there-side {
  display: grid;
  align-content: start;
  gap: 1.2rem;
  padding: clamp(1rem, 4vw, 1.4rem);
  background: #fffaf2;
  border: 1px solid var(--tholch-border);
  border-radius: var(--tholch-radius);
  box-shadow: var(--tholch-shadow);
}

.location-archive {
  padding: 0;
}

.location-hero {
  color: #fffaf2;
  background:
    radial-gradient(circle at 82% 10%, rgba(197, 139, 44, 0.34), transparent 24rem),
    linear-gradient(135deg, rgba(52, 71, 54, 0.96), rgba(31, 27, 23, 0.98));
  padding: clamp(4rem, 12vw, 7rem) 0 clamp(2.5rem, 8vw, 4rem);
}

.location-hero__inner {
  display: grid;
  gap: clamp(1.5rem, 6vw, 3rem);
}

.location-hero h1 {
  max-width: 860px;
  color: #fffaf2;
  font-family: var(--tholch-font-body);
  font-size: clamp(3.6rem, 16vw, 8.5rem);
  font-weight: 950;
  line-height: 0.84;
  text-transform: uppercase;
}

.location-hero p {
  max-width: 680px;
  color: rgba(255, 250, 242, 0.82);
  font-size: clamp(1.05rem, 3vw, 1.28rem);
  font-weight: 700;
}

.location-hero__note {
  align-self: end;
  padding: clamp(1rem, 4vw, 1.35rem);
  background: rgba(255, 250, 242, 0.10);
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: var(--tholch-radius);
}

.location-hero__note p:last-child {
  margin-bottom: 0;
}

.location-map-section {
  padding: clamp(3rem, 9vw, 5.5rem) 0;
  background: #fffaf2;
}

.location-map__heading {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(1.4rem, 5vw, 2rem);
}

.location-map__heading h2 {
  max-width: 760px;
  font-family: var(--tholch-font-body);
  font-size: clamp(2.1rem, 8vw, 4.75rem);
  font-weight: 950;
  line-height: 0.9;
  text-transform: uppercase;
}

.location-map {
  position: relative;
  overflow: hidden;
  height: clamp(420px, 68vh, 720px);
  min-height: 420px;
  background: var(--tholch-bg);
  border: 1px solid var(--tholch-border);
  border-radius: var(--tholch-radius);
  box-shadow: var(--tholch-shadow);
  isolation: isolate;
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: auto;
  touch-action: auto;
}

.location-map__consent {
  min-height: inherit;
  height: 100%;
  display: grid;
  gap: 1rem;
  place-items: center;
  align-content: center;
  padding: clamp(1rem, 4vw, 2rem);
  color: #fffaf2;
  background:
    linear-gradient(135deg, rgba(31, 27, 23, 0.28), rgba(31, 27, 23, 0.82)),
    linear-gradient(135deg, #344736, #8d4b22);
  text-align: center;
}

.location-map__consent[hidden] {
  display: none;
}

.location-map__consent p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 250, 242, 0.86);
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  font-weight: 800;
}

.location-directory-section {
  padding: clamp(3rem, 9vw, 5.5rem) 0;
  background:
    linear-gradient(90deg, rgba(197, 139, 44, 0.10), transparent 44%),
    var(--tholch-bg);
}

.location-finder {
  display: grid;
  gap: clamp(1rem, 4vw, 1.5rem);
}

.location-finder__panel {
  display: grid;
  min-width: 0;
  gap: 1rem;
  align-content: start;
}

.location-finder__controls {
  min-width: 0;
}

.location-finder__map {
  min-width: 0;
}

.location-finder__prompt {
  display: grid;
  gap: 0.35rem;
  padding: clamp(1rem, 4vw, 1.2rem);
  background: #fffaf2;
  border: 1px solid var(--tholch-border);
  border-radius: var(--tholch-radius);
  box-shadow: var(--tholch-shadow);
}

.location-finder__prompt h2 {
  margin: 0;
  font-family: var(--tholch-font-body);
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

.location-finder__prompt p:not(.section-kicker) {
  margin: 0;
  color: var(--tholch-muted);
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.35;
}

.location-map-panel {
  padding: 0;
}

.location-map-panel__inner {
  display: grid;
  gap: 1rem;
}

.location-map-panel .location-map__heading {
  margin-bottom: 0;
  padding: clamp(1rem, 4vw, 1.2rem);
  background: #fffaf2;
  border: 1px solid var(--tholch-border);
  border-radius: var(--tholch-radius);
  box-shadow: var(--tholch-shadow);
}

.location-map-panel .location-map__heading h2 {
  font-size: 1.75rem;
}

.location-map-panel .location-map__heading p:not(.section-kicker) {
  max-width: 34rem;
  color: var(--tholch-muted);
  font-weight: 700;
}

.location-map-panel .location-map {
  height: clamp(360px, 58vh, 640px);
  min-height: 360px;
}

.location-filters {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0 0;
  padding: clamp(1rem, 4vw, 1.2rem);
  background: #fffaf2;
  border: 1px solid var(--tholch-border);
  border-radius: var(--tholch-radius);
  box-shadow: var(--tholch-shadow);
}

.location-filter--search {
  grid-column: 1 / -1;
}

.location-filter {
  display: grid;
  gap: 0.35rem;
}

.location-filter label,
.location-filter-toggle {
  color: var(--tholch-muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-filter select,
.location-filter input[type="search"] {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.8rem;
  color: var(--tholch-ink);
  background: var(--tholch-bg);
  border: 1px solid var(--tholch-border);
  border-radius: var(--tholch-radius);
  font: inherit;
  font-weight: 750;
}

.location-filter input[type="search"] {
  appearance: none;
}

.location-filter-toggle {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.7rem 0;
  cursor: pointer;
}

.location-filter-toggle input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--tholch-amber);
}

.location-filter-reset {
  width: 100%;
}

.tholch-location-results {
  display: grid;
  min-width: 0;
  gap: 0.8rem;
  align-content: start;
}

.location-results-head {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid var(--tholch-border);
  border-radius: var(--tholch-radius);
}

.location-results-summary {
  margin: 0;
  color: var(--tholch-ink);
  font-family: var(--tholch-font-body);
  font-size: 0.95rem;
  font-weight: 950;
  line-height: 1.25;
  text-transform: uppercase;
}

.location-results-count {
  margin: 0;
  color: var(--tholch-muted);
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.25;
  text-transform: uppercase;
}

.location-results-hint {
  margin: 0;
  color: var(--tholch-muted);
  font-size: 0.8rem;
  font-weight: 750;
  line-height: 1.25;
}

.location-card-grid {
  display: grid;
  gap: 1rem;
}

.location-finder .location-card-grid {
  padding-right: 0.15rem;
}

.location-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.location-load-more[hidden] {
  display: none;
}

.location-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 5vw, 1.35rem);
  background: #fffaf2;
  border: 1px solid var(--tholch-border);
  border-radius: var(--tholch-radius);
  box-shadow: var(--tholch-shadow);
}

.location-finder .location-card {
  gap: 0.62rem;
  padding: 0.85rem;
}

.location-card--compact {
  box-shadow: 0 10px 24px rgba(31, 27, 23, 0.08);
}

.location-card[hidden] {
  display: none;
}

.location-card__head {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.location-card__head > div {
  min-width: 0;
}

.location-card h2 {
  margin-bottom: 0;
  font-family: var(--tholch-font-body);
  font-size: clamp(1.55rem, 6vw, 2.4rem);
  font-weight: 950;
  line-height: 0.96;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.location-finder .location-card h2 {
  font-size: clamp(1.2rem, 4vw, 1.55rem);
}

.location-card--compact .card-meta {
  margin-bottom: 0.18rem;
  font-size: 0.68rem;
}

.location-card--compact .location-card__head {
  gap: 0.45rem 0.65rem;
}

.location-card--compact .location-card__details {
  gap: 0.25rem;
}

.location-card--compact .location-card__details p {
  gap: 0.05rem;
}

.location-card__badge,
.location-card__availability span {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0.25rem 0.58rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.location-card--compact .location-card__badge,
.location-card--compact .location-card__availability span {
  min-height: 26px;
  padding: 0.28rem 0.48rem;
  font-size: 0.66rem;
}

.location-card__badge,
.location-card__availability .is-yes {
  color: var(--tholch-ink);
  background: rgba(197, 139, 44, 0.22);
  border: 1px solid rgba(141, 75, 34, 0.20);
}

.location-card__availability .is-no {
  color: var(--tholch-muted);
  background: rgba(31, 27, 23, 0.06);
  border: 1px solid var(--tholch-border);
}

.location-card__details {
  display: grid;
  gap: 0.8rem;
}

.location-card__details p {
  display: grid;
  gap: 0.15rem;
  margin: 0;
}

.location-card__details span,
.location-card__beers h3 {
  color: var(--tholch-muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-card__details strong {
  color: var(--tholch-ink);
  font-weight: 800;
}

.location-card__availability {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.location-card__beers h3 {
  margin-bottom: 0.45rem;
  font-family: var(--tholch-font-body);
}

.location-card__beers ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.location-card__beers li {
  padding: 0.35rem 0.55rem;
  background: var(--tholch-bg);
  border: 1px solid var(--tholch-border);
  border-radius: var(--tholch-radius);
  font-size: 0.86rem;
  font-weight: 850;
}

.location-card__actions {
  margin-top: 0.05rem;
}

.location-card__actions .button {
  min-height: 44px;
}

.location-card--compact .location-card__actions .button {
  min-height: 40px;
  padding: 0.62rem 0.85rem;
  font-size: 0.78rem;
}

.location-card__no-map {
  color: var(--tholch-muted);
  font-weight: 800;
}

.location-empty-message {
  margin-top: 1rem;
  padding: 1rem;
  background: #fffaf2;
  border: 1px solid var(--tholch-border);
  border-radius: var(--tholch-radius);
}

.location-empty-message p {
  margin: 0;
}

.section-action {
  margin-top: 1.4rem;
}

.tholch-find-section,
.tholch-trade-section {
  color: #fffaf2;
  background:
    linear-gradient(135deg, rgba(197, 139, 44, 0.12), transparent 36%),
    var(--tholch-green);
}

.tholch-find-panel,
.tholch-trade-panel,
.tholch-social-panel {
  align-items: center;
}

.tholch-social-panel__intro,
.tholch-social-panel__actions {
  min-width: 0;
}

.tholch-social-title span {
  display: block;
}

.tholch-social-title {
  max-width: 100%;
}

.tholch-social-title__nowrap {
  white-space: nowrap;
}

.tholch-social-panel__actions {
  display: grid;
  gap: 1.35rem;
  max-width: 560px;
}

.tholch-social-panel__actions p {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 750;
  line-height: 1.45;
}

.tholch-social-cta-row {
  width: auto;
  max-width: none;
  align-items: center;
}

.tholch-social-cta-row .button {
  flex: 0 0 auto;
}

.tholch-find-panel h2,
.tholch-trade-panel h2,
.tholch-social-panel h2 {
  color: #fffaf2;
}

.tholch-find-panel p,
.tholch-trade-panel p,
.tholch-social-panel p {
  color: rgba(255, 250, 242, 0.82);
}

.tholch-location-preview .link-list {
  margin-bottom: 0;
}

.tholch-location-preview .link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #fffaf2;
}

.tholch-location-preview .link-list small {
  color: rgba(255, 250, 242, 0.62);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tholch-map-placeholder {
  min-height: 280px;
  padding: clamp(1.2rem, 6vw, 2rem);
  display: grid;
  align-content: end;
  color: #fffaf2;
  background:
    linear-gradient(135deg, rgba(31, 27, 23, 0.20), rgba(31, 27, 23, 0.72)),
    repeating-linear-gradient(45deg, rgba(255, 250, 242, 0.10) 0 1px, transparent 1px 22px),
    rgba(31, 27, 23, 0.24);
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: var(--tholch-radius);
}

.tholch-map-placeholder span {
  font-size: clamp(2rem, 12vw, 4.25rem);
  font-weight: 950;
  line-height: 0.88;
  text-transform: uppercase;
}

.tholch-map-placeholder p {
  max-width: 28rem;
  margin-bottom: 0;
}

.tholch-community-section {
  background: #fffaf2;
}

.tholch-community-section,
.tholch-social-section,
.tholch-contact-cta {
  padding-block: clamp(2.75rem, 8vw, 4.75rem);
}

.tholch-split-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 6vw, 3rem);
}

.tholch-update-card .tholch-card__media {
  aspect-ratio: 16 / 9;
}

.tholch-update-card {
  display: flex;
  flex-direction: column;
}

.tholch-update-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: -0.1rem 0 0.85rem;
}

.tholch-update-card__facts span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0.25rem 0.55rem;
  color: var(--tholch-ink);
  background: rgba(52, 71, 54, 0.10);
  border: 1px solid rgba(52, 71, 54, 0.16);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.updates-archive,
.events-news-landing,
.single-update {
  padding: 0;
}

.updates-hero {
  color: #fffaf2;
  background:
    radial-gradient(circle at 82% 12%, rgba(197, 139, 44, 0.34), transparent 24rem),
    linear-gradient(135deg, rgba(52, 71, 54, 0.96), rgba(31, 27, 23, 0.98));
  padding: clamp(4rem, 12vw, 7rem) 0 clamp(2.5rem, 8vw, 4rem);
}

.updates-hero h1 {
  max-width: 980px;
  color: #fffaf2;
  font-family: var(--tholch-font-body);
  font-size: clamp(3.2rem, 14vw, 7.5rem);
  font-weight: 950;
  line-height: 0.86;
  text-transform: uppercase;
}

.updates-hero p {
  max-width: 720px;
  color: rgba(255, 250, 242, 0.82);
  font-size: clamp(1.05rem, 3vw, 1.28rem);
  font-weight: 700;
}

.updates-section,
.single-update-content-section,
.related-updates {
  padding: clamp(3rem, 9vw, 5.5rem) 0;
}

.updates-section {
  background:
    linear-gradient(90deg, rgba(197, 139, 44, 0.10), transparent 44%),
    var(--tholch-bg);
}

.updates-section--muted,
.single-update-content-section {
  background: #fffaf2;
}

.updates-section__heading {
  max-width: 820px;
  margin-bottom: clamp(1.5rem, 6vw, 3rem);
}

.updates-section__heading h2 {
  font-family: var(--tholch-font-body);
  font-size: clamp(2.1rem, 8vw, 4.75rem);
  font-weight: 950;
  line-height: 0.94;
  text-transform: uppercase;
}

.updates-muted-copy {
  max-width: 42rem;
  color: var(--tholch-muted);
  font-weight: 750;
}

.single-update-hero {
  position: relative;
  isolation: isolate;
  min-height: min(720px, calc(100svh - 72px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fffaf2;
  background:
    radial-gradient(circle at 82% 12%, rgba(197, 139, 44, 0.34), transparent 26rem),
    linear-gradient(135deg, rgba(52, 71, 54, 0.96), rgba(31, 27, 23, 0.98));
}

.single-update-hero--article {
  min-height: auto;
}

.single-update-hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.single-update-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-update-hero.has-image::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(140deg, rgba(31, 27, 23, 0.68), rgba(31, 27, 23, 0.94) 68%);
  content: "";
}

.single-update-hero__inner {
  padding-top: clamp(4.5rem, 14vw, 8rem);
  padding-bottom: clamp(3rem, 9vw, 5rem);
}

.single-update-hero h1 {
  max-width: 980px;
  color: #fffaf2;
  font-family: var(--tholch-font-body);
  font-size: clamp(3rem, 13vw, 7rem);
  font-weight: 950;
  line-height: 0.88;
  text-transform: uppercase;
}

.single-update-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.single-update-meta span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0.32rem 0.7rem;
  color: #fffaf2;
  background: rgba(255, 250, 242, 0.12);
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.single-update-layout {
  display: grid;
  gap: clamp(2rem, 8vw, 4rem);
}

.single-update-body {
  display: grid;
  gap: clamp(1.5rem, 5vw, 2rem);
  align-content: start;
  align-self: start;
  min-width: 0;
}

.single-update-content {
  max-width: 820px;
  font-size: clamp(1.05rem, 3vw, 1.22rem);
}

.single-update-content > * {
  margin-bottom: 1.35rem;
}

.single-update-content > :last-child {
  margin-bottom: 0;
}

.single-update-side {
  align-self: start;
  padding: clamp(1rem, 5vw, 1.4rem);
  background: var(--tholch-bg);
  border: 1px solid var(--tholch-border);
  border-radius: var(--tholch-radius);
  box-shadow: var(--tholch-shadow);
}

.single-update-side h2 {
  font-family: var(--tholch-font-body);
  font-size: 1.25rem;
  font-weight: 950;
  text-transform: uppercase;
}

.single-update-side ul {
  display: grid;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.single-update-side li {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--tholch-border);
}

.single-update-side span {
  color: var(--tholch-muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.single-update-side strong {
  color: var(--tholch-ink);
  font-weight: 950;
}

.single-update-cta {
  color: #fffaf2;
  background:
    radial-gradient(circle at 85% 0%, rgba(197, 139, 44, 0.32), transparent 24rem),
    linear-gradient(135deg, rgba(141, 75, 34, 0.96), rgba(31, 27, 23, 0.98));
  padding: clamp(3rem, 9vw, 5rem) 0;
}

.single-update-cta__inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.single-update-cta h2 {
  max-width: 820px;
  color: #fffaf2;
  font-family: var(--tholch-font-body);
  font-size: clamp(2rem, 8vw, 4.4rem);
  font-weight: 950;
  line-height: 0.94;
  text-transform: uppercase;
}

.single-news-layout {
  display: grid;
  gap: clamp(2rem, 7vw, 3.5rem);
  max-width: 920px;
}

.single-update-media-layout {
  max-width: var(--tholch-container);
}

.single-update-media-layout.layout-image-left-content-right,
.single-update-media-layout.layout-content-left-image-right {
  align-items: start;
}

.single-update-media-layout.layout-image-left-content-right .single-update-body,
.single-update-media-layout.layout-content-left-image-right .single-update-body {
  gap: 1.25rem;
}

.single-update-media-layout.layout-content-left-image-right .single-update-featured {
  order: 2;
}

.single-update-media-layout.layout-content-top-image-bottom .single-update-featured {
  order: 2;
}

.single-update-media-layout.layout-image-top-content-bottom,
.single-update-media-layout.layout-content-top-image-bottom {
  max-width: 920px;
}

.single-news-featured {
  margin: 0;
  overflow: hidden;
  border-radius: var(--tholch-radius);
  box-shadow: var(--tholch-shadow);
}

.single-news-featured img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.single-update-featured img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}

.related-updates {
  background:
    linear-gradient(90deg, rgba(52, 71, 54, 0.12), transparent 42%),
    var(--tholch-bg);
}

.trade-page {
  padding: 0;
}

.trade-hero {
  color: #fffaf2;
  background:
    radial-gradient(circle at 82% 12%, rgba(197, 139, 44, 0.36), transparent 25rem),
    linear-gradient(135deg, rgba(52, 71, 54, 0.96), rgba(31, 27, 23, 0.98));
  padding: clamp(4rem, 13vw, 8rem) 0 clamp(3rem, 9vw, 5rem);
}

.trade-hero__inner {
  display: grid;
  gap: clamp(2rem, 8vw, 4rem);
  align-items: end;
}

.trade-hero h1 {
  max-width: 900px;
  color: #fffaf2;
  font-family: var(--tholch-font-body);
  font-size: clamp(3.8rem, 17vw, 9rem);
  font-weight: 950;
  line-height: 0.84;
  text-transform: uppercase;
}

.trade-hero p {
  max-width: 700px;
  color: rgba(255, 250, 242, 0.84);
  font-size: clamp(1.08rem, 3vw, 1.34rem);
  font-weight: 700;
}

.trade-hero__panel {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 0.45rem;
  justify-content: start;
}

.trade-hero__panel span {
  display: grid;
  min-width: 136px;
  min-height: 84px;
  place-items: center;
  padding: 0.5rem 1rem;
  color: #fffaf2;
  background: rgba(255, 250, 242, 0.10);
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: var(--tholch-radius);
  overflow-wrap: anywhere;
  font-size: clamp(0.78rem, 3vw, 1rem);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.trade-section-block {
  padding: clamp(3rem, 9vw, 5.5rem) 0;
}

.trade-intro,
.trade-beers-section,
.trade-steps-section {
  background:
    linear-gradient(90deg, rgba(197, 139, 44, 0.10), transparent 44%),
    var(--tholch-bg);
}

.trade-why-section,
.trade-support-section,
.trade-keg-coolbox-section {
  background: #fffaf2;
}

.trade-intro__grid,
.trade-support-grid {
  display: grid;
  gap: clamp(1.8rem, 7vw, 4rem);
}

.trade-intro h2,
.trade-section-heading h2,
.trade-support-grid h2,
.trade-contact-cta h2 {
  font-family: var(--tholch-font-body);
  font-size: clamp(2.15rem, 9vw, 5rem);
  font-weight: 950;
  line-height: 0.94;
  text-transform: uppercase;
}

.trade-intro__copy {
  max-width: 720px;
  font-size: clamp(1.05rem, 3vw, 1.25rem);
}

.trade-section-heading {
  max-width: 840px;
  margin-bottom: clamp(1.5rem, 6vw, 3rem);
}

.trade-card-grid {
  display: grid;
  gap: 1rem;
}

.trade-info-card {
  padding: clamp(1rem, 5vw, 1.35rem);
  background: var(--tholch-surface);
  border: 1px solid var(--tholch-border);
  border-radius: var(--tholch-radius);
  box-shadow: var(--tholch-shadow);
}

.trade-info-card h3 {
  font-family: var(--tholch-font-body);
  font-size: clamp(1.35rem, 5vw, 2rem);
  font-weight: 950;
  line-height: 0.98;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

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

.trade-info-card--beer {
  min-height: 260px;
  display: grid;
  align-content: end;
  color: #fffaf2;
  background:
    linear-gradient(135deg, rgba(31, 27, 23, 0.20), rgba(31, 27, 23, 0.82)),
    linear-gradient(135deg, rgba(197, 139, 44, 0.68), rgba(52, 71, 54, 0.72));
}

.trade-info-card--beer h3,
.trade-info-card--beer p {
  color: #fffaf2;
}

.trade-beer-grid {
  grid-template-columns: 1fr;
}

.trade-support-list {
  display: grid;
  gap: 0.75rem;
}

.trade-support-list div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--tholch-border);
}

.trade-support-list span,
.trade-step-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--tholch-ink);
  background: rgba(197, 139, 44, 0.24);
  border: 1px solid rgba(141, 75, 34, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
}

.trade-support-list strong {
  color: var(--tholch-ink);
  font-size: clamp(1rem, 3vw, 1.2rem);
  line-height: 1.35;
}

.trade-keg-coolbox {
  display: grid;
  gap: clamp(1.25rem, 5vw, 3rem);
  align-items: stretch;
}

.trade-keg-coolbox__content {
  display: grid;
  align-content: center;
  gap: 1rem;
  min-width: 0;
  padding: clamp(1.1rem, 4vw, 1.6rem);
  color: #fffaf2;
  background:
    radial-gradient(circle at 90% 4%, rgba(197, 139, 44, 0.34), transparent 18rem),
    linear-gradient(135deg, rgba(52, 71, 54, 0.96), rgba(31, 27, 23, 0.98));
  border: 1px solid rgba(31, 27, 23, 0.16);
  border-radius: var(--tholch-radius);
  box-shadow: var(--tholch-shadow);
}

.trade-keg-coolbox__badge {
  width: fit-content;
  margin: 0;
  padding: 0.45rem 0.7rem;
  color: var(--tholch-ink);
  background: var(--tholch-gold);
  border-radius: var(--tholch-radius);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.trade-keg-coolbox h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: #fffaf2;
  font-family: var(--tholch-font-body);
  font-size: clamp(2.25rem, 8vw, 5.25rem);
  font-weight: 950;
  line-height: 0.9;
  text-transform: uppercase;
}

.trade-keg-coolbox__content p:not(.trade-keg-coolbox__badge) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 250, 242, 0.84);
  font-size: clamp(1rem, 2.6vw, 1.18rem);
  font-weight: 720;
  line-height: 1.45;
}

.trade-keg-coolbox__benefits {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trade-keg-coolbox__benefits li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.55rem;
  align-items: start;
  color: #fffaf2;
  font-weight: 900;
  line-height: 1.3;
}

.trade-keg-coolbox__benefits li::before {
  display: inline-grid;
  width: 1.45rem;
  height: 1.45rem;
  place-items: center;
  color: var(--tholch-ink);
  background: var(--tholch-gold);
  border-radius: 999px;
  content: "+";
  font-size: 0.95rem;
  font-weight: 950;
  line-height: 1;
}

.trade-keg-coolbox__content .trade-keg-coolbox__small-print {
  color: rgba(255, 250, 242, 0.68);
  font-size: 0.88rem;
}

.trade-keg-coolbox__media {
  min-width: 0;
  overflow: hidden;
  background: var(--tholch-bg);
  border: 1px solid var(--tholch-border);
  border-radius: var(--tholch-radius);
  box-shadow: var(--tholch-shadow);
}

.trade-keg-coolbox__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.trade-keg-coolbox__placeholder {
  display: grid;
  min-height: 320px;
  place-items: center;
  align-content: center;
  padding: clamp(1.25rem, 5vw, 2rem);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(197, 139, 44, 0.26), rgba(52, 71, 54, 0.18)),
    var(--tholch-bg);
}

.trade-keg-coolbox__placeholder span {
  color: var(--tholch-ink);
  font-family: var(--tholch-font-body);
  font-size: clamp(2rem, 7vw, 4rem);
  font-weight: 950;
  line-height: 0.9;
  text-transform: uppercase;
}

.trade-keg-coolbox__placeholder p {
  margin: 0.75rem 0 0;
  color: var(--tholch-muted);
  font-weight: 850;
}

.trade-step-number {
  margin-bottom: 1rem;
}

.tholch-faq-list {
  display: grid;
  gap: 0.9rem;
}

.tholch-faq-item {
  padding: clamp(1rem, 3vw, 1.35rem);
  background: var(--tholch-surface);
  border: 1px solid var(--tholch-border);
  border-radius: var(--tholch-radius);
  box-shadow: var(--tholch-shadow);
}

.tholch-faq-item h3 {
  margin-bottom: 0.45rem;
  color: var(--tholch-ink);
  font-family: var(--tholch-font-body);
  font-size: clamp(1.05rem, 2.6vw, 1.28rem);
  font-weight: 950;
  line-height: 1.12;
  text-transform: uppercase;
}

.tholch-faq-item p {
  margin: 0;
  color: var(--tholch-muted);
  font-size: clamp(1rem, 2.3vw, 1.12rem);
  font-weight: 720;
  line-height: 1.45;
}

.trade-contact-cta {
  color: #fffaf2;
  background:
    radial-gradient(circle at 85% 0%, rgba(197, 139, 44, 0.32), transparent 24rem),
    linear-gradient(135deg, rgba(141, 75, 34, 0.96), rgba(31, 27, 23, 0.98));
  padding: clamp(3rem, 9vw, 5.5rem) 0;
}

.trade-contact-cta h2,
.trade-contact-cta p {
  color: #fffaf2;
}

.trade-contact-cta p {
  max-width: 640px;
  color: rgba(255, 250, 242, 0.82);
  font-weight: 700;
}

.trade-contact-cta__inner {
  display: grid;
  gap: clamp(1.5rem, 7vw, 4rem);
  align-items: center;
}

.trade-contact-card {
  display: grid;
  gap: 0.75rem;
  padding: clamp(1rem, 5vw, 1.35rem);
  background: rgba(255, 250, 242, 0.10);
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: var(--tholch-radius);
}

.trade-contact-card .button,
.trade-contact-card .text-link {
  width: 100%;
}

.trade-contact-card .text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #fffaf2;
}

.kegs-page {
  padding: 0;
}

.kegs-hero {
  color: #fffaf2;
  background:
    radial-gradient(circle at 82% 12%, rgba(197, 139, 44, 0.36), transparent 25rem),
    linear-gradient(135deg, rgba(52, 71, 54, 0.96), rgba(31, 27, 23, 0.98));
  padding: clamp(4rem, 13vw, 8rem) 0 clamp(3rem, 9vw, 5rem);
}

.kegs-hero__inner {
  display: grid;
  gap: clamp(2rem, 8vw, 4rem);
  align-items: end;
}

.kegs-hero h1 {
  max-width: 900px;
  color: #fffaf2;
  font-family: var(--tholch-font-body);
  font-size: clamp(3.4rem, 16vw, 8.5rem);
  font-weight: 950;
  line-height: 0.84;
  text-transform: uppercase;
}

.kegs-hero p {
  max-width: 720px;
  color: rgba(255, 250, 242, 0.84);
  font-size: clamp(1.05rem, 3vw, 1.3rem);
  font-weight: 700;
}

.kegs-hero .kegs-hero__line {
  max-width: 760px;
  color: #fffaf2;
  font-size: clamp(1.65rem, 5vw, 3rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.kegs-detail-list,
.kegs-chip-list,
.kegs-step-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.kegs-section {
  padding: clamp(3rem, 9vw, 5.5rem) 0;
}

.kegs-steps-section,
.kegs-know-section {
  background:
    linear-gradient(90deg, rgba(197, 139, 44, 0.10), transparent 44%),
    var(--tholch-bg);
}

.kegs-good-section {
  background:
    linear-gradient(90deg, rgba(31, 27, 23, 0.24), transparent 52%),
    var(--tholch-green);
}

.kegs-good-section .section-kicker,
.kegs-good-section h2 {
  color: #fffaf2;
}

.kegs-beer-section {
  background: #fffaf2;
}

.kegs-section-heading {
  max-width: 820px;
  margin-bottom: clamp(1.5rem, 6vw, 2.5rem);
}

.kegs-section-heading h2,
.kegs-know h2,
.kegs-split h2 {
  font-family: var(--tholch-font-body);
  font-size: clamp(2.15rem, 9vw, 5rem);
  font-weight: 950;
  line-height: 0.94;
  text-transform: uppercase;
}

.kegs-step-list {
  counter-reset: kegs-step;
}

.kegs-step-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  padding: 1rem;
  background: var(--tholch-surface);
  border: 1px solid var(--tholch-border);
  border-radius: var(--tholch-radius);
  box-shadow: var(--tholch-shadow);
}

.kegs-step-list span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--tholch-ink);
  background: rgba(197, 139, 44, 0.24);
  border: 1px solid rgba(141, 75, 34, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
}

.kegs-step-list strong {
  color: var(--tholch-ink);
  font-size: clamp(1rem, 3vw, 1.18rem);
  line-height: 1.25;
}

.kegs-split,
.kegs-know {
  display: grid;
  gap: clamp(1.5rem, 7vw, 4rem);
  align-items: center;
}

.kegs-good-actions {
  display: grid;
  gap: 1rem;
}

.kegs-good-actions .button {
  width: 100%;
  justify-content: center;
}

.kegs-chip-list {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.kegs-chip-list li,
.kegs-detail-list li {
  padding: 0.95rem 1rem;
  color: var(--tholch-ink);
  background: var(--tholch-surface);
  border: 1px solid var(--tholch-border);
  border-radius: var(--tholch-radius);
  box-shadow: var(--tholch-shadow);
  font-weight: 950;
}

.kegs-chip-list li {
  display: grid;
  min-height: 92px;
  place-items: center;
  background: #fffaf2;
  border-color: rgba(255, 250, 242, 0.2);
  box-shadow: 0 22px 50px rgba(31, 27, 23, 0.26);
  text-align: center;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.15;
}

.kegs-know p,
.kegs-split p {
  max-width: 720px;
  color: var(--tholch-muted);
  font-size: clamp(1.05rem, 3vw, 1.2rem);
  font-weight: 720;
  line-height: 1.45;
}

.kegs-detail-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.55rem;
  align-items: center;
}

.kegs-detail-list li::before {
  display: inline-grid;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  color: #fffaf2;
  background: var(--tholch-green);
  border-radius: 999px;
  content: "+";
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1;
}

.facts-hero {
  padding: clamp(3rem, 9vw, 5rem) 0;
  color: #fffaf2;
  background: var(--tholch-green);
}

.facts-hero h1 {
  max-width: 860px;
  color: #fffaf2;
  font-family: var(--tholch-font-body);
  font-size: clamp(2.8rem, 10vw, 6rem);
  font-weight: 950;
  line-height: 0.9;
  text-transform: uppercase;
}

.facts-hero p:not(.section-kicker) {
  max-width: 680px;
  color: rgba(255, 250, 242, 0.82);
  font-size: clamp(1.05rem, 2.6vw, 1.24rem);
  font-weight: 720;
}

.facts-section {
  padding: clamp(2.5rem, 8vw, 4.5rem) 0;
  background: var(--tholch-bg);
}

.facts-links-section {
  background: #fffaf2;
}

.facts-grid {
  display: grid;
  gap: 1rem;
}

.facts-grid article {
  padding: clamp(1rem, 3vw, 1.35rem);
  background: var(--tholch-surface);
  border: 1px solid var(--tholch-border);
  border-radius: var(--tholch-radius);
}

.facts-grid h2,
.facts-links-section h2 {
  margin-bottom: 0.5rem;
  color: var(--tholch-ink);
  font-family: var(--tholch-font-body);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
}

.facts-grid p {
  margin: 0;
  color: var(--tholch-muted);
  font-weight: 720;
  line-height: 1.45;
}

.facts-grid ul {
  display: grid;
  gap: 0.25rem;
  margin: 0.65rem 0 0;
  padding-left: 1.2rem;
  color: var(--tholch-muted);
  font-weight: 760;
}

.facts-grid a {
  color: var(--tholch-ink);
  font-weight: 900;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.facts-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.facts-link-list a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0.55rem 0.85rem;
  color: var(--tholch-ink);
  border: 1px solid var(--tholch-border);
  border-radius: var(--tholch-radius);
  font-weight: 900;
  text-decoration: none;
}

.about-page {
  padding: 0;
}

.about-hero {
  position: relative;
  isolation: isolate;
  min-height: min(760px, calc(100svh - 72px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fffaf2;
  background:
    radial-gradient(circle at 82% 12%, rgba(197, 139, 44, 0.36), transparent 25rem),
    linear-gradient(135deg, rgba(52, 71, 54, 0.96), rgba(31, 27, 23, 0.98));
}

.about-hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.about-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero.has-image::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(140deg, rgba(31, 27, 23, 0.68), rgba(31, 27, 23, 0.94) 68%);
  content: "";
}

.about-hero__inner {
  padding-top: clamp(4.5rem, 14vw, 8rem);
  padding-bottom: clamp(3rem, 9vw, 5rem);
}

.about-hero h1 {
  max-width: 940px;
  color: #fffaf2;
  font-family: var(--tholch-font-body);
  font-size: clamp(3.5rem, 16vw, 8.6rem);
  font-weight: 950;
  line-height: 0.84;
  text-transform: uppercase;
}

.about-hero p {
  max-width: 720px;
  color: rgba(255, 250, 242, 0.84);
  font-size: clamp(1.08rem, 3vw, 1.34rem);
  font-weight: 700;
}

.about-section {
  padding: clamp(3rem, 9vw, 5.5rem) 0;
}

.about-origin-section,
.about-local-section {
  background: #fffaf2;
}

.about-name-section {
  background:
    linear-gradient(90deg, rgba(197, 139, 44, 0.12), transparent 44%),
    var(--tholch-bg);
}

.about-founders-section {
  color: #fffaf2;
  background:
    radial-gradient(circle at 12% 8%, rgba(197, 139, 44, 0.22), transparent 22rem),
    linear-gradient(135deg, rgba(31, 27, 23, 0.98), rgba(52, 71, 54, 0.94));
}

.about-founders {
  display: grid;
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: center;
}

.about-founders__copy {
  max-width: 620px;
}

.about-founders__copy h2 {
  color: #fffaf2;
  font-family: var(--tholch-font-body);
  font-size: clamp(2.15rem, 8vw, 4.8rem);
  font-weight: 950;
  line-height: 0.94;
  text-transform: uppercase;
}

.about-founders__copy p:last-child {
  color: rgba(255, 250, 242, 0.82);
  font-size: clamp(1.04rem, 2.5vw, 1.22rem);
  font-weight: 800;
}

.about-founders__media {
  margin: 0;
}

.about-founders__frame {
  min-height: clamp(260px, 48vw, 560px);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(197, 139, 44, 0.24), rgba(141, 75, 34, 0.32)),
    rgba(255, 250, 242, 0.08);
  border: 1px solid rgba(255, 250, 242, 0.24);
  border-radius: var(--tholch-radius);
  box-shadow: var(--tholch-shadow);
}

.about-founders__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-founders__placeholder {
  min-height: inherit;
  height: 100%;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 5vw, 2rem);
  color: #fffaf2;
  font-family: var(--tholch-font-body);
  font-size: clamp(1.35rem, 5vw, 2.35rem);
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.about-split,
.about-cta__inner {
  display: grid;
  gap: clamp(1.8rem, 7vw, 4rem);
}

.about-split h2,
.about-section-heading h2,
.about-challenger-panel h2,
.about-cta h2 {
  font-family: var(--tholch-font-body);
  font-size: clamp(2.15rem, 9vw, 5rem);
  font-weight: 950;
  line-height: 0.94;
  text-transform: uppercase;
}

.about-copy {
  max-width: 740px;
  font-size: clamp(1.05rem, 3vw, 1.24rem);
}

.about-section-heading {
  max-width: 900px;
  margin-bottom: clamp(1.5rem, 6vw, 3rem);
}

.about-name-grid {
  display: grid;
  gap: 0.75rem;
}

.about-name-grid article {
  min-height: 220px;
  display: grid;
  align-content: end;
  padding: clamp(1rem, 5vw, 1.35rem);
  color: #fffaf2;
  background:
    linear-gradient(135deg, rgba(31, 27, 23, 0.16), rgba(31, 27, 23, 0.78)),
    linear-gradient(135deg, rgba(197, 139, 44, 0.68), rgba(52, 71, 54, 0.74));
  border: 1px solid rgba(31, 27, 23, 0.12);
  border-radius: var(--tholch-radius);
  box-shadow: var(--tholch-shadow);
}

.about-name-grid span {
  color: #fffaf2;
  font-size: clamp(4rem, 22vw, 8rem);
  font-weight: 950;
  line-height: 0.8;
}

.about-name-grid h3 {
  margin: 0.7rem 0 0;
  color: #fffaf2;
  font-family: var(--tholch-font-body);
  font-size: clamp(1.35rem, 5vw, 2.2rem);
  font-weight: 950;
  text-transform: uppercase;
}

.about-challenger-section {
  color: #fffaf2;
  background:
    radial-gradient(circle at 85% 0%, rgba(197, 139, 44, 0.32), transparent 24rem),
    linear-gradient(135deg, rgba(141, 75, 34, 0.96), rgba(31, 27, 23, 0.98));
}

.about-challenger-panel {
  max-width: 980px;
}

.about-challenger-panel h2,
.about-challenger-panel p {
  color: #fffaf2;
}

.about-challenger-panel p {
  max-width: 720px;
  color: rgba(255, 250, 242, 0.84);
  font-size: clamp(1.08rem, 3vw, 1.32rem);
  font-weight: 700;
}

.about-team-section {
  color: #1f1b17;
  background:
    linear-gradient(90deg, rgba(197, 139, 44, 0.14), transparent 42%),
    #fffaf2;
}

.about-team-section__heading {
  max-width: 780px;
  margin-bottom: clamp(1.25rem, 5vw, 2.5rem);
}

.about-team-section__heading h2 {
  font-family: var(--tholch-font-body);
  font-size: clamp(2.2rem, 9vw, 5rem);
  font-weight: 950;
  line-height: 0.94;
  text-transform: uppercase;
}

.about-team-section__heading p:not(.section-kicker) {
  max-width: 560px;
  color: rgba(31, 27, 23, 0.76);
  font-size: clamp(1.02rem, 2.5vw, 1.2rem);
  font-weight: 800;
}

.about-team-grid {
  display: grid;
  gap: clamp(0.65rem, 2vw, 1rem);
}

.about-team-card {
  min-width: 0;
  overflow: hidden;
  background: #f3e7d6;
  border: 1px solid rgba(31, 27, 23, 0.16);
  border-radius: var(--tholch-radius);
  box-shadow: 0 14px 34px rgba(31, 27, 23, 0.12);
}

.about-team-card__link {
  display: grid;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.about-team-card__link:hover,
.about-team-card__link:focus {
  color: inherit;
}

.about-team-card__link:focus-visible {
  outline: 3px solid #c58b2c;
  outline-offset: 3px;
}

.about-team-card__link:hover .about-team-card__story-link,
.about-team-card__link:focus .about-team-card__story-link {
  color: #8d4b22;
}

.about-team-card__media {
  display: grid;
  min-height: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(52, 71, 54, 0.24), rgba(141, 75, 34, 0.28)),
    rgba(31, 27, 23, 0.08);
}

.about-team-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.about-team-card__placeholder {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 0.75rem;
  color: #fffaf2;
  background:
    linear-gradient(135deg, rgba(31, 27, 23, 0.12), rgba(31, 27, 23, 0.62)),
    linear-gradient(135deg, #344736, #8d4b22);
  text-align: center;
}

.about-team-card__placeholder span {
  font-family: var(--tholch-font-body);
  font-size: clamp(1.6rem, 8vw, 3.4rem);
  font-weight: 950;
  line-height: 0.9;
  text-transform: uppercase;
}

.about-team-card__body {
  display: grid;
  gap: 0.35rem;
  padding: clamp(0.65rem, 2vw, 1rem);
}

.about-team-card__label {
  width: fit-content;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  color: #fffaf2;
  background: #344736;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.about-team-card h3 {
  margin: 0;
  color: #1f1b17;
  font-family: var(--tholch-font-body);
  font-size: clamp(1.15rem, 3vw, 1.75rem);
  font-weight: 950;
  line-height: 0.96;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.about-team-card__role {
  margin: 0;
  color: #8d4b22;
  font-size: clamp(0.8rem, 2vw, 0.96rem);
  font-weight: 950;
  line-height: 1.16;
}

.about-team-card__line {
  margin: 0.15rem 0 0;
  color: rgba(31, 27, 23, 0.72);
  font-size: clamp(0.82rem, 2vw, 0.98rem);
  font-weight: 700;
  line-height: 1.3;
}

.about-team-card__story-link {
  width: fit-content;
  margin-top: 0.35rem;
  color: #1f1b17;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-decoration-color: rgba(141, 75, 34, 0.55);
  text-underline-offset: 0.18em;
  text-transform: uppercase;
}

.single-team-profile {
  background:
    linear-gradient(90deg, rgba(197, 139, 44, 0.12), transparent 42%),
    #fffaf2;
}

.team-profile-hero {
  padding: clamp(3.5rem, 10vw, 6.5rem) 0;
}

.team-profile-layout {
  display: grid;
  gap: clamp(1.25rem, 5vw, 3rem);
  align-items: center;
}

.team-profile-media {
  width: min(100%, 520px);
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(52, 71, 54, 0.24), rgba(141, 75, 34, 0.28)),
    rgba(31, 27, 23, 0.08);
  border: 1px solid rgba(31, 27, 23, 0.14);
  border-radius: var(--tholch-radius);
  box-shadow: 0 20px 46px rgba(31, 27, 23, 0.16);
}

.team-profile-media__image,
.team-profile-media__placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
}

.team-profile-media__image {
  display: block;
  height: auto;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
}

.team-profile-media__placeholder {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 1rem;
  color: #fffaf2;
  background:
    linear-gradient(135deg, rgba(31, 27, 23, 0.12), rgba(31, 27, 23, 0.62)),
    linear-gradient(135deg, #344736, #8d4b22);
  text-align: center;
}

.team-profile-media__placeholder span {
  font-family: var(--tholch-font-body);
  font-size: clamp(3rem, 16vw, 7rem);
  font-weight: 950;
  line-height: 0.9;
  text-transform: uppercase;
}

.team-profile-content {
  display: grid;
  gap: 1rem;
  max-width: 720px;
}

.team-profile-content h1 {
  margin: 0;
  color: #1f1b17;
  font-family: var(--tholch-font-body);
  font-size: clamp(3rem, 14vw, 7rem);
  font-weight: 950;
  line-height: 0.86;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.team-profile-role {
  margin: -0.25rem 0 0;
  color: #8d4b22;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 950;
  line-height: 1.2;
}

.team-profile-short-line {
  margin: 0;
  color: rgba(31, 27, 23, 0.78);
  font-size: clamp(1.1rem, 2.8vw, 1.45rem);
  font-weight: 800;
  line-height: 1.3;
}

.team-profile-story {
  color: rgba(31, 27, 23, 0.82);
  font-size: 1.04rem;
  font-weight: 650;
  line-height: 1.65;
}

.team-profile-story > :first-child {
  margin-top: 0;
}

.team-profile-story > :last-child {
  margin-bottom: 0;
}

.team-profile-facts {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.team-profile-fact {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem 1rem;
  background: #f3e7d6;
  border: 1px solid rgba(31, 27, 23, 0.14);
  border-radius: var(--tholch-radius);
}

.team-profile-fact span {
  color: #8d4b22;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-profile-fact strong {
  color: #1f1b17;
  font-size: 1rem;
  line-height: 1.35;
}

.team-profile-actions {
  margin-top: 0.5rem;
}

.about-cta {
  color: #fffaf2;
  background: var(--tholch-green);
  padding: clamp(3rem, 9vw, 5rem) 0;
}

.about-cta h2 {
  max-width: 820px;
  color: #fffaf2;
}

.contact-page {
  padding: 0;
}

.contact-hero {
  color: #fffaf2;
  background:
    radial-gradient(circle at 82% 12%, rgba(197, 139, 44, 0.36), transparent 25rem),
    linear-gradient(135deg, rgba(52, 71, 54, 0.96), rgba(31, 27, 23, 0.98));
  padding: clamp(4rem, 13vw, 8rem) 0 clamp(3rem, 9vw, 5rem);
}

.contact-hero__inner,
.contact-form-grid,
.contact-social-grid,
.contact-trade-cta__inner {
  display: grid;
  gap: clamp(1.8rem, 7vw, 4rem);
}

.contact-hero h1 {
  max-width: 900px;
  color: #fffaf2;
  font-family: var(--tholch-font-body);
  font-size: clamp(3.8rem, 17vw, 9rem);
  font-weight: 950;
  line-height: 0.84;
  text-transform: uppercase;
}

.contact-hero p {
  max-width: 700px;
  color: rgba(255, 250, 242, 0.84);
  font-size: clamp(1.08rem, 3vw, 1.34rem);
  font-weight: 700;
}

.contact-hero__note {
  padding: clamp(1rem, 5vw, 1.35rem);
  background: rgba(255, 250, 242, 0.10);
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: var(--tholch-radius);
}

.contact-hero__note span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--tholch-gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-hero__note p {
  margin-bottom: 0;
  color: #fffaf2;
}

.contact-section {
  padding: clamp(3rem, 9vw, 5.5rem) 0;
}

.contact-quick-section,
.contact-social-section {
  background:
    linear-gradient(90deg, rgba(197, 139, 44, 0.10), transparent 44%),
    var(--tholch-bg);
}

.contact-form-section {
  background: #fffaf2;
}

.contact-section-heading {
  max-width: 840px;
  margin-bottom: clamp(1.5rem, 6vw, 3rem);
}

.contact-section-heading h2,
.contact-form-grid h2,
.contact-social-grid h2,
.contact-trade-cta h2,
.contact-footer-cta h2 {
  font-family: var(--tholch-font-body);
  font-size: clamp(2.15rem, 9vw, 5rem);
  font-weight: 950;
  line-height: 0.94;
  text-transform: uppercase;
}

.contact-card-grid {
  display: grid;
  gap: 1rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1rem, 5vw, 1.35rem);
  background: var(--tholch-surface);
  border: 1px solid var(--tholch-border);
  border-radius: var(--tholch-radius);
  box-shadow: var(--tholch-shadow);
}

.contact-card span {
  color: var(--tholch-amber);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin-bottom: auto;
  font-family: var(--tholch-font-body);
  font-size: clamp(1.35rem, 5vw, 2rem);
  font-weight: 950;
  line-height: 0.98;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.contact-card .button {
  width: 100%;
}

.contact-form-grid > div:first-child p {
  max-width: 640px;
  color: var(--tholch-muted);
  font-weight: 700;
}

.contact-form-panel {
  padding: clamp(1rem, 5vw, 1.35rem);
  background: var(--tholch-bg);
  border: 1px solid var(--tholch-border);
  border-radius: var(--tholch-radius);
  box-shadow: var(--tholch-shadow);
}

.contact-form-placeholder {
  min-height: 280px;
  display: grid;
  align-content: center;
  padding: clamp(1rem, 5vw, 1.5rem);
  border: 1px dashed rgba(31, 27, 23, 0.28);
  border-radius: var(--tholch-radius);
}

.contact-form-placeholder h3 {
  font-family: var(--tholch-font-body);
  font-size: clamp(1.5rem, 6vw, 2.6rem);
  font-weight: 950;
  line-height: 0.98;
  text-transform: uppercase;
}

.contact-social-links {
  display: grid;
  gap: 0.75rem;
}

.contact-social-links a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  color: var(--tholch-ink);
  background: #fffaf2;
  border: 1px solid var(--tholch-border);
  border-radius: var(--tholch-radius);
  font-weight: 950;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-social-links a::after {
  content: ">";
}

.contact-social-links a:hover,
.contact-social-links a:focus {
  color: #fffaf2;
  background: var(--tholch-green);
}

.tholch-social-buttons {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.65rem;
  align-items: center;
}

.tholch-social-button {
  display: inline-flex;
  width: 48px;
  height: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--tholch-ink);
  background: transparent;
  border: 0;
  border-radius: 50%;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.tholch-social-button svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  fill: currentColor;
}

.tholch-social-button:hover,
.tholch-social-button:focus-visible {
  color: var(--tholch-amber);
  background: rgba(197, 139, 44, 0.12);
  outline: 2px solid currentColor;
  outline-offset: 2px;
  transform: translateY(-1px);
}

.is-contact-card-social {
  margin-top: 0.2rem;
}

.is-contact-social {
  align-content: start;
  gap: 0.9rem;
}

.is-contact-social .tholch-social-button {
  width: 56px;
  height: 56px;
  min-height: 56px;
}

.is-contact-social .tholch-social-button svg {
  width: 30px;
  height: 30px;
}

.button-row .tholch-social-buttons {
  flex: 0 0 auto;
}

.is-dark-social .tholch-social-button {
  color: #fffaf2;
}

.is-home-social {
  display: flex;
  justify-self: start;
}

.is-home-social .tholch-social-button {
  color: var(--tholch-ink);
}

.is-dark-social .tholch-social-button:hover,
.is-dark-social .tholch-social-button:focus-visible,
.is-home-social .tholch-social-button:hover,
.is-home-social .tholch-social-button:focus-visible {
  color: var(--tholch-amber);
  background: rgba(197, 139, 44, 0.12);
}

.contact-trade-cta {
  color: #fffaf2;
  background:
    radial-gradient(circle at 85% 0%, rgba(197, 139, 44, 0.32), transparent 24rem),
    linear-gradient(135deg, rgba(141, 75, 34, 0.96), rgba(31, 27, 23, 0.98));
  padding: clamp(3rem, 9vw, 5rem) 0;
}

.contact-trade-cta h2,
.contact-trade-cta p {
  color: #fffaf2;
}

.contact-trade-cta p {
  max-width: 640px;
  color: rgba(255, 250, 242, 0.82);
  font-weight: 700;
}

.contact-footer-cta {
  padding: clamp(3rem, 9vw, 5rem) 0;
  background: #fffaf2;
  text-align: center;
}

.contact-footer-cta h2 {
  max-width: 900px;
  margin-inline: auto;
}

.legal-page {
  padding: 0;
}

.legal-hero {
  color: #fffaf2;
  background:
    radial-gradient(circle at 82% 10%, rgba(197, 139, 44, 0.34), transparent 24rem),
    linear-gradient(135deg, rgba(52, 71, 54, 0.96), rgba(31, 27, 23, 0.98));
  padding: clamp(4rem, 12vw, 7rem) 0 clamp(2.5rem, 8vw, 4rem);
}

.legal-hero h1 {
  max-width: 980px;
  color: #fffaf2;
  font-family: var(--tholch-font-body);
  font-size: 2.8rem;
  font-weight: 950;
  line-height: 0.86;
  text-transform: uppercase;
}

.legal-hero p {
  max-width: 720px;
  color: rgba(255, 250, 242, 0.82);
  font-size: 1.05rem;
  font-weight: 700;
}

.legal-section {
  padding: clamp(3rem, 9vw, 5.5rem) 0;
  background: #fffaf2;
}

.legal-layout {
  display: grid;
  gap: clamp(1.5rem, 6vw, 3rem);
}

.legal-nav {
  display: grid;
  gap: 0.55rem;
  align-self: start;
  padding: clamp(1rem, 4vw, 1.2rem);
  background: var(--tholch-bg);
  border: 1px solid var(--tholch-border);
  border-radius: var(--tholch-radius);
}

.legal-nav a,
.legal-nav button {
  color: var(--tholch-ink);
  background: transparent;
  border: 0;
  padding: 0;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
}

.legal-nav a:hover,
.legal-nav a:focus,
.legal-nav button:hover,
.legal-nav button:focus {
  color: var(--tholch-amber);
}

.legal-content {
  display: grid;
  gap: clamp(1.2rem, 4vw, 2rem);
}

.legal-content section {
  padding-bottom: clamp(1.2rem, 4vw, 2rem);
  border-bottom: 1px solid var(--tholch-border);
}

.legal-content section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-content h2 {
  font-family: var(--tholch-font-body);
  font-size: 1.8rem;
  font-weight: 950;
  line-height: 0.94;
  text-transform: uppercase;
}

.legal-content p {
  max-width: 760px;
  color: #3a332c;
  font-weight: 650;
}

.tholch-brothers-section {
  color: var(--tholch-ink);
  background:
    linear-gradient(90deg, rgba(52, 71, 54, 0.16), transparent 42%),
    #e9d8b9;
}

.tholch-story-panel--compact {
  display: grid;
  gap: clamp(1.25rem, 5vw, 2rem);
  align-items: center;
}

.tholch-story-panel--compact h2 {
  max-width: 760px;
}

.tholch-story-panel p {
  max-width: 720px;
  font-size: clamp(1.08rem, 3vw, 1.32rem);
}

.tholch-story-photo,
.tholch-story-photo-placeholder {
  display: grid;
  min-height: 220px;
  border: 1px solid rgba(31, 27, 23, 0.18);
  border-radius: var(--tholch-radius);
  overflow: hidden;
}

.tholch-story-photo {
  background: var(--tholch-green);
}

.tholch-story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tholch-story-photo-placeholder {
  color: #fffaf2;
  background:
    linear-gradient(135deg, rgba(31, 27, 23, 0.18), rgba(31, 27, 23, 0.70)),
    repeating-linear-gradient(45deg, rgba(255, 250, 242, 0.16) 0 1px, transparent 1px 24px),
    var(--tholch-green);
}

.tholch-trade-section {
  background:
    radial-gradient(circle at 85% 0%, rgba(197, 139, 44, 0.32), transparent 24rem),
    linear-gradient(135deg, rgba(141, 75, 34, 0.96), rgba(31, 27, 23, 0.98));
}

.tholch-trade-section--compact {
  padding-block: clamp(3rem, 8vw, 5rem);
}

.tholch-social-section {
  color: #fffaf2;
  background: #1f1b17;
}

.tholch-contact-cta {
  background:
    linear-gradient(135deg, rgba(197, 139, 44, 0.18), transparent 42%),
    #fffaf2;
}

.tholch-contact-panel {
  max-width: 980px;
}

.tholch-contact-panel .button-row {
  margin-top: 1.3rem;
}

.content-area {
  width: min(100% - 32px, 860px);
  margin-inline: auto;
}

.entry-header {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.entry-title,
.page-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
}

.entry-content > * {
  margin-bottom: 1.4rem;
}

.entry-content > :last-child {
  margin-bottom: 0;
}

.entry-content .alignwide {
  width: min(100vw - 32px, var(--tholch-container));
  max-width: none;
  margin-inline: calc((100% - min(100vw - 32px, var(--tholch-container))) / 2);
}

.entry-content .alignfull {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.featured-image {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  overflow: hidden;
  border-radius: var(--tholch-radius);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.post-card {
  overflow: hidden;
  background: var(--tholch-surface);
  border: 1px solid var(--tholch-border);
  border-radius: var(--tholch-radius);
  box-shadow: var(--tholch-shadow);
}

.post-card-content {
  padding: 1.2rem;
}

.post-card h2 {
  font-size: 1.6rem;
}

.post-card h2 a {
  color: var(--tholch-ink);
  text-decoration: none;
}

.post-card h2 a:hover,
.post-card h2 a:focus {
  color: var(--tholch-amber);
}

.pagination,
.post-navigation {
  margin-top: 2.5rem;
}

.site-footer {
  color: #f6efe4;
  background:
    linear-gradient(135deg, rgba(141, 75, 34, 0.22), transparent 42%),
    var(--tholch-ink);
  padding: clamp(1.75rem, 5vw, 3rem) 0 0;
}

.footer-layout {
  display: grid;
  gap: clamp(1.25rem, 4vw, 2.25rem);
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 380px;
  text-align: left;
}

.footer-logo {
  width: fit-content;
  margin: 0 0 0.65rem;
}

.footer-logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.footer-logo .custom-logo-link:not(:has(img)) {
  line-height: 0.9;
}

.footer-logo .custom-logo {
  display: block;
  width: auto;
  max-width: clamp(140px, 24vw, 260px);
  height: auto;
  max-height: none;
  object-fit: contain;
  filter: none;
}

.footer-title {
  margin: 0;
  color: #fff;
  font-family: var(--tholch-font-body);
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.82;
  text-transform: uppercase;
}

.footer-brand-line {
  max-width: 20rem;
  margin: 0;
  color: rgba(255, 250, 242, 0.78);
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.35;
}

.footer-block {
  min-width: 0;
}

.footer-heading {
  margin-bottom: 0.55rem;
  color: var(--tholch-gold);
  font-family: var(--tholch-font-body);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-menu,
.footer-contact-list,
.footer-social-list {
  display: grid;
  gap: 0.2rem 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu a,
.footer-social-list a {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 34px;
  align-items: center;
  color: #f6efe4;
  font-weight: 900;
  overflow-wrap: break-word;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-menu a:hover,
.footer-menu a:focus,
.footer-social-list a:hover,
.footer-social-list a:focus {
  color: var(--tholch-gold);
}

.is-footer-social .tholch-social-button {
  width: 44px;
  height: 44px;
  min-height: 44px;
  color: #f6efe4;
  background: transparent;
}

.is-footer-social .tholch-social-button svg {
  width: 24px;
  height: 24px;
}

.is-footer-social .tholch-social-button:hover,
.is-footer-social .tholch-social-button:focus-visible {
  color: var(--tholch-gold);
  background: rgba(230, 185, 0, 0.12);
}

.footer-contact-list {
  gap: 0.55rem;
}

.footer-contact-list li {
  display: grid;
  gap: 0.15rem;
}

.footer-contact-list span {
  color: rgba(255, 250, 242, 0.56);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact-list a,
.footer-contact-list strong {
  color: #fffaf2;
  font-size: 1rem;
  font-style: normal;
  font-weight: 850;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.footer-contact-list a:hover,
.footer-contact-list a:focus {
  color: var(--tholch-gold);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(1.25rem, 4vw, 2rem);
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255, 250, 242, 0.14);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 250, 242, 0.62);
  font-size: 0.86rem;
  font-weight: 700;
}

.footer-bottom a,
.footer-legal-links button {
  color: rgba(255, 250, 242, 0.78);
  background: transparent;
  border: 0;
  padding: 0;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  align-items: center;
}

.footer-bottom a:hover,
.footer-bottom a:focus,
.footer-legal-links button:hover,
.footer-legal-links button:focus {
  color: var(--tholch-gold);
}

p.section-kicker {
  font-size: 0.78rem;
  line-height: 1.2;
}

