:root {
  --lake-950: #071f29;
  --lake-900: #0b2e3a;
  --lake-800: #123f4d;
  --lake-700: #1a5665;
  --lake-100: #dcebee;
  --lake-50: #eff6f6;
  --sun-600: #c96f00;
  --sun-500: #e38a13;
  --sun-400: #f2aa3b;
  --sun-100: #fff0d6;
  --ink: #17272c;
  --muted: #5d6d72;
  --paper: #fffdf9;
  --white: #fff;
  --line: rgba(11, 46, 58, .14);
  --shadow-sm: 0 10px 30px rgba(7, 31, 41, .08);
  --shadow-lg: 0 28px 72px rgba(7, 31, 41, .18);
  --radius-sm: .5rem;
  --radius-md: 1rem;
  --radius-lg: 1.75rem;
  --shell: 76rem;
  --font-body: Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 1rem/1.65 var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--lake-700);
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

a:hover {
  color: var(--sun-600);
}

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

h1,
h2,
h3,
h4 {
  margin: 0 0 .65em;
  color: var(--lake-950);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.08;
  text-wrap: balance;
}

h1 { font-size: clamp(2.7rem, 7vw, 5.8rem); }
h2 { font-size: clamp(2.15rem, 4.4vw, 4rem); }
h3 { font-size: clamp(1.45rem, 2.3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
  margin: 0 0 1.25rem;
}

address {
  font-style: normal;
}

.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  padding: .75rem 1rem;
  transform: translateY(-200%);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--lake-950);
  box-shadow: var(--shadow-sm);
}

.skip-link:focus {
  transform: none;
}

