:root {
  --ink: #17312f;
  --ink-2: #244340;
  --blue: #146f9f;
  --blue-dark: #0e557b;
  --cream: #f4efe5;
  --paper: #fcfaf5;
  --paper-2: #f7f2e9;
  --sand: #e7dbc8;
  --sage: #87937a;
  --red: #c25b4c;
  --red-dark: #a44338;
  --gold: #d8a55e;
  --text: #31413f;
  --muted: #6c7875;
  --line: rgba(23, 49, 47, 0.14);
  --shadow: 0 24px 70px rgba(18, 43, 41, 0.14);
  --shadow-soft: 0 14px 40px rgba(18, 43, 41, 0.09);
  --radius-sm: 16px;
  --radius: 26px;
  --radius-lg: 42px;
  --container: min(1240px, calc(100vw - 48px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

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

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

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

p:last-child {
  margin-bottom: 0;
}

::selection {
  background: rgba(20, 111, 159, 0.22);
  color: var(--ink);
}

.skip-link {
  left: 16px;
  padding: 10px 16px;
  position: fixed;
  top: -80px;
  z-index: 1000;
  background: var(--paper);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

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

.section {
  padding: 124px 0;
  position: relative;
}

.section--compact {
  padding: 88px 0;
}

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

.section--ink {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.section--blue {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.8);
}

.eyebrow {
  align-items: center;
  color: var(--blue-dark);
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--red);
  border-radius: 999px;
  content: "";
  height: 8px;
  width: 8px;
}

.section--ink .eyebrow,
.section--blue .eyebrow,
.hero .eyebrow {
  color: #f0dfc7;
}

.heading {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.45rem, 4.6vw, 4.7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin-bottom: 28px;
}

.section--ink .heading,
.section--blue .heading {
  color: #fff;
}

.heading em {
  color: var(--blue);
  font-style: italic;
}

.section--ink .heading em,
.section--blue .heading em {
  color: #f3c47c;
}

.lead {
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.75;
  max-width: 700px;
}

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

.text-link {
  align-items: center;
  color: var(--blue-dark);
  display: inline-flex;
  font-weight: 750;
  gap: 9px;
  padding-bottom: 3px;
  position: relative;
}

.text-link::after {
  background: currentColor;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 220ms ease;
  width: 100%;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.025em;
  min-height: 52px;
  padding: 0 24px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button:focus-visible,
.nav-link:focus-visible,
.menu-toggle:focus-visible,
.gallery-item:focus-visible,
.lightbox__close:focus-visible,
.lightbox__nav:focus-visible {
  outline: 3px solid rgba(216, 165, 94, 0.75);
  outline-offset: 3px;
}

.button--primary {
  background: var(--red);
  color: #fff;
}

.button--primary:hover {
  background: var(--red-dark);
}

.button--dark {
  background: var(--ink);
  color: #fff;
}

.button--dark:hover {
  background: var(--blue-dark);
}

.button--light {
  background: var(--paper);
  color: var(--ink);
}

.button--ghost-light {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.button--ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
}

.button__arrow {
  font-size: 1.15em;
  line-height: 1;
  transition: transform 180ms ease;
}

.button:hover .button__arrow {
  transform: translateX(3px);
}

/* Header */
.site-header {
  left: 0;
  padding-top: 18px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}

.site-header__inner {
  align-items: center;
  background: rgba(252, 250, 245, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 22px;
  box-shadow: 0 12px 36px rgba(16, 36, 35, 0.11);
  display: flex;
  height: 86px;
  justify-content: space-between;
  padding: 8px 10px 8px 22px;
  transition: height 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

@supports (backdrop-filter: blur(18px)) {
  .site-header__inner {
    backdrop-filter: blur(18px) saturate(130%);
  }
}

.site-header.is-scrolled .site-header__inner {
  background: rgba(252, 250, 245, 0.96);
  box-shadow: 0 16px 42px rgba(16, 36, 35, 0.16);
  height: 76px;
}

.brand {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
}

.brand img {
  height: 64px;
  object-fit: contain;
  transition: height 220ms ease;
  width: auto;
}

.site-header.is-scrolled .brand img {
  height: 54px;
}

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

.nav-link {
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 750;
  padding: 12px 16px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  background: rgba(20, 111, 159, 0.09);
  color: var(--blue-dark);
}

.nav-cta {
  margin-left: 10px;
}

.menu-toggle {
  align-items: center;
  background: var(--ink);
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  display: none;
  height: 50px;
  justify-content: center;
  position: relative;
  width: 50px;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  background: #fff;
  border-radius: 99px;
  content: "";
  height: 2px;
  position: absolute;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 20px;
}

.menu-toggle::before {
  transform: translateY(-6px);
}

.menu-toggle::after {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: rotate(-45deg);
}

/* Hero */
.hero {
  align-items: flex-end;
  color: #fff;
  display: flex;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  padding: 156px 0 54px;
  position: relative;
}

.hero__media,
.hero__media picture,
.hero__media img {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero__media {
  z-index: -3;
}

.hero__media img {
  animation: heroDrift 18s ease-out both;
  object-fit: cover;
  object-position: center 45%;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(13, 36, 35, 0.88) 0%, rgba(13, 36, 35, 0.65) 37%, rgba(13, 36, 35, 0.12) 72%),
    linear-gradient(0deg, rgba(8, 30, 29, 0.7) 0%, rgba(8, 30, 29, 0) 42%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: -2;
}

.hero::after {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  content: "";
  height: min(42vw, 620px);
  position: absolute;
  right: -13vw;
  top: 18%;
  width: min(42vw, 620px);
  z-index: -1;
}

@keyframes heroDrift {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

.hero__content {
  max-width: 850px;
}

.hero h1 {
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6.2vw, 5.9rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0 0 25px;
  text-wrap: balance;
}

.hero h1 span {
  color: #f2d9b8;
  display: block;
  font-style: italic;
}

.hero__lead {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  margin: 0 0 34px;
  max-width: 640px;
}

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

.hero__facts {
  align-items: stretch;
  background: rgba(252, 250, 245, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 22px;
  color: var(--ink);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-left: auto;
  overflow: hidden;
  width: min(580px, 100%);
}

@supports (backdrop-filter: blur(14px)) {
  .hero__facts {
    backdrop-filter: blur(14px);
  }
}

.hero__bottom {
  align-items: flex-end;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  width: var(--container);
}

.hero-fact {
  padding: 19px 22px;
  position: relative;
}

.hero-fact + .hero-fact::before {
  background: var(--line);
  bottom: 18px;
  content: "";
  left: 0;
  position: absolute;
  top: 18px;
  width: 1px;
}

.hero-fact strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.15;
}

.hero-fact span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Intro */
.intro-grid {
  align-items: center;
  display: grid;
  gap: clamp(60px, 8vw, 122px);
  grid-template-columns: minmax(0, 0.87fr) minmax(0, 1.13fr);
}

.intro-copy .lead {
  margin-bottom: 28px;
}

.intro-copy p:not(.lead) {
  color: var(--muted);
  max-width: 620px;
}

.intro-visual {
  min-height: 650px;
  position: relative;
}

.intro-visual__main,
.intro-visual__small {
  box-shadow: var(--shadow);
  object-fit: cover;
  position: absolute;
}

.intro-visual__main {
  border-radius: 50% 50% 28px 28px / 26% 26% 28px 28px;
  height: 590px;
  right: 0;
  top: 0;
  width: 74%;
}

.intro-visual__small {
  border: 9px solid var(--cream);
  border-radius: 26px;
  bottom: 0;
  height: 290px;
  left: 0;
  width: 51%;
}

.distance-seal {
  align-items: center;
  background: var(--red);
  border: 9px solid var(--cream);
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 150px;
  justify-content: center;
  left: 33%;
  position: absolute;
  top: 48%;
  transform: rotate(-7deg);
  width: 150px;
  z-index: 2;
}

.distance-seal strong {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
}

.distance-seal span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  margin-top: 7px;
  text-transform: uppercase;
}

/* Accommodation */
.feature-heading {
  align-items: end;
  display: grid;
  gap: 50px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  margin-bottom: 68px;
}

.feature-heading .heading {
  margin-bottom: 0;
  max-width: 770px;
}

.feature-heading .lead {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.amenities {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 74px;
}

.amenity {
  align-items: flex-start;
  display: flex;
  gap: 18px;
  padding: 30px 24px;
}

.amenity + .amenity {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.amenity__mark {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 13px;
  color: #f3c47c;
  display: flex;
  flex: 0 0 46px;
  font-family: var(--serif);
  font-size: 0.94rem;
  height: 46px;
  justify-content: center;
}

.amenity strong {
  color: #fff;
  display: block;
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.amenity span:not(.amenity__mark) {
  color: rgba(255, 255, 255, 0.62);
  display: block;
  font-size: 0.83rem;
  line-height: 1.5;
}

.stay-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.35fr 0.65fr;
}

.stay-card {
  background: var(--paper);
  border-radius: 34px;
  color: var(--text);
  min-height: 640px;
  overflow: hidden;
  position: relative;
}

.stay-card__image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform 700ms cubic-bezier(.2,.72,.22,1);
  width: 100%;
}

.stay-card:hover .stay-card__image {
  transform: scale(1.025);
}

.stay-card::after {
  background: linear-gradient(0deg, rgba(13, 36, 35, 0.88) 0%, rgba(13, 36, 35, 0.05) 62%);
  content: "";
  inset: 0;
  position: absolute;
}

.stay-card__content {
  bottom: 0;
  color: #fff;
  left: 0;
  padding: 40px;
  position: absolute;
  right: 0;
  z-index: 1;
}

.stay-card__label {
  color: #f3c47c;
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.stay-card h3 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.3vw, 3.4rem);
  font-weight: 400;
  line-height: 1.06;
  margin-bottom: 12px;
}

.stay-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 590px;
}

.stay-card--small h3 {
  font-size: clamp(2rem, 2.7vw, 2.8rem);
}

.stay-card--small .stay-card__content {
  padding: 34px;
}

.stay-cta {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 19px;
}

.stay-cta span {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.stay-cta b {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  display: flex;
  font-size: 1.2rem;
  font-weight: 400;
  height: 42px;
  justify-content: center;
  transition: background 180ms ease, color 180ms ease;
  width: 42px;
}

.stay-card:hover .stay-cta b {
  background: #fff;
  color: var(--ink);
}

/* Garden & gallery */
.garden-grid {
  align-items: center;
  display: grid;
  gap: clamp(52px, 8vw, 118px);
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.garden-mosaic {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.14fr 0.86fr;
  grid-template-rows: 300px 260px;
}

.garden-mosaic img {
  border-radius: 24px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.garden-mosaic img:first-child {
  grid-row: 1 / 3;
}

.garden-copy ul {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}

.garden-copy li {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 112px 1fr;
  padding: 17px 0;
}

.garden-copy li:last-child {
  border-bottom: 1px solid var(--line);
}

.garden-copy li strong {
  color: var(--ink);
}

.gallery-section {
  overflow: hidden;
  padding: 0 0 120px;
}

.gallery-track {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.05fr 0.75fr 1.18fr 0.82fr;
}

.gallery-item {
  background: transparent;
  border: 0;
  border-radius: 24px;
  cursor: zoom-in;
  height: 420px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.gallery-item:nth-child(even) {
  margin-top: 54px;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.72,.22,1);
  width: 100%;
}

.gallery-item::after {
  align-items: center;
  background: rgba(23, 49, 47, 0.82);
  border-radius: 50%;
  color: #fff;
  content: "+";
  display: flex;
  font-family: var(--serif);
  font-size: 1.7rem;
  height: 54px;
  justify-content: center;
  opacity: 0;
  position: absolute;
  right: 18px;
  top: 18px;
  transform: scale(0.8);
  transition: opacity 180ms ease, transform 180ms ease;
  width: 54px;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

/* Activities */
.activity-intro {
  align-items: end;
  display: flex;
  gap: 50px;
  justify-content: space-between;
  margin-bottom: 58px;
}

.activity-intro .heading {
  margin-bottom: 0;
  max-width: 780px;
}

.activity-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.activity-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.activity-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.activity-card__media {
  height: 292px;
  overflow: hidden;
}

.activity-card__media img {
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
  width: 100%;
}

.activity-card:hover .activity-card__media img {
  transform: scale(1.04);
}

.activity-card__body {
  padding: 28px 28px 31px;
}

.activity-card h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: 9px;
}

.activity-card p {
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.65;
}

/* Partners */
.partner-band {
  background: var(--blue-dark);
  border-radius: var(--radius-lg);
  color: #fff;
  display: grid;
  gap: 0;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
}

.partner-band__main,
.partner-band__side {
  padding: clamp(42px, 6vw, 78px);
}

.partner-band__main {
  background:
    radial-gradient(circle at 85% 5%, rgba(255,255,255,.14), transparent 33%),
    var(--blue-dark);
}

.partner-band__side {
  align-items: center;
  background: #e8b663;
  color: var(--ink);
  display: flex;
}

.partner-kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.partner-band h2,
.partner-band h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.06;
}

.partner-band h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  margin-bottom: 20px;
}

.partner-band h3 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  margin-bottom: 15px;
}

.partner-band p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 700px;
}

.partner-band__side p {
  color: rgba(23, 49, 47, 0.77);
}

.partner-wordmark {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  display: inline-block;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  margin-top: 26px;
  padding-top: 22px;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: clamp(54px, 8vw, 118px);
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

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

.contact-item {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: 96px 1fr;
  padding: 20px 0;
}

.contact-item dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-item dd {
  color: var(--ink);
  font-weight: 700;
  margin: 0;
}

.contact-item a:hover {
  color: var(--blue);
}

.map-wrap {
  background: #dce5dd;
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
  min-height: 610px;
  overflow: hidden;
  position: relative;
}

.map-wrap iframe {
  border: 0;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.map-card {
  background: rgba(252, 250, 245, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  bottom: 22px;
  left: 22px;
  max-width: 360px;
  padding: 23px;
  position: absolute;
  z-index: 1;
}

@supports (backdrop-filter: blur(14px)) {
  .map-card {
    backdrop-filter: blur(14px);
  }
}

.map-card strong {
  color: var(--ink);
  display: block;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 8px;
}

.map-card p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
  margin-bottom: 16px;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.68);
  padding: 76px 0 30px;
}

.footer-main {
  align-items: start;
  display: grid;
  gap: 60px;
  grid-template-columns: 1.1fr 0.55fr 0.75fr;
  padding-bottom: 60px;
}

.footer-brand {
  filter: brightness(0) invert(1);
  height: 90px;
  margin-bottom: 24px;
  opacity: 0.94;
  width: auto;
}

.footer-main p {
  font-size: 0.9rem;
  max-width: 460px;
}

.footer-title {
  color: #fff;
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  font-size: 0.78rem;
  justify-content: space-between;
  padding-top: 28px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.82);
}

/* Lightbox */
.lightbox {
  align-items: center;
  background: rgba(9, 25, 24, 0.96);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 76px;
  pointer-events: none;
  position: fixed;
  transition: opacity 180ms ease;
  z-index: 500;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__figure {
  margin: 0;
  max-height: calc(100vh - 120px);
  max-width: min(1180px, calc(100vw - 160px));
  position: relative;
}

.lightbox__image {
  border-radius: 18px;
  max-height: calc(100vh - 145px);
  max-width: 100%;
  object-fit: contain;
}

.lightbox__caption {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  margin-top: 12px;
  text-align: center;
}

.lightbox__close,
.lightbox__nav {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-family: var(--serif);
  justify-content: center;
  position: absolute;
}

.lightbox__close {
  font-size: 1.8rem;
  height: 52px;
  right: 24px;
  top: 24px;
  width: 52px;
}

.lightbox__nav {
  font-size: 2rem;
  height: 62px;
  top: 50%;
  transform: translateY(-50%);
  width: 62px;
}

.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }

/* Responsive */
@media (max-width: 1080px) {
  :root {
    --container: min(100% - 36px, 980px);
  }

  .site-nav {
    gap: 0;
  }

  .nav-link {
    padding-inline: 11px;
  }

  .nav-cta {
    margin-left: 6px;
    padding-inline: 18px;
  }

  .hero__bottom {
    display: block;
  }

  .hero__facts {
    margin: 36px 0 0;
  }

  .intro-grid {
    gap: 60px;
  }

  .intro-visual {
    min-height: 560px;
  }

  .intro-visual__main {
    height: 510px;
  }

  .intro-visual__small {
    height: 230px;
  }

  .distance-seal {
    height: 132px;
    width: 132px;
  }

  .amenity {
    display: block;
    padding-inline: 18px;
  }

  .amenity__mark {
    margin-bottom: 16px;
  }

  .stay-card {
    min-height: 560px;
  }

  .garden-grid {
    gap: 56px;
  }

  .gallery-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:nth-child(even) {
    margin-top: 0;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(4) {
    margin-top: 42px;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100% - 30px, 720px);
  }

  .section {
    padding: 92px 0;
  }

  .site-header {
    padding-top: 10px;
  }

  .site-header__inner,
  .site-header.is-scrolled .site-header__inner {
    height: 72px;
    padding: 6px 7px 6px 16px;
  }

  .brand img,
  .site-header.is-scrolled .brand img {
    height: 51px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    align-items: stretch;
    background: rgba(252, 250, 245, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 4px;
    left: 15px;
    opacity: 0;
    padding: 18px;
    pointer-events: none;
    position: fixed;
    right: 15px;
    top: 92px;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-link {
    font-size: 1rem;
    padding: 13px 16px;
  }

  .nav-cta {
    margin: 8px 0 0;
    width: 100%;
  }

  .hero {
    min-height: 920px;
    padding: 140px 0 42px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(13, 36, 35, 0.83) 0%, rgba(13, 36, 35, 0.48) 70%, rgba(13, 36, 35, 0.15) 100%),
      linear-gradient(0deg, rgba(8, 30, 29, 0.84) 0%, rgba(8, 30, 29, 0.08) 68%);
  }

  .hero__content {
    max-width: 650px;
  }

  .hero__facts {
    width: 100%;
  }

  .intro-grid,
  .garden-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .intro-visual {
    margin-top: 10px;
    min-height: 640px;
  }

  .intro-visual__main {
    height: 580px;
    width: 76%;
  }

  .feature-heading {
    display: block;
  }

  .feature-heading .heading {
    margin-bottom: 24px;
  }

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

  .amenity:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .amenity:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

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

  .stay-card,
  .stay-card--small {
    min-height: 560px;
  }

  .garden-grid {
    gap: 60px;
  }

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

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

  .activity-card {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
  }

  .activity-card__media {
    height: 100%;
    min-height: 260px;
  }

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

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

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

  .footer-main > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  :root {
    --container: calc(100% - 24px);
    --radius-lg: 28px;
  }

  html {
    scroll-padding-top: 92px;
  }

  body {
    font-size: 15px;
  }

  .section {
    padding: 76px 0;
  }

  .heading {
    font-size: clamp(2.25rem, 11vw, 3.3rem);
  }

  .site-header__inner,
  .site-header.is-scrolled .site-header__inner {
    border-radius: 18px;
    height: 66px;
  }

  .brand img,
  .site-header.is-scrolled .brand img {
    height: 45px;
  }

  .menu-toggle {
    border-radius: 12px;
    height: 46px;
    width: 46px;
  }

  .site-nav {
    top: 84px;
  }

  .hero {
    align-items: flex-end;
    min-height: 900px;
    padding: 126px 0 26px;
  }

  .hero__media img {
    object-position: center center;
  }

  .hero::before {
    background: linear-gradient(0deg, rgba(8, 30, 29, 0.9) 0%, rgba(8, 30, 29, 0.55) 60%, rgba(8, 30, 29, 0.15) 100%);
  }

  .hero::after {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .hero__lead {
    font-size: 1rem;
    line-height: 1.65;
  }

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

  .hero__actions .button {
    width: 100%;
  }

  .hero__facts {
    border-radius: 18px;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .hero-fact {
    align-items: baseline;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    padding: 13px 17px;
  }

  .hero-fact strong {
    font-size: 1.18rem;
  }

  .hero-fact + .hero-fact::before {
    bottom: auto;
    height: 1px;
    left: 16px;
    right: 16px;
    top: 0;
    width: auto;
  }

  .intro-visual {
    min-height: 495px;
  }

  .intro-visual__main {
    border-radius: 120px 120px 22px 22px;
    height: 450px;
    width: 83%;
  }

  .intro-visual__small {
    border-width: 6px;
    height: 190px;
    width: 56%;
  }

  .distance-seal {
    border-width: 6px;
    height: 104px;
    left: 42%;
    width: 104px;
  }

  .distance-seal strong {
    font-size: 1.65rem;
  }

  .distance-seal span {
    font-size: 0.58rem;
  }

  .feature-heading {
    margin-bottom: 45px;
  }

  .amenities {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }

  .amenity {
    align-items: center;
    display: flex;
    padding: 18px 6px;
  }

  .amenity + .amenity,
  .amenity:nth-child(3),
  .amenity:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .amenity__mark {
    margin-bottom: 0;
  }

  .stay-card,
  .stay-card--small {
    border-radius: 25px;
    min-height: 520px;
  }

  .stay-card__content,
  .stay-card--small .stay-card__content {
    padding: 26px;
  }

  .garden-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 330px 190px;
  }

  .garden-mosaic img {
    border-radius: 18px;
  }

  .garden-mosaic img:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .garden-copy li {
    grid-template-columns: 84px 1fr;
  }

  .gallery-section {
    padding-bottom: 80px;
  }

  .gallery-track {
    gap: 10px;
  }

  .gallery-item,
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(4) {
    border-radius: 16px;
    height: 240px;
    margin-top: 0;
  }

  .gallery-item:nth-child(even) {
    margin-top: 28px;
  }

  .activity-card {
    display: block;
  }

  .activity-card__media {
    height: 240px;
    min-height: 0;
  }

  .partner-band__main,
  .partner-band__side {
    padding: 38px 27px;
  }

  .contact-item {
    gap: 12px;
    grid-template-columns: 74px 1fr;
  }

  .map-wrap {
    border-radius: 26px;
    min-height: 500px;
  }

  .map-card {
    bottom: 12px;
    left: 12px;
    right: 12px;
  }

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

  .footer-main > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .lightbox {
    padding: 70px 12px 30px;
  }

  .lightbox__figure {
    max-width: 100%;
  }

  .lightbox__close {
    right: 12px;
    top: 12px;
  }

  .lightbox__nav {
    bottom: 18px;
    top: auto;
    transform: none;
  }

  .lightbox__nav--prev { left: calc(50% - 76px); }
  .lightbox__nav--next { right: calc(50% - 76px); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::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;
  }
}

/* Inner pages */

.button--outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.button--outline:hover,
.button--outline:focus-visible {
  background: var(--ink);
  color: #fff;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}

.text-link--light {
  color: #f3c47c;
}

.page-hero {
  align-items: flex-end;
  display: flex;
  min-height: min(720px, 78vh);
  overflow: hidden;
  padding: 190px 0 84px;
  position: relative;
}

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

.page-hero__image {
  object-fit: cover;
  object-position: center 48%;
}

.page-hero--trips .page-hero__image {
  object-position: center 52%;
}

.page-hero__shade {
  background:
    linear-gradient(180deg, rgba(11, 35, 34, 0.12) 5%, rgba(11, 35, 34, 0.32) 52%, rgba(11, 35, 34, 0.9) 100%),
    linear-gradient(90deg, rgba(11, 35, 34, 0.48), transparent 66%);
}

.page-hero__content {
  color: #fff;
  position: relative;
  z-index: 1;
}

.page-hero__content h1 {
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7.6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
  margin-bottom: 24px;
  max-width: 940px;
}

.page-hero__content h1 em {
  color: #f3c47c;
  font-style: italic;
}

.page-hero__content p {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 700px;
}

.story-grid {
  align-items: center;
  display: grid;
  gap: clamp(60px, 8vw, 125px);
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
}

.story-copy > p:not(.lead) {
  color: var(--muted);
  max-width: 680px;
}

.detail-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.detail-pills span {
  background: rgba(20, 111, 159, 0.08);
  border: 1px solid rgba(20, 111, 159, 0.15);
  border-radius: 999px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 750;
  padding: 8px 14px;
}

.story-visual {
  min-height: 590px;
  position: relative;
}

.story-visual > img {
  border-radius: 210px 210px 28px 28px;
  box-shadow: var(--shadow);
  height: 555px;
  object-fit: cover;
  width: 86%;
}

.story-note {
  align-items: center;
  background: var(--ink);
  border: 8px solid var(--cream);
  border-radius: 24px;
  bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  gap: 18px;
  max-width: 345px;
  padding: 22px 24px;
  position: absolute;
  right: 0;
}

.story-note > span {
  color: #f3c47c;
  font-size: 2.2rem;
}

.story-note p {
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

.story-note strong {
  color: #fff;
  display: block;
  font-size: 0.92rem;
}

.room-showcase {
  overflow: hidden;
}

.room-feature {
  align-items: center;
  display: grid;
  gap: clamp(50px, 8vw, 112px);
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  margin-top: 120px;
}

.room-feature--reverse {
  grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.18fr);
}

.room-feature--reverse .room-feature__gallery {
  grid-column: 2;
  grid-row: 1;
}

.room-feature--reverse .room-feature__copy {
  grid-column: 1;
  grid-row: 1;
}

.room-feature__gallery {
  display: grid;
  gap: 12px;
  grid-template-columns: 1.7fr 1fr;
  grid-template-rows: 240px 210px;
  min-height: 462px;
  position: relative;
}

.room-feature__gallery > img,
.room-feature__detail,
.room-feature__detail img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.room-feature__gallery > img,
.room-feature__detail {
  border-radius: 24px;
  overflow: hidden;
}

.room-feature__gallery > img:first-child {
  grid-row: 1 / -1;
}

.room-feature__detail {
  background: transparent;
  border: 0;
  cursor: zoom-in;
  padding: 0;
}

.room-feature__detail img {
  transition: transform 450ms ease;
}

.room-feature__detail:hover img {
  transform: scale(1.04);
}

.room-feature__copy h3 {
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 14px 0 24px;
}

.room-feature__copy > p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.04rem;
}

.check-list {
  list-style: none;
  margin: 28px 0;
  padding: 0;
}

.check-list li {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  padding: 11px 0 11px 28px;
  position: relative;
}

.check-list li::before {
  color: #f3c47c;
  content: "✓";
  font-weight: 800;
  left: 0;
  position: absolute;
}

.pricing-heading,
.trip-list-heading {
  margin-bottom: 58px;
  max-width: 810px;
}

.pricing-heading {
  align-items: end;
  display: flex;
  gap: 60px;
  justify-content: space-between;
  max-width: none;
}

.pricing-heading > div {
  max-width: 650px;
}

.pricing-heading .lead {
  max-width: 420px;
}

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

.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.price-card--main {
  background: var(--ink);
  color: #fff;
}

.price-card__head {
  align-items: flex-start;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: 34px 36px 30px;
}

.price-card__tag {
  color: var(--blue);
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.price-card--main .price-card__tag {
  color: #f3c47c;
}

.price-card h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
}

.price-card__sun {
  color: var(--gold);
  font-size: 2.25rem;
  line-height: 1;
}

.table-wrap {
  overflow-x: auto;
}

.price-table {
  border-collapse: collapse;
  min-width: 510px;
  width: 100%;
}

.price-table th,
.price-table td {
  border-top: 1px solid var(--line);
  padding: 20px 22px;
  text-align: right;
}

.price-card--main .price-table th,
.price-card--main .price-table td {
  border-color: rgba(255, 255, 255, 0.12);
}

.price-table thead th {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card--main .price-table thead th {
  color: rgba(255, 255, 255, 0.5);
}

.price-table th:first-child,
.price-table td:first-child {
  padding-left: 36px;
  text-align: left;
}

.price-table tbody th {
  font-size: 0.88rem;
}

.price-table tbody td {
  font-variant-numeric: tabular-nums;
}

.price-table tbody td strong {
  color: var(--blue-dark);
  font-size: 1.14rem;
}

.price-card--main .price-table tbody td strong {
  color: #f3c47c;
}

.price-notes {
  background: var(--sand);
  border-radius: 26px;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
  padding: 28px;
}

.price-notes > div {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  padding: 8px 24px;
}

.price-notes > div + div {
  border-left: 1px solid rgba(23, 49, 47, 0.14);
}

.note-number {
  color: var(--red-dark);
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.2;
}

.price-notes p {
  font-size: 0.83rem;
  line-height: 1.55;
  margin: 0;
}

.price-notes strong {
  display: block;
}

.availability-section {
  background:
    radial-gradient(circle at 13% 15%, rgba(20, 111, 159, 0.08), transparent 27%),
    var(--cream);
}

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

.availability-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.availability-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.availability-card__number {
  color: var(--red);
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  margin-bottom: 26px;
}

.availability-card h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 4px;
}

.availability-card p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 24px;
}

.availability-card a {
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.reservation-grid {
  align-items: start;
  display: grid;
  gap: clamp(60px, 8vw, 112px);
  grid-template-columns: minmax(0, 0.74fr) minmax(500px, 1.26fr);
}

.reservation-copy {
  position: sticky;
  top: 135px;
}

.reservation-contact {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  margin-top: 38px;
  padding-top: 26px;
}

.reservation-contact span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.reservation-contact a {
  color: #fff;
  font-size: 1.05rem;
}

.reservation-form {
  background: var(--paper);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(4, 33, 49, 0.22);
  color: var(--text);
  padding: 36px;
}

.form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 26px;
}

.form-field {
  display: block;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field > span {
  color: var(--ink);
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 7px;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: #fff;
  border: 1px solid rgba(23, 49, 47, 0.18);
  border-radius: 12px;
  outline: none;
  padding: 12px 14px;
  transition: border 180ms ease, box-shadow 180ms ease;
  width: 100%;
}

.form-field input,
.form-field select {
  height: 49px;
}

.form-field textarea {
  min-height: 116px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(20, 111, 159, 0.1);
}

.reservation-form .button {
  width: 100%;
}

.form-note {
  color: var(--muted);
  font-size: 0.72rem;
  margin: 12px 0 0;
  text-align: center;
}

.practical-grid {
  align-items: start;
  display: grid;
  gap: clamp(50px, 8vw, 110px);
  grid-template-columns: 0.8fr 1.2fr;
}

.practical-list > div {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 120px 1fr;
  padding: 20px 0;
}

.practical-list > div > span {
  color: var(--blue-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.practical-list p {
  margin: 0;
}

/* Trips */

.trip-intro {
  overflow: hidden;
}

.trip-intro__inner {
  margin-inline: auto;
  max-width: 960px;
  text-align: center;
}

.trip-intro__inner .lead {
  margin-inline: auto;
}

.trip-mode-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 34px;
}

.trip-mode-row span {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  font-size: 0.78rem;
  font-weight: 750;
  gap: 9px;
  padding: 9px 17px;
}

.trip-mode-row span::before {
  background: var(--red);
  border-radius: 50%;
  content: "";
  height: 6px;
  width: 6px;
}

.trip-list {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
}

.trip-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-rows: 330px 1fr;
  overflow: hidden;
}

.trip-card--wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  grid-template-rows: none;
  min-height: 520px;
}

.trip-card--reverse {
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
}

.trip-card--reverse .trip-card__media {
  grid-column: 2;
  grid-row: 1;
}

.trip-card--reverse .trip-card__body {
  grid-column: 1;
  grid-row: 1;
}

.trip-card__media {
  min-height: 0;
  overflow: hidden;
  position: relative;
}

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

.trip-card__media:hover img {
  transform: scale(1.035);
}

.trip-card__index {
  align-items: center;
  background: rgba(252, 250, 245, 0.94);
  border-radius: 50%;
  bottom: 20px;
  color: var(--ink);
  display: flex;
  font-family: var(--serif);
  height: 58px;
  justify-content: center;
  position: absolute;
  right: 20px;
  width: 58px;
}

.trip-card__body {
  display: flex;
  flex-direction: column;
  padding: 34px 36px 38px;
}

.trip-card--wide .trip-card__body {
  justify-content: center;
  padding: 54px;
}

.trip-card__meta {
  color: var(--red-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.5;
  margin-bottom: 13px;
  text-transform: uppercase;
}

.trip-card h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.3vw, 3.1rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.03;
  margin-bottom: 22px;
}

.trip-card p {
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.72;
}

.trip-card .text-link {
  margin-top: auto;
  padding-top: 12px;
  width: max-content;
}

.source-note {
  color: var(--muted);
  font-size: 0.78rem;
  margin: 36px 0 0;
  text-align: center;
}

.source-note a {
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.trip-cta {
  align-items: flex-end;
  display: flex;
  gap: 80px;
  justify-content: space-between;
}

.trip-cta > div:first-child {
  max-width: 760px;
}

.trip-cta__actions {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  gap: 12px;
  min-width: 235px;
}

@media (max-width: 1080px) {
  .story-grid {
    gap: 60px;
    grid-template-columns: 1fr 1fr;
  }

  .room-feature,
  .room-feature--reverse {
    gap: 50px;
    grid-template-columns: 1.05fr 0.95fr;
  }

  .reservation-grid {
    gap: 55px;
    grid-template-columns: 0.85fr 1.15fr;
  }

  .trip-card--wide,
  .trip-card--reverse {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .page-hero {
    min-height: 650px;
    padding-bottom: 64px;
  }

  .story-grid,
  .room-feature,
  .room-feature--reverse,
  .reservation-grid,
  .practical-grid {
    grid-template-columns: 1fr;
  }

  .story-visual {
    min-height: 540px;
  }

  .room-feature {
    gap: 35px;
    margin-top: 80px;
  }

  .room-feature--reverse .room-feature__gallery,
  .room-feature--reverse .room-feature__copy {
    grid-column: auto;
    grid-row: auto;
  }

  .room-feature--reverse .room-feature__gallery {
    grid-row: 1;
  }

  .room-feature__copy {
    max-width: 670px;
  }

  .pricing-heading {
    align-items: start;
    flex-direction: column;
    gap: 0;
  }

  .pricing-grid,
  .availability-grid {
    grid-template-columns: 1fr;
  }

  .price-notes {
    grid-template-columns: 1fr;
  }

  .price-notes > div + div {
    border-left: 0;
    border-top: 1px solid rgba(23, 49, 47, 0.14);
  }

  .reservation-copy {
    position: static;
  }

  .trip-card,
  .trip-card--wide,
  .trip-card--reverse {
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 360px auto;
    min-height: 0;
  }

  .trip-card--reverse .trip-card__media,
  .trip-card--reverse .trip-card__body {
    grid-column: auto;
    grid-row: auto;
  }

  .trip-card--reverse .trip-card__media {
    grid-row: 1;
  }

  .trip-list {
    grid-template-columns: 1fr;
  }

  .trip-card--wide .trip-card__body {
    padding: 42px;
  }

  .trip-cta {
    align-items: start;
    flex-direction: column;
    gap: 28px;
  }

  .trip-cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 580px) {
  .section-action .button {
    width: 100%;
  }

  .page-hero {
    min-height: 620px;
    padding: 160px 0 50px;
  }

  .page-hero__content h1 {
    font-size: clamp(3.45rem, 17vw, 5rem);
  }

  .page-hero__content .button {
    width: 100%;
  }

  .story-grid {
    gap: 42px;
  }

  .story-visual {
    min-height: 450px;
  }

  .story-visual > img {
    border-radius: 120px 120px 20px 20px;
    height: 420px;
    width: 92%;
  }

  .story-note {
    border-width: 6px;
    max-width: 290px;
    padding: 17px;
  }

  .room-feature__gallery {
    gap: 8px;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 190px 160px;
    min-height: 358px;
  }

  .room-feature__gallery > img,
  .room-feature__detail {
    border-radius: 16px;
  }

  .room-feature__copy h3 {
    font-size: 2.55rem;
  }

  .price-card__head {
    padding: 27px 24px 23px;
  }

  .price-card h3 {
    font-size: 1.45rem;
  }

  .price-table th,
  .price-table td {
    padding: 17px 16px;
  }

  .price-table th:first-child,
  .price-table td:first-child {
    padding-left: 24px;
  }

  .price-notes {
    padding: 18px;
  }

  .price-notes > div {
    padding: 15px 8px;
  }

  .reservation-form {
    border-radius: 24px;
    padding: 24px 20px;
  }

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

  .form-field--full {
    grid-column: auto;
  }

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

  .trip-list {
    gap: 20px;
  }

  .trip-card,
  .trip-card--wide,
  .trip-card--reverse {
    grid-template-rows: 260px auto;
  }

  .trip-card__body,
  .trip-card--wide .trip-card__body {
    padding: 28px 24px 30px;
  }

  .trip-card h3 {
    font-size: 2.15rem;
  }

  .trip-cta__actions {
    width: 100%;
  }

  .trip-cta__actions .button {
    width: 100%;
  }
}
