:root {
  --navy: #061f36;
  --navy-deep: #031729;
  --navy-soft: #0c2b47;
  --gold: #d7b46d;
  --gold-light: #ead29d;
  --white: #ffffff;
  --ink: #0b243c;
  --muted: #56616d;
  --line: #dfe3e7;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --header-height: 92px;
  --page-pad: clamp(24px, 4.5vw, 74px);
}

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

html {
  scroll-behavior: auto;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--navy);
  background: var(--gold-light);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 0 var(--page-pad);
  color: var(--white);
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease;
}

.site-header.is-scrolled {
  height: 76px;
  background: rgba(3, 23, 41, 0.96);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.wordmark {
  display: inline-flex;
  width: max-content;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  text-transform: uppercase;
}

.wordmark span {
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0.09em;
}

.wordmark small {
  position: relative;
  margin-top: 7px;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.31em;
}

.wordmark small::before,
.wordmark small::after {
  position: absolute;
  top: 50%;
  width: 32px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.wordmark small::before {
  right: calc(100% + 10px);
}

.wordmark small::after {
  left: calc(100% + 8px);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 38px);
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid transparent;
  padding: 0 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

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

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

.button--gold:hover {
  background: var(--gold-light);
}

.button--outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(4, 24, 42, 0.32);
}

.button--outline-light:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.button--navy {
  color: var(--white);
  background: var(--navy);
}

.button--navy:hover {
  background: var(--navy-soft);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: min(780px, 100vh);
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero__image {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__edge {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 23, 41, 0.95) 0%, rgba(3, 23, 41, 0.78) 29%, rgba(3, 23, 41, 0.08) 60%, rgba(3, 23, 41, 0) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(650px, 56vw);
  min-height: min(780px, 100vh);
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-height) + 54px) 0 86px clamp(105px, 11vw, 185px);
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(64px, 6.3vw, 108px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.hero h1 em,
.lincoln-story h2 em {
  color: var(--gold);
  font-style: normal;
}

.hero__content > p {
  margin: 32px 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__location {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: var(--page-pad);
  display: flex;
  height: 290px;
  align-items: center;
  gap: 18px;
  color: var(--white);
  transform: translateY(-43%);
  writing-mode: vertical-rl;
}

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

.hero__location b {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  right: 38px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll svg {
  width: 20px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
}

.facts {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 96px;
  background: var(--white);
}

.fact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.fact:not(:last-child)::after {
  position: absolute;
  top: 28%;
  right: 0;
  width: 1px;
  height: 44%;
  background: var(--line);
  content: "";
}

.fact strong {
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.fact span {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section {
  padding: clamp(38px, 3vw, 48px) var(--page-pad);
}

.section-label {
  margin: 0 0 22px;
  color: #b38d47;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.welcome {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1.38fr);
  align-items: center;
  gap: clamp(54px, 7vw, 120px);
}

.welcome__copy {
  max-width: 470px;
}

.welcome h2,
.location h2,
.lincoln-story h2,
.booking h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 4.1vw, 72px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.welcome__copy > p:not(.section-label) {
  max-width: 440px;
  color: var(--muted);
}

.welcome__copy .button {
  margin-top: 20px;
}

.welcome__media {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  grid-template-rows: minmax(210px, 0.66fr) minmax(210px, 0.66fr);
  gap: 9px;
}

.welcome__media .image-button--main {
  grid-row: 1 / 3;
  grid-column: 1;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 19%);
}

.welcome__media .image-button--exterior img {
  object-position: 72% center;
}

.image-button {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: var(--navy);
  cursor: zoom-in;
}

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

.image-button:hover img,
.image-button:focus-visible img {
  transform: scale(1.035);
}

.amenities {
  padding: clamp(68px, 5.6vw, 90px) var(--page-pad);
  color: var(--white);
  background: var(--navy);
}

.amenities__intro {
  display: grid;
  grid-template-columns: 180px minmax(340px, 0.86fr) 1fr;
  align-items: end;
  gap: 42px;
  margin-bottom: 48px;
}

.section-number {
  align-self: start;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(104px, 10vw, 164px);
  font-weight: 400;
  line-height: 0.76;
}

.amenities h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4vw, 67px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.amenities__intro p {
  max-width: 410px;
  margin: 0 0 4px auto;
  color: rgba(255, 255, 255, 0.72);
}

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-left: 222px;
}

.amenity .image-button,
.amenity__signal {
  width: 100%;
  aspect-ratio: 1.12 / 1;
}

.amenity__signal {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #102d47, #061b30);
}

.amenity__signal svg {
  width: 42%;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-width: 3;
}

.amenity h3 {
  margin: 18px 0 4px;
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.amenity p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.lincoln-story {
  display: grid;
  grid-template-columns: 1.13fr 0.87fr;
  min-height: 560px;
  margin-block: 16px;
  overflow: hidden;
  background: var(--white);
}

.lincoln-story__image {
  min-height: 560px;
  clip-path: polygon(0 0, 100% 0, 87% 100%, 0 100%);
}

.lincoln-story__image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lincoln-story__copy {
  display: flex;
  max-width: 610px;
  flex-direction: column;
  justify-content: center;
  padding: 54px var(--page-pad) 54px 30px;
}

.lincoln-story__copy > p:not(.section-label) {
  margin: 24px 0;
  color: var(--muted);
}

.lincoln-story__copy .button {
  align-self: flex-start;
}

.location {
  display: grid;
  grid-template-columns: 0.64fr 1.36fr;
  align-items: center;
  gap: clamp(54px, 8vw, 130px);
  padding-top: 0;
  padding-bottom: clamp(30px, 2.4vw, 40px);
}

.location__copy {
  max-width: 430px;
}

.location__copy > p:not(.section-label) {
  color: var(--muted);
}

.walk-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.walk-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 9px 0;
}

.walk-list strong {
  color: #b38d47;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.walk-list span {
  font-size: 14px;
}

.map-card {
  overflow: hidden;
  min-height: 430px;
  background: var(--navy);
  clip-path: polygon(11% 0, 100% 0, 100% 100%, 0 100%);
}

.map {
  width: 100%;
  height: 100%;
  min-height: 430px;
}

.map__roads path {
  fill: none;
  stroke: #927744;
  stroke-width: 2;
  opacity: 0.72;
}

.map__river path {
  fill: none;
  stroke: #214765;
  stroke-width: 46;
  opacity: 0.85;
}

.map__landmarks path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.48);
  stroke-width: 2;
}

.map__landmarks text,
.map__pin text {
  fill: rgba(255, 255, 255, 0.72);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-anchor: middle;
  text-transform: uppercase;
}

.map__pin path {
  fill: var(--gold);
}

.map__pin circle {
  fill: var(--navy);
}

.map__pin text {
  fill: var(--gold-light);
  font-size: 14px;
}

.testimonial {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 18px;
  max-width: 1180px;
  align-items: start;
  margin: 0 auto;
  padding: 42px var(--page-pad) 48px;
}

.testimonial__quote-mark {
  align-self: start;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 94px;
  line-height: 0.8;
}

.testimonial__carousel {
  min-width: 0;
}

.testimonial__eyebrow {
  margin: 0 0 13px;
  color: #b38d47;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.testimonial__viewport {
  display: grid;
  min-height: 248px;
}

.testimonial__slide {
  grid-area: 1 / 1;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition:
    opacity 420ms ease,
    transform 420ms ease,
    visibility 420ms;
}

.testimonial__slide.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.testimonial__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 12px;
}

.testimonial__heading h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.testimonial__score {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 4px 4px 4px 14px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
}

.testimonial__slide blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 49px);
  line-height: 1.08;
  text-wrap: balance;
}

