/* Spryvitality — palette pulled from the logo (teal #38858B, gold #C2A86B) */
:root {
  --cream: #F7F3EC;
  --sand: #EFE7DA;
  --paper: #FFFDF9;
  --ink: #1D3B3F;
  --ink-soft: #4A5F61;
  --teal: #38858B;
  --teal-deep: #245A5F;
  --gold: #C2A86B;
  --gold-soft: #E4D5B0;
  --line: rgba(29, 59, 63, 0.14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", system-ui, -apple-system, sans-serif;
  --radius: 18px;
  --wrap: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
  --shadow: 0 24px 60px -30px rgba(29, 59, 63, 0.35);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font: 300 17px/1.7 var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; margin: 0 0 .5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(3rem, 8vw, 6.2rem); }
h2 { font-size: clamp(2.3rem, 4.8vw, 3.6rem); }
h3 { font-size: 1.75rem; }
h1 em, h2 em { font-style: italic; color: var(--teal); }
p { margin: 0 0 1em; }
strong { font-weight: 500; }

.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 14px; z-index: 100; }
.skip:focus { left: 8px; }

.eyebrow {
  font: 500 .74rem/1.4 var(--sans);
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  display: flex; align-items: center; gap: .8em;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.eyebrow--light { color: var(--gold-soft); }
.muted { color: var(--ink-soft); }
.small { font-size: .9rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5em;
  padding: 1em 1.9em;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font: 500 .82rem/1 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: background .3s, color .3s, transform .3s, box-shadow .3s;
}
.btn:hover { background: var(--teal-deep); border-color: var(--teal-deep); transform: translateY(-1px); box-shadow: 0 10px 24px -12px rgba(29,59,63,.6); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--small { padding: .8em 1.4em; font-size: .72rem; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 243, 236, 0.82);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.is-scrolled { border-color: var(--line); background: rgba(247, 243, 236, 0.94); }
.nav__inner {
  max-width: var(--wrap); margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav__brand img { width: 27px; height: auto; }
.nav__brand span { font: 500 1.6rem/1 var(--serif); color: var(--ink); letter-spacing: .01em; }
.nav__links { display: flex; gap: clamp(16px, 2vw, 30px); }
.nav__links a {
  text-decoration: none; font-size: .78rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft); position: relative; padding: 4px 0;
}
.nav__links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1px; background: var(--gold); transition: right .3s; }
.nav__links a:hover, .nav__links a.is-active { color: var(--ink); }
.nav__links a:hover::after, .nav__links a.is-active::after { right: 0; }
.nav__actions { display: flex; align-items: center; gap: 18px; }
.nav__phone { font-size: .88rem; text-decoration: none; color: var(--ink-soft); white-space: nowrap; }
.nav__phone:hover { color: var(--teal); }
.nav__toggle { display: none; background: none; border: 0; width: 40px; height: 40px; cursor: pointer; position: relative; }
.nav__toggle span { position: absolute; left: 9px; right: 9px; height: 1.5px; background: var(--ink); transition: transform .3s, top .3s; }
.nav__toggle span:first-child { top: 15px; }
.nav__toggle span:last-child { top: 24px; }
.nav__toggle[aria-expanded="true"] span:first-child { top: 19px; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child { top: 19px; transform: rotate(-45deg); }
.drawer {
  display: flex; flex-direction: column;
  padding: 8px var(--gutter) 28px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}
.drawer[hidden] { display: none; }
.drawer a:not(.btn) { padding: 14px 0; border-bottom: 1px solid var(--line); text-decoration: none; font: 500 1.4rem/1.2 var(--serif); }
.drawer .btn { margin-top: 22px; }

@media (max-width: 1080px) {
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: block; }
}

/* Sections */
.section { padding: clamp(80px, 11vw, 150px) var(--gutter); }
.section > * { max-width: var(--wrap); margin-left: auto; margin-right: auto; }
.section__head { text-align: center; max-width: 720px; margin-bottom: clamp(48px, 6vw, 80px); }
.section__head .eyebrow { justify-content: center; }
.section__head .eyebrow::after { content: ""; width: 28px; height: 1px; background: currentColor; }
.section__head p:not(.eyebrow) { color: var(--ink-soft); }

/* Hero */
.hero { padding: clamp(40px, 7vw, 90px) var(--gutter) 0; text-align: center; }
.hero__copy { max-width: 860px; margin: 0 auto; }
.hero__copy .eyebrow { justify-content: center; }
.hero__copy .eyebrow::after { content: ""; width: 28px; height: 1px; background: currentColor; }
.hero h1 { margin-bottom: .35em; }
.hero h1 em { font-weight: 400; }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-soft); max-width: 600px; margin: 0 auto 2.2em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.hero__media {
  margin: clamp(48px, 7vw, 80px) auto 0;
  max-width: 1320px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero__media img { width: 100%; aspect-ratio: 1942 / 809; object-fit: cover; }
.trust {
  list-style: none; margin: 0 auto; padding: 32px 0;
  max-width: var(--wrap);
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.trust li { font-size: .88rem; color: var(--ink-soft); padding: 4px 16px; border-left: 1px solid var(--line); }
.trust li:first-child { border-left: 0; }
.trust strong { display: block; font: 500 1.45rem/1.3 var(--serif); color: var(--ink); }
.stars { color: var(--gold); letter-spacing: .12em; }
.trust .stars { display: block; font-size: 1.1rem; line-height: 1.8; }
@media (max-width: 760px) {
  .trust { grid-template-columns: 1fr 1fr; row-gap: 20px; }
  .trust li:nth-child(3) { border-left: 0; }
}

/* Split layout */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 7vw, 100px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { margin: 0; position: relative; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.split__media figcaption {
  position: absolute; left: 20px; bottom: 20px;
  background: rgba(247,243,236,.92); padding: 8px 16px; border-radius: 999px;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
}
.split__media--blend img {
  box-shadow: none; aspect-ratio: 1; mix-blend-mode: multiply; border-radius: 0;
  -webkit-mask-image: radial-gradient(closest-side, #000 72%, transparent 100%);
  mask-image: radial-gradient(closest-side, #000 72%, transparent 100%);
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media img { aspect-ratio: 4 / 3; }
  .split__media--blend img { aspect-ratio: 1; max-width: 460px; margin: 0 auto; }
}

/* Included list */
.included { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 4px; }
.included li { display: flex; gap: 18px; align-items: flex-start; padding: 16px 0; border-top: 1px solid var(--line); }
.included li:last-child { border-bottom: 1px solid var(--line); }
.included__icon {
  flex: 0 0 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--paper); color: var(--gold); font-size: 1.1rem;
  border: 1px solid var(--gold-soft);
}
.included strong { display: block; font: 500 1.35rem/1.3 var(--serif); }
.included small { color: var(--ink-soft); font-size: .92rem; }

/* Red light band */
.redlight {
  background:
    linear-gradient(100deg, rgba(20, 30, 32, .92) 0%, rgba(20, 30, 32, .78) 45%, rgba(20, 30, 32, .25) 100%),
    url("img/red-light-suite.jpg") center / cover no-repeat;
  color: var(--cream);
}
.redlight__inner { max-width: var(--wrap); }
.redlight h2 { color: #fff; max-width: 560px; }
.redlight p { max-width: 540px; color: rgba(247,243,236,.85); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; max-width: 560px; }
.chips span { border: 1px solid rgba(228, 213, 176, .5); color: var(--gold-soft); padding: 8px 16px; border-radius: 999px; font-size: .82rem; letter-spacing: .06em; }

/* Menu */
.menu { background: var(--paper); }
.menu__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 920px; }
.card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(32px, 4vw, 48px);
  transition: transform .4s, box-shadow .4s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card--featured { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.card--featured .card__desc { color: rgba(247,243,236,.75); }
.card--featured .prices div { border-color: rgba(247,243,236,.16); }
.card--featured .prices dd { color: var(--gold-soft); }
.card--featured .card__link { color: var(--gold-soft); }
.badge {
  position: absolute; top: 24px; right: 24px;
  font-size: .66rem; letter-spacing: .18em; text-transform: uppercase;
  border: 1px solid var(--gold); color: var(--gold); padding: 5px 12px; border-radius: 999px;
}
.card h3 { font-size: 2.2rem; }
.card__desc { color: var(--ink-soft); min-height: 3.4em; }
.prices { margin: 24px 0 28px; }
.prices div { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-top: 1px solid var(--line); }
.prices dt { font-size: .95rem; }
.prices dd { margin: 0; font: 500 1.7rem/1 var(--serif); color: var(--teal-deep); }
.card__link {
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
  text-decoration: none; color: var(--teal);
  border-bottom: 1px solid currentColor; padding-bottom: 3px;
}
.card__link:hover { color: var(--gold); }
.modalities { text-align: center; max-width: 760px; margin-top: 56px; }
.modalities__label { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .6em; }
.modalities p:last-child { font: italic 400 1.35rem/1.6 var(--serif); color: var(--ink-soft); }

.packages {
  margin-top: clamp(80px, 10vw, 130px);
  display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 80px); align-items: center;
  background: var(--sand);
  border-radius: 28px;
  padding: clamp(36px, 6vw, 72px);
}
.packages h2 { font-size: clamp(2rem, 3.8vw, 2.9rem); }
.packages__intro p:not(.eyebrow) { color: var(--ink-soft); }
.packages__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pkg { background: var(--paper); border-radius: var(--radius); padding: 30px 28px; }
.pkg h3 { font-size: 2rem; display: flex; flex-direction: column; margin-bottom: 18px; }
.pkg h3 small { font: 400 .72rem/1.8 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.pkg__row { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-top: 1px solid var(--line); }
.pkg__row strong { font: 500 1.55rem/1 var(--serif); color: var(--teal-deep); }
@media (max-width: 900px) {
  .menu__grid, .packages, .packages__grid { grid-template-columns: 1fr; }
}

/* Holistic */
.holistic__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.hcard { padding: 44px clamp(20px, 3vw, 40px) 20px; border-left: 1px solid var(--line); }
.hcard:first-child { border-left: 0; padding-left: 0; }
.hcard__num { font: italic 400 1.1rem/1 var(--serif); color: var(--gold); display: block; margin-bottom: 26px; }
.hcard h3 { font-size: 2rem; }
.hcard p { color: var(--ink-soft); }
@media (max-width: 900px) {
  .holistic__grid { grid-template-columns: 1fr; }
  .hcard, .hcard:first-child { border-left: 0; padding: 36px 0 28px; border-bottom: 1px solid var(--line); }
}

/* Events */
.events { background: var(--paper); }
.event-rates { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 30px 0 34px; }
.rate { background: var(--cream); border-radius: 14px; padding: 22px 20px; }
.rate h3 { font-size: 1.5rem; margin-bottom: 0; }
.rate small { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.rate ul { list-style: none; padding: 0; margin: 14px 0; font-size: .92rem; }
.rate li { padding: 4px 0; display: flex; justify-content: space-between; gap: 8px; }
.rate b { font-weight: 500; color: var(--teal-deep); }
.rate p { font-size: .82rem; color: var(--ink-soft); margin: 0; line-height: 1.5; }
@media (max-width: 1100px) and (min-width: 901px), (max-width: 600px) { .event-rates { grid-template-columns: 1fr; } }

/* About */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 100px); align-items: center; }
.about__media { position: relative; padding-bottom: 60px; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4 / 3.3; object-fit: cover; object-position: 30% center; }
.about__quote {
  position: absolute; right: -20px; bottom: 0; max-width: 320px; margin: 0;
  background: var(--ink); color: var(--cream);
  padding: 28px 30px; border-radius: var(--radius);
  font: italic 400 1.35rem/1.4 var(--serif);
}
.facts { list-style: none; padding: 0; margin: 30px 0 0; }
.facts li { padding: 14px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 96px 1fr; gap: 12px; font-size: .95rem; }
.facts span { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); padding-top: 4px; }
.facts a { color: var(--teal); text-decoration: none; }
.facts a:hover { text-decoration: underline; }
@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__quote { right: 12px; left: 12px; max-width: none; }
}

/* Reviews */
.reviews { background: var(--sand); overflow: hidden; }
.rating { font-size: .95rem; }
.reviews__track {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(420px, 84vw);
  gap: 22px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 4px 24px;
  scrollbar-width: none;
  max-width: none;
  margin-left: max(0px, calc((100vw - var(--wrap)) / 2 - var(--gutter)));
  margin-right: calc(-1 * var(--gutter));
}
.reviews__track::-webkit-scrollbar { display: none; }
.review {
  scroll-snap-align: start;
  margin: 0; background: var(--paper); border-radius: var(--radius);
  padding: 36px 34px 30px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.review::before { content: "\201C"; font: 400 4.5rem/0.6 var(--serif); color: var(--gold); display: block; height: 30px; }
.review blockquote { margin: 0 0 24px; font: 400 1.28rem/1.5 var(--serif); }
.review figcaption { font-weight: 500; font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; }
.review figcaption span { display: block; font-weight: 300; letter-spacing: .04em; text-transform: none; color: var(--ink-soft); }
.reviews__controls { display: flex; gap: 10px; justify-content: flex-end; margin-top: 10px; }
.icon-btn {
  width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--ink);
  background: transparent; color: var(--ink); font-size: 1.1rem; cursor: pointer; transition: background .3s, color .3s;
}
.icon-btn:hover { background: var(--ink); color: var(--cream); }

/* Credentials */
.creds {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: clamp(28px, 6vw, 80px);
  padding: 56px var(--gutter);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.creds img { height: clamp(48px, 6vw, 70px); width: auto; filter: grayscale(1); opacity: .7; mix-blend-mode: multiply; transition: filter .4s, opacity .4s; }
.creds img:hover { filter: none; opacity: 1; }

/* Referral */
.referral {
  background: var(--teal-deep); color: var(--cream);
  text-align: center;
  padding: clamp(64px, 8vw, 100px) var(--gutter);
}
.referral .eyebrow { justify-content: center; }
.referral .eyebrow::after { content: ""; width: 28px; height: 1px; background: currentColor; }
.referral h2 { color: #fff; }
.referral p:last-child { max-width: 560px; margin: 0 auto; color: rgba(247,243,236,.85); font-size: 1.08rem; }
.referral strong { color: var(--gold-soft); }

/* Booking */
.book__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(40px, 7vw, 100px); align-items: start; }
.book__intro p:not(.eyebrow) { color: var(--ink-soft); }
.book__direct { display: grid; gap: 10px; margin: 30px 0; }
.direct {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 18px 22px; border: 1px solid var(--line); border-radius: 14px;
  text-decoration: none; background: var(--paper);
  transition: border-color .3s, transform .3s;
  font-size: .98rem; overflow-wrap: anywhere;
}
.direct span { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.direct:hover { border-color: var(--teal); transform: translateX(4px); }
.form {
  background: var(--paper); border-radius: 24px; padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow);
}
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 500; }
.opt { text-transform: none; letter-spacing: 0; color: var(--ink-soft); font-weight: 300; }
.field input, .field select, .field textarea {
  font: 300 1rem/1.4 var(--sans); color: var(--ink);
  background: var(--cream); border: 1px solid transparent; border-radius: 12px;
  padding: 14px 16px; width: 100%;
  transition: border-color .3s, background .3s;
  -webkit-appearance: none; appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%231D3B3F' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); background: #fff; }
.field.has-error input, .field.has-error select { border-color: #B5553C; }
.hint { font-size: .8rem; color: var(--ink-soft); }
.field.has-error .hint { color: #B5553C; }
.form__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.form__status { margin: 16px 0 0; font-size: .92rem; color: var(--teal-deep); min-height: 1.4em; }
@media (max-width: 900px) { .book__grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; gap: 0; } .form__actions .btn { width: 100%; } }

/* Policies */
.policies { background: var(--paper); }
.accordion { max-width: 820px; border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary {
  list-style: none; cursor: pointer;
  padding: 24px 40px 24px 0; position: relative;
  font: 500 1.5rem/1.3 var(--serif);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font: 300 1.6rem/1 var(--sans); color: var(--gold); transition: transform .3s;
}
.accordion details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.accordion details p { color: var(--ink-soft); padding-bottom: 20px; max-width: 700px; }

/* Visit */
.visit__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 80px); align-items: stretch; }
address { font-style: normal; font-size: 1.1rem; margin-bottom: 14px; }
.hours { width: 100%; border-collapse: collapse; margin-top: 36px; font-size: .95rem; }
.hours caption { text-align: left; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); padding-bottom: 10px; }
.hours th, .hours td { padding: 11px 0; border-top: 1px solid var(--line); text-align: left; font-weight: 300; }
.hours td { text-align: right; color: var(--ink-soft); }
.hours tr.is-today th, .hours tr.is-today td { font-weight: 500; color: var(--teal-deep); }
.hours tr.is-today th::after { content: "Today"; margin-left: 10px; font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; background: var(--gold-soft); color: var(--ink); padding: 3px 8px; border-radius: 999px; vertical-align: 2px; }
.visit__map { border-radius: var(--radius); overflow: hidden; min-height: 380px; box-shadow: var(--shadow); background: var(--sand); }
.visit__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(.4) sepia(.12); }
@media (max-width: 900px) { .visit__grid { grid-template-columns: 1fr; } }

/* Footer */
.footer { background: var(--ink); color: rgba(247,243,236,.75); padding: 80px var(--gutter) 120px; text-align: center; }
.footer__inner { max-width: var(--wrap); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 26px; }
.footer__logo { width: 170px; }
.footer__tag { font: italic 400 1.2rem/1.5 var(--serif); margin: 0; }
.footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; }
.footer__links a { text-decoration: none; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; }
.footer__links a:hover { color: var(--gold-soft); }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(247,243,236,.25); display: grid; place-items: center; transition: border-color .3s, color .3s; }
.footer__social a:hover { border-color: var(--gold-soft); color: var(--gold-soft); }
.footer__legal { font-size: .8rem; margin: 0; opacity: .7; }
@media (min-width: 901px) { .footer { padding-bottom: 80px; } }

/* Mobile action bar */
.actionbar {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 40;
  display: none; grid-template-columns: 1fr 1fr 1.6fr; gap: 6px;
  padding: 6px; border-radius: 999px;
  background: rgba(29, 59, 63, .94);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 40px -12px rgba(0,0,0,.45);
  transform: translateY(140%); transition: transform .4s;
}
.actionbar.is-visible { transform: none; }
.actionbar a {
  text-align: center; text-decoration: none; color: var(--cream);
  padding: 13px 8px; border-radius: 999px;
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
}
.actionbar__book { background: var(--gold); color: var(--ink) !important; }
@media (max-width: 900px) { .actionbar { display: grid; } }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s ease; }
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0s !important; }
}