.utility-bar {
  background: var(--lake-950);
  color: rgba(255, 255, 255, .88);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.utility-bar__inner,
.utility-bar__links {
  display: flex;
  align-items: center;
}

.utility-bar__inner {
  min-height: 3.35rem;
  justify-content: space-between;
  gap: 1rem;
}

.utility-bar p,
.utility-bar__location {
  margin: 0;
}

.utility-bar__location {
  display: grid;
  align-self: stretch;
  align-content: center;
  gap: .22rem;
  padding-block: .45rem;
}

.utility-bar__location > span {
  color: rgba(255, 255, 255, .68);
  font-size: .64rem;
  line-height: 1;
}

.utility-bar__local-guru {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: .4rem;
  color: var(--white) !important;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
}

.utility-bar__local-guru svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: var(--sun-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.utility-bar__local-guru:hover {
  color: var(--sun-400) !important;
}

.utility-bar__links {
  gap: 1.25rem;
}

.utility-bar a {
  color: inherit;
  text-decoration: none;
}

.utility-bar a:hover {
  color: var(--sun-500);
}

.language-switcher ul {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.language-switcher li,
.language-switcher .mod-languages ul li {
  margin: 0;
  background: transparent;
}

.language-switcher a,
.language-switcher .mod-languages a {
  display: grid;
  width: 2rem;
  height: 1.65rem;
  padding: 0;
  place-items: center;
  border: 1px solid transparent;
  border-radius: .3rem;
  opacity: .72;
  transition: border-color .2s ease, opacity .2s ease, background-color .2s ease;
}

.language-switcher a:hover,
.language-switcher a:focus-visible {
  border-color: rgba(255, 255, 255, .5);
  color: inherit;
  opacity: 1;
}

.language-switcher .lang-active a {
  border-color: var(--sun-500);
  background: rgba(255, 255, 255, .08);
  opacity: 1;
}

.language-switcher img {
  display: block;
  width: 1.35rem;
  height: .9rem;
  border-radius: .08rem;
  object-fit: cover;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 253, 249, .94);
  backdrop-filter: blur(18px);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(7, 31, 41, .06);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 10.5rem 1fr auto;
  align-items: center;
  min-height: 6.1rem;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-self: stretch;
  align-items: center;
  padding-block: .65rem;
}

.brand img {
  width: 9.7rem;
  height: auto;
}

.site-navigation {
  justify-self: end;
}

.site-navigation .mod-menu,
.site-navigation ul {
  display: flex;
  align-items: center;
  gap: clamp(.75rem, 1.65vw, 1.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-navigation a {
  position: relative;
  display: inline-flex;
  padding: .65rem 0;
  color: var(--lake-950);
  font-size: .86rem;
  font-weight: 650;
  letter-spacing: .055em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-navigation a::after {
  position: absolute;
  right: 0;
  bottom: .35rem;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--sun-500);
  content: "";
  transition: transform .2s ease;
}

.site-navigation a:hover::after,
.site-navigation .active > a::after,
.site-navigation .current > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

.button,
.btn {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .075em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

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

.button--booking,
.button--primary,
.btn-primary {
  background: var(--sun-500);
  color: var(--lake-950);
  box-shadow: 0 12px 28px rgba(227, 138, 19, .24);
}

.button--booking:hover,
.button--primary:hover,
.btn-primary:hover {
  background: #f29b2a;
  color: var(--lake-950);
}

.button--outline {
  border-color: currentColor;
  background: transparent;
  color: var(--lake-900);
}

.button--light {
  background: var(--white);
  color: var(--lake-950);
}

.mobile-booking {
  display: none;
}

main:focus {
  outline: none;
}

.com-content-article,
.com-content-category-blog,
.contact,
.login,
.profile,
.registration {
  width: min(calc(100% - 2rem), var(--shell));
  margin-inline: auto;
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.com-content-article.item-page-home,
.itemid-home .com-content-article,
.page-home .com-content-article {
  width: auto;
  max-width: none;
  padding: 0;
}

.page-header h1,
.com-content-article > h1,
.com-content-article > .page-header {
  max-width: 18ch;
}

.breadcrumbs {
  padding-block: 1rem;
  color: var(--muted);
  font-size: .85rem;
}

.breadcrumbs ol {
  display: flex;
  gap: .55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(78vh, 52rem);
  place-items: end start;
  overflow: hidden;
  isolation: isolate;
  background: var(--lake-900);
}

.hero__media,
.hero__media::after {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -2;
}

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

.hero__media::after {
  background: linear-gradient(90deg, rgba(7, 31, 41, .8) 0%, rgba(7, 31, 41, .42) 48%, rgba(7, 31, 41, .08) 78%), linear-gradient(0deg, rgba(7, 31, 41, .46), transparent 55%);
  content: "";
}

.hero__content {
  width: min(100%, 48rem);
  padding-block: clamp(4rem, 10vw, 8rem);
  color: var(--white);
}

.hero h1 {
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, .24);
}

.hero__lead {
  max-width: 38rem;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

.eyebrow {
  margin-bottom: 1.15rem;
  color: var(--sun-600);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffc56c;
}

.section {
  padding-block: clamp(4.5rem, 10vw, 8rem);
}

.section--compact {
  padding-block: clamp(3rem, 7vw, 5rem);
}

.section--lake {
  background: var(--lake-900);
  color: rgba(255, 255, 255, .82);
}

.section--lake h2,
.section--lake h3 {
  color: var(--white);
}

.section--mist {
  background: var(--lake-50);
}

.section--sun {
  background: var(--sun-100);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(16rem, .7fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.section-heading > :last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
}

.split--reverse .split__media {
  order: 2;
}

.split__media {
  position: relative;
}

.split__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.split__media--landscape img {
  aspect-ratio: 4 / 3;
}

.split__media--team img {
  object-fit: contain;
}

.hotel-story__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--lake-100);
  box-shadow: var(--shadow-lg);
}

.hotel-story__media img,
.hotel-story__media--team img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: cover;
  box-shadow: none;
}

.hotel-story__media--values img {
  object-position: center 68%;
}

.split__content {
  max-width: 36rem;
}

.split__content > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.room-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.room-card {
  display: flex;
  flex-direction: column;
}

.room-card .card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.room-card .room-facts {
  margin-top: auto;
}

.room-card:last-child {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
}

.room-card:last-child .card__image {
  height: 100%;
  min-height: 24rem;
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.card--linked {
  transition: transform .22s ease, box-shadow .22s ease;
}

.card--linked:hover {
  transform: translateY(-.25rem);
  box-shadow: var(--shadow-lg);
}

.card--linked .card__link::after {
  position: absolute;
  inset: 0;
  content: "";
}

.card--linked:focus-within {
  outline: 3px solid rgba(227, 138, 19, .55);
  outline-offset: 3px;
}

.card--linked .card__link:focus-visible {
  outline: 0;
}

.card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card__body {
  padding: clamp(1.35rem, 3vw, 2rem);
}

.card__body p {
  color: var(--muted);
}

.contact-cards h2 {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.75vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -.02em;
  overflow-wrap: anywhere;
}

.contact-cards h2 a {
  color: var(--lake-900);
  text-decoration: none;
}

.contact-address {
  margin-top: 1.25rem;
}

.location-overview__content address {
  max-width: 32rem;
  margin-bottom: 1.5rem;
  color: var(--lake-900);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-style: normal;
  line-height: 1.25;
}

.location-overview__content dl {
  margin: 0 0 1.75rem;
}

.location-overview__content dl > div {
  display: flex;
  align-items: baseline;
  gap: .65rem;
}

.location-overview__content dt {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.location-overview__content dd {
  margin: 0;
  color: var(--lake-800);
  font-variant-numeric: tabular-nums;
}

.travel-grid {
  align-items: stretch;
}

.travel-card {
  display: flex;
}

.travel-card .card__body {
  display: flex;
  flex-direction: column;
}

.travel-card__number,
.contact-method__icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.75rem;
  place-items: center;
  border-radius: 50%;
  background: var(--sun-100);
  color: var(--sun-600);
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.contact-method__icon {
  width: 3.25rem;
  height: 3.25rem;
}

.contact-method__icon svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.travel-card h3 {
  font-size: clamp(1.65rem, 3vw, 2.3rem);
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  list-style: none;
}

.nearby-layout {
  display: grid;
  grid-template-columns: minmax(20rem, .72fr) minmax(0, 1.28fr);
  align-items: stretch;
  gap: 1rem;
}

.nearby-illustration {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--lake-100);
  box-shadow: var(--shadow-sm);
}

.nearby-illustration img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

.nearby-grid li {
  display: flex;
  min-height: 7rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.nearby-grid li:nth-child(3n) {
  border-right: 0;
}

.nearby-grid li:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.nearby-grid strong {
  color: var(--lake-900);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
}

.nearby-grid span {
  width: fit-content;
  padding: .3rem .65rem;
  border-radius: 999px;
  background: var(--lake-50);
  color: var(--lake-700);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.contact-method {
  min-height: 18rem;
}

.contact-method .card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.contact-method h3 {
  overflow-wrap: anywhere;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
}

.contact-method .card__link {
  margin-top: auto;
}

.contact-coordinates {
  color: var(--muted);
  font-size: .85rem !important;
  font-variant-numeric: tabular-nums;
}

.contact-location__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.75rem;
}

.social-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, .75fr);
  align-items: center;
  gap: clamp(2rem, 8vw, 8rem);
}

.social-panel > div:first-child p:not(.eyebrow) {
  max-width: 36rem;
  color: var(--muted);
}

.social-panel__links {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.social-panel__links a {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--line);
  color: var(--lake-900);
  font-weight: 800;
  text-decoration: none;
}

.social-panel__links a:last-child {
  border-bottom: 0;
}

.social-panel__links a:hover {
  background: var(--lake-50);
  color: var(--sun-600);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.card__link span {
  transition: transform .2s ease;
}

.card__link:hover span {
  transform: translateX(.25rem);
}

.booking-benefits {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.booking-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.booking-benefits__grid > div {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 1rem;
  border-right: 1px solid var(--line);
  color: var(--lake-900);
  font-size: .82rem;
  letter-spacing: .06em;
  text-align: center;
  text-transform: uppercase;
}

.booking-benefits__grid > div:last-child {
  border-right: 0;
}

.booking-benefits__grid span {
  display: inline-grid;
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--sun-100);
  color: var(--sun-600);
  font-size: .9rem;
}

.page-intro {
  padding: clamp(7rem, 13vw, 11rem) 0 clamp(3.5rem, 7vw, 6rem);
  background: var(--lake-900);
  color: var(--white);
}

.page-intro h1 {
  max-width: 14ch;
  margin: .35rem 0 1rem;
  color: inherit;
  font-size: clamp(3rem, 7vw, 6.5rem);
}

.page-intro__lead {
  max-width: 46rem;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.legal-page {
  max-width: 54rem;
}

.legal-page__updated {
  margin: 0 0 3rem;
  color: var(--lake-600);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.legal-section + .legal-section {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 1rem;
}

.legal-section p {
  max-width: none;
}

.legal-section p + p {
  margin-top: 1rem;
}

.guest-proof {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.guest-proof > div:first-child > p:not(.eyebrow) {
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.guest-proof__scores {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.guest-proof__scores > div {
  display: flex;
  min-height: 10rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  border-right: 1px solid var(--line);
  text-align: center;
}

.guest-proof__scores > div:nth-child(3) {
  border-right: 0;
}

.guest-proof__scores strong {
  color: var(--lake-900);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  line-height: 1;
}

.guest-proof__scores small {
  font-size: .42em;
}

.guest-proof__scores span {
  margin-top: .65rem;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.guest-proof__scores > p {
  grid-column: 1 / -1;
  margin: 0;
  padding: .7rem 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .7rem;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature {
  padding: 1.75rem;
  border-top: 2px solid var(--sun-500);
  background: rgba(255, 255, 255, .06);
}

.feature__number {
  color: var(--sun-500);
  font-family: var(--font-display);
  font-size: 2.5rem;
}

.feature h3 {
  font-size: 1.35rem;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card .card__image {
  aspect-ratio: 16 / 10;
}

.service-card .card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.service-card h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.service-card .card__link {
  margin-top: auto;
  padding-top: 1rem;
}

.meeting-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.meeting-card {
  display: flex;
  flex-direction: column;
}

.meeting-card .card__image {
  aspect-ratio: 3 / 2;
}

.meeting-card .card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.meeting-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
}

.meeting-card .room-facts {
  margin-top: auto;
}

.standalone-page {
  background: var(--mist);
}

.standalone-page main {
  overflow: hidden;
}

.standalone-page .com-content-article {
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
}

.local-guru-page {
  min-height: 100svh;
  background: var(--mist);
}

.local-guru-hero {
  position: relative;
  min-height: min(78rem, 100svh);
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}

.local-guru-hero__media,
.local-guru-hero__shade {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.local-guru-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.local-guru-hero__shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(4, 25, 44, .88) 0%, rgba(4, 25, 44, .64) 46%, rgba(4, 25, 44, .22) 78%), linear-gradient(0deg, rgba(4, 25, 44, .66), transparent 55%);
}

.local-guru-topbar {
  display: flex;
  width: min(calc(100% - 2.5rem), var(--shell));
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-inline: auto;
  padding-top: clamp(1.25rem, 4vw, 2.5rem);
}

.local-guru-brand img {
  width: clamp(10rem, 19vw, 16rem);
  height: auto;
}

.local-guru-back {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .75rem 1rem;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}

.local-guru-back:hover {
  border-color: var(--sun-500);
  background: var(--sun-500);
  color: var(--lake-950);
}

.local-guru-hero__content {
  display: grid;
  min-height: calc(min(78rem, 100svh) - 8rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(19rem, .65fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: clamp(4rem, 8vw, 7rem) clamp(7rem, 12vw, 11rem);
}

.local-guru-hero__content h1 {
  max-width: 12ch;
  margin: .45rem 0 1.5rem;
  color: var(--white);
  font-size: clamp(3.25rem, 7vw, 7.25rem);
  line-height: .94;
  text-wrap: balance;
}

.local-guru-hero__content > div > p:last-child {
  max-width: 41rem;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.local-guru-cover {
  width: min(100%, 25rem);
  margin: 0 auto;
  padding: .7rem;
  border-radius: .35rem .9rem .9rem .35rem;
  background: rgba(255, 255, 255, .18);
  box-shadow: -1.2rem 1.8rem 3.5rem rgba(2, 15, 27, .42);
  transform: rotate(2.5deg);
}

.local-guru-cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: .15rem .5rem .5rem .15rem;
}

.local-guru-downloads {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(3rem, 8vw, 7rem);
}

.local-guru-panel {
  display: grid;
  grid-template-columns: minmax(18rem, .72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: clamp(-6rem, -7vw, -4rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(11, 46, 58, .1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-lg);
}

.local-guru-panel__intro {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.local-guru-panel__intro h2 {
  margin-bottom: .65rem;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.local-guru-panel__intro p,
.local-guru-panel__choices > p {
  margin: 0;
  color: var(--muted);
}

.local-guru-map-icon {
  display: grid;
  width: 5rem;
  height: 5rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--lake-50);
  color: var(--lake-800);
}

.local-guru-map-icon svg {
  width: 3rem;
  height: 3rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.local-guru-panel__choices > p {
  margin-bottom: 1rem;
  font-size: .9rem;
}

.local-guru-panel__choices ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.local-guru-panel__choices a {
  position: relative;
  display: grid;
  min-height: 7rem;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: .7rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, var(--lake-700), var(--lake-950));
  box-shadow: 0 .8rem 1.8rem rgba(5, 35, 48, .18);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.local-guru-panel__choices li:first-child a {
  background: linear-gradient(145deg, #47a942, #197934);
}

.local-guru-panel__choices a:hover {
  box-shadow: 0 1rem 2rem rgba(5, 35, 48, .28);
  transform: translateY(-3px);
}

.local-guru-panel__choices img {
  width: 2.2rem;
  height: 1.45rem;
  border-radius: .1rem;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .25);
}

.local-guru-panel__choices span {
  display: grid;
  gap: .2rem;
  min-width: 0;
  text-align: center;
}

.local-guru-panel__choices strong {
  font-size: .82rem;
}

.local-guru-panel__choices small {
  color: rgba(255, 255, 255, .65);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.local-guru-panel__choices svg {
  position: absolute;
  top: .85rem;
  right: .85rem;
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.local-guru-signoff {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  margin-top: 1rem;
  padding: clamp(1.5rem, 4vw, 2.75rem) clamp(1.5rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--lake-950), var(--lake-700));
  color: var(--white);
}

.local-guru-signoff > div {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: var(--sun-100);
  line-height: .82;
}

.local-guru-signoff > div > span {
  color: var(--sun-400);
  font-size: 3rem;
}

.local-guru-signoff p {
  max-width: 34rem;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  line-height: 1.2;
}

.breakfast-page {
  background: var(--mist);
}

.breakfast-slider {
  position: relative;
  min-height: min(100svh, 58rem);
  overflow: hidden;
  background: var(--lake-950);
  color: var(--white);
}

.breakfast-slider__slides,
.breakfast-slider__slide,
.breakfast-slider__shade {
  position: absolute;
  inset: 0;
}

.breakfast-slider__slide {
  margin: 0;
  opacity: 0;
  transition: opacity .8s ease;
}

.breakfast-slider__slide.is-active {
  opacity: 1;
}

.breakfast-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.breakfast-slider__shade {
  z-index: 1;
  background: linear-gradient(90deg, rgba(4, 24, 32, .82) 0%, rgba(4, 24, 32, .46) 48%, rgba(4, 24, 32, .12) 100%), linear-gradient(0deg, rgba(4, 24, 32, .58), transparent 48%);
}

.breakfast-topbar,
.breakfast-slider__content,
.breakfast-slider__controls {
  position: absolute;
  z-index: 2;
  right: max(1.25rem, calc((100vw - var(--shell)) / 2));
  left: max(1.25rem, calc((100vw - var(--shell)) / 2));
}

.breakfast-topbar {
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: clamp(1.25rem, 4vw, 2.5rem);
}

.breakfast-brand img {
  width: clamp(11rem, 22vw, 18rem);
  height: auto;
}

.breakfast-languages {
  display: flex;
  gap: .35rem;
}

.breakfast-languages a {
  display: grid;
  width: 2.7rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  color: var(--white);
  font-size: .7rem;
  font-weight: 800;
  text-decoration: none;
}

.breakfast-languages img {
  width: 1.65rem;
  height: 1.1rem;
  border-radius: .12rem;
  object-fit: cover;
}

.breakfast-languages a:hover,
.breakfast-languages a[aria-current="page"] {
  border-color: var(--sun-500);
  background: var(--sun-500);
  color: var(--lake-950);
}

.breakfast-slider__content {
  top: 50%;
  max-width: 53rem;
  transform: translateY(-45%);
}

.breakfast-slider__content h1 {
  max-width: 12ch;
  margin: .45rem 0 1.25rem;
  color: inherit;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: .92;
}

.breakfast-slider__content > p:last-child {
  max-width: 39rem;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.breakfast-slider__controls {
  bottom: clamp(1.5rem, 4vw, 2.75rem);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.breakfast-slider__controls > button {
  display: grid;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  background: rgba(4, 24, 32, .35);
  color: var(--white);
  font-size: 1.25rem;
}

.breakfast-slider__controls > button:hover {
  border-color: var(--sun-500);
  background: var(--sun-500);
  color: var(--lake-950);
}

.breakfast-slider__dots {
  display: flex;
  flex-wrap: wrap;
  gap: .42rem;
}

.breakfast-slider__dots button {
  width: .52rem;
  height: .52rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
}

.breakfast-slider__dots button[aria-current="true"] {
  background: var(--sun-500);
  transform: scale(1.35);
}

.breakfast-details {
  padding: 0 0 clamp(4rem, 9vw, 8rem);
}

.breakfast-facts {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: clamp(3rem, 7vw, 6rem);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-1.5rem);
}

.breakfast-facts > div {
  display: flex;
  min-height: 9rem;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem clamp(1.25rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line);
}

.breakfast-facts > div:last-child {
  border-right: 0;
}

.breakfast-facts span,
.breakfast-facts small {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.breakfast-facts strong {
  margin: .35rem 0;
  color: var(--lake-900);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.05;
}

.breakfast-copy {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 8vw, 8rem);
}

.breakfast-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.breakfast-copy > div:last-child > p {
  max-width: 44rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.breakfast-copy__closing {
  color: var(--lake-900) !important;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.35rem) !important;
  line-height: 1.15;
}

.gallery-filters {
  position: sticky;
  z-index: 5;
  top: 6rem;
  display: flex;
  justify-content: center;
  gap: .5rem;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 2rem;
  padding: .45rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 249, .94);
  box-shadow: var(--shadow-sm);
  scrollbar-width: none;
  backdrop-filter: blur(12px);
}

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

.gallery-filters button {
  min-height: 2.65rem;
  flex: 0 0 auto;
  padding: .65rem 1.1rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--lake-800);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}

.gallery-filters button:hover,
.gallery-filters button[aria-pressed="true"] {
  background: var(--lake-900);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 15rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: .8rem;
}

.gallery-card {
  position: relative;
  grid-column: span 4;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--lake-900);
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
}

.gallery-card--wide {
  grid-column: span 8;
}

.gallery-card--portrait {
  grid-row: span 2;
}

.gallery-card[hidden] {
  display: none;
}

.gallery-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.gallery-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  background: linear-gradient(0deg, rgba(4, 24, 32, .86), transparent 62%);
  color: var(--white);
  text-align: left;
}

.gallery-card__overlay small {
  color: var(--sun-500);
  font-size: .68rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gallery-card__overlay strong {
  max-width: 28rem;
  margin-top: .25rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.25vw, 2rem);
  font-weight: 500;
  line-height: 1.1;
}

.gallery-card__overlay i {
  position: absolute;
  right: 1rem;
  top: 1rem;
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 50%;
  background: rgba(4, 24, 32, .28);
  font-size: 1.15rem;
  font-style: normal;
  opacity: 0;
  transform: scale(.85);
  transition: opacity .25s ease, transform .25s ease;
}

.gallery-card:hover > img,
.gallery-card:focus-visible > img {
  transform: scale(1.035);
}

.gallery-card:hover .gallery-card__overlay i,
.gallery-card:focus-visible .gallery-card__overlay i {
  opacity: 1;
  transform: none;
}

body.gallery-open {
  overflow: hidden;
}

.gallery-lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: clamp(1rem, 4vw, 3rem);
  overflow: hidden;
  border: 0;
  background: rgba(4, 24, 32, .97);
  color: var(--white);
}

.gallery-lightbox::backdrop {
  background: rgba(4, 24, 32, .9);
}

.gallery-lightbox figure {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  gap: 1rem;
}

.gallery-lightbox figure img {
  width: auto;
  max-width: min(82vw, 90rem);
  height: auto;
  max-height: calc(100dvh - 10rem);
  border-radius: var(--radius-sm);
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .35);
}

.gallery-lightbox figcaption {
  display: flex;
  width: min(82vw, 90rem);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.gallery-lightbox figcaption > span {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.75rem);
}

.gallery-lightbox figcaption small {
  color: rgba(255, 255, 255, .68);
  font-size: .8rem;
  text-transform: uppercase;
}

.gallery-lightbox__close,
.gallery-lightbox__previous,
.gallery-lightbox__next {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 50%;
  background: rgba(4, 24, 32, .55);
  color: var(--white);
  font-size: 1.25rem;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__previous:hover,
.gallery-lightbox__next:hover {
  border-color: var(--sun-500);
  background: var(--sun-500);
  color: var(--lake-950);
}

.gallery-lightbox__close {
  top: 1rem;
  right: 1rem;
  font-size: 1.8rem;
}

.gallery-lightbox__previous,
.gallery-lightbox__next {
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox__previous {
  left: 1rem;
}

.gallery-lightbox__next {
  right: 1rem;
}

.quote-block {
  max-width: 58rem;
  margin-inline: auto;
  text-align: center;
}

.quote-block blockquote {
  margin: 0;
  color: var(--lake-950);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  line-height: 1.18;
}

.quote-block cite {
  display: block;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: .82rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cta {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 7vw, 5rem);
  border-radius: var(--radius-lg);
  background: var(--lake-900);
  color: rgba(255, 255, 255, .82);
}

.cta::after {
  position: absolute;
  width: 24rem;
  height: 24rem;
  right: -8rem;
  bottom: -12rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(255, 255, 255, .03), 0 0 0 8rem rgba(255, 255, 255, .02);
  content: "";
}

.cta h2 {
  max-width: 18ch;
  color: var(--white);
}

.cta p {
  max-width: 42rem;
}

.room-facts,
.document-list,
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.room-facts {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-block: 1.25rem;
}

.room-facts li {
  padding: .35rem .7rem;
  border-radius: 999px;
  background: var(--lake-50);
  color: var(--lake-800);
  font-size: .8rem;
  font-weight: 700;
}

.amenities {
  display: grid;
  grid-template-columns: minmax(14rem, .65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: clamp(2rem, 7vw, 7rem);
}

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.amenities__grid li {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: 1rem .75rem;
  border-bottom: 1px solid var(--line);
  color: var(--lake-800);
  font-weight: 700;
}

.amenities__grid li:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.amenities__grid span {
  color: var(--sun-600);
}

.document-list {
  display: grid;
  gap: .75rem;
}

.document-list a {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--lake-950);
  text-decoration: none;
}

.document-list a:hover {
  border-color: var(--sun-500);
  box-shadow: var(--shadow-sm);
}

.contact-form,
.mod-contact-form {
  display: grid;
  gap: 1rem;
}

.control-group {
  margin-bottom: 1rem;
}

label {
  display: inline-block;
  margin-bottom: .4rem;
  font-size: .86rem;
  font-weight: 700;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
  width: 100%;
  min-height: 3.25rem;
  padding: .75rem 1rem;
  border: 1px solid rgba(11, 46, 58, .24);
  border-radius: var(--radius-sm);
  background: var(--white);
}

textarea {
  min-height: 10rem;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(227, 138, 19, .55);
  outline-offset: 3px;
}

.alert {
  width: min(calc(100% - 2rem), var(--shell));
  margin: 1rem auto;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--sun-100);
}

.site-footer {
  padding-top: clamp(4rem, 9vw, 7rem);
  background: var(--lake-950);
  color: rgba(255, 255, 255, .7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr .7fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
}

.footer-brand img {
  width: 10rem;
  height: auto;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  max-width: 24rem;
}

.site-footer h2 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(255, 255, 255, .88);
}

.footer-links {
  display: grid;
  gap: .6rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
}

.footer-socials svg {
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.footer-socials li:first-child svg,
.footer-socials .icon-fill {
  fill: currentColor;
  stroke: none;
}

.footer-socials a:hover {
  color: var(--sun-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 4rem;
  padding-block: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .75rem;
}

.footer-bottom p {
  margin: 0;
}

.error-page,
.offline-page {
  min-height: 100vh;
  background: var(--lake-50);
}

.error-layout,
.offline-layout {
  display: grid;
  width: min(calc(100% - 2rem), 45rem);
  min-height: 100vh;
  align-content: center;
  justify-items: start;
  margin-inline: auto;
  padding-block: 4rem;
}

.offline-layout img {
  width: 12rem;
  margin-bottom: 2rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 70rem) {
  .site-header__inner {
    grid-template-columns: 8.5rem 1fr auto;
    gap: 1rem;
  }

  .site-navigation .mod-menu,
  .site-navigation ul {
    gap: .8rem;
  }

  .site-navigation a {
    font-size: .73rem;
  }

  .header-booking {
    min-height: 2.8rem;
    padding-inline: 1rem;
  }
}

@media (max-width: 63.99rem) {
  .utility-bar__inner {
    justify-content: space-between;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
    min-height: 5rem;
  }

  .brand img {
    width: 7.5rem;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    padding: .65rem;
    border: 0;
    background: transparent;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .menu-toggle__icon {
    display: grid;
    width: 1.5rem;
    gap: .28rem;
  }

  .menu-toggle__icon i {
    display: block;
    height: 2px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
  }

  .menu-open .menu-toggle__icon i:nth-child(1) { transform: translateY(.38rem) rotate(45deg); }
  .menu-open .menu-toggle__icon i:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle__icon i:nth-child(3) { transform: translateY(-.38rem) rotate(-45deg); }

  .site-navigation {
    position: fixed;
    z-index: 99;
    top: 7.35rem;
    right: 0;
    bottom: 0;
    left: 0;
    visibility: hidden;
    overflow-y: auto;
    padding: 2rem 1rem 7rem;
    transform: translateX(100%);
    background: var(--paper);
    opacity: 0;
    transition: visibility .25s ease, transform .25s ease, opacity .25s ease;
  }

  .menu-open .site-navigation {
    visibility: visible;
    transform: none;
    opacity: 1;
  }

  .site-navigation .mod-menu,
  .site-navigation ul {
    display: grid;
    align-items: stretch;
    gap: 0;
  }

  .site-navigation a {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
  }

  .header-booking {
    display: none;
  }

  .mobile-booking {
    position: fixed;
    z-index: 110;
    right: 1rem;
    bottom: 1rem;
    display: block;
  }

  .mobile-booking a {
    display: inline-flex;
    min-height: 3.25rem;
    align-items: center;
    padding: .8rem 1.25rem;
    border-radius: 999px;
    background: var(--sun-500);
    color: var(--lake-950);
    box-shadow: var(--shadow-lg);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .section-heading,
  .split,
  .guest-proof,
  .amenities,
  .breakfast-copy,
  .social-panel {
    grid-template-columns: 1fr;
  }

  .split--reverse .split__media {
    order: 0;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .gallery-card {
    grid-column: span 3;
  }

  .gallery-card--wide {
    grid-column: span 6;
  }

  .local-guru-hero {
    min-height: auto;
  }

  .local-guru-hero__content {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) minmax(15rem, .55fr);
  }

  .local-guru-panel {
    grid-template-columns: 1fr;
  }

  .local-guru-panel__choices ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 42rem) {
  .shell {
    width: min(calc(100% - 1.25rem), var(--shell));
  }

  .hero {
    min-height: 42rem;
  }

  .hero__media::after {
    background: linear-gradient(0deg, rgba(7, 31, 41, .86) 4%, rgba(7, 31, 41, .26) 78%);
  }

  .hero__content {
    padding-bottom: 4rem;
  }

  .hero__actions .button {
    width: 100%;
  }

  .local-guru-topbar {
    width: min(calc(100% - 1.25rem), var(--shell));
  }

  .local-guru-back {
    width: 2.8rem;
    height: 2.8rem;
    justify-content: center;
    padding: 0;
    font-size: 0;
  }

  .local-guru-back span {
    font-size: 1.15rem;
  }

  .local-guru-hero__content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 4.5rem;
    padding-bottom: 8rem;
  }

  .local-guru-hero__content h1 {
    font-size: clamp(3rem, 15vw, 4.75rem);
  }

  .local-guru-cover {
    width: min(70vw, 19rem);
  }

  .local-guru-panel {
    margin-top: -4.5rem;
    border-radius: var(--radius-md);
  }

  .local-guru-panel__intro {
    align-items: flex-start;
  }

  .local-guru-map-icon {
    width: 4rem;
    height: 4rem;
  }

  .local-guru-map-icon svg {
    width: 2.35rem;
    height: 2.35rem;
  }

  .local-guru-panel__choices ul {
    grid-template-columns: 1fr;
  }

  .local-guru-panel__choices a {
    min-height: 5.5rem;
    grid-template-columns: auto 1fr auto;
    justify-items: stretch;
    text-align: left;
  }

  .local-guru-panel__choices span {
    text-align: left;
  }

  .local-guru-panel__choices svg {
    position: static;
  }

  .local-guru-panel__choices strong {
    font-size: .95rem;
  }

  .local-guru-signoff {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    border-radius: var(--radius-md);
  }

  .cards,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .room-card:last-child {
    display: flex;
    grid-column: auto;
  }

  .room-card:last-child .card__image {
    height: auto;
    min-height: 0;
  }

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

  .amenities__grid li:nth-child(odd) {
    border-right: 0;
  }

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

  .booking-benefits__grid > div {
    min-height: 3.75rem;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .booking-benefits__grid > div:last-child {
    border-bottom: 0;
  }

  .guest-proof__scores {
    grid-template-columns: 1fr;
  }

  .guest-proof__scores > div {
    min-height: 8rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .guest-proof__scores > div:nth-child(3) {
    border-bottom: 0;
  }

  .gallery-grid {
    display: block;
  }

  .gallery-card {
    display: block;
    width: 100%;
    height: 18rem;
    margin-bottom: .75rem;
  }

  .gallery-card--portrait {
    height: 27rem;
  }

  .gallery-filters {
    top: 5.5rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    border-radius: var(--radius-md);
  }

  .gallery-filters button {
    padding-inline: .8rem;
  }

  .gallery-lightbox {
    padding: 4.5rem .75rem 5rem;
  }

  .gallery-lightbox figure img {
    max-width: 100%;
    max-height: calc(100dvh - 11rem);
  }

  .gallery-lightbox figcaption {
    width: 100%;
    align-items: flex-start;
  }

  .gallery-lightbox__previous,
  .gallery-lightbox__next {
    top: auto;
    bottom: 1rem;
    transform: none;
  }

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

  .nearby-layout {
    grid-template-columns: 1fr;
  }

  .nearby-illustration {
    min-height: 15rem;
  }

  .nearby-illustration img {
    min-height: 15rem;
    aspect-ratio: 16 / 10;
  }

  .nearby-grid li,
  .nearby-grid li:nth-child(3n),
  .nearby-grid li:nth-last-child(-n + 3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .nearby-grid li:last-child {
    border-bottom: 0;
  }

  .contact-location__actions .button {
    width: 100%;
  }

  .breakfast-slider {
    min-height: 43rem;
  }

  .breakfast-slider__shade {
    background: linear-gradient(0deg, rgba(4, 24, 32, .88) 0%, rgba(4, 24, 32, .2) 88%);
  }

  .breakfast-slider__content {
    top: auto;
    bottom: 8rem;
    transform: none;
  }

  .breakfast-slider__content h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .breakfast-facts {
    grid-template-columns: 1fr;
  }

  .breakfast-facts > div {
    min-height: 7rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .breakfast-facts > div:last-child {
    border-bottom: 0;
  }

  .breakfast-slider__dots {
    max-width: 10rem;
  }

  .document-list a {
    grid-template-columns: 2rem 1fr;
  }

  .document-list a > :last-child {
    grid-column: 2;
  }

  .footer-bottom {
    display: grid;
  }
}
