:root {
  --ink: #173744;
  --ink-deep: #0d2731;
  --ocean: #1f6878;
  --foam: #f5f7f4;
  --sand: #eee5d6;
  --sun: #d98b4d;
  --paper: #fffdf9;
  --white: #ffffff;
  --muted: #60727a;
  --border: rgba(23, 55, 68, 0.16);
  --shadow: 0 24px 70px rgba(13, 39, 49, 0.14);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: 'Aptos', 'Segoe UI', Helvetica, Arial, sans-serif;
  --shell: min(1180px, calc(100% - 40px));
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-is-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

.section {
  padding-block: clamp(76px, 9vw, 132px);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink-deep);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
body:not(.home) .site-header {
  color: var(--ink);
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 12px 30px rgba(13, 39, 49, 0.08);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

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

.brand__logo {
  display: grid;
  width: 58px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(7, 25, 32, 0.14);
}

.brand__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__copy {
  display: inline-flex;
  align-items: baseline;
  gap: 13px;
}

.brand__name {
  font-family: var(--serif);
  font-size: 31px;
  font-style: italic;
  line-height: 1;
}

.brand__place {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.language-switcher {
  display: inline-flex;
  padding: 3px;
  gap: 2px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.language-switcher a {
  display: grid;
  width: 30px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.language-switcher a[aria-current='true'] {
  color: var(--ink-deep);
  background: var(--sun);
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 27px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__list a {
  position: relative;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav__list a::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__list a:hover::after,
.site-nav__list a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 23px;
  border: 1px solid var(--sun);
  border-radius: 999px;
  color: var(--ink-deep);
  background: var(--sun);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.025em;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: #e9a66f;
  background: #e9a66f;
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding: 10px 18px;
  color: var(--ink-deep);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 750;
  text-underline-offset: 5px;
}

.text-link::after {
  content: '→';
  transition: transform 180ms ease;
}

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

.text-link--light {
  color: var(--white);
}

.eyebrow {
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--ocean);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(900px, 96vh);
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
}

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

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

.hero__shade {
  background: linear-gradient(90deg, rgba(7, 25, 32, 0.82) 0%, rgba(7, 25, 32, 0.48) 52%, rgba(7, 25, 32, 0.2) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 180px;
  padding-bottom: 180px;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(62px, 8.2vw, 124px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.hero__lede {
  max-width: 590px;
  margin: 30px 0 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero__facts {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  display: grid;
  width: min(720px, 55vw);
  grid-template-columns: repeat(4, 1fr);
  color: var(--ink);
  background: var(--paper);
}

.hero__facts div {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
  border-left: 1px solid var(--border);
}

.hero__facts strong {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.hero__facts span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.booking-strip {
  background: var(--sand);
}

.section-heading h2,
.coast-section h2,
.final-cta h2,
.entry h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.section-heading--booking,
.section-heading--row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 70px;
}

.section-heading--booking > p,
.section-heading--row > p {
  margin: 0;
  color: var(--muted);
}

.booking-form {
  display: grid;
  margin-top: 44px;
  padding: 12px;
  grid-template-columns: repeat(4, minmax(125px, 1fr)) auto;
  gap: 0;
  border: 1px solid rgba(23, 55, 68, 0.1);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  padding: 7px 22px;
  border-right: 1px solid var(--border);
}

.booking-form label span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  min-width: 0;
  padding: 5px 0 0;
  border: 0;
  outline: 0;
  color: var(--ink-deep);
  background: transparent;
  font-weight: 700;
}

.booking-form .button {
  align-self: stretch;
  min-width: 180px;
  border-radius: 12px;
}

.booking-note {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(60px, 10vw, 150px);
}

.rich-copy p {
  margin-top: 0;
  color: var(--muted);
}

.lead {
  color: var(--ink) !important;
  font-family: var(--serif);
  font-size: clamp(24px, 2.7vw, 35px);
  line-height: 1.35;
}

.feature-cards {
  display: grid;
  margin-top: 80px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-cards article {
  min-height: 260px;
  padding: 40px;
  border-right: 1px solid var(--border);
}

.feature-cards article:last-child {
  border-right: 0;
}

.feature-cards article > span {
  color: var(--sun);
  font-family: var(--serif);
  font-size: 18px;
}

.feature-cards h3 {
  margin: 46px 0 12px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
}

.feature-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

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

.amenities-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(60px, 9vw, 140px);
}

.amenities-intro h2 {
  max-width: 620px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.amenities-intro .lead {
  margin-top: 32px;
}

.amenities-intro > p:not(.eyebrow, .lead) {
  color: var(--muted);
}

.amenities-intro .text-link {
  margin-top: 18px;
}

.amenities-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 50px;
}

.amenity-group {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.amenity-group__number {
  margin: 0 0 22px;
  color: var(--ocean);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.amenity-group h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}

.amenity-group ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 9px;
  color: var(--muted);
  font-size: 15px;
  list-style: none;
}

.amenity-group li {
  position: relative;
  padding-left: 18px;
}

.amenity-group li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sun);
  content: '';
  transform: translateY(-50%);
}

.stay-section {
  color: var(--white);
  background: var(--ink-deep);
}

.stay-section .eyebrow--dark {
  color: var(--sun);
}

.stay-section .section-heading--row > p {
  color: rgba(255, 255, 255, 0.7);
}

.stay-cards {
  display: grid;
  margin-top: 58px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.stay-cards article {
  min-width: 0;
  padding: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

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

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

.stay-card__label {
  margin: 0 0 34px;
  color: var(--sun);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.stay-cards h3 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.1;
}

.season-rate-list {
  display: grid;
  margin: 0 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.season-rate {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.season-rate > span {
  display: grid;
  gap: 3px;
}

.season-rate > span:last-child {
  color: var(--sun);
  text-align: right;
}

.season-rate small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 500;
}

.season-rate-discount {
  margin: 0 0 18px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink-deep);
  background: var(--sun);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.stay-cards ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  list-style: none;
}

.stay-cards li {
  position: relative;
  padding-left: 17px;
}

.stay-cards li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sun);
  content: '';
  transform: translateY(-50%);
}

.stay-cancellation {
  margin-top: 24px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  text-align: center;
}

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

.gallery-grid {
  display: grid;
  margin-top: 58px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 240px;
  gap: 16px;
}

.gallery-tabs {
  display: flex;
  margin-top: 42px;
  gap: 8px;
  flex-wrap: wrap;
}

.gallery-tabs button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 9px 10px 9px 18px;
  gap: 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: var(--paper);
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.gallery-tabs button span {
  display: grid;
  min-width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 999px;
  color: var(--ink-deep);
  background: var(--sand);
  font-size: 10px;
}

.gallery-tabs button[aria-selected='true'] {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.gallery-tabs button:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

[data-gallery-panel][hidden] {
  display: none;
}

.gallery-card {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--sand);
  cursor: zoom-in;
  font: inherit;
  text-align: left;
}

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

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

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

.gallery-card:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.gallery-card__caption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 13px;
  color: var(--ink-deep);
  background: rgba(255, 253, 249, 0.92);
  font-size: 11px;
  font-weight: 750;
}

.gallery-card__expand {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(7, 25, 32, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(-4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-card:hover .gallery-card__expand,
.gallery-card:focus-visible .gallery-card__expand {
  opacity: 1;
  transform: translateY(0);
}

body.gallery-is-open {
  overflow: hidden;
}

.gallery-lightbox {
  width: min(1180px, calc(100% - 40px));
  max-width: none;
  height: calc(100dvh - 60px);
  max-height: none;
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
  overflow: visible;
}

.gallery-lightbox[open] {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 60px;
  align-items: center;
}

.gallery-lightbox::backdrop {
  background: rgba(4, 17, 23, 0.94);
  backdrop-filter: blur(8px);
}

.gallery-lightbox figure {
  display: grid;
  min-width: 0;
  max-height: 100%;
  margin: 0;
  grid-column: 2;
  justify-items: center;
}

.gallery-lightbox figure img {
  display: block;
  max-width: 100%;
  max-height: calc(100dvh - 125px);
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.gallery-lightbox figcaption {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.gallery-lightbox__close {
  position: fixed;
  z-index: 2;
  top: 18px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 34px;
  line-height: 1;
}

.gallery-lightbox__nav {
  width: 52px;
  height: 70px;
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 52px;
  line-height: 0.8;
  transition: background-color 180ms ease;
}

.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus-visible,
.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  outline: 2px solid rgba(255, 255, 255, 0.7);
}

.gallery-lightbox__nav--previous {
  grid-column: 1;
  grid-row: 1;
}

.gallery-lightbox__nav--next {
  grid-column: 3;
  grid-row: 1;
}

.coast-section {
  display: grid;
  min-height: 760px;
  padding: 0;
  grid-template-columns: 1.12fr 0.88fr;
  color: var(--white);
  background: var(--ink);
}

.coast-section__image {
  min-height: 620px;
}

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

.coast-section__content {
  display: flex;
  max-width: 620px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 130px);
}

.coast-section__content > p:not(.eyebrow) {
  margin: 30px 0;
  color: rgba(255, 255, 255, 0.72);
}

.travel-times {
  margin: 12px 0 34px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.travel-times li {
  display: grid;
  padding: 18px 0;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.travel-times strong {
  color: var(--sun);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
}

.travel-times span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.local-section {
  background: var(--foam);
}

.local-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(60px, 9vw, 140px);
}

.local-layout .section-heading > p:last-child {
  max-width: 450px;
  color: var(--muted);
}

.local-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.local-groups article {
  min-height: 210px;
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--paper);
}

.local-groups--expanded article {
  min-height: 190px;
}

.local-groups h3 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

.local-groups p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.social-proof {
  background: var(--paper);
}

.social-proof__inner {
  display: grid;
  grid-template-columns: 0.55fr 1.1fr;
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
}

.rating-card {
  padding: 54px;
  border: 1px solid var(--border);
  text-align: center;
}

.rating-card__score {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(74px, 8vw, 112px);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.rating-card p:nth-child(2) {
  margin: 23px 0 5px;
  color: var(--sun);
  letter-spacing: 0.2em;
}

.rating-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.social-proof h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.trust-list {
  display: flex;
  margin-top: 30px;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-list span {
  padding: 8px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.faq-section {
  background: var(--sand);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.1fr;
  align-items: start;
  gap: clamp(60px, 10vw, 150px);
}

.faq-grid .section-heading > p:last-child {
  max-width: 380px;
  color: var(--muted);
}

.accordion details {
  border-top: 1px solid var(--border);
}

.accordion details:last-child {
  border-bottom: 1px solid var(--border);
}

.accordion summary {
  position: relative;
  padding: 24px 48px 24px 0;
  font-family: var(--serif);
  font-size: 23px;
  cursor: pointer;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  position: absolute;
  top: 25px;
  right: 4px;
  color: var(--ocean);
  content: '+';
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 300;
}

.accordion details[open] summary::after {
  content: '−';
}

.accordion details p {
  margin: -8px 0 25px;
  padding-right: 55px;
  color: var(--muted);
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 690px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
  text-align: center;
}

.final-cta > img,
.final-cta__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-cta > img {
  object-fit: cover;
}

.final-cta__shade {
  background: rgba(7, 25, 32, 0.58);
}

.final-cta__content {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-size: clamp(58px, 8vw, 110px);
}

.final-cta__content > p:not(.eyebrow) {
  margin: 22px 0 31px;
  font-size: 20px;
}

.site-footer {
  padding: 80px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink-deep);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 54px;
}

.brand--footer {
  color: var(--white);
}

.site-footer__grid > div:first-child p {
  max-width: 310px;
  font-size: 14px;
}

.site-footer h2 {
  margin: 2px 0 19px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin: 8px 0;
}

.site-footer a {
  text-decoration: none;
}

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

.site-footer__bottom {
  display: flex;
  margin-top: 66px;
  padding-top: 22px;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.content-shell {
  min-height: 70vh;
  padding-top: 160px;
}

.entry {
  max-width: 790px;
}

.entry h1 {
  margin-bottom: 40px;
}

.entry a {
  color: var(--ocean);
}

@media (max-width: 980px) {
  .site-header__inner {
    min-height: 72px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border: 0;
    color: inherit;
    background: transparent;
    font-size: 12px;
    font-weight: 750;
  }

  .nav-toggle__lines,
  .nav-toggle__lines::before,
  .nav-toggle__lines::after {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
  }

  .nav-toggle__lines {
    position: relative;
  }

  .nav-toggle__lines::before,
  .nav-toggle__lines::after {
    position: absolute;
    left: 0;
    content: '';
  }

  .nav-toggle__lines::before { top: -6px; }
  .nav-toggle__lines::after { top: 6px; }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    height: calc(100dvh - 72px);
    padding: 50px 24px;
    flex-direction: column;
    align-items: stretch;
    color: var(--ink);
    background: var(--paper);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav__list a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-family: var(--serif);
    font-size: 27px;
    font-weight: 400;
  }

  .site-nav .button {
    margin-top: 20px;
  }

  .site-nav .language-switcher {
    align-self: flex-start;
    margin-top: 20px;
  }

  .hero__facts {
    width: 100%;
  }

  .hero__content {
    padding-bottom: 180px;
  }

  .section-heading--booking,
  .section-heading--row,
  .intro-grid,
  .amenities-layout,
  .local-layout,
  .social-proof__inner,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .booking-form label:nth-child(2),
  .booking-form label:nth-child(4) {
    border-right: 0;
  }

  .booking-form .button {
    min-height: 60px;
    grid-column: 1 / -1;
    margin-top: 10px;
  }

  .feature-cards article {
    padding: 30px;
  }

  .stay-cards article {
    padding: 32px;
  }

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

  .coast-section {
    grid-template-columns: 1fr;
  }

  .coast-section__content {
    max-width: none;
  }

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

  .site-footer__grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  body {
    font-size: 16px;
  }

  .brand__place {
    display: none;
  }

  .brand__logo {
    width: 50px;
    height: 38px;
  }

  .brand__name {
    font-size: 27px;
  }

  .hero {
    min-height: 820px;
  }

  .hero__shade {
    background: linear-gradient(0deg, rgba(7, 25, 32, 0.9) 0%, rgba(7, 25, 32, 0.54) 64%, rgba(7, 25, 32, 0.32) 100%);
  }

  .hero__content {
    padding-top: 140px;
    padding-bottom: 250px;
  }

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

  .hero__lede {
    font-size: 18px;
  }

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

  .hero__facts div {
    min-height: 84px;
    padding: 14px 20px;
    border-top: 1px solid var(--border);
  }

  .hero__facts strong {
    font-size: 26px;
  }

  .booking-form {
    padding: 8px;
    grid-template-columns: 1fr;
  }

  .booking-form label,
  .booking-form label:nth-child(2),
  .booking-form label:nth-child(4) {
    padding: 12px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

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

  .feature-cards article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .feature-cards article:last-child {
    border-bottom: 0;
  }

  .feature-cards h3 {
    margin-top: 26px;
  }

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

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

  .stay-cards article,
  .stay-cards article:first-child,
  .stay-cards article:last-child {
    padding: 32px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

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

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

  .local-groups article {
    min-height: 0;
  }

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

  .gallery-tabs {
    margin-top: 32px;
  }

  .gallery-card--large,
  .gallery-card--wide {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-card:first-child {
    min-height: 420px;
  }

  .gallery-card__expand {
    opacity: 1;
    transform: none;
  }

  .gallery-lightbox {
    width: calc(100% - 20px);
    height: calc(100dvh - 30px);
  }

  .gallery-lightbox[open] {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
  }

  .gallery-lightbox__nav {
    width: 40px;
    height: 58px;
    font-size: 42px;
  }

  .gallery-lightbox figure img {
    max-height: calc(100dvh - 110px);
  }

  .gallery-lightbox__close {
    top: 10px;
    right: 10px;
  }

  .coast-section__image {
    min-height: 430px;
  }

  .coast-section__content {
    padding: 68px 24px;
  }

  .travel-times li {
    grid-template-columns: 105px 1fr;
  }

  .rating-card {
    padding: 44px 20px;
  }

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

  .site-footer__grid > div:first-child {
    grid-column: 1 / -1;
  }

  .site-footer__grid > div:last-child {
    grid-column: auto;
  }

  .site-footer__bottom {
    flex-direction: column;
  }
}

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

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

.site-nav__guide-link {
  position: relative;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.guides-page,
.guide-single { background: var(--foam); }

.guides-hero,
.guide-single__header {
  padding: 180px 0 92px;
  background: linear-gradient(135deg, var(--sand), var(--paper));
}

.guides-hero__inner,
.guide-single__header-inner { max-width: 900px; }

.guides-hero h1,
.guide-single h1 {
  max-width: 900px;
  margin: 10px 0 20px;
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 400;
  line-height: 0.98;
}

.guides-hero p:last-child,
.guide-single__lede {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.guide-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 16px 45px rgba(13, 39, 49, 0.08);
}

.guide-card__image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand);
}

.guide-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.guide-card:hover .guide-card__image img { transform: scale(1.035); }
.guide-card__body { padding: 28px; }

.guide-card__meta {
  margin: 0 0 10px;
  color: var(--ocean);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.guide-card h2,
.guide-card h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.08;
}

.guide-card h2 a,
.guide-card h3 a { text-decoration: none; }
.guide-card__body > p:not(.guide-card__meta) { color: var(--muted); }
.home-guides { background: var(--foam); }
.guides-grid--home { margin-top: 48px; }

.guide-back {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--ocean);
  font-weight: 700;
  text-decoration: none;
}

.guide-single__image {
  max-width: 1040px;
  margin-top: 70px;
}

.guide-single__image img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.guide-single__content {
  max-width: 780px;
  padding: 72px 0 108px;
  font-size: 18px;
}

.guide-single__content h2 {
  margin: 54px 0 16px;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
}

.guide-single__content a { color: var(--ocean); }

.guide-cta {
  padding: 62px 0;
  color: var(--white);
  background: var(--ink-deep);
}

.guide-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.guide-cta h2 {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
}

.guide-pagination { margin-top: 50px; }

@media (max-width: 960px) {
  .guides-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-nav__guide-link {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-family: var(--serif);
    font-size: 27px;
    font-weight: 400;
  }
}

@media (max-width: 680px) {
  .guides-hero,
  .guide-single__header { padding: 140px 0 70px; }
  .guides-grid { grid-template-columns: 1fr; }
  .guide-cta__inner { align-items: flex-start; flex-direction: column; }
}
