:root {
  --ink: #241312;
  --ink-soft: #604543;
  --paper: #fff8ed;
  --paper-deep: #f1dfc5;
  --lacquer: #651611;
  --lacquer-deep: #2c0908;
  --wine: #451013;
  --gold: #c99b52;
  --gold-soft: #ead7ad;
  --line: rgba(101, 22, 17, 0.16);
  --shadow: 0 24px 80px rgba(36, 19, 18, 0.22);
  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans: "Aptos", "Segoe UI", system-ui, -apple-system, sans-serif;
  --container: min(1140px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.68;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--lacquer-deep);
  padding: 10px 16px;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 4vw, 56px);
  color: #fff8ed;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.compact-header {
  background: rgba(44, 9, 8, 0.94);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 16px rgba(0, 0, 0, 0.22));
}

.brand-text,
.footer-title {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a,
.footer-nav a,
.text-link {
  position: relative;
  text-decoration: none;
}

.site-nav a {
  color: rgba(255, 248, 237, 0.86);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a::after,
.footer-nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after,
.footer-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  position: relative;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid rgba(234, 215, 173, 0.5);
  border-radius: 999px;
  background: rgba(44, 9, 8, 0.36);
  color: #fff8ed;
  padding: 10px 14px 10px 38px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle-line {
  display: block;
  position: absolute;
  left: 15px;
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: top 180ms ease, transform 180ms ease;
}

.nav-toggle-line:first-child {
  top: 17px;
}

.nav-toggle-line:nth-child(2) {
  top: 25px;
}

.hero {
  position: relative;
  min-height: min(84svh, 720px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 70%, rgba(101, 22, 17, 0.9), transparent 58%),
    var(--lacquer-deep);
}

.hero-image,
.footer-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--lacquer-deep);
}

.hero-image {
  object-position: center bottom;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 5, 5, 0.7), rgba(24, 5, 5, 0.28) 52%, rgba(24, 5, 5, 0.18)),
    linear-gradient(0deg, rgba(30, 8, 7, 0.66), rgba(30, 8, 7, 0.03) 42%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100vw - 40px));
  margin: 0 auto;
  padding-top: 72px;
  color: #fff8ed;
  text-align: center;
}

.hero-logo {
  width: clamp(72px, 8vw, 108px);
  height: auto;
  margin: 0 auto 16px;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.35));
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
h2 {
  margin: 0;
  color: inherit;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(72px, 12vw, 156px);
  color: var(--gold-soft);
}

.hero-lead {
  max-width: 660px;
  margin: 24px auto 0;
  color: rgba(255, 248, 237, 0.9);
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 39px);
  line-height: 1.18;
}

.hero-actions,
.center-action {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.hero-actions .button {
  min-height: 40px;
  padding: 9px 17px;
  font-size: 12px;
  letter-spacing: 0.07em;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--lacquer-deep);
}

.button-secondary {
  border: 1px solid rgba(255, 248, 237, 0.58);
  background: rgba(255, 248, 237, 0.06);
  color: #fff8ed;
}

.button-secondary.deep {
  border-color: rgba(101, 22, 17, 0.28);
  color: var(--lacquer);
}

.section {
  padding: clamp(72px, 10vw, 132px) 0;
}

.intro-section {
  padding-top: clamp(56px, 8vw, 92px);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: clamp(28px, 6vw, 92px);
  align-items: start;
}

.section-kicker {
  padding-top: 12px;
}

.editorial-copy h2,
.section-heading h2,
.text-panel h2,
.map-copy h2,
.visit-layout h2,
.cta-panel h2 {
  max-width: 760px;
  color: var(--lacquer);
  font-size: clamp(42px, 6vw, 78px);
}

.lead,
.page-lead {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(23px, 2.5vw, 34px);
  line-height: 1.32;
}

.editorial-copy .lead {
  margin-top: 26px;
}

.split-section {
  background: linear-gradient(180deg, rgba(241, 223, 197, 0.42), rgba(255, 248, 237, 0));
}

.split-layout,
.map-layout,
.visit-layout,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
}

