:root {
  --ink: #202821;
  --moss: #35483d;
  --moss-dark: #26352d;
  --paper: #f4f1e9;
  --paper-deep: #e7e0d2;
  --white: #fffdf8;
  --clay: #a65f47;
  --muted: #697269;
  --line: rgba(32, 40, 33, 0.17);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --shell: min(1240px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open,
body:has(.lightbox[open]) {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
input,
textarea {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: clamp(88px, 10vw, 152px);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  color: var(--white);
  background: var(--moss-dark);
  transform: translateY(-160%);
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px max(24px, calc((100vw - 1240px) / 2));
  color: var(--white);
  transition: background 180ms ease, padding 180ms ease, box-shadow 180ms ease;
}

.site-header.is-fixed {
  position: fixed;
  padding-block: 10px;
  color: var(--ink);
  background: rgba(244, 241, 233, 0.96);
  box-shadow: 0 8px 40px rgba(28, 36, 29, 0.09);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  filter: invert(1) brightness(2);
}

.site-header.is-fixed .brand img {
  width: 54px;
  height: 54px;
  filter: none;
}

.brand span {
  display: grid;
  line-height: 1.15;
}

.brand strong {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.brand small {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.site-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-decoration: none;
}

.site-nav a:not(.nav-enquire)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.nav-enquire {
  padding: 10px 19px;
  border: 1px solid currentColor;
  border-radius: 99px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px 9px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 4px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: max(720px, 100svh);
  overflow: hidden;
  color: var(--white);
  background: var(--moss-dark);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: 50% 53%;
  animation: hero-in 1.4s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(16, 25, 20, 0.72) 0%, rgba(16, 25, 20, 0.37) 46%, rgba(16, 25, 20, 0.08) 75%),
    linear-gradient(0deg, rgba(16, 25, 20, 0.58) 0%, transparent 40%, rgba(16, 25, 20, 0.18) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-top: 94px;
  padding-bottom: 104px;
}

.eyebrow,
.section-label {
  margin: 0 0 21px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
}

.eyebrow::before {
  width: 44px;
  height: 1px;
  background: currentColor;
  content: "";
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.97;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 880px;
  margin-bottom: 30px;
  font-size: clamp(66px, 8.2vw, 126px);
  text-wrap: balance;
}

h2 {
  margin-bottom: 30px;
  font-size: clamp(48px, 5.8vw, 78px);
  text-wrap: balance;
}

.hero__intro {
  max-width: 590px;
  margin-bottom: 35px;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
}

.hero__actions,
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 55px;
  padding: 14px 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

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

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

.button--light:hover,
.button--light:focus-visible {
  background: var(--paper-deep);
}

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

.button--outline:hover,
.button--outline:focus-visible {
  color: var(--moss-dark);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding-block: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.8;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.text-link--light {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.hero__facts {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - 1240px) / 2));
  bottom: 33px;
  display: flex;
  gap: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__facts span {
  padding-inline: 19px;
  border-right: 1px solid rgba(255, 255, 255, 0.38);
}

.hero__facts span:first-child {
  padding-left: 0;
}

.hero__facts span:last-child {
  padding-right: 0;
  border-right: 0;
}

.welcome {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: clamp(70px, 9vw, 130px);
}

.section-label {
  color: var(--clay);
}

.welcome__copy h2 {
  max-width: 620px;
}

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

.welcome__copy .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(24px, 2.25vw, 31px);
  line-height: 1.32;
}

.welcome__copy .text-link {
  margin-top: 14px;
}

.welcome__media {
  position: relative;
  min-height: 720px;
}

.image-frame {
  margin: 0;
  overflow: hidden;
}

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

.image-frame--main {
  position: absolute;
  inset: 0 8% 9% 0;
}

.image-frame--inset {
  position: absolute;
  right: -2%;
  bottom: 0;
  width: 45%;
  padding: 12px;
  overflow: visible;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(28, 36, 29, 0.17);
}

.image-frame--inset img {
  aspect-ratio: 1;
}

.image-frame--inset figcaption {
  padding: 11px 6px 2px;
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1.4;
}

.fact-band {
  color: var(--white);
  background: var(--moss-dark);
}

.fact-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 49px;
}

.fact-band__grid div {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  padding-inline: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.fact-band__grid div:last-child {
  border-right: 0;
}

.fact-band strong {
  font-family: var(--serif);
  font-size: 45px;
  font-weight: 500;
  line-height: 1;
}

.fact-band span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.comfort {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(380px, 0.75fr);
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.comfort__montage {
  position: relative;
  display: grid;
  grid-template-areas:
    "living kitchen"
    "living bedroom";
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
  aspect-ratio: 1.52 / 1;
}

.comfort__montage figure {
  position: relative;
  z-index: 1;
  margin: 0;
  min-width: 0;
  overflow: hidden;
  background: var(--moss-dark);
}

.comfort__montage-main {
  grid-area: living;
}

.comfort__montage-kitchen {
  grid-area: kitchen;
}

.comfort__montage-bedroom {
  grid-area: bedroom;
}

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

.comfort__montage figure::after {
  position: absolute;
  inset: 58% 0 0;
  background: linear-gradient(transparent, rgba(17, 25, 20, 0.62));
  content: "";
}

.comfort__montage figcaption {
  position: absolute;
  z-index: 2;
  bottom: 13px;
  left: 16px;
  color: var(--white);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.comfort__copy h2 {
  font-size: clamp(48px, 5vw, 70px);
}

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

.amenities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 25px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.amenities li {
  position: relative;
  padding: 12px 0 12px 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.45;
}

.amenities li::before {
  position: absolute;
  top: 20px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--clay);
  content: "";
}

.stay-details {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(30px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stay-details article {
  padding: 31px clamp(22px, 3vw, 42px) 35px;
  border-right: 1px solid var(--line);
}

.stay-details article:first-child {
  padding-left: 0;
}

.stay-details article:last-child {
  padding-right: 0;
  border-right: 0;
}

.stay-details__number {
  margin-bottom: 25px;
  color: var(--clay);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.stay-details h3,
.explore h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 500;
  line-height: 1.08;
}

.stay-details article > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.gallery-section {
  background: var(--paper-deep);
}

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

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 250px;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.gallery {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 225px;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery__item {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: var(--white);
  background: var(--moss-dark);
  cursor: zoom-in;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 200ms ease;
}

.gallery__item::after {
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, rgba(17, 24, 19, 0.67));
  content: "";
}

.gallery__item span {
  position: absolute;
  z-index: 2;
  bottom: 16px;
  left: 18px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery__item:hover img,
.gallery__item:focus-visible img {
  opacity: 0.9;
  transform: scale(1.035);
}

.location {
  overflow: hidden;
}

.location__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.77fr) minmax(480px, 1.23fr);
  align-items: center;
  gap: clamp(70px, 10vw, 145px);
}

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

.location__copy address {
  margin: 33px 0 22px;
  padding-left: 20px;
  border-left: 2px solid var(--clay);
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
}

.local-distances {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 28px 0 30px;
  padding-block: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.local-distances span {
  color: var(--muted);
  font-size: 11px;
}

.local-distances strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.location__copy address span {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 23px;
}

.location__visual {
  position: relative;
  min-height: 700px;
}

.location__visual::before {
  position: absolute;
  z-index: -1;
  top: -70px;
  right: -100vw;
  bottom: -70px;
  left: 36%;
  background-color: var(--moss-dark);
  background-image:
    radial-gradient(circle at 24% 32%, rgba(255, 255, 255, 0.035), transparent 32%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 9px),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 9px);
  content: "";
}

.location__visual > img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.guest-note {
  position: absolute;
  right: -34px;
  bottom: 0;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  width: min(525px, 88%);
  padding: 18px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 20px 60px rgba(24, 31, 26, 0.16);
}

.guest-note__image {
  width: 132px;
  height: 132px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--moss-dark);
  cursor: zoom-in;
}

.guest-note__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease, transform 400ms ease;
}

.guest-note__image:hover img,
.guest-note__image:focus-visible img {
  opacity: 0.86;
  transform: scale(1.035);
}

.guest-note__image:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
}

.guest-note p {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
}

.guest-note p span {
  display: block;
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.2;
}

.explore {
  background: #e8e1d4;
}

.explore__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
  gap: 18px;
}

.explore__feature {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background: var(--moss-dark);
  text-decoration: none;
}

.explore__feature::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(17, 25, 20, 0.86));
  content: "";
}

