@font-face {
  font-family: "DoseVogue";
  src: url("fonts/Vogue.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "DoseSiena";
  src: url("fonts/FS-Siena-Regular.ttf") format("truetype");
  font-display: swap;
}

:root {
  --night: #1f1209;
  --night-deep: #160c06;
  --brown: #2b190d;
  --brown-soft: #35200f;
  --brown-muted: #412815;
  --panel: #241409;
  --cream: #d9cbb6;
  --cream-bright: #eee1ca;
  --cream-soft: #c7b69c;
  --cream-muted: #a9967a;
  --line: rgba(217, 203, 182, .18);
  --line-strong: rgba(217, 203, 182, .32);
  --shade: rgba(12, 7, 4, .72);
  --display: "Flatline", "DoseVogue", "Vogue", "Bodoni 72", "Didot", Georgia, serif;
  --serif: "DoseSiena", "Cormorant Garamond", "Bodoni 72", Georgia, serif;
  --sans: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --max: 1180px;
  --gutter: clamp(22px, 5vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--night);
}

body {
  margin: 0;
  color: var(--cream);
  background: var(--night);
  font-family: var(--serif);
  line-height: 1.65;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: -80px;
  z-index: 200;
  background: var(--cream);
  color: var(--night);
  padding: 10px 14px;
  text-decoration: none;
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  background: linear-gradient(180deg, rgba(31, 18, 9, .94), rgba(31, 18, 9, .74));
  border-bottom: 1px solid rgba(217, 203, 182, .1);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 82px;
  padding: 0 clamp(18px, 3.4vw, 40px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  justify-self: start;
  min-width: 0;
}

.brand img {
  width: 128px;
  height: auto;
}

.brand span {
  display: inline-block;
  color: var(--cream-muted);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 28px);
}

.nav-links a,
.quick-reserve {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--cream-soft);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.quick-reserve:hover {
  color: var(--cream-bright);
}

.nav-links .nav-reserve,
.quick-reserve {
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  background: var(--brown);
  color: var(--cream-bright);
}

.quick-reserve {
  display: none;
  justify-self: end;
}

.nav-location {
  display: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--cream);
}

.nav-toggle span {
  display: block;
  width: 34px;
  height: 1px;
  margin: 8px auto;
  background: currentColor;
  transform-origin: center;
  transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 128px var(--gutter) 82px;
  background:
    linear-gradient(180deg, rgba(22, 12, 6, .34), rgba(22, 12, 6, .58) 48%, rgba(31, 18, 9, .96)),
    url("dose-hero.jpg") center / cover no-repeat;
}

.hero::after,
.page-hero.image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, var(--night));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  text-align: center;
}

.hero-logo {
  width: min(180px, 44vw);
  margin: 0 auto 34px;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, .44));
}

.eyebrow,
.hero-kicker {
  display: block;
  color: var(--cream-muted);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.45;
  text-transform: uppercase;
}

h1,
h2,
h3,
.section-title,
.menu-panel summary {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--cream);
}

h1 {
  margin: 18px auto 0;
  font-size: clamp(64px, 12vw, 178px);
  line-height: .86;
  text-transform: uppercase;
}

.hero-copy {
  width: min(720px, 100%);
  margin: 26px auto 0;
  color: var(--cream-soft);
  font-size: clamp(18px, 2.1vw, 26px);
  line-height: 1.65;
}

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

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(14px, 2.5vw, 28px);
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--cream);
  text-decoration: none;
  transform: translateX(-50%);
  animation: cue-bounce 1.7s ease-in-out infinite;
}

.scroll-cue span {
  width: 18px;
  height: 18px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

@keyframes cue-bounce {
  0%, 100% {
    transform: translate(-50%, 0);
    opacity: .72;
  }

  50% {
    transform: translate(-50%, 10px);
    opacity: 1;
  }
}

.button,
button.button {
  min-height: 54px;
  min-width: 168px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .24s ease, color .24s ease, border-color .24s ease, transform .24s ease;
}

.button:hover,
button.button:hover {
  background: var(--cream);
  color: var(--night);
  border-color: var(--cream);
  transform: translateY(-1px);
}

.button.primary,
button.button.primary {
  background: var(--brown);
  color: var(--cream-bright);
  border-color: var(--brown-muted);
}

.section {
  background: var(--night);
  border-top: 1px solid var(--line);
}

.section.alt {
  background: var(--brown);
}

.section.deep {
  background: var(--night-deep);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) var(--gutter);
}

.intro-grid,
.booking-grid,
.contact-grid,
.feature-grid,
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.story-grid.reverse {
  grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
}

.story-photo {
  margin: 0;
  min-height: 520px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--panel);
}

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

.section-title {
  margin: 18px 0 0;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1.04;
}

.section-copy {
  margin: 24px 0 0;
  max-width: 760px;
  color: var(--cream-soft);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.85;
}

.narrow-copy {
  max-width: 680px;
}