.reverse .split-layout > :first-child {
  order: 1;
}

.image-panel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--wine);
  box-shadow: var(--shadow);
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(234, 215, 173, 0.32);
  border-radius: inherit;
  pointer-events: none;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preserve-image {
  display: grid;
  min-height: 0;
}

.preserve-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.tall-image {
  aspect-ratio: 1122 / 1402;
}

.text-panel {
  max-width: 590px;
}

.text-panel p,
.map-copy p,
.visit-copy p,
.cta-panel p,
.values-grid p,
.menu-item p,
.footer-content p {
  color: var(--ink-soft);
}

.text-panel p:not(.eyebrow),
.map-copy p:not(.eyebrow),
.visit-copy p {
  margin: 24px 0 0;
}

.menu-teaser {
  background: var(--lacquer-deep);
  color: #fff8ed;
}

.menu-teaser .section-heading h2,
.menu-teaser .teaser-card h3,
.home-menu-card h3 {
  color: #fff8ed;
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.section-heading.narrow {
  max-width: 760px;
}

.teaser-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(201, 155, 82, 0.34);
}

.teaser-card,
.values-grid article {
  min-height: 260px;
  background: rgba(255, 248, 237, 0.06);
  padding: clamp(24px, 4vw, 42px);
}

.teaser-card span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 40px;
}

.teaser-card h3,
.values-grid h3,
.menu-item h3 {
  margin: 18px 0 12px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
}

.teaser-card p {
  color: rgba(255, 248, 237, 0.76);
  margin: 0;
}

.home-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(201, 155, 82, 0.34);
}

.home-menu-card {
  min-height: 250px;
  background: rgba(255, 248, 237, 0.06);
  padding: clamp(24px, 4vw, 42px);
}

.home-menu-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-menu-card h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.08;
}

.home-menu-card p {
  margin: 0;
  color: rgba(255, 248, 237, 0.76);
}

.map-story {
  background: #f8ecda;
}

.map-image {
  aspect-ratio: 1122 / 1402;
}

.note {
  border-left: 1px solid var(--gold);
  padding-left: 18px;
  font-size: 15px;
}

.visit-section {
  background: var(--paper);
}

.order-section {
  background: var(--lacquer-deep);
  color: #fff8ed;
}

.qr-section {
  background: #f8ecda;
}

.order-section h2 {
  color: var(--gold-soft);
}

.visit-layout {
  align-items: start;
}

.order-layout {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: clamp(32px, 5vw, 58px);
  align-items: center;
  text-align: center;
}

.order-layout > div:first-child {
  max-width: 780px;
}

.qr-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}

.qr-layout h2 {
  max-width: 760px;
  color: var(--lacquer);
  font-size: clamp(42px, 6vw, 74px);
}

.qr-layout p:not(.eyebrow) {
  max-width: 620px;
  color: var(--ink-soft);
}

.qr-panel {
  display: grid;
  justify-items: center;
  gap: 18px;
  border: 1px solid rgba(101, 22, 17, 0.13);
  border-radius: 8px;
  background: rgba(255, 248, 237, 0.76);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.qr-image {
  width: min(100%, 280px);
  aspect-ratio: 1;
  border-radius: 6px;
  background: #fff;
  padding: 12px;
}

.reservation-section {
  background: var(--lacquer-deep);
  color: #fff8ed;
}

.reservation-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.reservation-copy {
  max-width: 620px;
}

.reservation-copy h2 {
  color: var(--gold-soft);
  font-size: clamp(42px, 6vw, 74px);
}

.reservation-copy p:not(.eyebrow) {
  color: rgba(255, 248, 237, 0.76);
}

.contact-link.light {
  color: var(--gold-soft);
}

.compact-qr {
  width: min(100%, 320px);
  margin-top: 32px;
  background: rgba(255, 248, 237, 0.08);
  border-color: rgba(234, 215, 173, 0.32);
  box-shadow: none;
}

.compact-qr .text-link {
  margin-top: 0;
  color: var(--gold-soft);
}

.visit-copy {
  max-width: 620px;
}

.contact-card {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-link,
.delivery-link {
  text-decoration: none;
}

.contact-link {
  width: fit-content;
  color: var(--lacquer);
  font-weight: 800;
}

.delivery-grid {
  display: grid;
  width: min(100%, 680px);
  grid-template-columns: repeat(2, minmax(250px, 300px));
  justify-content: center;
  gap: 24px;
  margin: 0 auto;
}

.delivery-grid.compact {
  width: min(100%, 680px);
  margin: 30px auto 0;
}

.delivery-card {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  align-content: space-between;
  gap: 20px;
  border: 1px solid rgba(234, 215, 173, 0.42);
  border-radius: 8px;
  background: var(--tile-image) center / cover no-repeat, rgba(255, 248, 237, 0.06);
  color: var(--gold-soft);
  padding: 30px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.delivery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 5, 5, 0.56), rgba(24, 5, 5, 0.2) 42%, rgba(24, 5, 5, 0.76)),
    radial-gradient(circle at 82% 18%, rgba(255, 248, 237, 0.2), transparent 32%);
  pointer-events: none;
}