.explore__feature > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.explore__feature > div {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 35px 38px;
}

.explore__feature p,
.explore-card__type {
  margin-bottom: 8px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.explore__feature h3 {
  margin-bottom: 14px;
  font-size: clamp(43px, 4.4vw, 62px);
}

.explore__feature span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.explore__feature b {
  font-size: 16px;
  font-weight: 400;
}

.explore__cards {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 18px;
}

.explore-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 27px 31px;
  border: 1px solid rgba(32, 40, 33, 0.13);
  background: rgba(255, 253, 248, 0.66);
}

.explore-card__type {
  color: var(--clay);
}

.explore-card h3 {
  font-size: 30px;
}

.explore-card > p:not(.explore-card__type) {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.explore-card .safety-note {
  padding-left: 12px;
  border-left: 2px solid var(--clay);
  color: var(--ink) !important;
}

.explore-card > a,
.inline-links a {
  width: fit-content;
  color: var(--ink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 17px;
}

.explore__note {
  max-width: 610px;
  margin: 28px 0 0 auto;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
  text-align: right;
}

.contact {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--moss-dark);
}

.contact__backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background: url("../img/morecambe-bay-sunset.webp") center 43% / cover no-repeat;
  filter: saturate(0.45);
}

.contact__backdrop::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(25, 40, 32, 0.97) 10%, rgba(25, 40, 32, 0.78));
  content: "";
}