.facts {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.fact,
.experience-card,
.event-card,
.booking-card,
.contact-card {
  background: var(--panel);
  border: 1px solid var(--line);
}

.fact {
  padding: 28px;
}

.fact strong,
.experience-card strong,
.event-card strong,
.contact-card strong {
  display: block;
  color: var(--cream-bright);
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1.2;
}

.fact span,
.experience-card span,
.event-card span,
.contact-card span {
  display: block;
  margin-top: 8px;
  color: var(--cream-muted);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.visual-band {
  min-height: 70svh;
  position: relative;
  display: grid;
  place-items: end start;
  padding: var(--gutter);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(22, 12, 6, .72), rgba(22, 12, 6, .22)),
    url("dose-hero.jpg") center / cover no-repeat;
}

.visual-band .caption {
  max-width: 540px;
  color: var(--cream-bright);
}

.experience-grid,
.events-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  background: var(--line);
  border: 1px solid var(--line);
}

.experience-card,
.event-card {
  min-height: 270px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
}

.experience-card p,
.event-card p,
.contact-card p {
  margin: 18px 0 0;
  color: var(--cream-soft);
  font-size: 18px;
  line-height: 1.7;
}

.page-hero {
  min-height: 66svh;
  display: grid;
  place-items: end center;
  padding: 132px var(--gutter) 76px;
  text-align: center;
  background: var(--night);
  border-bottom: 1px solid var(--line);
}

.page-hero.image {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(22, 12, 6, .38), rgba(22, 12, 6, .84)),
    url("dose-hero.jpg") center / cover no-repeat;
}

.page-hero h1 {
  font-size: clamp(58px, 10vw, 138px);
}

.page-hero .hero-copy {
  max-width: 780px;
}

.menu-intro {
  background: var(--brown);
  text-align: center;
}

.menu-intro .section-inner {
  padding-top: clamp(64px, 8vw, 104px);
  padding-bottom: clamp(58px, 8vw, 96px);
}

.menu-intro .section-copy,
.menu-intro .section-title {
  margin-left: auto;
  margin-right: auto;
}

.menu-tabs {
  width: min(100%, 1060px);
  margin: 36px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.menu-tabs a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  color: var(--cream-soft);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
}

.menu-tabs a:hover {
  color: var(--cream-bright);
  border-color: var(--line-strong);
}

.menu-shell {
  padding: clamp(36px, 7vw, 78px) var(--gutter) clamp(88px, 11vw, 132px);
  background: var(--brown);
}

.menu-panel {
  width: min(100%, 1080px);
  margin: 0 auto 16px;
  border-top: 1px solid var(--line);
  color: var(--cream);
}

.menu-panel:last-child {
  border-bottom: 1px solid var(--line);
}

.menu-panel summary {
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(6px, 2vw, 18px);
  list-style: none;
  cursor: pointer;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
}

.menu-panel summary::-webkit-details-marker {
  display: none;
}

.panel-label small {
  display: block;
  margin-top: 7px;
  color: var(--cream-muted);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.panel-plus {
  font-family: var(--sans);
  font-size: 30px;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform .2s ease;
}

.menu-panel[open] .panel-plus {
  transform: rotate(45deg);
}

.panel-content {
  margin: 0 0 26px;
  padding: clamp(34px, 5vw, 62px);
  background: var(--panel);
  border: 1px solid rgba(217, 203, 182, .08);
}

.section-head {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.section-head span {
  color: var(--cream-muted);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-head h2,
.subsection h3 {
  margin: 10px 0 0;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1.1;
}

.section-head p,
.subnote {
  margin: 16px 0 0;
  max-width: 720px;
  color: var(--cream-muted);
  font-size: 17px;
  line-height: 1.7;
}

.subsection {
  padding-top: 36px;
}

.subsection h3 {
  font-size: clamp(26px, 3.5vw, 38px);
}

.menu-list {
  display: grid;
  gap: 0;
  margin-top: 18px;
}

.item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(217, 203, 182, .12);
}

.item:last-child {
  border-bottom: 0;
}

.item h4 {
  margin: 0;
  color: var(--cream-bright);
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  letter-spacing: .07em;
  line-height: 1.2;
}

.item p {
  margin: 9px 0 0;
  color: var(--cream-soft);
  font-size: 18px;
  line-height: 1.7;
}

.price {
  color: var(--cream-bright);
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 25px);
  white-space: nowrap;
}

.booking-card,
.contact-card {
  padding: clamp(28px, 5vw, 44px);
}

.booking-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--cream-muted);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(22, 12, 6, .56);
  color: var(--cream-bright);
  outline: 0;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cream-muted);
}

.hidden {
  display: none;
}

.booking-note {
  margin: 4px 0 0;
  color: var(--cream-muted);
  font-size: 15px;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-card a {
  color: var(--cream-bright);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.map-strip {
  min-height: 46svh;
  display: grid;
  place-items: center;
  padding: var(--gutter);
  background:
    linear-gradient(180deg, rgba(31, 18, 9, .62), rgba(31, 18, 9, .9)),
    url("dose-hero.jpg") center 64% / cover no-repeat;
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  background: transparent;
  border: 0;
}

.gallery-tile {
  min-height: 320px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(22, 12, 6, .12), rgba(22, 12, 6, .78)),
    url("dose-hero.jpg") center / cover no-repeat;
}

.gallery-tile.large,
.gallery-tile.wide {
  grid-column: span 2;
}

.gallery-tile.tall {
  min-height: 480px;
  grid-row: span 2;
}

.gallery-tile.sea-view {
  background-position: center right;
}

.gallery-tile.table {
  background-position: left bottom;
}

.gallery-tile.breakfast {
  background-position: left center;
}

.gallery-tile span {
  color: var(--cream-bright);
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 42px);
  letter-spacing: .08em;
  line-height: 1.1;
}