.delivery-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px 18px;
  height: 44%;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(20, 8, 6, 0.12), rgba(20, 8, 6, 0.78));
  pointer-events: none;
}

.delivery-card-wolt {
  --tile-image: url("../assets/order-wolt.jpg");
}

.delivery-card-pyszne {
  --tile-image: url("../assets/order-pyszne.jpg");
}

.delivery-card-ubereats {
  --tile-image: url("../assets/order-ubereats.jpg");
}

.delivery-card-glovo {
  --tile-image: url("../assets/order-glovo.jpg");
}

.delivery-name {
  position: relative;
  z-index: 1;
  width: fit-content;
  border-radius: 999px;
  background: rgba(24, 5, 5, 0.62);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  color: #fff8ed;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
  padding: 10px 15px 12px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}

.delivery-copy {
  position: relative;
  z-index: 1;
  max-width: 230px;
  color: rgba(255, 248, 237, 0.92);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.56);
}

.delivery-arrow {
  position: absolute;
  z-index: 1;
  top: 18px;
  right: 20px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(234, 215, 173, 0.36);
  border-radius: 50%;
  color: #fff8ed;
  font-weight: 850;
}

.delivery-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  filter: saturate(1.08) brightness(1.04);
}

.text-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--lacquer);
  font-weight: 800;
}

.page-hero {
  padding: 168px 0 88px;
  background:
    linear-gradient(135deg, rgba(44, 9, 8, 0.97), rgba(101, 22, 17, 0.9)),
    var(--lacquer-deep);
  color: #fff8ed;
}

.page-hero h1 {
  color: var(--gold-soft);
  font-size: clamp(62px, 10vw, 116px);
}

.page-lead {
  align-self: end;
  color: rgba(255, 248, 237, 0.84);
}

.menu-list-section {
  padding-top: clamp(58px, 7vw, 88px);
}

.menu-list {
  display: grid;
  gap: 36px;
}

.menu-category {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: clamp(24px, 5vw, 72px);
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.menu-category-heading h2 {
  color: var(--lacquer);
  font-size: clamp(34px, 4vw, 58px);
}

.menu-items {
  display: grid;
  gap: 0;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.menu-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: 27px;
}

.menu-item p {
  margin: 0;
}

.feature-category {
  grid-template-columns: 0.45fr 0.55fr 1fr;
  align-items: start;
}

.inline-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.inline-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.closing-cta {
  padding-top: 32px;
}

.cta-panel {
  border-top: 1px solid var(--line);
  padding-top: 48px;
}

.cta-panel p {
  max-width: 680px;
}

.values-section {
  background: var(--lacquer-deep);
  color: #fff8ed;
}

.values-section .section-heading h2,
.values-grid h3 {
  color: #fff8ed;
}

.values-grid article {
  background: rgba(255, 248, 237, 0.06);
}

.values-grid p {
  color: rgba(255, 248, 237, 0.74);
}

.site-footer {
  position: relative;
  min-height: clamp(520px, 56vw, 760px);
  overflow: hidden;
  background: var(--lacquer-deep);
  color: #fff8ed;
}

.footer-image {
  object-position: center center;
}

.footer-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26, 5, 5, 0.9), rgba(26, 5, 5, 0.56), rgba(26, 5, 5, 0.8)),
    linear-gradient(0deg, rgba(26, 5, 5, 0.86), rgba(26, 5, 5, 0.16));
}