.testimonial__slide footer {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 19px;
  font-family: var(--sans);
}

.testimonial__slide footer strong {
  color: #b38d47;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.testimonial__slide footer span {
  color: rgba(3, 36, 58, 0.58);
  font-size: 12px;
}

.testimonial__navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(3, 36, 58, 0.12);
}

.testimonial__buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial__buttons > button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  color: var(--navy);
  background: transparent;
  border: 1px solid rgba(3, 36, 58, 0.22);
  border-radius: 50%;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.testimonial__buttons > button:hover,
.testimonial__buttons > button:focus-visible {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.testimonial__buttons svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.testimonial__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial__dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  background: rgba(3, 36, 58, 0.22);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease, border-radius 180ms ease;
}

.testimonial__dots button[aria-current="true"] {
  width: 24px;
  background: var(--gold);
  border-radius: 10px;
}

.testimonial__navigation > a {
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.testimonial__navigation > a span {
  margin-left: 7px;
  color: var(--gold);
}

.testimonial__navigation > a:hover,
.testimonial__navigation > a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.booking {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 320px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.booking__ornament {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 260px;
  opacity: 0.18;
}

.booking__ornament svg {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
}

.booking__title,
.booking__actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 52px var(--page-pad);
}

.booking__title {
  padding-left: clamp(140px, 14vw, 240px);
}

.booking__actions {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.booking__actions > p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.7);
}

