﻿/* Foundation */
:root {
  --primary:#c7231e;
  --paper:#fff5e8;
  --ink:#302321;
  --display:'Barlow Condensed','Arial Narrow',Impact,sans-serif;
  --gutter:clamp(22px,5vw,96px);
  --section:clamp(70px,8vw,145px)
}
* {
  box-sizing:border-box
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:88px
}
body {
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:'DM Sans',Arial,sans-serif;
  line-height:1.6
}
body.menu-open {
  overflow:hidden
}
h1,h2,h3,p,figure {
  margin:0
}
h1,h2,h3 {
  line-height:.95
}
h2,h3 {
  overflow-wrap:anywhere;
  font-family:var(--display);
  text-transform:uppercase;
  font-weight:800
}
h2 {
  font-size:clamp(52px,6.5vw,112px);
  letter-spacing:-.025em
}
a {
  color:inherit;
  text-decoration:none
}
button {
  font:inherit;
  cursor:pointer
}
img {
  display:block;
  max-width:100%;
  height:auto
}
button,a {
  -webkit-tap-highlight-color:transparent
}
a:focus-visible,button:focus-visible {
  outline:3px solid currentColor;
  outline-offset:6px
}
[hidden] {
  display:none!important
}
.sr-only {
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  overflow:hidden;
  clip-path:inset(50%);
  white-space:nowrap
}
.skip {
  position:fixed;
  left:20px;
  top:-100px;
  z-index:100;
  background:var(--paper);
  color:var(--ink);
  padding:12px 20px
}
.skip:focus {
  top:16px
}
.section-space {
  padding:var(--section) var(--gutter)
}
.eyebrow {
  font-size:11px;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  line-height:1.6
}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  min-height:54px;
  padding:16px 25px;
  background:var(--primary);
  color:var(--paper);
  font-size:12px;
  font-weight:700;
  letter-spacing:.07em;
  text-transform:uppercase;
  transition:background .2s
}
.button:hover {
  background:#a61b17
}
.button>span[aria-hidden] {
  font-size:22px;
  line-height:1
}
.text-link {
  display:inline-flex;
  align-items:center;
  gap:35px;
  min-height:48px;
  border-bottom:1px solid currentColor;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em
}
.text-link span[aria-hidden] {
  font-size:22px
}
.text-link:hover {
  opacity:.8
}
.section-heading {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:25px;
  margin-bottom:42px
}
.section-heading h2 {
  color:var(--primary)
}
.section-heading p {
  font-size:14px;
  line-height:1.6
}
.display-sub {
  font-family:var(--display);
  font-weight:800;
  text-transform:uppercase;
  line-height:1;
  letter-spacing:-.02em
}
/* Header and mobile navigation */
.site-header {
  position:fixed;
  z-index:20;
  inset:0 0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  height:104px;
  padding:12px var(--gutter);
  color:var(--paper);
  transition:background .25s,color .25s,height .25s
}
.brand {
  display:block;
  flex-shrink:0
}
.brand img {
  width:77px;
  height:auto
}
.site-header .brand {
  opacity:0;
  visibility:hidden;
  transition:opacity .25s,visibility .25s
}
.site-header.is-scrolled .brand {
  opacity:1;
  visibility:visible
}
.site-header .brand img,.site-footer .brand img {
  filter:brightness(0) invert(94%) sepia(11%) saturate(364%) hue-rotate(332deg) brightness(104%)
}
.site-header nav {
  display:flex;
  align-items:center;
  gap:clamp(20px,2.5vw,42px)
}
.language-switcher {
  display:flex;
  align-items:center;
  gap:2px;
  flex-shrink:0;
}
.language-switcher a {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:44px;
  min-height:44px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.06em;
  border:1px solid transparent;
  border-radius:3px;
}
.language-switcher a[aria-current="page"] {
  border-color:currentColor;
}
.language-switcher a:hover {
  text-decoration:underline;
  text-underline-offset:4px;
}
.language-switcher a:focus-visible {
  outline:2px solid currentColor;
  outline-offset:3px;
}
@media(max-width:800px) {
  .language-switcher {
    margin-top:16px;
    gap:8px;
  }
}
.site-header nav>a {
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:700
}
.site-header nav>a:not(.button) {
  padding-block:13px
}
.site-header.is-scrolled,.site-header.is-open {
  height:88px;
  background:var(--paper);
  color:var(--ink);
  border-bottom:1px solid #30232120
}
.site-header.is-scrolled .brand img,.site-header.is-open .brand img {
  filter:none
}
.menu-toggle {
  border:0;
  background:none;
  color:inherit;
  min-height:48px;
  align-items:center;
  gap:14px;
  font-size:12px;
  text-transform:uppercase;
  font-weight:700
}
.hamburger {
  position:relative;
  width:24px;
  height:14px;
  border-block:2px solid currentColor
}
.hamburger:after {
  content:'';
  position:absolute;
  top:4px;
  left:0;
  width:24px;
  border-top:2px solid currentColor
}
/* Immersive opening */
.hero {
  position:relative;
  isolation:isolate;
  min-height:100vh;
  min-height:100svh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--ink);
  color:var(--paper);
  padding:145px 24px 115px;
  text-align:center
}
.hero video {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-2
}
.hero:after {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,#140e0ba6,#140e0b55 35%,#140e0b66 65%,#140e0ba6);
  z-index:-1
}
.hero-content>.eyebrow {
  margin-bottom:22px
}
.hero h1 {
  line-height:0
}
.hero-logo {
  width:clamp(240px,32vw,440px);
  max-width:100%;
  height:auto;
  margin-inline:auto;
  filter:brightness(0) invert(94%) sepia(11%) saturate(364%) hue-rotate(332deg) brightness(104%)
}
.hero-content>.booking-cta {
  position:relative;
  top:clamp(18px,2vw,32px)
}
.hero-claim {
  margin:30px 0 25px;
  font-size:clamp(17px,1.9vw,25px);
  font-weight:500
}
.hero-bottom {
  position:absolute;
  bottom:26px;
  left:var(--gutter);
  right:var(--gutter);
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  align-items:center;
  gap:15px;
  text-transform:uppercase;
  font-size:10px;
  letter-spacing:.1em
}
.hero-bottom>span {
  text-align:left
}
.hero-bottom>a {
  justify-self:center;
  display:flex;
  flex-direction:column;
  gap:2px;
  padding:8px 20px
}
.hero-bottom>a span {
  font-size:26px
}
/* Introduction */
.intro {
  position:relative;
  text-align:center;
  padding-bottom:70px
}
.intro>.eyebrow {
  color:var(--primary)
}
.intro-line {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:24px;
  margin:20px 0
}
.intro h2 {
  font-size:clamp(94px,13vw,210px);
  color:var(--primary)
}
.scribble {
  width:clamp(45px,7vw,104px);
  stroke:var(--primary);
  stroke-width:5;
  stroke-linecap:round;
  transform:rotate(-9deg)
}
.intro-copy {
  font-size:clamp(18px,2vw,26px);
  line-height:1.55
}
.side-note {
  display:block;
  margin-top:35px;
  font-size:13px;
  font-style:italic;
  transform:rotate(-5deg);
  color:var(--primary)
}
/* Photographic categories */
.categories {
  padding-top:45px
}
.category-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px
}
.photo-panel {
  position:relative;
  isolation:isolate;
  overflow:hidden;
  background:var(--ink);
  color:var(--paper)
}
.photo-panel>img {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-2
}
.photo-panel:after {
  content:'';
  position:absolute;
  inset:0;
  z-index:-1;
  background:linear-gradient(180deg,#17100b10,#17100b45 30%,#17100be8)
}
.category {
  display:flex;
  align-items:flex-end;
  min-height:460px;
  aspect-ratio:1.16;
  padding:clamp(26px,3vw,54px)
}
.category>img {
  transition:transform .7s ease
}
.category-copy {
  width:100%
}
.category .eyebrow {
  margin-bottom:12px
}
.category h3 {
  font-size:clamp(42px,4.7vw,78px);
  margin-bottom:17px
}
.category-copy>p:not(.eyebrow) {
  font-size:15px;
  line-height:1.6
}
.category .text-link {
  display:flex;
  justify-content:space-between;
  margin-top:22px;
  border-color:#fff5e870
}
.category:focus-visible {
  outline-color:var(--primary);
  outline-offset:5px
}
.category:nth-child(3)>img {
  object-position:40% center
}
@media(hover:hover) {
  .category:hover>img {
    transform:scale(1.035)
  }
}
/* Full-width stories */
.fire,.venue,.booking {
  min-height:750px;
  min-height:85svh;
  display:flex;
  align-items:center;
  padding:90px var(--gutter)
}
.panel-copy {
  max-width:1100px
}
.panel-copy>.eyebrow {
  margin-bottom:28px
}
.fire:after,.venue:after {
  background:linear-gradient(90deg,#140d0be0,#140d0b70 65%,#140d0b30)
}
.fire h2 {
  font-size:clamp(125px,19vw,300px);
  margin-bottom:25px
}
.fire .display-sub {
  font-size:clamp(40px,5.3vw,82px)
}
.underline {
  position:relative;
  display:inline-block
}
.underline:after {
  content:'';
  position:absolute;
  bottom:-10px;
  left:0;
  right:0;
  height:7px;
  background:var(--primary);
  transform:rotate(-3deg);
  border-radius:50% 20% 45% 15%
}
.photo-note {
  position:absolute;
  right:var(--gutter);
  bottom:32px;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.12em
}
.venue h2 {
  font-size:clamp(45px,6.2vw,100px)
}
.venue h2 span {
  display:block;
  margin-top:24px
}
.venue .text-link {
  margin-top:34px
}
.booking {
  min-height:720px;
  text-align:center;
  justify-content:center
}
.booking:after {
  background:#140d0ba8
}
.booking h2 {
  font-size:clamp(65px,8vw,132px)
}
.booking .panel-copy>p:not(.eyebrow) {
  font-size:clamp(19px,2vw,27px);
  margin:25px 0
}
.booking .button {
  margin-top:10px;
  min-height:64px;
  padding-inline:32px
}
/* Editorial split sections */
.split-section {
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:720px
}
.split-photo {
  position:relative;
  min-width:0;
  min-height:600px
}
.split-photo img {
  width:100%;
  height:100%;
  position:absolute;
  inset:0;
  object-fit:cover
}
.split-copy {
  min-width:0;
  padding:clamp(45px,6vw,100px);
  align-self:center
}
.split-copy>.eyebrow {
  margin-bottom:22px
}
.pizza h2 {
  color:var(--primary);
  font-size:clamp(85px,10vw,165px);
  margin-bottom:26px
}
.pizza .display-sub {
  font-size:clamp(42px,4.8vw,77px);
  color:var(--primary)
}
.split-copy>p:not(.eyebrow):not(.display-sub) {
  margin-top:28px;
  max-width:380px;
  font-size:16px
}
.split-copy>.text-link {
  margin-top:28px
}
.sharing {
  background:var(--primary);
  color:var(--paper)
}
.sharing h2 {
  font-size:clamp(45px,5.1vw,82px)
}
.sharing h2 span {
  display:block;
  margin-top:22px
}
.hand-arrow {
  width:130px;
  stroke:var(--paper);
  stroke-width:3;
  stroke-linecap:round;
  stroke-linejoin:round;
  margin-top:22px
}
.sharing .split-photo img {
  object-position:40% center
}
/* Small gallery */
.gallery-grid {
  display:grid;
  grid-template-columns:1.15fr .8fr 1fr;
  gap:28px;
  align-items:start
}
.gallery-grid figure:nth-child(2) {
  margin-top:70px
}
.gallery-grid figure:nth-child(3) {
  margin-top:30px
}
.gallery-grid img {
  width:100%;
  object-fit:cover;
  aspect-ratio:4/5
}
.gallery-grid figure:nth-child(2) img {
  aspect-ratio:2/3
}
.gallery-grid figcaption {
  display:flex;
  justify-content:space-between;
  padding-top:15px;
  font-size:10px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase
}
/* House beer */
.beer {
  background:#eddfc7
}
.beer h2 {
  color:var(--primary);
  font-size:clamp(52px,6vw,96px)
}
.beer .split-copy>p:not(.eyebrow) {
  max-width:470px
}
.beer .split-photo img {
  object-position:55% center
}
/* Visit and footer */
.hours-table {
  width:100%;
  border-collapse:collapse;
  font-size:15px;
  font-variant-numeric:tabular-nums
}
.hours-table th,.hours-table td {
  padding:10px 0;
  border-bottom:1px solid #30232120
}
.hours-table th {
  text-align:left;
  font-weight:500
}
.hours-table td {
  text-align:right;
  padding-left:16px;
  white-space:nowrap
}
.hours-table .closed-day {
  color:var(--primary)
}
.footer-legal {
  margin-top:20px;
  font-size:11px;
  letter-spacing:.04em
}
.visit h2 {
  color:var(--primary);
  margin-top:25px
}
.visit h3 {
  font-family:inherit;
  text-transform:none;
  font-size:20px;
  line-height:1.4;
  margin-bottom:15px
}
.visit address {
  font-style:normal;
  font-size:15px;
  line-height:1.7;
  margin-bottom:14px
}
.phone {
  display:block;
  width:fit-content;
  font-size:24px
}
.site-footer {
  padding:55px var(--gutter) 25px;
  background:var(--primary);
  color:var(--paper)
}
.footer-top {
  display:grid;
  grid-template-columns:.8fr 1.5fr 1fr;
  align-items:center;
  gap:35px;
  padding-bottom:50px
}
.site-footer .brand img {
  width:130px
}
.footer-top>p {
  font-family:var(--display);
  text-transform:uppercase;
  font-weight:700;
  font-size:clamp(35px,4vw,64px);
  line-height:1
}
.footer-top nav {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em
}
.footer-top nav a {
  min-height:44px;
  display:flex;
  align-items:center
}
.footer-bottom {
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding-top:25px;
  border-top:1px solid #fff5e84d;
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.08em
}
/* Progressive enhancement: content stays visible without JS. */
[data-reveal].reveal-ready {
  opacity:0;
  transform:translateY(22px);
  transition:opacity .7s ease,transform .7s ease
}
[data-reveal].is-visible {
  opacity:1;
  transform:none
}
/* Motion follows the visitor's scroll, without changing scroll behavior. */
.taste-ribbon {
  position:relative;
  overflow:hidden;
  padding:25px 0;
  background:var(--primary);
  color:var(--paper)
}
.taste-track { display:flex; width:max-content }
.taste-track>span {
  flex-shrink:0;
  font:800 clamp(42px,6vw,94px)/1.1 var(--display);
  text-transform:uppercase;
  white-space:nowrap
}
.taste-track i { display:inline-block; margin:0 .4em; font-style:normal; font-size:.65em; vertical-align:middle }
.motion-enabled .taste-track { animation:taste-loop 26s linear infinite }
.motion-enabled .hero-content { animation:hero-arrive 1s cubic-bezier(.2,.7,.2,1) both }
.motion-enabled .booking-cta {
  animation:booking-nudge 6s ease-in-out 2s infinite
}
.motion-enabled .booking-cta:hover,.motion-enabled .booking-cta:focus-visible,.motion-enabled .booking-cta:active {
  animation:none
}
@keyframes booking-nudge {
  0%, 6%, 18%, 100% { translate:0 0 }
  3%, 12% { translate:0 -3px }
}
.motion-enabled .scribble { transform:rotate(var(--scribble-turn,0deg)) }
.motion-enabled .fire>img,.motion-enabled .venue>img,.motion-enabled .booking>img {
  transform:translateY(var(--photo-shift,0px)) scale(1.12)
}
.button { transition:background .2s,transform .25s,box-shadow .25s }
.button>span[aria-hidden],.text-link span[aria-hidden] { transition:transform .25s }
.button:hover>span[aria-hidden],.text-link:hover span[aria-hidden] { transform:translate(3px,-3px) }
.category-copy { transition:transform .4s }
.category:focus-visible .category-copy { transform:translateY(-8px) }
.split-photo { overflow:hidden }
.gallery-grid figure { overflow:hidden }
.gallery-grid img { transition:transform .7s,filter .7s }
[data-reveal].reveal-ready { transition-duration:.85s; transition-delay:var(--reveal-delay,0ms) }
.motion-paused *, .motion-paused *:before, .motion-paused *:after { animation-play-state:paused!important; transition:none!important }
.motion-paused [data-reveal].reveal-ready { opacity:1; transform:none }
@keyframes taste-loop { to { transform:translateX(-50%) } }
@keyframes hero-arrive { from { opacity:0; transform:translateY(30px) } to { opacity:1; transform:none } }
@media(hover:hover) and (prefers-reduced-motion:no-preference) {
  .category:hover .category-copy { transform:translateY(-8px) }
  .category:hover>img { transform:scale(1.08) }
  .gallery-grid figure:hover img { transform:scale(1.025); filter:saturate(1.15) }
  .button:hover { transform:translateY(-3px); box-shadow:0 8px 22px #140d0b25 }
}
/* Product stories and practical information */
.hero-story { display:block; margin-top:8px; font-size:clamp(13px,1.3vw,19px); font-weight:400 }
.chicken h2 { color:var(--primary); font-size:clamp(52px,6vw,96px) }
.product-notes { list-style:none; padding:0; margin:30px 0 0; border-top:1px solid #30232130 }
.product-notes li { padding:10px 0; border-bottom:1px solid #30232130; font-size:14px }
.product-notes li:before { content:'+'; margin-right:14px; color:var(--primary); font-weight:700 }
.story-note { font-style:italic }
.beer-list { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; margin:30px 0 0; padding-top:22px; border-top:1px solid #30232130 }
.beer-list dt { font:800 clamp(25px,3vw,40px)/1 var(--display); color:var(--primary); text-transform:uppercase }
.beer-list dd { margin:10px 0 0; font-size:13px; line-height:1.5 }
.visit-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:clamp(16px,2vw,32px); align-items:stretch }
.visit-card { min-width:0; padding:clamp(22px,2.5vw,40px); border:1px solid #30232125; background:#fffaf2 }
.visit-card>.eyebrow { margin-bottom:22px; color:var(--primary); font-size:10px }
.visit .visit-card h3 { font-family:var(--display); text-transform:uppercase; font-size:clamp(28px,2.7vw,42px); line-height:1.05; margin-bottom:25px }
.visit .contact-card { background:var(--ink); color:var(--paper); border-color:var(--ink) }
.contact-card>.eyebrow { color:var(--paper) }
.contact-card>p:not(.eyebrow) { font-size:14px }
.contact-card .phone { width:100%; display:flex; align-items:center; justify-content:space-between; gap:8px; font-size:clamp(18px,1.8vw,27px); padding:10px 0 20px; white-space:nowrap }
.contact-card .button { display:flex; margin:16px 0; gap:12px; padding-inline:16px; font-size:10px }
.contact-card .text-link { gap:12px; font-size:10px; width:100%; justify-content:space-between }
@media(max-width:1100px) {
  .visit-grid { grid-template-columns:repeat(2,minmax(0,1fr)) }
  .contact-card { grid-column:1/-1 }
  .contact-card .button,.contact-card .text-link,.contact-card .phone { max-width:380px }
}
@media(max-width:800px) {
  .chicken .split-photo { grid-row:1 }
}
@media(max-width:600px) {
  .visit-grid { grid-template-columns:1fr }
  .visit .visit-card h3 { font-size:34px }
  .beer-list { gap:10px }
}
/* Responsive layouts */
@media(min-width:1920px) {
  .category {
    max-height:830px
  }
  .split-section {
    min-height:850px
  }
}
@media(max-width:1024px) {
  .site-header nav {
    gap:22px
  }
  .split-copy {
  min-width:0;
    padding:45px 35px
  }
  .category {
    min-height:410px
  }
  .split-section {
    min-height:640px
  }
  .split-photo {
    min-height:560px
  }
}
@media(max-width:800px) {
  .site-header {
    height:90px
  }
  .site-header .brand img {
    width:65px
  }
  .menu-toggle:not([hidden]) {
    display:flex
  }
  .site-header nav {
    gap:14px
  }
  .site-header.has-menu nav {
    position:fixed;
    top:88px;
    left:0;
    right:0;
    height:calc(100vh - 88px);
    height:calc(100dvh - 88px);
    overflow:auto;
    background:var(--paper);
    color:var(--ink);
    padding:35px var(--gutter) 60px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:12px
  }
  .site-header.is-open nav {
    display:flex
  }
  .site-header.has-menu nav>a:not(.button) {
    font-family:var(--display);
    font-size:clamp(34px,7vw,55px);
    line-height:1.15;
    letter-spacing:0;
    border-bottom:1px solid #30232130;
    padding:14px 0
  }
  .site-header.has-menu nav>.button {
    margin-top:15px
  }
  .site-header.is-open .hamburger {
    border:0
  }
  .site-header.is-open .hamburger:before,.site-header.is-open .hamburger:after {
    content:'';
    position:absolute;
    top:6px;
    left:0;
    width:24px;
    border-top:2px solid currentColor;
    transform:rotate(45deg)
  }
  .site-header.is-open .hamburger:after {
    transform:rotate(-45deg)
  }
  .hero-bottom>span {
    display:none
  }
  .hero-bottom {
    grid-template-columns:1fr
  }
  .hero-bottom>a {
    justify-self:center
  }
  .category-grid {
    grid-template-columns:1fr
  }
  .category {
    aspect-ratio:1.3;
    min-height:420px
  }
  .category h3 {
    font-size:clamp(50px,9vw,74px)
  }
  .split-section {
    grid-template-columns:1fr
  }
  .split-photo {
    min-height:0;
    aspect-ratio:1.15
  }
  .split-copy {
  min-width:0;
    padding:65px var(--gutter)
  }
  .sharing .split-photo {
    grid-row:1
  }
  .sharing h2 {
    font-size:clamp(48px,8vw,72px)
  }
  .pizza .display-sub {
    font-size:clamp(45px,7vw,65px)
  }
  .fire,.venue {
    min-height:720px;
    min-height:85svh
  }
  .gallery-grid {
    gap:18px
  }
  .footer-top {
    grid-template-columns:1fr 1.5fr
  }
  .footer-top nav {
    grid-column:1/-1;
    grid-template-columns:repeat(4,1fr)
  }
  .footer-bottom {
    flex-wrap:wrap
  }
  .hero video {
    object-position:55% center
  }
}
@media(max-width:540px) {
  html {
    scroll-padding-top:88px
  }
  .site-header:not(.has-menu) {
    position:absolute;
    align-items:flex-start;
    height:auto;
    gap:15px
  }
  .site-header:not(.has-menu) nav {
    flex-wrap:wrap;
    justify-content:flex-end;
    gap:4px 14px
  }
  .hero {
    padding:145px 22px 125px
  }
  .hero-content>.eyebrow {
    font-size:9px;
    letter-spacing:.1em
  }
  .hero-logo {
    width:clamp(220px,65vw,320px)
  }
  .hero-claim {
    font-size:17px;
    margin-block:26px
  }
  .hero-bottom {
    bottom:20px;
    font-size:9px
  }
  .hero-content .button {
    font-size:10px;
    padding-inline:20px;
    gap:20px
  }
  .intro {
    padding-bottom:45px
  }
  .intro-line {
    gap:12px
  }
  .intro h2 {
    font-size:clamp(84px,23vw,120px)
  }
  .scribble {
    width:42px;
    flex-shrink:0
  }
  .intro-copy {
    font-size:17px
  }
  .categories {
    padding-top:25px
  }
  .section-heading {
    display:block;
    margin-bottom:28px
  }
  .section-heading p {
    margin-top:20px;
    font-size:13px
  }
  .category-grid {
    gap:16px
  }
  .category {
    aspect-ratio:4/5;
    min-height:400px;
    padding:26px
  }
  .category h3 {
    font-size:49px
  }
  .category .eyebrow {
    font-size:10px
  }
  .category-copy>p:not(.eyebrow) {
    font-size:14px
  }
  .fire,.venue,.booking {
    padding:75px var(--gutter)
  }
  .fire h2 {
    font-size:clamp(100px,30vw,160px)
  }
  .fire .eyebrow {
    max-width:220px
  }
  .fire .display-sub {
    font-size:43px
  }
  .fire>img {
    object-position:60% center
  }
  .photo-note {
    left:var(--gutter);
    font-size:9px
  }
  .venue h2 {
    font-size:clamp(41px,10.5vw,57px)
  }
  .venue>img {
    object-position:58% center
  }
  .booking {
    min-height:660px
  }
  .booking h2 {
    font-size:clamp(57px,14vw,76px)
  }
  .booking .button {
    font-size:10px;
    gap:22px;
    padding:18px 20px
  }
  .gallery-grid {
    grid-template-columns:1fr;
    gap:32px
  }
  .gallery-grid figure:nth-child(n) {
    margin:0
  }
  .gallery-grid img,.gallery-grid figure:nth-child(2) img {
    aspect-ratio:4/3
  }
  .gallery-grid figure:nth-child(2) img {
    object-position:center 60%
  }
  .footer-top {
    gap:25px
  }
  .site-footer .brand img {
    width:100px
  }
  .footer-top>p {
    font-size:34px
  }
  .footer-top nav {
    grid-template-columns:1fr 1fr;
    gap:5px
  }
  .footer-bottom {
    font-size:9px
  }
  .footer-bottom>a {
    width:100%;
    padding-block:10px
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto
  }
  *,*:before,*:after {
    animation:none!important;
    transition:none!important
  }
  [data-reveal].reveal-ready {
    opacity:1;
    transform:none
  }
}