.footer-content {
  position: relative;
  display: grid;
  width: var(--container);
  min-height: clamp(520px, 56vw, 760px);
  margin: 0 auto;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 42px;
  align-items: end;
  padding: 88px 0 46px;
}

.footer-brand p,
.footer-info p {
  margin: 0;
  color: rgba(255, 248, 237, 0.74);
}

.footer-logo {
  width: 96px;
  height: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.28));
}

.footer-title {
  margin-bottom: 18px !important;
  color: var(--gold-soft) !important;
  font-size: 46px;
}

.footer-nav {
  display: grid;
  gap: 14px;
}

.footer-nav a {
  width: fit-content;
  color: rgba(255, 248, 237, 0.84);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-info {
  display: grid;
  gap: 10px;
}

.footer-info a {
  color: rgba(255, 248, 237, 0.86);
  text-decoration: none;
}

.footer-delivery {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.footer-delivery a {
  color: var(--gold-soft);
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    padding: 16px 20px;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 52;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 51;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 26px;
    background: rgba(44, 9, 8, 0.97);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    font-family: var(--serif);
    font-size: 44px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
  }

  body.nav-open .nav-toggle-line:first-child {
    top: 21px;
    transform: rotate(45deg);
  }

  body.nav-open .nav-toggle-line:nth-child(2) {
    top: 21px;
    transform: rotate(-45deg);
  }

  .hero {
    min-height: 78svh;
  }

  .hero-image {
    object-position: center bottom;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(24, 5, 5, 0.76), rgba(24, 5, 5, 0.24) 60%),
      linear-gradient(90deg, rgba(24, 5, 5, 0.58), rgba(24, 5, 5, 0.22));
  }

  .editorial-grid,
  .split-layout,
  .map-layout,
  .visit-layout,
  .order-layout,
  .qr-layout,
  .page-hero-grid,
  .menu-category,
  .feature-category,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .reverse .split-layout > :first-child {
    order: 0;
  }

  .teaser-grid,
  .values-grid,
  .delivery-grid {
    width: min(100%, 360px);
    grid-template-columns: 1fr;
  }

  .teaser-card,
  .values-grid article {
    min-height: auto;
  }

  .menu-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .inline-image {
    max-height: none;
  }

  .page-hero {
    padding-top: 134px;
  }

  .footer-content {
    align-items: start;
    gap: 28px;
    padding-top: 76px;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100vw - 28px, 1140px);
  }

  body {
    font-size: 16px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-text {
    font-size: 23px;
  }

  .nav-toggle-label {
    display: none;
  }

  .nav-toggle {
    width: 68px;
    padding: 0;
  }

  .nav-toggle-line {
    left: 25px;
  }

  .hero h1 {
    font-size: clamp(64px, 22vw, 94px);
  }

  .hero-lead {
    font-size: 25px;
  }

  .hero-actions {
    width: min(250px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 39px;
    padding: 8px 14px;
    font-size: 11px;
  }

  .section {
    padding: 66px 0;
  }

  .editorial-copy h2,
  .section-heading h2,
  .text-panel h2,
  .map-copy h2,
  .visit-layout h2,
  .cta-panel h2 {
    font-size: 41px;
  }

  .lead,
  .page-lead {
    font-size: 23px;
  }

  .tall-image,
  .map-image {
    aspect-ratio: 1122 / 1402;
  }

  .page-hero h1 {
    font-size: 64px;
  }

  .site-footer,
  .footer-content {
    min-height: 560px;
  }

  .footer-title {
    font-size: 40px;
  }
}

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