.booking__actions > .button {
  align-self: flex-start;
  margin: 8px 0 20px;
}

.partner-links {
  display: grid;
  max-width: 650px;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.partner {
  display: grid;
  min-height: 64px;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 9px 18px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  transition: filter 180ms ease, transform 180ms ease;
}

.partner:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.partner small {
  grid-column: 1;
  display: block;
  margin-bottom: 2px;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.partner span {
  grid-column: 2;
  grid-row: 1 / 3;
}

.partner--booking {
  background: #0867c9;
}

.partner--airbnb {
  background: #ff385c;
}

.gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.25fr 1fr 0.8fr;
  height: 210px;
  background: var(--navy);
}

.gallery button {
  overflow: hidden;
  border: 0;
  border-right: 2px solid var(--gold);
  padding: 0;
  cursor: zoom-in;
}

.gallery button:last-child {
  border-right: 0;
}

.gallery img {
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.gallery button:hover img,
.gallery button:focus-visible img {
  transform: scale(1.05);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.5fr;
  gap: 40px;
  padding: 58px var(--page-pad) 32px;
  color: rgba(255, 255, 255, 0.68);
  background: var(--navy-deep);
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 6px 0;
  font-size: 13px;
}

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

.wordmark--footer {
  align-self: start;
}

.site-footer address {
  font-style: normal;
}

.site-footer__legal {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 18px 0 0;
  padding-top: 22px;
  font-size: 11px;
}

.lightbox {
  width: min(1120px, calc(100vw - 44px));
  max-width: none;
  border: 0;
  padding: 0;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(1, 11, 20, 0.92);
  backdrop-filter: blur(8px);
}

.lightbox img {
  max-height: 84vh;
  object-fit: contain;
}

.lightbox__close {
  position: fixed;
  z-index: 2;
  top: 22px;
  right: 28px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: var(--navy);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

/* Inner pages */

.site-header--inner {
  background: rgba(3, 23, 41, 0.9);
  backdrop-filter: blur(12px);
}

.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.page-hero {
  position: relative;
  min-height: min(760px, 82vh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.page-hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.page-hero--apartment > img {
  object-position: center 46%;
}

.page-hero--location > img {
  object-position: center 56%;
}

.page-hero--guide > img {
  object-position: center 54%;
}

.page-hero--gallery > img {
  object-position: center 50%;
}

.page-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 23, 41, 0.92) 0%, rgba(3, 23, 41, 0.62) 39%, rgba(3, 23, 41, 0.08) 72%),
    linear-gradient(0deg, rgba(3, 23, 41, 0.62) 0%, transparent 42%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  width: min(760px, 66vw);
  padding: calc(var(--header-height) + 84px) var(--page-pad) 88px;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(62px, 6.6vw, 106px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.page-hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.page-hero__content > p {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.35vw, 21px);
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.page-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 124px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.page-fact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.page-fact:not(:last-child)::after {
  position: absolute;
  top: 28px;
  right: 0;
  width: 1px;
  height: 68px;
  background: var(--line);
  content: "";
}

.page-fact strong {
  font-family: var(--serif);
  font-size: clamp(28px, 2.4vw, 41px);
  font-weight: 500;
  line-height: 1;
}

.page-fact span {
  margin-top: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.5fr) minmax(0, 1.15fr) minmax(260px, 0.7fr);
  gap: clamp(36px, 5vw, 88px);
  align-items: start;
  padding: clamp(48px, 5vw, 76px) var(--page-pad);
}

.page-intro__number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(92px, 10vw, 166px);
  line-height: 0.72;
}

.page-intro h2,
.section-heading h2,
.location-copy h2,
.guide-intro h2,
.gallery-page__head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4.5vw, 72px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.page-intro__body {
  padding-top: 8px;
}

.page-intro__body p:first-child {
  margin-top: 0;
}

.page-intro__body p {
  color: var(--muted);
  font-size: 17px;
}

.page-intro__aside {
  padding: 28px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy);
}

.page-intro__aside strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.page-intro__aside p {
  margin: 0;
  font-size: 14px;
}

.rooms {
  padding: clamp(52px, 5vw, 80px) var(--page-pad);
  color: var(--white);
  background: var(--navy);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 38px;
}

.section-heading p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
}

.room-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(38px, 6vw, 96px);
  align-items: center;
  padding: 58px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.room-feature:nth-child(odd) {
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
}

.room-feature:nth-child(odd) .room-feature__image {
  order: 2;
}

.room-feature__image {
  width: 100%;
  height: clamp(320px, 38vw, 560px);
  overflow: hidden;
  border: 0;
  padding: 0;
  background: var(--navy-deep);
  cursor: zoom-in;
}

.room-feature__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.room-feature__image:hover img,
.room-feature__image:focus-visible img {
  transform: scale(1.025);
}

.room-feature__copy span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.room-feature__copy h3 {
  margin: 14px 0 20px;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 500;
  line-height: 1.03;
}

.room-feature__copy p {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.7);
}

