:root {
  --ink: #15242a;
  --teal: #1e363e;
  --teal-soft: #1e363e;
  --gold: #94734c;
  --gold-deep: #725839;
  --orange: #f14825;
  --cream: #ffffff;
  --white: #ffffff;
  --line: rgba(21, 36, 42, .16);
  --shell: 1180px;
  --radius: 14px;
  --shadow: 0 24px 70px rgba(21, 36, 42, .16);
  --futura: Futura, "Century Gothic", "Avenir Next", Avenir, sans-serif;
  --brush: "Six Hands Brush", "Brush Script MT", "Segoe Script", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--ink);
  font-family: var(--futura);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
::selection { color: var(--white); background: var(--orange); }
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 200;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  padding: .7rem 1rem;
  border-radius: 999px;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.section-light { background: var(--white); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 0 32px;
  color: var(--white);
  background: rgba(21, 36, 42, .9);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  transition: background .25s ease, min-height .25s ease;
}
.site-header.scrolled { background: rgba(21, 36, 42, .98); min-height: 72px; }
.brand { justify-self: start; display: inline-flex; }
.brand img { width: 185px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: clamp(1.1rem, 2vw, 2rem); }
.desktop-nav a {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  position: relative;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.45rem;
  height: 1px;
  background: var(--orange);
  transition: right .2s ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: .6rem; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .7rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-light { color: var(--ink); background: var(--white); }
.button-light:hover { color: var(--white); background: var(--orange); }
.button-ghost { color: var(--gold); border-color: rgba(148,115,76,.8); }
.button-ghost:hover { color: var(--white); background: var(--gold); }
.button-uber { color: var(--white); border-color: #06c167; background: rgba(6,193,103,.12); }
.button-uber:hover { color: #000; background: #06c167; }
.uber-eats-mark { width: 27px; height: 27px; flex: 0 0 auto; border-radius: 7px; }
.button-gold { color: var(--white); background: var(--gold); }
.button-gold:hover { background: var(--orange); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: var(--teal); }

.menu-toggle { display: none; width: 48px; height: 48px; border: 0; border-radius: 50%; background: var(--orange); padding: 13px; }
.menu-toggle span { display: block; height: 2px; background: var(--ink); margin: 4px 0; transition: .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: min(880px, 100svh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.hero-media, .hero-media video, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media video { object-fit: cover; object-position: center; }
.hero-shade { background: linear-gradient(90deg, rgba(21,36,42,.96) 0%, rgba(21,36,42,.78) 37%, rgba(21,36,42,.1) 72%), linear-gradient(0deg, rgba(21,36,42,.72), transparent 55%); }
.hero-content { position: relative; z-index: 2; padding-block: 190px 120px; }
.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .15em;
  line-height: 1.4;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
}
.eyebrow::after { content: ""; width: .46rem; height: .46rem; flex: 0 0 auto; border-radius: 50%; background: var(--orange); }
.hero .eyebrow { font-size: 1.05rem; }
h1, h2, h3 { margin: 0; line-height: .98; text-wrap: balance; }
h1 { max-width: 820px; font-size: clamp(4rem, 9.3vw, 8.6rem); letter-spacing: -.065em; font-weight: 800; }
h1 em, h2 em { color: var(--gold); font-family: var(--brush); font-weight: 400; letter-spacing: -.025em; }
.hero-title-accent { color: var(--gold); }
.hero-copy { max-width: 610px; margin: 2rem 0 0; color: rgba(255,255,255,.86); font-size: clamp(1.05rem, 1.8vw, 1.25rem); line-height: 1.65; }
.hero-buttons { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem; margin-top: 2rem; }
.text-link { display: inline-flex; align-items: center; gap: .65rem; color: var(--white); font-size: .78rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; border-bottom: 2px solid var(--orange); padding-bottom: .3rem; }
.text-link span { font-size: 1.1rem; }
.dark-link { color: var(--ink); }
.award { position: absolute; z-index: 3; right: 3vw; bottom: 5vh; width: 118px; filter: drop-shadow(0 18px 20px rgba(0,0,0,.3)); transition: transform .2s ease; }
.award:hover { transform: rotate(2deg) scale(1.03); }

.quick-bar { background: var(--gold); color: var(--white); box-shadow: inset 0 4px 0 var(--orange); }
.quick-grid { min-height: 132px; display: grid; grid-template-columns: 1.25fr .8fr 1.25fr .8fr; align-items: stretch; }
.quick-grid > div, .quick-grid > a { display: flex; flex-direction: column; justify-content: center; gap: .35rem; padding: 1.4rem 1.5rem; border-left: 1px solid rgba(21,36,42,.2); }
.quick-grid > :last-child { border-right: 1px solid rgba(21,36,42,.2); }
.quick-grid span { font-size: .82rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; opacity: .72; }
.quick-grid strong { font-size: clamp(1.12rem, 1.35vw, 1.35rem); line-height: 1.25; }

.welcome { position: relative; overflow: hidden; padding: clamp(90px, 11vw, 150px) 0; }
.line-art { position: absolute; opacity: .13; pointer-events: none; }
.line-art-left { width: 240px; left: -65px; bottom: 30px; }
.line-art-right { width: 300px; right: -70px; top: 35px; transform: rotate(-5deg); }
.welcome-grid { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 9vw, 9rem); align-items: center; }
.welcome-art { position: relative; min-height: 420px; border-radius: 52% 48% 46% 54% / 56% 42% 58% 44%; display: grid; place-items: center; overflow: hidden; background: var(--teal); box-shadow: var(--shadow); }
.welcome-art > img { width: 86%; max-height: 86%; display: block; object-fit: contain; transform: none; filter: drop-shadow(0 18px 15px rgba(0,0,0,.14)); }
.script { margin: 0 0 .35rem; color: var(--gold); font-family: var(--brush); font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1; }
.welcome-copy h2, .section-heading h2, .story-intro h2, .visit-copy h2 { font-size: clamp(3rem, 6.5vw, 6rem); letter-spacing: -.055em; }
.welcome-copy h2::after, .section-heading h2::after, .story-intro h2::after, .visit-copy h2::after { content: "."; color: var(--orange); }
.lead { font-size: clamp(1.18rem, 2vw, 1.45rem); line-height: 1.45; font-weight: 650; }
.welcome-copy > p:not(.script) { max-width: 640px; }
.welcome-links { display: flex; align-items: center; flex-wrap: wrap; gap: 1.4rem; margin-top: 2rem; }

.smolenskis-neighbour { position: relative; padding: clamp(48px, 6vw, 76px) 0; overflow: hidden; color: var(--white); background: var(--gold); box-shadow: inset 0 5px 0 var(--orange); }
.smolenskis-neighbour::after { content: ""; position: absolute; width: 320px; height: 320px; right: -85px; top: -130px; border: 2px solid rgba(255,255,255,.13); border-radius: 50%; }
.smolenskis-neighbour-inner { position: relative; z-index: 1; display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.smolenskis-neighbour-stamp { width: clamp(195px, 22.1vw, 286px); overflow: hidden; }
.smolenskis-neighbour-stamp img { width: 100%; height: auto; transform: rotate(-3deg); }
.smolenskis-neighbour .eyebrow { margin-bottom: .65rem; color: var(--white); opacity: .76; }
.smolenskis-neighbour .eyebrow::after { background: var(--orange); }
.smolenskis-neighbour h2 { font-size: clamp(2.2rem, 4vw, 4rem); letter-spacing: -.05em; }
.smolenskis-neighbour h2::after { content: "."; color: var(--orange); }
.smolenskis-neighbour-copy > p:last-child { max-width: 680px; margin: .85rem 0 0; color: rgba(255,255,255,.86); font-size: 1.02rem; }
.smolenskis-neighbour .button-dark { min-width: 190px; }
.smolenskis-neighbour-links { display: flex; align-items: center; flex-wrap: wrap; gap: 1.4rem; }

.menus-section { position: relative; padding: clamp(90px, 11vw, 150px) 0; color: var(--white); background: var(--teal); overflow: hidden; }
.menus-section .eyebrow { font-size: 1.05rem; }
.menus-section::before { content: ""; position: absolute; width: 600px; height: 600px; right: -250px; top: -170px; background: url("/media/welcome_right_floral.svg") center / contain no-repeat; opacity: .055; }
.heading-row { display: grid; grid-template-columns: 1.35fr .65fr; gap: 5rem; align-items: end; }
.section-heading { position: relative; margin-bottom: 3.5rem; }
.section-heading h2 { color: inherit; }
.menu-intro-art { max-width: 520px; }
.menu-intro-art img { width: min(100%, 420px); display: block; margin: 0 auto; }
.menu-intro-art p { position: relative; width: min(calc(100% - 2rem), 420px); margin: -72px auto 0; padding: 1.25rem 1.4rem; color: var(--white); background: rgba(21,36,42,.92); border-top: 4px solid var(--orange); border-radius: 10px; }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.22); border-left: 1px solid rgba(255,255,255,.22); }
.menu-card { min-height: 245px; display: grid; grid-template-columns: 1fr auto; align-content: space-between; gap: 1rem; padding: 1.6rem; border-right: 1px solid rgba(255,255,255,.22); border-bottom: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.025); transition: background .25s ease, color .25s ease; }
.menu-card:hover, .menu-card:focus-visible { background: var(--gold); color: var(--ink); box-shadow: inset 0 5px 0 var(--orange); }
.menu-card-featured { grid-column: span 2; background: var(--ink); }
.menu-no { font-size: .72rem; color: var(--gold); letter-spacing: .12em; }
.menu-card:hover .menu-no { color: var(--ink); }
.menu-name { grid-column: 1 / -1; align-self: end; font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1; font-weight: 750; letter-spacing: -.04em; }
.menu-note { color: rgba(255,255,255,.64); font-size: .86rem; }
.menu-card:hover .menu-note { color: rgba(21,36,42,.8); }
.menu-arrow { justify-self: end; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.order-panel { margin-top: 3.5rem; display: flex; align-items: center; justify-content: space-between; gap: 3rem; padding: 2.5rem 3rem; color: var(--white); background: var(--gold); border-radius: var(--radius); }
.order-panel h3 { font-size: clamp(2rem, 3.6vw, 3.4rem); letter-spacing: -.045em; }
.order-panel p { max-width: 690px; margin-bottom: 0; }
.order-panel .script { color: var(--white); font-size: 2rem; }

.whats-section { position: relative; padding: clamp(90px, 11vw, 150px) 0; overflow: hidden; }
.centred { text-align: center; }
.whats-section .script { color: var(--ink); }
.feature-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.5rem; }
.feature-card { grid-column: span 6; overflow: hidden; border: 1px solid var(--line); border-top: 5px solid var(--gold); border-radius: var(--radius); background: var(--white); box-shadow: 0 16px 45px rgba(21,36,42,.09); transition: transform .22s ease, border-color .22s ease; }
.feature-card:hover { transform: translateY(-5px); border-top-color: var(--orange); }
.feature-card img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; }
.feature-body { padding: 1.8rem; }
.feature-body h3 { margin-bottom: .85rem; font-size: clamp(2rem, 3.3vw, 3rem); letter-spacing: -.045em; }
.feature-body p:not(.eyebrow) { min-height: 3.4em; color: #40555b; }
.feature-wide { grid-column: span 7; }
.feature-wide + .feature-card { grid-column: span 5; }

.event-details { padding: clamp(90px, 11vw, 150px) 0; color: var(--white); background: var(--ink); }
.event-stack { display: grid; gap: 7rem; }
.event-detail { display: grid; grid-template-columns: .68fr 1.32fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.event-detail.reverse .event-label { order: 2; }
.event-label { position: sticky; top: 120px; min-height: 360px; display: flex; flex-direction: column; justify-content: space-between; padding: 2rem; border-radius: var(--radius); color: var(--ink); background: var(--gold); overflow: hidden; }
.event-label::after { content: ""; position: absolute; inset: 15% -30% -35% 20%; background: url("/media/meet-blue-illustration.svg") right bottom / contain no-repeat; opacity: .14; }
.event-label span { position: relative; z-index: 1; font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.event-label strong { position: relative; z-index: 1; font-size: clamp(2.5rem, 5vw, 4.6rem); line-height: .9; letter-spacing: -.055em; }
.event-copy { padding-top: 1.2rem; }
.event-copy h2 { margin-bottom: 2rem; font-size: clamp(3rem, 6vw, 5.8rem); letter-spacing: -.055em; }
.event-copy p { max-width: 760px; color: rgba(255,255,255,.76); font-size: 1.05rem; }
.event-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.3rem; margin-top: 2rem; }
.event-copy blockquote { max-width: 760px; margin: 3rem 0 0; padding: 1.6rem 0 0 2rem; border-top: 1px solid rgba(148,115,76,.5); border-left: 3px solid var(--orange); color: var(--cream); font-size: 1.18rem; }
.event-copy cite { display: block; margin-top: .7rem; color: var(--gold); font-size: .74rem; font-style: normal; letter-spacing: .08em; text-transform: uppercase; }
.event-detail.compact .event-label { min-height: 270px; }

.story-section { position: relative; padding: clamp(90px, 9vw, 125px) 0 48px; overflow: hidden; color: var(--white); background: var(--teal); }
.story-section::before { content: ""; position: absolute; left: -25px; top: 26%; width: 145px; height: 250px; opacity: .72; background-image: radial-gradient(circle, var(--gold) 0 4px, transparent 5px); background-size: 38px 43px; transform: rotate(-13deg); }
.story-floral { position: absolute; right: -55px; top: 170px; width: 285px; opacity: .16; }
.story-intro { display: block; margin-bottom: 1.5rem; text-align: center; }
.story-kicker { margin: 0 0 .1rem; color: var(--gold); font-size: .82rem; font-weight: 800; letter-spacing: .04em; }
.story-intro h2 { color: var(--white); font-family: var(--brush); font-size: clamp(3rem, 5vw, 4.8rem); font-weight: 400; letter-spacing: -.025em; }
.story-intro h2::after { content: none; }
.story-carousel { position: relative; }
.story-toolbar { position: relative; min-height: 96px; display: flex; justify-content: center; overflow: hidden; margin-top: .5rem; }
.story-toolbar::after { content: ""; position: absolute; left: 50%; bottom: -108px; width: 245px; height: 170px; border: 3px solid var(--gold); border-radius: 50% 50% 0 0; opacity: .82; transform: translateX(-50%); }
.story-controls { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto 1fr; align-items: start; gap: 2rem; }
.story-progress { min-width: 42px; margin: .65rem 0 0; color: var(--white); text-align: center; font-size: .82rem; font-weight: 800; letter-spacing: .04em; }
.story-controls button { min-width: 86px; min-height: 42px; display: flex; align-items: center; gap: .55rem; padding: 0; border: 0; color: var(--white); background: transparent; cursor: pointer; font-size: .8rem; font-weight: 700; transition: color .2s ease, transform .2s ease; }
.story-controls button:first-child::before, .story-controls button:last-child::after { content: "←"; width: 36px; height: 36px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--white); background: var(--gold); font-size: 1rem; }
.story-controls button:last-child { justify-content: flex-end; }
.story-controls button:last-child::after { content: "→"; }
.story-controls button:hover, .story-controls button:focus-visible { color: var(--gold); transform: translateY(-2px); }
.story-stage { overflow: hidden; background: transparent; }
.story-slide { min-height: 535px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; color: var(--white); }
.story-slide[hidden] { display: none; }
.story-slide.is-active { animation: story-reveal .38s ease both; }
.story-copy { grid-column: 2; grid-row: 1; align-self: center; max-width: 470px; padding: 2rem clamp(1rem, 4vw, 4rem) 2rem 1rem; }
.story-copy h3 { color: var(--gold); font-family: var(--brush); font-size: clamp(2.5rem, 4.2vw, 4.1rem); font-weight: 400; letter-spacing: -.02em; }
.story-copy h3::after { content: none; }
.story-copy > p:last-child { max-width: 450px; margin: 1rem 0 0; color: rgba(255,255,255,.88); font-size: 1rem; line-height: 1.55; }
.story-art { grid-column: 1; grid-row: 1; position: relative; min-height: 535px; display: grid; place-items: center; background: transparent; border: 0; }
.story-art::before { content: none; }
.story-art img { position: relative; z-index: 1; width: min(92%, 510px); max-height: 500px; object-fit: contain; filter: none; }
.final-story-art img { width: min(96%, 560px); }
@keyframes story-reveal { from { opacity: 0; transform: translateX(22px); } to { opacity: 1; transform: translateX(0); } }

.team-section { padding: clamp(90px, 11vw, 150px) 0; color: var(--white); background: var(--teal); }
.team-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.5rem; }
.team-card { grid-column: span 4; min-width: 0; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,.035); }
.team-card:nth-child(4), .team-card:nth-child(5) { grid-column: span 6; display: grid; grid-template-columns: .8fr 1.2fr; }
.team-card > img { width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover; filter: saturate(.85) contrast(1.03); }
.team-card:nth-child(4) > img, .team-card:nth-child(5) > img { height: 100%; aspect-ratio: auto; }
.team-card > div { padding: 1.6rem; }
.team-card h3 { font-size: 1.9rem; letter-spacing: -.04em; }
.team-card p:not(.eyebrow) { color: rgba(255,255,255,.7); font-size: .92rem; }
.team-card q { display: block; margin-top: 1.3rem; padding-top: 1.1rem; border-top: 1px solid rgba(148,115,76,.45); color: var(--gold); font-family: var(--brush); font-size: 1.5rem; line-height: 1.15; }