.gallery-intro {
  text-align: center;
}

.gallery-intro .section-copy,
.gallery-intro .section-title {
  margin-left: auto;
  margin-right: auto;
}

.photo-grid {
  width: min(100%, 760px);
  margin: clamp(44px, 7vw, 74px) auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
}

.photo-tile {
  margin: 0;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  background: var(--panel);
}

.photo-tile.wide {
  grid-column: span 2;
  min-height: 420px;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform .7s ease, filter .7s ease;
}

.photo-tile::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(22, 12, 6, .78));
  pointer-events: none;
}

.photo-tile:hover img {
  transform: scale(1.035);
  filter: saturate(1.03);
}

.photo-tile figcaption {
  position: absolute;
  left: 20px;
  bottom: 16px;
  z-index: 1;
  color: var(--cream-bright);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-footer {
  background: var(--night-deep);
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 48px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: start;
}

.footer-logo-link {
  display: inline-flex;
  width: fit-content;
  text-decoration: none;
}

.footer-logo {
  width: 118px;
}

.footer-copy p {
  margin: 0 0 8px;
  color: var(--cream-muted);
  font-size: 16px;
}

.footer-copy a {
  color: var(--cream);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.social-row {
  margin-top: 18px;
}

.footer-copy .instagram-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--cream);
  text-decoration: none;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.footer-copy .instagram-icon:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--night);
}

.instagram-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.instagram-icon .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.footer-heading {
  color: var(--cream);
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: .08em;
  line-height: 1.2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  color: var(--cream-soft);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--cream-bright);
}

.footer-bottom {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--gutter) 42px;
  color: var(--cream-muted);
  font-size: 15px;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .nav-wrap {
    min-height: 88px;
    grid-template-columns: 52px 1fr auto;
    gap: 12px;
  }

  .nav-toggle {
    display: block;
    justify-self: start;
    z-index: 120;
  }

  .brand {
    justify-self: center;
  }

  .brand img {
    width: 120px;
  }

  .brand span {
    display: none;
  }

  .quick-reserve {
    display: inline-flex;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 12px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 110;
    width: 100vw;
    height: 100vh;
    min-height: 100svh;
    padding: 132px var(--gutter) 48px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    background: var(--night);
    overflow-y: auto;
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .36s ease, opacity .36s ease;
  }

  .nav-links.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-location {
    display: block;
    margin-bottom: 22px;
    color: var(--cream-muted);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
  }

  .nav-links a {
    min-height: auto;
    padding: 8px 0;
    color: var(--cream);
    font-family: var(--display);
    max-width: 100%;
    font-size: clamp(28px, 7.2vw, 46px);
    font-weight: 400;
    letter-spacing: .06em;
    line-height: 1.25;
    text-transform: none;
    overflow-wrap: break-word;
  }

  .nav-links .nav-reserve {
    margin-top: 18px;
    min-height: 58px;
    padding: 0 22px;
    border: 1px solid var(--line-strong);
    background: var(--brown);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .intro-grid,
  .booking-grid,
  .contact-grid,
  .feature-grid,
  .story-grid,
  .story-grid.reverse {
    grid-template-columns: 1fr;
  }

  .experience-grid,
  .events-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo,
  .footer-logo-link {
    margin: 0 auto;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 20px;
  }

  .hero {
    min-height: 92svh;
    padding-top: 120px;
  }

  .hero-logo {
    width: 150px;
    margin-bottom: 28px;
  }

  h1 {
    font-size: clamp(58px, 18vw, 96px);
  }

  .hero-copy,
  .section-copy {
    font-size: 19px;
    line-height: 1.75;
  }

  .section-title {
    font-size: clamp(38px, 12vw, 58px);
  }

  .page-hero {
    min-height: 56svh;
    padding-bottom: 56px;
  }

  .page-hero h1 {
    font-size: clamp(52px, 17vw, 92px);
  }

  .facts {
    margin-top: 6px;
  }

  .visual-band {
    min-height: 58svh;
  }

  .story-photo,
  .story-photo img {
    min-height: 390px;
  }

  .menu-panel summary {
    min-height: 74px;
    font-size: clamp(28px, 10vw, 42px);
  }

  .panel-content {
    padding: 28px 22px;
  }

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

  .price {
    justify-self: start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-tile.large,
  .gallery-tile.wide,
  .gallery-tile.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-tile {
    min-height: 300px;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    width: min(100%, 420px);
  }

  .photo-tile,
  .photo-tile.wide {
    grid-column: span 1;
    min-height: 360px;
  }

  .photo-tile.wide {
    min-height: 300px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
