@font-face {
  font-family: "Harr Blackletter";
  src: url("old-english-text-mt.ttf") format("truetype");
  font-display: swap;
}

:root {
  --site-max: 1920px;
  --ink: #0b0d0c;
  --green: #163f2a;
  --green-light: #275f3d;
  --gold: #c8a966;
  --cream: #f2eadb;
  --paper: #f6f1e8;
  --red: #a9473e;
}

* { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; overflow-x: hidden; background: #060806; color: var(--ink); font-family: Arial, Helvetica, sans-serif; text-rendering: optimizeLegibility; }
main { position: relative; width: min(100%, var(--site-max)); margin-inline: auto; overflow: hidden; overflow: clip; background: var(--paper); box-shadow: 0 0 80px rgba(0, 0, 0, .38); }
img, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
svg { width: 1.05rem; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-fill { fill: currentColor; stroke: none; }
.scroll-progress { position: fixed; z-index: 1000; top: 0; left: 0; right: 0; width: min(100%, var(--site-max)); height: 2px; margin-inline: auto; pointer-events: none; }
.scroll-progress span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, #8a6d35, var(--gold), #f0d99a); box-shadow: 0 0 12px rgba(200,169,102,.55); transform: scaleX(var(--page-progress, 0)); transform-origin: left center; }

.site-header {
  position: absolute; z-index: 20; top: 0; left: 0; right: 0; height: 104px;
  width: min(100%, var(--site-max)); margin-inline: auto;
  padding: 0 clamp(24px, 5vw, 80px); display: flex; align-items: center; justify-content: space-between;
  color: var(--cream); border-bottom: 1px solid rgba(242, 234, 219, 0.13); transition: height .45s ease, background .45s ease, box-shadow .45s ease, backdrop-filter .45s ease;
}
.is-scrolled .site-header { position: fixed; height: 78px; background: rgba(10,13,11,.88); box-shadow: 0 16px 42px rgba(0,0,0,.2); backdrop-filter: blur(18px); }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong {
  color: #4f5733;
  font-family: "UnifrakturCook", "Harr Blackletter", "Old English Text MT", Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  line-height: .82;
  letter-spacing: .015em;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  text-shadow: 0 0 .7px #e2bd59, 0 0 1.9px #d0ad4f, 0 1px 1px rgba(0, 0, 0, .55);
}
.brand-copy small { margin-top: 7px; padding-left: 3px; font-size: 10px; letter-spacing: 0.38em; text-transform: uppercase; color: rgba(242,234,219,.62); }
nav { position: absolute; left: 27.5%; display: flex; gap: clamp(20px, 2.4vw, 40px); font-size: 13px; letter-spacing: 0.06em; transform: translateX(-50%); }
nav a { position: relative; color: rgba(242,234,219,.72); transition: color .2s; }
nav a::after { content: ""; position: absolute; right: 0; bottom: -10px; left: 0; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .35s cubic-bezier(.22,1,.36,1); }
nav a:hover { color: var(--cream); }
nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-cta { display: flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); }

.hero { min-height: min(860px, 100svh); display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr); background: var(--ink); color: var(--cream); overflow: hidden; }
.hero-copy { padding: 190px clamp(28px, 6.5vw, 106px) 80px; display: flex; flex-direction: column; justify-content: center; }
.eyebrow, .kicker { font-size: 11px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 12px; color: var(--gold); }
.eyebrow span { display: block; width: 32px; height: 1px; background: currentColor; }
.hero h1, .section-heading h2, .hours-intro h2 { margin: 27px 0 28px; font: 500 clamp(54px, 6.3vw, 104px)/.94 Georgia, "Times New Roman", serif; letter-spacing: -.045em; }
.hero h1 em, .section-heading h2 em, .hours-intro h2 em { color: var(--gold); font-weight: 400; }
.hero-copy > p { max-width: 590px; margin: 0; color: rgba(242,234,219,.66); font-size: clamp(16px, 1.45vw, 20px); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 10px; min-height: 54px; padding: 0 24px; border: 1px solid rgba(242,234,219,.26); font-size: 12px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.button-primary:hover { background: #ddc181; }
.button-ghost:hover { background: rgba(242,234,219,.07); }
.quick-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; max-width: 540px; padding-top: 40px; margin-top: 56px; border-top: 1px solid rgba(242,234,219,.14); }
.quick-facts div { display: flex; flex-direction: column; gap: 8px; }
.quick-facts span { color: rgba(242,234,219,.44); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.quick-facts strong { font-size: 13px; letter-spacing: .04em; }

.hero-visual { position: relative; min-height: min(860px, 100svh); background: radial-gradient(circle at 52% 38%, rgba(200,169,102,.14), transparent 27%), linear-gradient(145deg, #173b27 0%, #0c1710 58%, #11100d 100%); isolation: isolate; }
.hero-visual::after { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .18; background-image: repeating-linear-gradient(93deg, transparent 0 46px, rgba(255,255,255,.06) 47px, transparent 48px); }
.visual-orbit { position: absolute; border: 1px solid rgba(200,169,102,.22); border-radius: 50%; }
.orbit-one { width: 520px; height: 520px; top: 155px; left: 8%; transform: translate3d(0, calc(var(--hero-shift, 0px) * .24), 0); }
.orbit-two { width: 680px; height: 680px; top: 74px; left: -4%; border-color: rgba(200,169,102,.1); transform: translate3d(0, calc(var(--hero-shift, 0px) * -.18), 0); }
.hero-wordmark { position: absolute; top: 22%; left: 10%; display: flex; flex-direction: column; transform: rotate(-90deg) translateX(-100%); transform-origin: left top; color: rgba(242,234,219,.18); }
.hero-wordmark span { font: italic 78px/1 Georgia, serif; }
.hero-wordmark small { margin-top: 8px; font-size: 9px; font-weight: 700; letter-spacing: .5em; text-transform: uppercase; }
.beer-stage { position: absolute; top: 108px; right: 14%; width: auto; height: 66%; aspect-ratio: 2 / 3; margin: 0; display: grid; place-items: center; transform: translate3d(0, calc(var(--hero-shift, 0px) * -1), 0); will-change: transform; }
.beer-stage::after { content: ""; position: absolute; z-index: 0; left: 50%; bottom: 20px; width: 54%; height: 7%; border-radius: 50%; background: rgba(0,0,0,.62); filter: blur(18px); transform: translateX(-50%); animation: glass-shadow-arrive 1.35s cubic-bezier(.22,.72,.28,1) .8s both; }
.beer-glow { position: absolute; z-index: 0; top: 8%; left: 50%; width: min(560px, 92%); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(200,169,102,.19) 0, rgba(200,169,102,.07) 42%, transparent 70%); transform: translateX(-50%); }
.guinness-glass { position: relative; z-index: 2; width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 34px 36px rgba(0,0,0,.42)); animation: glass-arrive 2.15s cubic-bezier(.22,.72,.28,1) .18s both; will-change: transform, opacity; }
.bubble-mask { position: absolute; z-index: 3; top: 40%; left: 33%; width: 34%; height: 55%; overflow: hidden; opacity: .72; mix-blend-mode: screen; filter: drop-shadow(0 0 2px rgba(223,187,112,.2)); clip-path: polygon(8% 0, 92% 0, 76% 100%, 24% 100%); pointer-events: none; animation: bubbles-enter .9s ease-out 3.75s both; }
.nitrogen-bubbles { position: absolute; inset: 0; }
.nitrogen-bubbles i { position: absolute; bottom: -18px; left: 50%; display: block; min-width: 3px; min-height: 3px; width: 5px; height: 5px; border: 1px solid rgba(224,194,137,.76); border-radius: 50%; background: rgba(214,174,96,.27); box-shadow: 0 0 5px rgba(224,190,122,.36), inset 0 0 2px rgba(255,237,201,.52); animation: nitrogen-rise 7.2s linear infinite; }
.nitrogen-bubbles i:nth-child(1) { left: 9%; width: 3px; height: 3px; animation-delay: -1.2s; animation-duration: 7.2s; }
.nitrogen-bubbles i:nth-child(2) { left: 18%; width: 5px; height: 5px; animation-delay: -3.4s; animation-duration: 9.3s; }
.nitrogen-bubbles i:nth-child(3) { left: 27%; animation-delay: -4.6s; animation-duration: 7.7s; }
.nitrogen-bubbles i:nth-child(4) { left: 35%; width: 2px; height: 2px; animation-delay: -.8s; animation-duration: 6.6s; }
.nitrogen-bubbles i:nth-child(5) { left: 44%; width: 4px; height: 4px; animation-delay: -2.7s; animation-duration: 10.2s; }
.nitrogen-bubbles i:nth-child(6) { left: 53%; animation-delay: -5.1s; animation-duration: 8.4s; }
.nitrogen-bubbles i:nth-child(7) { left: 62%; width: 3px; height: 3px; animation-delay: -1.9s; animation-duration: 11.4s; }
.nitrogen-bubbles i:nth-child(8) { left: 73%; width: 2px; height: 2px; animation-delay: -4.2s; animation-duration: 9.6s; }
.nitrogen-bubbles i:nth-child(9) { left: 84%; width: 2px; height: 2px; animation-delay: -2.2s; animation-duration: 6.9s; }
.nitrogen-bubbles i:nth-child(10) { left: 92%; animation-delay: -5.8s; animation-duration: 8.6s; }
.nitrogen-bubbles i:nth-child(11) { left: 14%; width: 2px; height: 2px; animation-delay: -4.1s; animation-duration: 8.9s; }
.nitrogen-bubbles i:nth-child(12) { left: 31%; width: 3px; height: 3px; animation-delay: -1.5s; animation-duration: 9.8s; }
.nitrogen-bubbles i:nth-child(13) { left: 48%; width: 3px; height: 3px; animation-delay: -3.8s; animation-duration: 7.1s; }
.nitrogen-bubbles i:nth-child(14) { left: 58%; width: 2px; height: 2px; animation-delay: -.4s; animation-duration: 8s; }
.nitrogen-bubbles i:nth-child(15) { left: 68%; width: 4px; height: 4px; animation-delay: -5.4s; animation-duration: 10.5s; }
.nitrogen-bubbles i:nth-child(16) { left: 79%; width: 3px; height: 3px; animation-delay: -2.9s; animation-duration: 7.8s; }
.nitrogen-bubbles i:nth-child(17) { left: 39%; width: 2px; height: 2px; animation-delay: -6.1s; animation-duration: 9.2s; }
.nitrogen-bubbles i:nth-child(18) { left: 88%; width: 4px; height: 4px; animation-delay: -1.1s; animation-duration: 8.7s; }
.beer-stage figcaption { position: absolute; z-index: 4; left: 0; right: auto; bottom: -72px; display: flex; flex-direction: column; gap: 6px; padding-left: 18px; text-align: left; text-transform: uppercase; }
.beer-stage figcaption::before { content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 1px; background: var(--gold); transform: scaleY(1); transform-origin: bottom; }
.motion-ready .beer-stage figcaption { opacity: 0; transform: translate3d(-24px, 0, 0); animation: caption-arrive .9s cubic-bezier(.22, 1, .36, 1) .72s forwards; }
.motion-ready .beer-stage figcaption::before { transform: scaleY(0); animation: caption-line .75s cubic-bezier(.22, 1, .36, 1) .58s forwards; }
.beer-stage figcaption span { color: var(--gold); font: italic 15px/1 Georgia, serif; letter-spacing: .08em; text-transform: none; }
.beer-stage figcaption strong { color: rgba(242,234,219,.48); font-size: 8px; letter-spacing: .22em; }

@media (min-width: 1400px) {
  .beer-stage figcaption { left: -14%; bottom: -62px; gap: 8px; padding-left: 22px; }
  .beer-stage figcaption span { font-size: 19px; }
  .beer-stage figcaption strong { font-size: 10px; letter-spacing: .25em; }
}

@keyframes caption-arrive {
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes caption-line {
  to { transform: scaleY(1); }
}

@keyframes nitrogen-rise {
  0% { bottom: -18px; transform: translate3d(0, 0, 0) scale(.65); opacity: 0; }
  12% { opacity: .86; }
  68% { opacity: .63; }
  84% { opacity: .27; }
  100% { bottom: 100%; transform: translate3d(5px, 0, 0) scale(1.3); opacity: 0; }
}

@keyframes glass-arrive {
  from { opacity: 0; transform: translate3d(26vw, 0, 0) rotate(1deg) scale(.992); }
  to { opacity: 1; transform: translate3d(0, 0, 0) rotate(0) scale(1); }
}

@keyframes glass-shadow-arrive {
  from { opacity: 0; transform: translateX(-50%) scaleX(.35); }
  to { opacity: 1; transform: translateX(-50%) scaleX(1); }
}

@keyframes bubbles-enter {
  from { opacity: 0; }
  to { opacity: .72; }
}

.feature-section { padding: 120px clamp(24px, 6vw, 96px) 130px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 70px; }
.kicker { margin: 0; color: var(--green-light); }
.section-heading h2 { margin: 0; font-size: clamp(45px, 5vw, 74px); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #d8d0c2; border-bottom: 1px solid #d8d0c2; }
.feature-card { min-height: 310px; padding: 34px clamp(20px, 2.8vw, 44px) 42px; border-right: 1px solid #d8d0c2; }
.feature-card:first-child { padding-left: 0; }
.feature-card:last-child { border-right: 0; padding-right: 0; }
.feature-rule { width: 100%; height: 1px; margin: 0 0 54px; background: #d8d0c2; }
.feature-card h3 { margin: 0 0 18px; font: 600 29px/1.1 Georgia, serif; }
.feature-card p { max-width: 330px; margin: 0; color: #6f6a62; font-size: 14px; line-height: 1.75; }

.hours-section { display: grid; grid-template-columns: .86fr 1.14fr; background: var(--green); color: var(--cream); }
.hours-intro { padding: 100px clamp(28px, 6vw, 90px); border-right: 1px solid rgba(242,234,219,.13); }
.kicker.light { color: var(--gold); }
.hours-intro h2 { margin: 28px 0; font-size: clamp(45px, 4.6vw, 72px); }
.hours-intro > p:not(.kicker) { max-width: 470px; margin: 0; color: rgba(242,234,219,.62); font-size: 15px; line-height: 1.75; }
.hours-intro > a { display: inline-flex; align-items: center; gap: 10px; margin-top: 36px; color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.hours-card { padding: 78px clamp(28px, 6vw, 96px) 62px; }
.hours-row { display: flex; justify-content: space-between; gap: 24px; padding: 24px 0; border-bottom: 1px solid rgba(242,234,219,.14); color: rgba(242,234,219,.62); }
.hours-row span { font: 500 clamp(19px, 2vw, 27px)/1.2 Georgia, serif; }
.hours-row strong { font-size: clamp(14px, 1.5vw, 20px); letter-spacing: .04em; color: var(--cream); }
.hours-row.accent strong { color: var(--gold); }
.hours-note { margin: 22px 0 0; color: rgba(242,234,219,.38); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }

.story-section { display: grid; grid-template-columns: .45fr 1.55fr; gap: clamp(40px, 8vw, 140px); padding: 130px clamp(24px, 7vw, 112px); background: var(--paper); }
.story-index { align-self: start; padding-top: 12px; font: italic clamp(54px, 7vw, 110px)/1 Georgia, serif; color: rgba(22,63,42,.1); writing-mode: vertical-rl; }
.story-copy { max-width: 920px; }
.story-copy blockquote { margin: 34px 0 40px; font: 500 clamp(38px, 4.6vw, 68px)/1.12 Georgia, serif; letter-spacing: -.035em; color: var(--green); }
.story-copy > p:last-child { max-width: 700px; margin: 0 0 0 auto; padding-left: 30px; border-left: 2px solid var(--gold); color: #6f6a62; font-size: 15px; line-height: 1.85; }

.location-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; background: var(--ink); color: var(--cream); }
.location-copy { padding: 110px clamp(28px, 7vw, 108px); display: flex; flex-direction: column; justify-content: center; }
.location-copy h2 { margin: 28px 0; font: 500 clamp(48px, 5.4vw, 82px)/.98 Georgia, serif; letter-spacing: -.045em; }
.location-copy h2 em { color: var(--gold); font-weight: 400; }
.location-copy > p:not(.kicker) { max-width: 540px; margin: 0; color: rgba(242,234,219,.58); line-height: 1.8; }
.location-copy address { display: flex; flex-direction: column; gap: 7px; margin: 38px 0 34px; font-style: normal; }
.location-copy address span { margin-bottom: 7px; color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.location-copy address strong { font: 500 22px/1.2 Georgia, serif; }
.location-copy .button { align-self: flex-start; }
.location-panel { position: relative; overflow: hidden; min-height: 720px; background: #173321; }
.map-frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.final-cta { padding: 130px 24px; text-align: center; background: var(--gold); color: var(--ink); }
.final-cta .kicker { color: rgba(11,13,12,.65); }
.final-cta h2 { margin: 28px 0 42px; font: 500 clamp(54px, 7vw, 104px)/.92 Georgia, serif; letter-spacing: -.05em; }
.final-cta h2 em { color: var(--green); font-weight: 400; }
.final-actions { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 30px; }
.button-dark { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.button-dark:hover { background: var(--green); border-color: var(--green); }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

footer { min-height: 150px; padding: 40px clamp(24px, 6vw, 96px); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; background: var(--ink); color: var(--cream); }
.footer-brand { justify-self: start; }
footer p { margin: 0; color: rgba(242,234,219,.42); font-size: 10px; letter-spacing: .13em; text-align: center; text-transform: uppercase; }
.footer-links { justify-self: end; display: flex; align-items: center; justify-content: flex-end; gap: 18px; }
.footer-links a { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.footer-links a + a { padding-left: 18px; border-left: 1px solid rgba(242,234,219,.2); }

/* Scroll choreography */
.motion-ready [data-reveal] { opacity: 0; filter: blur(4px); transform: translate3d(0, 46px, 0); transition: opacity .85s cubic-bezier(.22,1,.36,1), transform 1s cubic-bezier(.22,1,.36,1), filter .85s ease; }
.motion-ready [data-reveal="left"] { transform: translate3d(-58px, 0, 0); }
.motion-ready [data-reveal="right"] { transform: translate3d(58px, 0, 0); }
.motion-ready [data-reveal="card"] { transform: translate3d(0, 52px, 0) scale(.975); }
.motion-ready [data-reveal="fade"] { transform: scale(.988); }
.motion-ready [data-reveal="map"] { clip-path: inset(0 0 100% 0); filter: saturate(.7); transform: none; transition: opacity .8s ease, clip-path 1.25s cubic-bezier(.77,0,.18,1), filter 1.2s ease; }
.motion-ready [data-reveal].is-visible { opacity: 1; filter: none; transform: translate3d(0,0,0) scale(1); }
.motion-ready [data-reveal="map"].is-visible { clip-path: inset(0); }
.motion-ready .site-header[data-reveal] { transition: opacity .85s ease, transform .9s cubic-bezier(.22,1,.36,1), filter .85s ease, height .45s ease, background .45s ease, box-shadow .45s ease, backdrop-filter .45s ease; }
.motion-ready .hero-copy [data-reveal]:nth-child(2) { transition-delay: .08s; }
.motion-ready .hero-copy [data-reveal]:nth-child(3) { transition-delay: .16s; }
.motion-ready .hero-copy [data-reveal]:nth-child(4) { transition-delay: .24s; }
.motion-ready .hero-copy [data-reveal]:nth-child(5) { transition-delay: .32s; }
.motion-ready .feature-card:nth-child(2) { transition-delay: .12s; }
.motion-ready .feature-card:nth-child(3) { transition-delay: .24s; }
.motion-ready .feature-card .feature-rule { transform: scaleX(0); transform-origin: left center; transition: transform 1s cubic-bezier(.22,1,.36,1) .18s; }
.motion-ready .feature-card.is-visible .feature-rule { transform: scaleX(1); }
.motion-ready .hours-card .hours-row { opacity: 0; transform: translate3d(26px,0,0); transition: opacity .7s ease, transform .8s cubic-bezier(.22,1,.36,1); }
.motion-ready .hours-card.is-visible .hours-row { opacity: 1; transform: none; }
.motion-ready .hours-card.is-visible .hours-row:nth-child(1) { transition-delay: .14s; }
.motion-ready .hours-card.is-visible .hours-row:nth-child(2) { transition-delay: .22s; }
.motion-ready .hours-card.is-visible .hours-row:nth-child(3) { transition-delay: .30s; }
.motion-ready .hours-card.is-visible .hours-row:nth-child(4) { transition-delay: .38s; }
.motion-ready .final-cta.is-visible h2 { animation: premium-title 1.1s cubic-bezier(.22,1,.36,1) both; }

@keyframes premium-title {
  from { letter-spacing: -.085em; opacity: .35; }
  to { letter-spacing: -.05em; opacity: 1; }
}

@media (max-width: 1180px) {
  .site-header nav { display: none; }
}

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 740px; padding-top: 160px; }
  .hero-visual { min-height: 680px; }
  .beer-stage { top: 34px; right: 11%; left: auto; bottom: auto; width: auto; height: 82%; }
  .bubble-mask { top: 40%; left: 34%; width: 32%; height: 55%; }
  .feature-grid { grid-template-columns: 1fr; border-bottom: 0; }
  .feature-card, .feature-card:first-child, .feature-card:last-child { min-height: auto; padding: 30px 0 42px; border-right: 0; border-bottom: 1px solid #d8d0c2; }
  .feature-rule { margin: 0 0 28px; }
  .hours-section { grid-template-columns: 1fr; }
  .hours-intro { border-right: 0; border-bottom: 1px solid rgba(242,234,219,.13); }
  .story-section { grid-template-columns: 1fr; }
  .story-index { display: none; }
  .location-section { grid-template-columns: 1fr; }
  .location-panel { min-height: 560px; }
  footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-brand, .footer-links { justify-self: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 640px) {
  .site-header { height: 82px; padding-right: max(20px, env(safe-area-inset-right)); padding-left: max(20px, env(safe-area-inset-left)); }
  .is-scrolled .site-header { height: 70px; }
  .brand-copy strong { font-size: 37px; }
  .brand-copy small { margin-top: 6px; font-size: 8px; }
  .header-cta { font-size: 0; }
  .header-cta svg { width: 22px; }
  .hero-copy { min-height: 690px; padding-top: 130px; }
  .hero h1 { font-size: clamp(47px, 15vw, 68px); }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .quick-facts { grid-template-columns: 1fr; gap: 24px; }
  .hero-visual { min-height: 590px; }
  .beer-stage { top: 54px; right: 0; left: auto; bottom: auto; width: 72%; height: auto; }
  .beer-stage figcaption { left: 0; right: auto; bottom: -54px; }
  .bubble-mask { top: 40%; left: 33%; width: 34%; height: 55%; }
  .hero-wordmark { display: none; }
  .section-heading { display: block; }
  .section-heading h2 { margin-top: 24px; }
  .feature-section { padding-top: 86px; padding-bottom: 90px; }
  .hours-card { padding-top: 44px; }
  .hours-row { align-items: end; }
  .hours-row strong { white-space: nowrap; }
  .story-section { padding-top: 88px; padding-bottom: 90px; }
  .story-copy > p:last-child { margin-left: 0; }
  .location-copy .button { align-self: stretch; }
  .location-panel { min-height: 460px; }
  .final-cta { padding-top: 92px; padding-bottom: 92px; }
  .final-cta h2 { font-size: clamp(42px, 13vw, 58px); white-space: nowrap; }
  footer { padding-bottom: max(40px, env(safe-area-inset-bottom)); }
}

@media (max-width: 380px) {
  .hero-copy { padding-right: 20px; padding-left: 20px; }
  .hero h1 { font-size: clamp(42px, 14vw, 54px); }
  .eyebrow, .kicker { font-size: 9px; letter-spacing: .18em; }
  .button { padding-inline: 16px; }
  .hours-row { gap: 12px; }
  .hours-row span { font-size: 18px; }
  .location-copy address strong { font-size: 20px; }
  .footer-links { flex-wrap: wrap; }
}

@media (max-height: 700px) and (min-width: 900px) {
  .hero, .hero-visual { min-height: 700px; }
  .hero-copy { padding-top: 140px; padding-bottom: 54px; }
  .hero h1 { font-size: clamp(52px, 5.4vw, 82px); margin-block: 20px 22px; }
  .quick-facts { margin-top: 34px; padding-top: 28px; }
  .beer-stage { top: 80px; width: auto; height: 68%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
  .nitrogen-bubbles i { animation: none !important; opacity: .28; }
  .guinness-glass, .bubble-mask, .beer-stage::after { animation: none !important; }
  .scroll-progress { display: none; }
  .beer-stage, .visual-orbit { transform: none !important; }
  .motion-ready .beer-stage figcaption { opacity: 1 !important; transform: none !important; animation: none !important; }
  .motion-ready .beer-stage figcaption::before { transform: scaleY(1) !important; animation: none !important; }
  .motion-ready [data-reveal], .motion-ready .hours-card .hours-row { opacity: 1 !important; filter: none !important; clip-path: none !important; transform: none !important; }
  .motion-ready .feature-card .feature-rule { transform: scaleX(1) !important; }
  .motion-ready .final-cta.is-visible h2 { animation: none !important; }
}