.property-details {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(50px, 8vw, 130px);
  padding: clamp(52px, 5vw, 80px) var(--page-pad);
}

.property-details h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 4.5vw, 72px);
  font-weight: 500;
  line-height: 1.03;
}

.detail-list {
  margin: 0;
}

.detail-list > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.detail-list dt {
  color: #b38d47;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.detail-list dd {
  margin: 0;
  color: var(--muted);
}

.location-lead {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  min-height: 630px;
  background: var(--white);
}

.location-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(52px, 5vw, 80px) var(--page-pad);
}

.location-copy p {
  max-width: 510px;
  color: var(--muted);
}

.location-copy address {
  margin-top: 22px;
  color: #b38d47;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-map {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 520px;
  color: var(--gold);
  background: var(--navy);
}

.location-map::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 23, 41, 0.18), transparent 44%),
    linear-gradient(0deg, rgba(3, 23, 41, 0.24), transparent 38%);
  content: "";
  pointer-events: none;
}

.location-map__image {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.travel {
  padding: clamp(52px, 5vw, 80px) var(--page-pad);
  color: var(--white);
  background: var(--navy-deep);
}

.travel__head {
  max-width: 710px;
  margin-bottom: 38px;
}

.travel__head h2,
.itinerary__head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 4.6vw, 72px);
  font-weight: 500;
  line-height: 1.03;
}

.travel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.travel-card {
  min-height: 280px;
  padding: 38px;
  background: var(--navy-deep);
}

.travel-card span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 56px;
}

.travel-card h3 {
  margin: 20px 0 10px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.travel-card p {
  color: rgba(255, 255, 255, 0.64);
}

.nearby {
  padding: clamp(52px, 5vw, 80px) var(--page-pad);
}

.nearby__head {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  margin-bottom: 38px;
}

.nearby__head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 4.6vw, 72px);
  font-weight: 500;
  line-height: 1.03;
}

.nearby__head p {
  max-width: 600px;
  margin: 8px 0 0;
  color: var(--muted);
}

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

.nearby-list a {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, padding 180ms ease;
}

.nearby-list a:hover {
  padding-left: 12px;
  color: #a77f35;
}

.nearby-list strong {
  color: #b38d47;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nearby-list span {
  font-family: var(--serif);
  font-size: clamp(25px, 2.6vw, 38px);
}

.nearby-list svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.guide-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(46px, 8vw, 132px);
  padding: clamp(52px, 5vw, 80px) var(--page-pad);
}

.guide-intro p {
  max-width: 660px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 18px;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 160px;
  gap: 12px;
  padding: 0 var(--page-pad) clamp(52px, 5vw, 80px);
}

.guide-card {
  position: relative;
  grid-column: span 6;
  grid-row: span 3;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.guide-card--wide {
  grid-column: span 7;
}

.guide-card--narrow {
  grid-column: span 5;
}

.guide-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.guide-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 23, 41, 0.94) 0%, rgba(3, 23, 41, 0.12) 68%);
  content: "";
}

.guide-card:hover img {
  transform: scale(1.035);
}

.guide-card__content {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px;
}

.guide-card__content h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 3.3vw, 54px);
  font-weight: 500;
  line-height: 1;
}

.guide-card__content p {
  max-width: 560px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.guide-card__content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.itinerary {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(52px, 8vw, 130px);
  padding: clamp(52px, 5vw, 80px) var(--page-pad);
  color: var(--white);
  background: var(--navy);
}

.itinerary__head p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.65);
}