.reviews-section { padding: clamp(90px, 11vw, 150px) 0; }
.reviews-head { margin-bottom: 3rem; }
.reviews-head .script { margin-top: .8rem; }
.google-kicker { display: flex; align-items: center; gap: .8rem; margin: 0; color: var(--ink); font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 800; line-height: .98; letter-spacing: -.045em; }
.google-kicker span { width: clamp(42px, 4vw, 58px); aspect-ratio: 1; display: grid; place-items: center; flex: 0 0 auto; color: #000; background: var(--orange); border-radius: 50%; font-size: clamp(1.2rem, 2vw, 1.75rem); font-weight: 900; line-height: 1; letter-spacing: 0; }
.google-reviews-live { display: grid; grid-template-columns: 1.35fr .65fr; overflow: hidden; border-radius: var(--radius); background: var(--teal); box-shadow: var(--shadow); }
.google-map-frame { min-height: 470px; background: #e5e3df; }
.google-map-frame iframe { width: 100%; height: 100%; min-height: 470px; display: block; border: 0; }
.google-review-card { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 4vw, 4rem); color: var(--white); }
.google-review-card h3 { margin: .7rem 0 1rem; color: var(--white); font-size: clamp(2.2rem, 4vw, 3.8rem); letter-spacing: -.045em; }
.google-review-card > p:not(.eyebrow) { color: rgba(255,255,255,.75); font-size: 1rem; }
.google-review-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 1.1rem; margin-top: 1.5rem; }
.google-review-actions .dark-link { color: var(--white); }

