:root {
  --paper: #efe6d4;
  --ink: #3c3226;
  --muted: #6e6354;
  --line: rgba(58, 50, 38, 0.16);
  --line-strong: rgba(58, 50, 38, 0.34);
  --white: #f6f1e6;
  --black: #3c3226;
  --sage: #5c6b4f;
  --moss: #4a5840;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header: 4.5rem;
  --gutter: clamp(1.2rem, 3.4vw, 2.75rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
  color-scheme: light;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

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

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

a {
  color: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

button:focus,
a:focus {
  outline: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  background: var(--white);
  color: var(--black);
  padding: 0.6rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 0.92;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 7.2rem);
  max-width: none;
}

h2 {
  font-size: clamp(2.1rem, 5.4vw, 4.4rem);
}

h3 {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

p {
  margin: 0;
}

.kicker,
.meta-label,
.aside {
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--muted);
}

.kicker {
  margin: 0 0 1.2rem;
}

.meta-label {
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.75rem 1.35rem;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    transform 0.16s var(--ease),
    filter 0.16s var(--ease),
    opacity 0.16s var(--ease);
}

.btn-light {
  background: var(--moss);
  color: var(--white);
}

.btn-light:hover {
  background: #3d4a36;
}

.btn-dark {
  background: var(--white);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-ghost:hover {
  background: var(--moss);
  color: var(--white);
}

.text-link {
  display: inline-block;
  margin-top: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.15rem;
  transition: opacity 0.16s var(--ease), border-color 0.16s var(--ease);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0 var(--gutter);
  color: var(--ink);
  background: var(--paper);
  border-bottom: 0;
  box-shadow: none;
}

.site-header.is-solid {
  background: var(--paper);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  justify-self: start;
}

.brand-word {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

.header-nav {
  position: absolute;
  inset: 0;
  width: max-content;
  height: max-content;
  margin: auto;
  display: flex;
  gap: 1.6rem;
  pointer-events: none;
}

.header-nav a {
  pointer-events: auto;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.64rem;
  font-weight: 500;
  opacity: 0.78;
}

.header-nav a:hover {
  opacity: 1;
}

.header-book {
  justify-self: end;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.icon-btn {
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: inherit;
  display: none;
  justify-self: start;
  position: relative;
  z-index: 2;
  touch-action: manipulation;
  transition: opacity 0.16s var(--ease), transform 0.16s var(--ease);
}

.burger,
.close {
  display: block;
  width: 1.35rem;
  height: 1px;
  background: currentColor;
  position: relative;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
}

.burger::before {
  top: -6px;
}

.burger::after {
  top: 6px;
}

.close {
  transform: rotate(45deg);
}

.close::after {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  transform: rotate(90deg);
}

.menu {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: var(--moss);
  color: var(--white);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 0 var(--gutter) 2.5rem;
}

.menu .btn-light {
  background: var(--white);
  color: var(--ink);
}

.menu .btn-light:hover {
  background: #efe6d4;
}

.menu[hidden] {
  display: none;
}

.menu-top {
  height: var(--header);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.menu-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
}

.menu-nav a {
  text-decoration: none;
  font-size: clamp(2.1rem, 8vw, 4.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.menu-foot {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: rgba(246, 241, 230, 0.78);
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: 1fr auto 1fr;
  padding-top: var(--header);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(2rem, 6vw, 4.5rem) var(--gutter) 0;
}

.hero-location {
  margin-bottom: 0.85rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy .lede {
  max-width: 42ch;
  margin: 1.4rem 0 0.5rem 0;
  color: var(--ink);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.65;
}

.hero-end {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 0.9;
  align-self: end;
  margin: 0 0 3.5rem;
}

.hero-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.hero-base .socials {
  gap: 0.2rem;
}

.hero-base .socials a {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  color: var(--ink);
  text-decoration: none;
}

.hero-base .socials svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.hero-photo {
  grid-column: 2;
  grid-row: 1 / 3;
  position: relative;
  margin: 0;
  min-height: 0;
  background: #cbbba4;
  overflow: hidden;
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy > .hero-location,
.hero-copy > h1,
.hero-copy > .lede,
.hero-copy > .hero-end,
.hero-copy > .hero-base,
.hero-photo {
  opacity: 0;
  animation: hero-fade-in 2s var(--ease) forwards;
}

.hero-copy > .hero-location {
  animation-delay: 0.05s;
}

.hero-copy > h1 {
  animation-delay: 0.1s;
}

.hero-copy > .lede {
  animation-delay: 0.35s;
}

.hero-copy > .hero-end {
  animation-delay: 0.55s;
}

.hero-copy > .hero-base {
  animation-delay: 0.75s;
}

.hero-photo {
  animation-delay: 0.22s;
}

.hero-photo img,
.gallery-track img,
.policies-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo img {
  filter: sepia(0.42) saturate(0.88) hue-rotate(12deg) contrast(1.04);
}

.gallery-track img {
  filter: none;
}

.hero-photo img {
  position: absolute;
  inset: 0;
  min-height: 0;
  height: 100%;
  object-position: 50% 42%;
}

.visit,
.booking,
.work,
.policies-list,
.site-footer,
.policies-banner {
  scroll-margin-top: calc(var(--header) - 1px);
}

.visit,
.booking,
.work,
.policies-list,
.site-footer {
  padding: clamp(3.5rem, 8vw, 6.5rem) var(--gutter);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 1.6rem;
}

.section-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-intro {
  max-width: 46ch;
  margin: 0 auto 1.8rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  text-align: center;
}

.booking {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.booking .section-head {
  width: 100%;
  max-width: 40rem;
}

.booking .section-intro {
  margin: 0 auto 1.8rem;
  text-align: center;
}

.aside {
  padding-bottom: 0.4rem;
}

.find-us {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 2.25rem;
  padding: 0.15rem 0 0;
  border-top: 1px solid var(--line);
}

.find-us article {
  padding: 1.35rem clamp(1rem, 2vw, 1.75rem) 1.5rem;
  border-right: 1px solid var(--line);
}

.find-us article:first-child {
  padding-left: 0;
}

.find-us article:last-child {
  border-right: 0;
  padding-right: 0;
}

.find-us h3 {
  margin: 0 0 0.7rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.find-us p {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.65;
}

.visit-board {
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.visit-place {
  margin: 0;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line-strong);
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.accordion {
  border-top: 1px solid var(--line-strong);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 1.35rem 0;
  cursor: pointer;
  text-align: left;
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  font-weight: 700;
  text-transform: uppercase;
}

.chevron {
  width: 0.7rem;
  height: 0.7rem;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease);
}

.accordion-trigger[aria-expanded="true"] .chevron {
  transform: rotate(-135deg);
}

.accordion-panel {
  overflow: hidden;
  border-bottom: 1px solid var(--line-strong);
}

.accordion-trigger[aria-expanded="false"] + .accordion-panel {
  display: none;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
  padding: 1.65rem 1.35rem 1.4rem;
}

.visit-grid h3 {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

.visit-grid p,
.visit-grid a {
  font-size: 0.95rem;
  line-height: 1.7;
  text-decoration: none;
}

.contact-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.16s var(--ease);
}

.contact-link svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  opacity: 0.72;
}

.contact-link:hover {
  opacity: 0.72;
}

.contact-link:active {
  opacity: 0.55;
  transform: scale(0.985);
}

.booking-split {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 1.6rem;
  width: 100%;
  max-width: 40rem;
  margin-inline: auto;
}

.book-embed {
  width: 100%;
  max-width: 40rem;
  margin-inline: auto;
  border: 1px solid var(--line-strong);
  background: var(--paper);
}

.timely-frame {
  width: 100%;
  max-width: 40rem;
  margin-inline: auto;
  background: #d9d0c0;
  min-height: 760px;
  overflow: hidden;
}

.timely-frame iframe {
  display: block;
  width: 100%;
  height: 760px;
  border: 0;
  background: #fff;
}

.book-embed .form-note {
  margin: 0;
  padding: 1rem var(--gutter) 1.15rem;
  text-align: center;
}

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
}

.form-note a {
  color: var(--ink);
}

.gallery {
  position: relative;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 28vw);
  gap: 0.45rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: auto;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x pan-y;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.gallery-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-track figure {
  margin: 0;
  user-select: none;
}

.gallery-track img {
  height: 58vh;
  min-height: 340px;
  pointer-events: none;
  -webkit-user-drag: none;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--white);
  background: var(--black);
  cursor: pointer;
  transform: translateY(-50%);
}

.gallery-nav.prev {
  left: -0.4rem;
}

.gallery-nav.next {
  right: -0.4rem;
}

.gallery-nav::before {
  content: "";
  display: block;
  width: 0.55rem;
  height: 0.55rem;
  margin: 0 auto;
  border-right: 1.5px solid var(--white);
  border-bottom: 1.5px solid var(--white);
}

.gallery-nav.prev::before {
  transform: rotate(135deg);
}

.gallery-nav.next::before {
  transform: rotate(-45deg);
}

.policies-banner {
  position: relative;
  min-height: 62vh;
  display: grid;
  place-items: end start;
  color: var(--white);
  overflow: hidden;
}

.policies-banner img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-position: 50% 38%;
}

.policies-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.22) 42%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.policies-copy {
  position: relative;
  padding: 0 var(--gutter) 8vh;
  text-shadow: 0 1px 12px rgba(44, 36, 26, 0.55);
}

.policies-copy .kicker {
  color: rgba(246, 241, 230, 0.82);
}

.policies-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: clamp(2.25rem, 4vw, 3.25rem) var(--gutter);
  border-top: 1px solid var(--line-strong);
}

.policies-list article {
  padding: 0 clamp(0.9rem, 1.8vw, 1.6rem);
  border-right: 1px solid var(--line);
}

.policies-list article:first-child {
  padding-left: 0;
}

.policies-list article:last-child {
  border-right: 0;
  padding-right: 0;
}

.policies-list h3 {
  margin: 0 0 1rem;
}

.policies-list p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}

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

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  padding-bottom: 3rem;
}

.footer-top h2 {
  margin-top: 0.3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.footer-grid h3 {
  margin-bottom: 0.8rem;
}

.footer-grid p,
.footer-grid a {
  font-size: 0.92rem;
  text-decoration: none;
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
}

.socials {
  display: flex;
  gap: 1rem;
}

.footer-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin: 0 calc(var(--gutter) * -1);
  padding: 2.4rem var(--gutter);
  background: var(--sage);
  color: var(--white);
}

.footer-cta p {
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1;
}

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.3rem;
  font-size: 0.72rem;
  color: var(--muted);
}

@media (hover: none) and (pointer: coarse) {
  .btn:active {
    transform: scale(0.98);
    filter: brightness(0.94);
  }

  .btn-light:active {
    background: #3d4a36;
  }

  .btn-dark:active {
    background: #e8e0d0;
  }

  .btn-ghost:active {
    background: rgba(74, 88, 64, 0.12);
    color: var(--ink);
  }

  .text-link:active {
    opacity: 0.55;
    border-bottom-color: rgba(60, 50, 38, 0.45);
  }

  .icon-btn:active {
    opacity: 0.55;
    transform: scale(0.94);
  }

  .header-nav a:active,
  .menu-nav a:active,
  .footer-grid nav a:active,
  .footer-grid a:active,
  .contact-link:active,
  .socials a:active,
  .hero-base .socials a:active,
  .brand:active,
  .accordion-trigger:active {
    opacity: 0.55;
  }
}

@media (max-width: 980px) {
  :root {
    --header: 4.15rem;
    --gutter: 1.4rem;
  }

  .icon-btn {
    display: block;
  }

  .header-nav {
    display: none;
  }

  .header-actions {
    position: relative;
    z-index: 2;
  }

  .header-book {
    min-height: 2.5rem;
    padding: 0.55rem 0.95rem;
    font-size: 0.64rem;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 0.6rem;
  }

  .brand {
    justify-self: center;
  }

  .brand-word {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
  }

  .menu-nav {
    gap: 0.85rem;
  }

  .menu-nav a {
    font-size: clamp(1.7rem, 9vw, 2.6rem);
  }

  .menu-foot {
    display: grid;
    gap: 1.1rem;
    justify-items: start;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  .hero-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-photo {
    grid-column: auto;
    grid-row: auto;
    order: -1;
    position: static;
    min-height: 0;
  }

  .hero-photo img {
    position: static;
    inset: auto;
    min-height: 0;
    height: min(58vh, 28rem);
  }

  .hero-copy {
    padding: 1.85rem var(--gutter) 2.6rem;
  }

  h1 {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  .hero-copy .lede {
    max-width: none;
    margin: 1.05rem 0 0.55rem 0;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    line-height: 1.6;
    text-transform: uppercase;
  }

  .hero-end {
    align-self: start;
    font-size: clamp(2rem, 10vw, 2.8rem);
    margin: 0 0 1.75rem;
  }

  .hero-base {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
  }

  .hero-base .socials {
    display: none;
  }

  .hero-base .btn {
    order: -1;
    min-width: 10.5rem;
  }

  .visit,
  .booking,
  .work,
  .site-footer {
    padding: 3.15rem var(--gutter);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
  }

  .section-head {
    align-items: start;
    margin-bottom: 1.2rem;
  }

  .section-head:not(.center) {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0.85rem;
  }

  .section-head.center {
    align-items: center;
  }

  .section-intro {
    max-width: 28ch;
    font-size: 0.7rem;
    margin-bottom: 1.3rem;
  }

  .accordion-trigger,
  .visit-place {
    font-size: 1.45rem;
    padding: 1.1rem 0;
  }

  .visit-grid,
  .policies-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .visit-grid {
    gap: 1.4rem;
    padding: 1.4rem 1.15rem 1.25rem;
  }

  .find-us {
    grid-template-columns: 1fr;
    margin-bottom: 1.75rem;
  }

  .find-us article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 1.15rem 0 1.25rem;
  }

  .find-us article:last-child {
    border-bottom: 0;
    padding-bottom: 0.15rem;
  }

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

  .timely-frame,
  .timely-frame iframe {
    min-height: 70vh;
    height: 70vh;
  }

  .gallery {
    margin-inline: calc(var(--gutter) * -1);
  }

  .gallery-track {
    grid-auto-columns: 82vw;
    padding-inline: var(--gutter);
  }

  .gallery-track img {
    height: 48vh;
    min-height: 260px;
  }

  .policies-banner {
    min-height: 42vh;
  }

  .policies-copy {
    padding: 0 var(--gutter) 2.2rem;
  }

  .policies-list {
    padding: 2rem var(--gutter);
  }

  .policies-list article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 1.4rem;
    margin-bottom: 1.4rem;
  }

  .policies-list article:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .footer-top,
  .footer-cta,
  .footer-base {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 1.1rem;
  }

  .footer-top {
    padding-bottom: 2rem;
  }

  .footer-grid {
    gap: 1.5rem;
    padding: 1.5rem 0;
  }

  .footer-cta {
    padding: 1.8rem var(--gutter);
  }

  .footer-cta p {
    font-size: clamp(1.25rem, 7vw, 1.8rem);
    line-height: 1.1;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 1.55rem;
  }

  .gallery-nav {
    display: none;
  }

  .hero-photo img {
    height: min(46vh, 20rem);
  }

  .hero-copy {
    padding: 2rem var(--gutter) 2.85rem;
  }

  .hero-copy .lede {
    margin: 1.15rem 0 0.7rem 0;
  }

  .hero-end {
    margin: 0 0 1.9rem;
  }

  .visit,
  .booking,
  .work,
  .site-footer {
    padding: 3.5rem var(--gutter);
  }

  .gallery-track img {
    height: 40vh;
    min-height: 220px;
  }

  .timely-frame,
  .timely-frame iframe {
    min-height: 78vh;
    height: 78vh;
  }
}

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

  .btn,
  .icon-btn,
  .text-link {
    transition: none;
  }

  .btn:active,
  .icon-btn:active {
    transform: none;
    filter: none;
  }

  .hero-copy > .hero-location,
  .hero-copy > h1,
  .hero-copy > .lede,
  .hero-copy > .hero-end,
  .hero-copy > .hero-base,
  .hero-photo {
    opacity: 1;
    animation: none;
    transform: none;
  }
}