.itinerary-list {
  margin: 0;
}

.itinerary-list > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 32px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.itinerary-list dt {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 25px;
}

.itinerary-list dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.itinerary-list dd strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.gallery-page {
  padding: clamp(52px, 5vw, 80px) var(--page-pad);
}

.gallery-page__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 44px;
}

.gallery-page__head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.gallery-filter {
  min-height: 42px;
  border: 1px solid var(--line);
  padding: 0 18px;
  color: var(--ink);
  background: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.gallery-filter.is-active,
.gallery-filter:hover,
.gallery-filter:focus-visible {
  border-color: var(--navy);
  color: var(--white);
  background: var(--navy);
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  grid-auto-rows: 170px;
  gap: 10px;
}

.gallery-page-card {
  grid-column: span 4;
  grid-row: span 2;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: var(--navy);
  cursor: zoom-in;
}

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

.gallery-page-card--tall {
  grid-row: span 3;
}

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

.gallery-page-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.page-cta {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 360px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.page-cta__copy {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 64px var(--page-pad);
}

.page-cta__copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 78px);
  font-weight: 500;
  line-height: 1;
}

.page-cta__copy p {
  color: rgba(255, 255, 255, 0.66);
}

.page-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.page-cta__media {
  position: relative;
  min-height: 330px;
}

.page-cta__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy-deep), transparent 48%);
  content: "";
}