.contact__inner {
  position: relative;
  z-index: 1;
}

.contact .section-label {
  color: #dab39f;
}

.contact h2 {
  max-width: 820px;
  font-size: clamp(60px, 8vw, 105px);
}

.contact__inner > p:not(.section-label) {
  max-width: 625px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.contact__details {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 34px;
  margin-top: 36px;
}

.contact__details a {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-underline-offset: 5px;
}

.site-footer {
  padding-block: 55px;
  color: rgba(255, 255, 255, 0.72);
  background: #19231d;
  font-size: 12px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 105px 1fr 1fr auto;
  align-items: center;
  gap: 40px;
}

.footer-brand img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter: invert(1) brightness(2);
}

.site-footer p,
.site-footer address {
  margin: 0;
  font-style: normal;
}

.site-footer div > p:first-child:not(.copyright) {
  margin-bottom: 5px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 19px;
}

.footer-social a {
  margin-right: 17px;
  text-underline-offset: 4px;
}

.copyright {
  align-self: end;
  white-space: nowrap;
}

.lightbox {
  width: min(1100px, calc(100% - 32px));
  max-width: none;
  padding: 0;
  overflow: visible;
  border: 0;
  color: var(--white);
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(12, 17, 14, 0.94);
  backdrop-filter: blur(10px);
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.lightbox p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.lightbox__close {
  position: absolute;
  z-index: 2;
  top: -50px;
  right: 0;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  font-size: 27px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@keyframes hero-in {
  from { opacity: 0.5; transform: scale(1.045); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 40px, 760px);
  }

  .site-header {
    padding-inline: 20px;
  }

  .nav-toggle {
    z-index: 2;
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 110px 38px 45px;
    color: var(--white);
    background: var(--moss-dark);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav a {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 500;
    letter-spacing: -0.02em;
  }

  .site-nav .nav-enquire {
    margin-top: 12px;
    padding: 10px 23px;
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-open .nav-toggle {
    color: var(--white);
  }

  .nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .hero__content {
    padding-bottom: 155px;
  }

  .hero__facts {
    right: auto;
    bottom: 30px;
    left: 20px;
  }

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

  .welcome__media {
    min-height: min(740px, 92vw);
  }

  .comfort {
    gap: 70px;
  }

  .comfort__montage {
    max-width: calc(100% - 22px);
  }

  .location__grid {
    gap: 80px;
  }

  .location__visual {
    min-height: 650px;
  }

  .location__visual::before {
    top: -40px;
    right: -100vw;
    bottom: -80px;
    left: 30%;
  }

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

  .explore__feature {
    min-height: 580px;
  }

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

  .explore-card:first-child {
    grid-column: 1 / -1;
  }

  .site-footer__grid {
    grid-template-columns: 90px 1fr 1fr;
  }

  .copyright {
    grid-column: 2 / -1;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .section {
    padding-block: 84px;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .brand strong {
    font-size: 23px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

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

  .hero__shade {
    background: linear-gradient(0deg, rgba(16, 25, 20, 0.8) 0%, rgba(16, 25, 20, 0.32) 70%, rgba(16, 25, 20, 0.35) 100%);
  }

  .hero__content {
    align-self: end;
    padding-top: 130px;
    padding-bottom: 185px;
  }

  h1 {
    font-size: clamp(58px, 17vw, 82px);
  }

  h2 {
    font-size: clamp(45px, 13vw, 66px);
  }

  .hero__intro {
    font-size: 16px;
  }

  .hero__facts {
    right: 16px;
    bottom: 28px;
    left: 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }

  .hero__facts span,
  .hero__facts span:first-child,
  .hero__facts span:last-child {
    padding: 8px 5px 0 0;
    border: 0;
  }

  .welcome {
    gap: 60px;
  }

  .welcome__media {
    min-height: 118vw;
  }

  .image-frame--main {
    right: 5%;
    bottom: 8%;
  }

  .image-frame--inset {
    right: 0;
    width: 51%;
  }

  .fact-band__grid {
    grid-template-columns: repeat(2, 1fr);
    padding-block: 24px;
  }

  .fact-band__grid div {
    justify-content: flex-start;
    padding: 19px 14px;
  }

  .fact-band__grid div:nth-child(2) {
    border-right: 0;
  }

  .fact-band strong {
    font-size: 35px;
  }

  .fact-band span {
    font-size: 9px;
  }

  .comfort {
    gap: 65px;
  }

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

  .stay-details {
    grid-template-columns: 1fr;
  }

  .stay-details article,
  .stay-details article:first-child,
  .stay-details article:last-child {
    padding: 27px 0 30px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stay-details article:last-child {
    border-bottom: 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 22px;
    text-align: left;
  }

  .gallery {
    grid-auto-rows: 62vw;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

  .gallery__item--tall {
    grid-row: span 1;
  }

  .gallery__item:not(.gallery__item--wide) {
    grid-column: span 1;
  }

  .location__visual {
    min-height: 500px;
  }

  .location__visual > img {
    height: 460px;
  }

  .guest-note {
    right: -8px;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 15px;
    width: 94%;
    padding: 21px;
  }

  .guest-note__image {
    width: 92px;
    height: 92px;
  }

  .explore__feature {
    min-height: 470px;
  }

  .explore__feature > div {
    padding: 27px;
  }

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

  .explore-card:first-child {
    grid-column: auto;
  }

  .explore-card {
    padding: 28px 24px;
  }

  .explore__note {
    margin-left: 0;
    text-align: left;
  }

  .contact h2 {
    font-size: clamp(56px, 17vw, 82px);
  }

  .contact__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .site-footer__grid {
    grid-template-columns: 78px 1fr;
    align-items: start;
    gap: 35px 22px;
  }

  .footer-brand img {
    width: 72px;
    height: 72px;
  }

  .footer-social,
  .copyright {
    grid-column: 2;
  }
}

@media (max-width: 430px) {
  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery {
    display: block;
  }

  .gallery__item {
    width: 100%;
    height: 68vw;
    margin-bottom: 8px;
  }

  .gallery__item--tall {
    height: 110vw;
  }
}

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

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

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