:root {
  --ink: #0d0e0e;
  --ink-soft: #171918;
  --paper: #f1efe8;
  --white: #fffdf7;
  --muted: #a6a79f;
  --gold: #c7a76b;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(13, 14, 14, 0.16);
  --display: "Oswald", sans-serif;
  --body: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.65;
}

body.lightbox-open,
body.booking-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

.site-header {
  align-items: center;
  display: flex;
  height: 76px;
  justify-content: space-between;
  left: 0;
  padding: 0 20px;
  position: fixed;
  right: 0;
  top: 0;
  transition: background-color 250ms ease, height 250ms ease, border-color 250ms ease;
  z-index: 50;
}

.site-header.scrolled {
  background: rgba(13, 14, 14, 0.94);
  border-bottom: 1px solid var(--line);
  height: 66px;
  backdrop-filter: blur(12px);
}

.brand {
  color: var(--white);
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  position: relative;
  z-index: 52;
}

.brand span {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand small {
  color: var(--gold);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 2.2px;
  margin-top: 6px;
}

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

.nav-book {
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  min-height: 44px;
  padding: 0 14px;
  text-transform: uppercase;
}

.site-nav a:not(.nav-book) {
  display: none;
}

.hero {
  align-items: flex-end;
  background-image: url("https://images.unsplash.com/photo-1517832606299-7ae9b720a186?auto=format&fit=crop&w=2000&q=88");
  background-position: 58% center;
  background-size: cover;
  color: var(--white);
  display: flex;
  min-height: 92svh;
  overflow: hidden;
  padding: 122px 20px 108px;
  position: relative;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(13, 14, 14, 0.4) 0%, rgba(13, 14, 14, 0.14) 32%, rgba(13, 14, 14, 0.92) 100%),
    linear-gradient(90deg, rgba(13, 14, 14, 0.84), rgba(13, 14, 14, 0.08));
  inset: 0;
  position: absolute;
}

.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  align-items: center;
  color: rgba(255, 253, 247, 0.72);
  display: flex;
  font-size: 10px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 2.1px;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.eyebrow span {
  background: var(--gold);
  height: 1px;
  width: 28px;
}

.eyebrow.dark {
  color: #76776f;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
}

h1 {
  font-size: clamp(3.55rem, 15vw, 7rem);
  letter-spacing: 0;
  line-height: 0.92;
  margin-bottom: 26px;
}

.hero-copy {
  color: rgba(255, 253, 247, 0.78);
  font-size: 14px;
  margin-bottom: 30px;
  max-width: 490px;
}