.page-cta__media img {
  height: 100%;
  object-fit: cover;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 180px 1fr auto;
    gap: 18px;
  }

  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 9px;
  }

  .welcome {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 50px;
  }

  .amenities__grid {
    padding-left: 0;
  }

  .amenities__intro {
    grid-template-columns: 140px 1fr 1fr;
  }

  .booking__title {
    padding-left: var(--page-pad);
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 76px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: var(--header-height);
    grid-template-columns: 1fr auto auto;
    padding: 0 20px;
    background: rgba(3, 23, 41, 0.96);
  }

  .desktop-nav {
    display: none;
  }

  .header-book {
    min-height: 42px;
    padding: 0 14px;
    font-size: 9px;
  }

  .header-book svg {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 48px;
    height: 48px;
    place-content: center;
    gap: 6px;
    border: 0;
    color: var(--white);
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 27px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

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

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

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

  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    min-height: calc(100vh - var(--header-height));
    flex-direction: column;
    padding: 35px 28px;
    background: var(--navy-deep);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 15px 0;
    font-family: var(--serif);
    font-size: 28px;
  }

  .hero {
    min-height: 720px;
  }

  .hero__image {
    object-position: 65% center;
  }

  .hero__edge {
    background: linear-gradient(90deg, rgba(3, 23, 41, 0.95), rgba(3, 23, 41, 0.48) 70%, rgba(3, 23, 41, 0.18));
  }

  .hero__content {
    width: 86%;
    min-height: 720px;
    padding: 128px 20px 70px 80px;
  }

  .hero h1 {
    font-size: clamp(52px, 11vw, 75px);
  }

  .hero__location {
    left: 22px;
    height: 270px;
  }

  .hero__scroll {
    display: none;
  }

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

  .fact {
    min-height: 115px;
    border-bottom: 1px solid var(--line);
  }

  .fact:nth-child(2)::after {
    display: none;
  }

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

  .welcome__copy {
    max-width: 620px;
  }

  .welcome__media {
    min-height: 620px;
  }

  .amenities__intro {
    grid-template-columns: 100px 1fr;
  }

  .amenities__intro p {
    grid-column: 2;
    margin: 0;
  }

  .amenities__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 14px;
  }

  .lincoln-story {
    grid-template-columns: 1fr;
  }

  .lincoln-story__image {
    min-height: 420px;
    clip-path: polygon(0 0, 100% 0, 100% 87%, 0 100%);
  }

  .lincoln-story__copy {
    padding: 28px var(--page-pad) 80px;
  }

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

  .map-card {
    order: -1;
  }

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

  .booking__actions {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
    padding-top: 35px;
  }

  .gallery {
    grid-template-columns: repeat(3, 1fr);
    height: 340px;
  }

  .gallery button:nth-child(n+4) {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .wordmark span {
    font-size: 14px;
  }

  .wordmark small {
    font-size: 8px;
  }

  .header-book {
    display: none;
  }

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

  .hero {
    min-height: 690px;
  }

  .hero__content {
    width: 100%;
    min-height: 690px;
    padding: 118px 20px 56px 65px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero__actions .button {
    min-width: 210px;
  }

  .hero__location {
    left: 15px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .welcome h2,
  .location h2,
  .lincoln-story h2,
  .booking h2 {
    font-size: 42px;
  }

  .welcome__media {
    min-height: 480px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.35fr 0.65fr;
  }

  .welcome__media .image-button--main {
    grid-row: 1;
    grid-column: 1 / 3;
    clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%, 0 18%);
  }

  .amenities__intro {
    grid-template-columns: 70px 1fr;
    gap: 20px;
  }

  .section-number {
    font-size: 76px;
  }

  .amenities h2 {
    font-size: 37px;
  }

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

  .amenity {
    display: grid;
    grid-template-columns: 130px 1fr;
    column-gap: 17px;
  }

  .amenity .image-button,
  .amenity__signal {
    grid-row: 1 / 3;
    width: 130px;
    height: 145px;
  }

  .amenity h3 {
    align-self: end;
  }

  .testimonial {
    grid-template-columns: 52px 1fr;
    gap: 8px;
    padding-top: 38px;
    padding-bottom: 40px;
  }

  .testimonial__quote-mark {
    font-size: 72px;
  }

  .testimonial__viewport {
    min-height: 315px;
  }

  .testimonial__slide blockquote {
    font-size: 27px;
  }

  .testimonial__heading {
    align-items: flex-start;
  }

  .testimonial__slide footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .testimonial__navigation {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .partner-links {
    grid-template-columns: 1fr;
  }

  .gallery {
    height: 260px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer__legal {
    grid-column: 1;
  }
}

@media (max-width: 980px) {
  .page-hero__content {
    width: min(800px, 82vw);
  }

  .page-intro {
    grid-template-columns: 150px 1fr;
  }

  .page-intro__aside {
    grid-column: 2;
  }

  .room-feature,
  .room-feature:nth-child(odd) {
    grid-template-columns: 1fr 0.8fr;
  }

  .location-lead,
  .property-details,
  .guide-intro,
  .itinerary {
    grid-template-columns: 1fr;
  }

  .location-map {
    min-height: 540px;
  }

  .nearby__head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .guide-card,
  .guide-card--wide,
  .guide-card--narrow {
    grid-column: span 6;
  }

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

@media (max-width: 700px) {
  .page-hero {
    min-height: 690px;
  }

  .page-hero__shade {
    background:
      linear-gradient(90deg, rgba(3, 23, 41, 0.88), rgba(3, 23, 41, 0.22)),
      linear-gradient(0deg, rgba(3, 23, 41, 0.82), transparent 72%);
  }

  .page-hero__content {
    width: 100%;
    padding-bottom: 56px;
  }

  .page-hero h1 {
    font-size: clamp(49px, 14vw, 70px);
  }

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

  .page-fact {
    min-height: 108px;
    border-bottom: 1px solid var(--line);
  }

  .page-fact:nth-child(2)::after {
    display: none;
  }

  .page-intro {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .page-intro__number {
    font-size: 90px;
  }

  .page-intro__aside {
    grid-column: 1;
  }

  .section-heading,
  .gallery-page__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .room-feature,
  .room-feature:nth-child(odd) {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 42px 0;
  }

  .room-feature:nth-child(odd) .room-feature__image {
    order: 0;
  }

  .room-feature__image {
    height: 330px;
  }

  .detail-list > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

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

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

  .travel-card {
    min-height: 0;
  }

  .nearby-list a {
    grid-template-columns: 84px 1fr auto;
    gap: 14px;
  }

  .guide-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .guide-card,
  .guide-card--wide,
  .guide-card--narrow {
    grid-column: 1;
    grid-row: auto;
    min-height: 470px;
  }

  .itinerary-list > div {
    grid-template-columns: 80px 1fr;
    gap: 20px;
  }

  .gallery-page-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }

  .gallery-page-card,
  .gallery-page-card--wide {
    grid-column: span 1;
  }

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

  .page-cta {
    grid-template-columns: 1fr;
  }

  .page-cta__media {
    min-height: 250px;
    order: -1;
  }

  .page-cta__media::after {
    background: linear-gradient(0deg, var(--navy-deep), transparent 52%);
  }
}

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

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

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