.visit-section { position: relative; padding: clamp(90px, 11vw, 150px) 0; color: var(--white); background: var(--ink); overflow: hidden; }
.visit-section::after { content: ""; position: absolute; left: -90px; bottom: -80px; width: 420px; height: 420px; background: url("/media/welcome_left_floral.svg") center / contain no-repeat; opacity: .05; }
.visit-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .72fr; gap: clamp(3rem, 10vw, 10rem); align-items: center; }
.visit-copy .lead { color: rgba(255,255,255,.72); margin-block: 2rem; }
.hours-card { padding: 2.2rem; border-radius: var(--radius); color: var(--ink); background: var(--gold); box-shadow: var(--shadow); }
.hours-card h3 { font-size: 2.2rem; letter-spacing: -.04em; margin-bottom: 1.2rem; }
.hours-card dl { margin: 0 0 1.5rem; }
.hours-card dl div { display: flex; justify-content: space-between; gap: 2rem; padding: .62rem 0; border-bottom: 1px solid rgba(21,36,42,.2); }
.hours-card dt { font-weight: 700; }
.hours-card dd { margin: 0; }
.hours-card > a { font-weight: 800; border-bottom: 1px solid currentColor; }
.seasonal-strip { padding: .9rem 1.2rem; color: var(--ink); background: var(--gold); text-align: center; }
.seasonal-strip p { margin: 0; font-size: .74rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }

.site-footer { padding: 4.5rem 0 2rem; color: var(--white); background: var(--ink); border-top: 5px solid var(--orange); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 3rem; }
.footer-brand img { width: 210px; }
.footer-brand p { max-width: 300px; color: rgba(255,255,255,.58); }
.site-footer h2 { margin: 0 0 1.1rem; color: var(--gold); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.site-footer > div > div:not(.footer-brand) > a { display: block; margin: .55rem 0; color: rgba(255,255,255,.72); font-size: .9rem; }
.site-footer a:hover { color: var(--gold); }
.socials { display: flex; gap: .8rem; }
.socials a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(148,115,76,.55); border-radius: 50%; }
.socials img { width: 21px; height: 21px; object-fit: contain; }
.footer-bottom { margin-top: 3rem; padding-top: 1.4rem; display: flex; justify-content: space-between; gap: 2rem; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.4); font-size: .69rem; letter-spacing: .08em; text-transform: uppercase; }
.mobile-action-bar { display: none; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .header-actions .button { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav {
    position: fixed;
    inset: 82px 0 0;
    z-index: 99;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 2rem 32px;
    color: var(--white);
    background: var(--ink);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .3s ease, visibility .3s ease;
  }
  .mobile-nav.open { transform: translateX(0); visibility: visible; }
  .mobile-nav a { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.13); font-size: clamp(1.35rem, 5vw, 2.3rem); font-weight: 720; line-height: 1.1; }
  .mobile-nav .uber-eats-mobile { display: flex; align-items: center; gap: .75rem; color: #06c167; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-grid > :nth-child(3) { border-top: 1px solid rgba(21,36,42,.2); }
  .quick-grid > :nth-child(4) { border-top: 1px solid rgba(21,36,42,.2); }
  .heading-row { grid-template-columns: 1fr; gap: 1.4rem; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-wide, .feature-wide + .feature-card { grid-column: span 6; }
  .team-card { grid-column: span 6; }
  .team-card:nth-child(3) { grid-column: span 12; display: grid; grid-template-columns: .8fr 1.2fr; }
  .team-card:nth-child(3) > img { height: 100%; aspect-ratio: auto; }
  .team-card:nth-child(4), .team-card:nth-child(5) { grid-template-columns: 1fr; }
  .team-card:nth-child(4) > img, .team-card:nth-child(5) > img { height: auto; aspect-ratio: 4 / 4.6; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 2; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 76px; }
  body { padding-bottom: 66px; }
  .shell { width: min(calc(100% - 32px), var(--shell)); }
  .site-header { min-height: 72px; padding: 0 16px; }
  .brand img { width: 158px; }
  .mobile-nav { inset: 72px 0 0; padding-inline: 22px; }
  .hero { min-height: 800px; }
  .hero-shade { background: linear-gradient(0deg, rgba(21,36,42,.95) 0%, rgba(21,36,42,.68) 54%, rgba(21,36,42,.12) 100%); }
  .hero-media video { object-position: 63% center; }
  .hero-content { padding-block: 150px 100px; }
  h1 { font-size: clamp(4rem, 18vw, 6.4rem); }
  .hero-copy { font-size: 1rem; }
  .award { right: 18px; bottom: 36px; width: 82px; }
  .quick-grid { grid-template-columns: 1fr; padding-block: .5rem; }
  .quick-grid > div, .quick-grid > a { min-height: 94px; padding: .9rem 0; border: 0; border-bottom: 1px solid rgba(21,36,42,.2); }
  .quick-grid > :last-child { border-right: 0; border-bottom: 0; }
  .welcome-grid, .visit-grid { grid-template-columns: 1fr; gap: 3rem; }
  .welcome-art { min-height: 330px; }
  .welcome-art > img { width: 88%; max-height: 84%; }
  .welcome-copy h2, .section-heading h2, .story-intro h2, .visit-copy h2 { font-size: clamp(3rem, 14vw, 5rem); }
  .smolenskis-neighbour-inner { grid-template-columns: auto 1fr; gap: 1.3rem; }
  .smolenskis-neighbour-links { grid-column: 1 / -1; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card-featured { grid-column: auto; }
  .menu-card { min-height: 205px; }
  .order-panel { align-items: flex-start; flex-direction: column; padding: 2rem; }
  .feature-card, .feature-wide, .feature-wide + .feature-card { grid-column: 1 / -1; }
  .feature-card img { aspect-ratio: 16 / 10; }
  .event-stack { gap: 5rem; }
  .event-detail { grid-template-columns: 1fr; gap: 1.5rem; }
  .event-detail.reverse .event-label { order: initial; }
  .event-label { position: relative; top: 0; min-height: 245px; }
  .event-copy h2 { font-size: clamp(3rem, 13vw, 5rem); }
  .story-section { padding-top: 80px; }
  .story-section::before { width: 90px; height: 180px; opacity: .45; }
  .story-floral { width: 170px; top: 120px; opacity: .11; }
  .story-intro { margin-bottom: 1.4rem; }
  .story-slide { min-height: 0; grid-template-columns: 1fr; }
  .story-copy { grid-column: 1; grid-row: 2; max-width: none; padding: 1.2rem 1.4rem 2.1rem; text-align: center; }
  .story-copy h3 { font-size: clamp(2.7rem, 12vw, 4rem); }
  .story-copy > p:last-child { margin-inline: auto; }
  .story-art { grid-column: 1; grid-row: 1; min-height: 310px; }
  .story-art img { width: min(84%, 330px); max-height: 300px; }
  .final-story-art img { width: min(90%, 370px); }
  .story-controls { gap: .6rem; }
  .story-toolbar::after { width: 210px; }
  .team-card, .team-card:nth-child(3), .team-card:nth-child(4), .team-card:nth-child(5) { grid-column: 1 / -1; display: block; }
  .team-card:nth-child(3) > img, .team-card:nth-child(4) > img, .team-card:nth-child(5) > img { height: auto; aspect-ratio: 4 / 4.2; }
  .google-reviews-live { grid-template-columns: 1fr; }
  .google-map-frame, .google-map-frame iframe { min-height: 390px; }
  .google-review-card { padding: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .mobile-action-bar {
    position: fixed;
    z-index: 110;
    inset: auto 0 0;
    height: 66px;
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,.12);
  }
  .mobile-action-bar a { display: grid; place-items: center; color: var(--white); font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
  .mobile-action-bar a:last-child { color: var(--ink); background: var(--gold); }
}

@media (max-width: 480px) {
  .hero-buttons { align-items: flex-start; flex-direction: column; }
  .smolenskis-neighbour-inner { grid-template-columns: 1fr; }
  .smolenskis-neighbour-stamp { width: min(247px, 83vw); }
  .smolenskis-neighbour-links { grid-column: auto; align-items: flex-start; flex-direction: column; }
  .story-controls button { min-width: 78px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :last-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