.hero-actions,
.contact-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.hero-actions .js-booking-open {
  min-width: 145px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button svg {
  fill: none;
  height: 17px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 17px;
}

.button-primary {
  background: var(--gold);
  color: var(--ink);
}

.button-primary:hover {
  background: var(--white);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.button-outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.text-link {
  border-bottom: 1px solid currentColor;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding-bottom: 4px;
  text-transform: uppercase;
}

.link-icon {
  color: var(--gold);
  fill: none;
  height: 14px;
  margin-left: 6px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 14px;
}

.hero-meta {
  align-items: center;
  border-top: 1px solid var(--line);
  bottom: 0;
  display: flex;
  font-size: 9px;
  justify-content: space-between;
  left: 20px;
  padding: 17px 0;
  position: absolute;
  right: 20px;
  text-transform: uppercase;
  z-index: 2;
}

.hero-meta > div {
  align-items: center;
  display: flex;
  gap: 8px;
}

.status-dot {
  background: #82ad73;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(130, 173, 115, 0.13);
  height: 6px;
  width: 6px;
}

.status-dot.closed {
  background: #af746e;
  box-shadow: 0 0 0 4px rgba(175, 116, 110, 0.13);
}

.hero-meta > a {
  display: none;
}

.scroll-cue {
  display: none;
}

.section {
  background: var(--paper);
  padding: 80px 20px;
}

.section-heading {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  margin: 0 auto 46px;
  max-width: 1180px;
}

.section-heading > div,
.section-heading > p {
  width: 100%;
}

.section-heading h2,
.about-copy h2,
.hours-panel h2 {
  font-size: clamp(3rem, 12vw, 5.6rem);
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0;
}

.section-heading > p {
  color: #6f716a;
  margin: 22px 0 0;
  max-width: 470px;
}

.service-list {
  border-top: 1px solid var(--dark-line);
  margin: 0 auto;
  max-width: 1180px;
}

.service-item {
  align-items: start;
  border-bottom: 1px solid var(--dark-line);
  display: grid;
  gap: 8px 14px;
  grid-template-columns: 28px 1fr auto;
  padding: 23px 0;
  position: relative;
}

.service-item::before {
  background: var(--gold);
  content: "";
  inset: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.service-item:hover::before,
.service-item.featured::before {
  transform: scaleX(1);
}

.service-item > * {
  position: relative;
}

.service-number {
  color: #8a8b84;
  font-size: 9px;
  padding-top: 6px;
}

.service-item h3 {
  font-size: 22px;
  margin: 0;
}

.service-item p {
  color: #73756e;
  font-size: 11px;
  line-height: 1.5;
  margin: 5px 0 0;
}

.service-item strong {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
}

.service-time {
  color: #777970;
  font-size: 9px;
  grid-column: 2 / 4;
  text-transform: uppercase;
}

.service-item:hover p,
.service-item:hover .service-number,
.service-item:hover .service-time,
.service-item.featured p,
.service-item.featured .service-number,
.service-item.featured .service-time {
  color: rgba(13, 14, 14, 0.68);
}

.gallery-section {
  background: var(--ink-soft);
  color: var(--white);
  padding: 80px 20px;
}

.section-heading.light {
  align-items: flex-start;
}

.gallery-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  max-width: 1400px;
}

.gallery-item {
  aspect-ratio: 3 / 4;
  background: #222;
  border: 0;
  cursor: zoom-in;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2, .7, .2, 1);
  width: 100%;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-main,
.gallery-wide {
  aspect-ratio: 16 / 11;
  grid-column: 1 / 3;
}

.about {
  display: grid;
  gap: 50px;
}

.about-image {
  min-height: 480px;
  position: relative;
}

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

.experience-stamp {
  align-items: center;
  background: var(--gold);
  bottom: -24px;
  display: flex;
  gap: 12px;
  padding: 18px 20px;
  position: absolute;
  right: 18px;
}

.experience-stamp strong {
  font-family: var(--display);
  font-size: 38px;
  line-height: 1;
}

.experience-stamp span {
  border-left: 1px solid rgba(13, 14, 14, 0.3);
  font-size: 8px;
  font-weight: 700;
  line-height: 1.4;
  padding-left: 12px;
  text-transform: uppercase;
}

.about-copy h2 {
  margin-bottom: 30px;
}

.about-copy > p:not(.eyebrow) {
  color: #65675f;
  max-width: 600px;
}

.about-signature {
  border-top: 1px solid var(--dark-line);
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  padding-top: 20px;
}

.about-signature span {
  font-family: var(--display);
  font-size: 22px;
}

.about-signature small {
  color: #818279;
  font-size: 8px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.visit {
  background: var(--ink);
  color: var(--white);
  display: grid;
}

.hours-panel {
  padding: 80px 20px;
}

.hours-panel h2 {
  margin-bottom: 38px;
}

.hours-list {
  border-top: 1px solid var(--line);
  margin: 0 0 34px;
}

.hours-list div {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  font-size: 11px;
  justify-content: space-between;
  padding: 15px 0;
}

.hours-list dt {
  color: var(--muted);
}

.hours-list dd {
  font-weight: 700;
  margin: 0;
}

.contact-actions {
  align-items: stretch;
  flex-direction: column;
}

.map-placeholder {
  background: #101212;
  border-left: 1px solid rgba(199, 167, 107, 0.28);
  min-height: 470px;
  overflow: hidden;
  position: relative;
}

.google-map {
  border: 0;
  display: block;
  filter: grayscale(1) contrast(1.06) brightness(0.76);
  height: 100%;
  left: 0;
  min-height: inherit;
  position: absolute;
  top: 0;
  width: 100%;
}

.map-link {
  align-items: center;
  background: rgba(13, 14, 14, 0.92);
  border: 1px solid rgba(199, 167, 107, 0.42);
  bottom: 16px;
  color: var(--white);
  display: inline-flex;
  font-size: 9px;
  font-weight: 700;
  gap: 6px;
  left: 16px;
  padding: 12px 14px;
  position: absolute;
  text-transform: uppercase;
}

footer {
  align-items: center;
  background: #090a0a;
  border-top: 1px solid var(--line);
  color: #7f817b;
  display: flex;
  flex-direction: column;
  font-size: 8px;
  gap: 24px;
  padding: 34px 20px;
  text-align: center;
  text-transform: uppercase;
}

.footer-brand {
  align-items: center;
}

footer > a:last-child {
  color: var(--white);
}

.lightbox {
  align-items: center;
  background: rgba(5, 6, 6, 0.95);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 50px 18px 18px;
  position: fixed;
  z-index: 100;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 88vh;
  max-width: min(1100px, 100%);
  object-fit: contain;
}

.lightbox-close {
  background: transparent;
  border: 0;
  color: var(--white);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  padding: 10px;
  position: absolute;
  right: 12px;
  top: 8px;
}

.booking-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 18px;
  position: fixed;
  z-index: 90;
}

.booking-modal[hidden] {
  display: none;
}

.booking-backdrop {
  background: rgba(5, 6, 6, 0.88);
  inset: 0;
  position: absolute;
  backdrop-filter: blur(8px);
}

.booking-dialog {
  background: var(--ink-soft);
  border: 1px solid rgba(199, 167, 107, 0.28);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.56);
  color: var(--white);
  max-height: calc(100svh - 36px);
  max-width: 680px;
  overflow-y: auto;
  padding: 46px 22px 26px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.booking-close {
  background: transparent;
  border: 0;
  color: var(--white);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  padding: 10px;
  position: absolute;
  right: 10px;
  top: 7px;
}

.booking-dialog h2 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 12vw, 4.7rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin: 0 0 18px;
}

.booking-intro {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 28px;
  max-width: 460px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.form-field label {
  color: rgba(255, 253, 247, 0.66);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.3px;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.form-field input,
.form-field select {
  appearance: none;
  background: #101212;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  color: var(--white);
  font-family: var(--body);
  font-size: 14px;
  height: 50px;
  outline: none;
  padding: 0 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  width: 100%;
}

.form-field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 17px) 22px, calc(100% - 12px) 22px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 38px;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(199, 167, 107, 0.12);
}

.form-field input::placeholder {
  color: #696b66;
}

.date-picker {
  display: flex;
  gap: 7px;
  max-width: 100%;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(199, 167, 107, 0.5) transparent;
  scrollbar-width: thin;
  touch-action: pan-x;
}

.date-option {
  appearance: none;
  background: #101212;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  cursor: pointer;
  flex: 0 0 68px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  height: 50px;
  padding: 0 8px;
  scroll-snap-align: start;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
  white-space: nowrap;
}

.date-option:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.date-option.is-selected {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.date-option:focus-visible {
  border-color: var(--gold);
  outline: 3px solid rgba(199, 167, 107, 0.42);
  outline-offset: 2px;
}

.field-error {
  color: #d9968f;
  display: none;
  font-size: 9px;
  margin-top: 6px;
}

.form-field.invalid .field-error {
  display: block;
}

.form-field.invalid input,
.form-field.invalid select {
  border-color: #b96d66;
}

.booking-submit {
  cursor: pointer;
  margin-top: 6px;
  position: relative;
  width: 100%;
}

.booking-submit:disabled {
  cursor: wait;
  opacity: 0.78;
}

.submit-loader {
  animation: booking-spin 700ms linear infinite;
  border: 2px solid rgba(13, 14, 14, 0.28);
  border-right-color: var(--ink);
  border-radius: 50%;
  display: none;
  height: 17px;
  width: 17px;
}

.booking-submit.is-loading .submit-loader {
  display: block;
}

.booking-error {
  border-left: 2px solid #b96d66;
  color: #d9a09a;
  font-size: 10px;
  grid-column: 1 / -1;
  line-height: 1.55;
  margin: -2px 0 0;
  padding: 2px 0 2px 11px;
}

.booking-error[hidden] {
  display: none;
}

.booking-success {
  padding: 28px 0 12px;
  text-align: left;
}

.booking-success[hidden] {
  display: none;
}

.success-mark {
  align-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  font-size: 26px;
  height: 58px;
  justify-content: center;
  margin-bottom: 28px;
  width: 58px;
}

.booking-success > p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 30px;
  max-width: 480px;
}

.booking-success .button-outline {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  cursor: pointer;
}

.booking-success .button-outline:hover {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.booking-success .button-outline:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  outline: 3px solid rgba(199, 167, 107, 0.42);
  outline-offset: 3px;
}

.booking-success .button-outline:active {
  background: #b9995f;
  border-color: #b9995f;
}

@media (min-width: 720px) {
  .site-header {
    padding-inline: 36px;
  }

  .hero {
    min-height: 94svh;
    padding: 150px 7vw 125px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-meta {
    left: 7vw;
    right: 7vw;
  }

  .hero-meta > a {
    display: block;
  }

  .section,
  .gallery-section {
    padding: 110px 7vw;
  }

  .section-heading {
    flex-direction: row;
    justify-content: space-between;
  }

  .section-heading > div {
    width: 60%;
  }

  .section-heading > p {
    margin-top: 0;
    width: 36%;
  }

  .section-heading.light {
    align-items: flex-end;
    flex-direction: row;
  }

  .section-heading.light > div {
    width: 100%;
  }

  .service-item {
    align-items: center;
    gap: 20px;
    grid-template-columns: 45px 1fr 110px 75px;
    padding: 25px 16px;
  }

  .service-time {
    grid-column: auto;
  }

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

  .gallery-main {
    aspect-ratio: auto;
    grid-column: auto;
    grid-row: span 2;
  }

  .gallery-wide {
    aspect-ratio: 16 / 7;
    grid-column: 2 / 4;
  }

  .about {
    align-items: center;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    padding-bottom: 120px;
    padding-top: 120px;
  }

  .about-image {
    min-height: 680px;
  }

  .about-copy {
    padding: 5vw;
  }

  .visit {
    grid-template-columns: 0.85fr 1.15fr;
    min-height: 620px;
  }

  .hours-panel {
    padding: 100px 7vw;
  }

  .map-placeholder {
    min-height: 620px;
  }

  footer {
    flex-direction: row;
    justify-content: space-between;
    padding-inline: 7vw;
  }

  .booking-dialog {
    padding: 54px 48px 44px;
  }

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

  .form-field-wide,
  .booking-submit {
    grid-column: 1 / 3;
  }
}

@media (min-width: 1000px) {
  .site-header {
    height: 88px;
    padding-inline: 5vw;
  }

  .site-nav {
    background: transparent;
    flex-direction: row;
    font-family: var(--body);
    font-size: 10px;
    gap: 30px;
    inset: auto;
    opacity: 1;
    pointer-events: auto;
    position: static;
    text-transform: uppercase;
  }

  .site-nav a:not(.nav-book) {
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    transition: color 180ms ease;
  }

  .site-nav a:hover {
    color: var(--white);
  }

  .nav-book {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 10px 15px;
  }

  .hero {
    background-position: center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(13, 14, 14, 0.26) 0%, rgba(13, 14, 14, 0.04) 55%, rgba(13, 14, 14, 0.82) 100%),
      linear-gradient(90deg, rgba(13, 14, 14, 0.93) 0%, rgba(13, 14, 14, 0.5) 38%, rgba(13, 14, 14, 0.02) 75%);
  }

  .scroll-cue {
    border: 1px solid rgba(255, 255, 255, 0.3);
    bottom: 28px;
    display: block;
    height: 36px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 22px;
    z-index: 3;
  }

  .scroll-cue span {
    animation: scroll 1.7s infinite;
    background: var(--gold);
    height: 6px;
    left: 50%;
    position: absolute;
    top: 7px;
    transform: translateX(-50%);
    width: 1px;
  }

  .contact-actions {
    flex-direction: row;
  }
}

@keyframes scroll {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 13px); }
}

@keyframes booking-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 999px) {
  html,
  body {
    overflow-x: hidden;
    width: 100%;
  }

  .site-nav {
    margin-left: 16px;
  }

  .site-nav a {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 44px;
    text-align: center;
  }

  .brand,
  .text-link,
  .hero-meta a,
  .map-link,
  footer > a:last-child {
    align-items: center;
    display: inline-flex;
    min-height: 44px;
    min-width: 44px;
  }

  .nav-book {
    min-height: 48px;
  }

  .button,
  .booking-close,
  .lightbox-close {
    min-height: 44px;
    min-width: 44px;
  }

  .service-item {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .service-item strong {
    grid-column: 2;
    justify-self: start;
  }

  .service-time {
    grid-column: 2;
  }

}

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

  .hero {
    background-position: 64% center;
    min-height: 100svh;
    padding: 112px 16px 98px;
  }

  .hero-copy {
    max-width: 330px;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    gap: 14px;
  }

  .hero-actions .button,
  .contact-actions .button,
  .booking-submit {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: flex-start;
    margin-top: 2px;
  }

  .hero-meta {
    left: 16px;
    right: 16px;
  }

  .section,
  .gallery-section {
    padding: 72px 16px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading > p {
    margin-top: 18px;
  }

  .service-item {
    column-gap: 12px;
    padding: 21px 0;
  }

  .service-item h3 {
    font-size: 21px;
    overflow-wrap: anywhere;
  }

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

  .gallery-item,
  .gallery-main,
  .gallery-wide {
    aspect-ratio: 4 / 5;
    grid-column: auto;
  }

  .about {
    gap: 42px;
  }

  .about-image {
    min-height: 380px;
  }

  .experience-stamp {
    bottom: -18px;
    padding: 14px 16px;
    right: 14px;
  }

  .experience-stamp strong {
    font-size: 32px;
  }

  .hours-panel {
    padding: 72px 16px;
  }

  .hours-list div {
    align-items: flex-start;
    gap: 16px;
  }

  .hours-list dd {
    text-align: right;
    white-space: nowrap;
  }

  .map-placeholder {
    min-height: 420px;
  }

  .map-link {
    left: 16px;
    right: 16px;
    text-align: center;
    justify-content: center;
  }

  .booking-modal {
    align-items: stretch;
    padding: 10px;
  }

  .booking-dialog {
    max-height: calc(100svh - 20px);
    padding: 44px 16px 20px;
  }

  .booking-dialog h2 {
    font-size: clamp(2.55rem, 14vw, 3.55rem);
  }

  .booking-intro {
    margin-bottom: 22px;
  }

  .booking-form {
    gap: 15px;
  }

  .date-picker {
    margin-inline: -2px;
  }

  .date-option {
    flex-basis: 64px;
  }

  footer {
    padding-inline: 16px;
  }

  footer p {
    max-width: 280px;
  }
}

@media (min-width: 720px) and (max-width: 999px) {
  .section-heading {
    align-items: flex-start;
  }

  .section-heading h2,
  .about-copy h2,
  .hours-panel h2 {
    font-size: clamp(4.2rem, 10vw, 5.1rem);
  }

  .about {
    grid-template-columns: 1fr;
    padding-bottom: 110px;
  }

  .about-image {
    min-height: 560px;
  }

  .about-copy {
    padding: 0;
  }

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

  .hours-panel {
    padding: 90px 7vw;
  }

  .map-placeholder {
    min-height: 520px;
  }

  .booking-dialog {
    max-width: calc(100vw - 48px);
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: clamp(3.05rem, 15vw, 3.8rem);
  }

  .section-heading h2,
  .about-copy h2,
  .hours-panel h2 {
    font-size: clamp(2.65rem, 12vw, 3.4rem);
  }

  .button {
    padding-inline: 16px;
  }

}

@media (max-width: 360px) {
  .brand span {
    font-size: 23px;
  }

  .hero {
    padding-top: 104px;
  }

  .hero-meta {
    font-size: 8px;
  }

  .service-item h3 {
    font-size: 19px;
  }

  .booking-dialog {
    padding-inline: 14px;
  }

  .form-field input,
  .form-field select {
    font-size: 13px;
    padding-inline: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
