:root {
  --paper: #f3efe7;
  --paper-deep: #e8e0d2;
  --ink: #171714;
  --muted: #69655e;
  --gold: #a47e3b;
  --gold-light: #d1b77e;
  --white: #fffdf8;
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

a {
  color: inherit;
}

button {
  color: inherit;
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  height: 110px;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
}

.wordmark span {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.wordmark small {
  margin-left: 0.45rem;
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.6vw, 2.8rem);
}

.site-nav a {
  position: relative;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease;
}

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

.nav-cta {
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--ink);
  transition: 200ms ease;
}

.nav-cta:hover {
  color: var(--white);
  background: var(--ink);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(880px, 100vh);
  grid-template-columns: 45% 55%;
  padding-top: 110px;
}

.hero::before {
  position: absolute;
  top: 22%;
  left: -7rem;
  width: 21rem;
  height: 21rem;
  border: 2px solid rgb(164 126 59 / 25%);
  border-radius: 50%;
  content: "";
}

.hero-copy {
  z-index: 1;
  display: flex;
  max-width: 42rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 5vw 4vw 9rem;
}

.eyebrow,
.section-label {
  margin: 0 0 2rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 7.3vw, 7.7rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1;
}

.hero-intro {
  max-width: 30rem;
  margin: 2.25rem 0 1.7rem;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  line-height: 1.45;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid var(--gold);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  font-size: 1rem;
  transition: transform 200ms ease;
}

.text-link:hover span {
  transform: translate(0.2rem, 0.2rem);
}

.hero-image {
  position: relative;
  min-height: 620px;
  margin: 0 0 5rem;
  overflow: hidden;
}

.hero-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(23 23 20 / 10%), transparent 30%);
  content: "";
  pointer-events: none;
}

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

.image-note {
  position: absolute;
  right: 1.5rem;
  bottom: 1rem;
  z-index: 1;
  margin: 0;
  color: var(--white);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-shadow: 0 1px 3px rgb(0 0 0 / 35%);
  text-transform: uppercase;
}

.hero-facts {
  position: absolute;
  bottom: 0;
  left: 4vw;
  z-index: 2;
  display: grid;
  width: 50%;
  min-width: 550px;
  grid-template-columns: repeat(3, 1fr);
  color: var(--white);
  background: var(--ink);
}

.hero-facts div {
  display: flex;
  min-height: 125px;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 2rem;
  border-right: 1px solid rgb(255 255 255 / 16%);
}

.hero-facts strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1;
}

.hero-facts span {
  margin-top: 0.4rem;
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-pad {
  padding: clamp(6rem, 11vw, 10rem) 7vw;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

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

.section-label::after {
  width: 3rem;
  height: 1px;
  background: currentcolor;
  content: "";
  opacity: 0.6;
}

.story {
  display: grid;
  grid-template-columns: 25% 75%;
  padding-top: clamp(9rem, 14vw, 13rem);
}

.story-copy {
  max-width: 67rem;
}

.lead {
  max-width: 64rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.2vw, 4.8rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.story-columns {
  display: grid;
  max-width: 48rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin: 4rem 0 0 auto;
  color: var(--muted);
}

.story-columns p {
  margin: 0;
}

.stay {
  display: grid;
  min-height: 840px;
  grid-template-columns: 52% 48%;
  padding: 0;
  color: var(--white);
  background: var(--ink);
}

.stay-image {
  min-height: 680px;
}

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

.stay-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7vw;
}

.section-label.light span {
  color: rgb(255 255 255 / 55%);
}

.stay h2,
.location h2,
.inquire h2,
.gallery h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6.2vw, 6.8rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1;
}

.stay-copy > p:not(.stay-note) {
  max-width: 31rem;
  margin: 2.4rem 0 2rem;
  color: rgb(255 255 255 / 66%);
}

.feature-list {
  max-width: 31rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgb(255 255 255 / 16%);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.feature-list li:last-child {
  border-bottom: 1px solid rgb(255 255 255 / 16%);
}

.feature-list span {
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}

.stay-note {
  margin: 2rem 0 0;
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.gallery-heading {
  display: grid;
  grid-template-columns: 25% 1fr auto;
  align-items: end;
  margin-bottom: 4rem;
}

.gallery-heading .section-label {
  align-self: start;
}

.gallery-heading h2 {
  font-size: clamp(3.4rem, 5.5vw, 5.8rem);
}

.gallery-heading > p {
  max-width: 14rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.gallery-grid {
  display: grid;
  grid-auto-rows: minmax(230px, 23vw);
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--paper-deep);
  cursor: zoom-in;
}

.gallery-item::after {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 70%);
  border-radius: 50%;
  color: white;
  background: rgb(0 0 0 / 18%);
  content: "+";
  opacity: 0;
  transition: opacity 200ms ease;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

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

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

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

.gallery-more {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  cursor: pointer;
  text-transform: uppercase;
}

.gallery-more span {
  color: var(--gold);
  font-size: 1.4rem;
}

.gallery-extra {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1rem;
}

.gallery-extra .gallery-item {
  aspect-ratio: 3 / 2;
}

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

.location {
  display: grid;
  grid-template-columns: 42% 58%;
  padding: 0;
  color: var(--white);
  background: var(--ink);
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(5rem, 8vw, 9rem) 6vw;
}

.location-kicker {
  margin: 0 0 2.5rem;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.35;
}

.location h2 {
  font-size: clamp(3rem, 5vw, 5.6rem);
}

.location-copy > p:not(.location-kicker, .location-footnote) {
  max-width: 30rem;
  margin: 2.5rem 0;
  color: rgb(255 255 255 / 65%);
}

.location-footnote {
  margin: 1rem 0 0;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-map {
  min-height: 720px;
  overflow: hidden;
}

.location-map img {
  height: 100%;
  object-fit: cover;
}

.inquire {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.inquire::before,
.inquire::after {
  position: absolute;
  width: 25rem;
  height: 25rem;
  border: 2px solid rgb(164 126 59 / 28%);
  border-radius: 50%;
  content: "";
}

.inquire::before {
  top: -13rem;
  left: -10rem;
}

.inquire::after {
  right: -11rem;
  bottom: -15rem;
}

.inquire h2 {
  position: relative;
  font-size: clamp(4rem, 7.5vw, 8rem);
}

.inquire > p:not(.eyebrow) {
  max-width: 37rem;
  margin: 2rem auto 2.5rem;
  color: var(--muted);
}

.inquire-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.button {
  display: inline-flex;
  min-width: 15rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem 1.3rem;
  color: var(--white);
  background: var(--ink);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 200ms ease;
}

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

.button-disabled {
  cursor: default;
}

.button-disabled:hover {
  background: var(--ink);
}

.inquire-actions > span:not(.button) {
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  padding: 3rem 4vw;
  border-top: 1px solid rgb(23 23 20 / 15%);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p:last-child {
  text-align: right;
}

.footer-mark {
  justify-self: center;
  grid-column: 2;
  grid-row: 1;
}

.site-footer p:first-of-type {
  grid-column: 1;
  grid-row: 1;
}

.footer-link {
  text-underline-offset: 0.22rem;
}

.site-nav a[aria-current="page"] {
  color: var(--gold);
}

.guide-hero {
  display: grid;
  min-height: 760px;
  grid-template-columns: 48% 52%;
  padding-top: 110px;
}

.guide-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 5rem 6vw 7rem;
}

.breadcrumbs {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 4rem;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.breadcrumbs a {
  text-underline-offset: 0.25rem;
}

.guide-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 7.2rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1;
}

.guide-intro {
  max-width: 32rem;
  margin: 2.2rem 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  line-height: 1.45;
}

.guide-hero-image {
  position: relative;
  min-height: 620px;
  margin-bottom: 4rem;
  overflow: hidden;
}

.guide-hero-image img {
  height: 100%;
  object-fit: cover;
}

.guide-hero-image p {
  position: absolute;
  right: 1.5rem;
  bottom: 1rem;
  margin: 0;
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-shadow: 0 1px 3px rgb(0 0 0 / 40%);
  text-transform: uppercase;
}

.guide-opening {
  display: grid;
  grid-template-columns: 22% 78%;
}

.guide-opening .lead {
  max-width: 68rem;
}

.place-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 5rem;
  background: rgb(23 23 20 / 18%);
}

.place-grid article {
  min-height: 330px;
  padding: 2.5rem;
  background: var(--paper);
}

.place-number {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.place-grid h2 {
  margin: 3rem 0 1rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1;
}

.place-grid p {
  color: var(--muted);
  font-size: 0.9rem;
}

.guide-link {
  display: inline-flex;
  gap: 0.6rem;
  margin-top: 0.6rem;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-underline-offset: 0.3rem;
  text-transform: uppercase;
}

.easy-day {
  display: grid;
  grid-template-columns: 44% 56%;
  color: var(--white);
  background: var(--ink);
}

.easy-day-title {
  display: flex;
  min-height: 650px;
  flex-direction: column;
  justify-content: center;
  padding: 7vw;
  border-right: 1px solid rgb(255 255 255 / 15%);
}

.easy-day h2,
.guide-food h2,
.go-further h2,
.island-care h2,
.guide-return h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6vw, 6.5rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1;
}

.day-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 7vw;
  margin: 0;
  list-style: none;
}

.day-list li {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 2rem;
  padding: 1.6rem 0;
  border-top: 1px solid rgb(255 255 255 / 17%);
}

.day-list li:last-child {
  border-bottom: 1px solid rgb(255 255 255 / 17%);
}

.day-list span {
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.day-list p {
  margin: 0;
  color: rgb(255 255 255 / 68%);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.guide-food {
  display: grid;
  grid-template-columns: 22% 78%;
}

.food-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
}

.food-heading p {
  max-width: 19rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.food-list {
  grid-column: 2;
  margin-top: 4rem;
  border-top: 1px solid var(--ink);
}

.food-list a {
  display: grid;
  grid-template-columns: 14rem 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgb(23 23 20 / 20%);
  text-decoration: none;
  transition: color 180ms ease, padding 180ms ease;
}

.food-list a:hover {
  padding-right: 0.6rem;
  padding-left: 0.6rem;
  color: var(--gold);
}

.food-list span {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.food-list strong {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
  font-weight: 300;
}

.food-list i {
  font-style: normal;
}

.go-further {
  display: grid;
  grid-template-columns: 42% 58%;
  background: var(--paper-deep);
}

.go-further-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vw 6vw;
}

.go-further-copy .section-label {
  color: var(--gold);
}

.go-further-copy > p {
  max-width: 28rem;
  margin: 2rem 0 0;
  color: var(--muted);
}

.adventure-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--ink);
}

.adventure-list article {
  min-height: 330px;
  padding: 3rem;
  border-right: 1px solid rgb(255 255 255 / 14%);
  border-bottom: 1px solid rgb(255 255 255 / 14%);
  color: var(--white);
}

.adventure-list span {
  color: var(--gold-light);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.adventure-list h3 {
  margin: 3.8rem 0 1rem;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.05;
}

.adventure-list p {
  margin: 0;
  color: rgb(255 255 255 / 62%);
  font-size: 0.85rem;
}

.island-care {
  display: grid;
  grid-template-columns: 22% 78%;
}

.care-layout h2 {
  max-width: 52rem;
}

.care-layout ul {
  max-width: 48rem;
  padding: 0;
  margin: 4rem 0 0 auto;
  list-style: none;
}

.care-layout li {
  padding: 1.1rem 0;
  border-top: 1px solid rgb(23 23 20 / 20%);
  color: var(--muted);
}

.care-layout li::before {
  margin-right: 1rem;
  color: var(--gold);
  content: "—";
}

.guide-return {
  padding: clamp(6rem, 11vw, 10rem) 7vw;
  color: var(--white);
  background: var(--ink);
  text-align: center;
}

.guide-return h2 {
  margin-bottom: 3rem;
}

.guide-return .button {
  color: var(--ink);
  background: var(--gold-light);
}

.guide-return .button:hover {
  background: var(--white);
}

.lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  padding: 2rem 5rem;
  border: 0;
  color: white;
  background: rgb(18 18 16 / 96%);
}

.lightbox::backdrop {
  background: rgb(18 18 16 / 80%);
}

.lightbox[open] {
  display: grid;
  grid-template-columns: 3rem 1fr 3rem;
  align-items: center;
}

.lightbox figure {
  display: flex;
  max-width: min(78vw, 1200px);
  max-height: 88vh;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  margin: 0;
}

.lightbox img {
  width: auto;
  max-width: 100%;
  max-height: 80vh;
}

.lightbox figcaption {
  align-self: flex-start;
  margin-top: 0.8rem;
  color: rgb(255 255 255 / 70%);
  font-size: 0.72rem;
}

.lightbox-close,
.lightbox-nav {
  padding: 0;
  border: 0;
  color: white;
  background: none;
  cursor: pointer;
}

.lightbox-close {
  position: fixed;
  top: 1.2rem;
  right: 1.5rem;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
}

.lightbox-nav {
  font-size: 1.5rem;
}

@media (max-width: 1000px) {
  .site-header {
    height: 88px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: flex;
    width: 2.8rem;
    height: 2.8rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0;
    border: 1px solid var(--ink);
    background: transparent;
  }

  .menu-toggle span:not(.sr-only) {
    width: 1rem;
    height: 1px;
    background: var(--ink);
    transition: 200ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(0.2rem) rotate(45deg);
  }

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

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 10vw;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: 250ms ease;
  }

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

  .site-nav a {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 7vw, 4rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    text-transform: none;
  }

  .nav-cta {
    padding: 0;
    border: 0;
    color: var(--gold);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 88px;
  }

  .hero-copy {
    padding: 7rem 7vw 4rem;
  }

  .hero-image {
    height: 70vw;
    min-height: 480px;
    margin: 0;
  }

  .hero-facts {
    position: relative;
    bottom: auto;
    left: auto;
    width: calc(100% - 8vw);
    min-width: 0;
    margin: -3rem 4vw 0;
  }

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

  .story .section-label {
    margin-bottom: 4rem;
  }

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

  .stay-image {
    min-height: 600px;
  }

  .stay-copy {
    padding: 7rem 8vw;
  }

  .gallery-heading {
    grid-template-columns: 1fr auto;
  }

  .gallery-heading .section-label {
    grid-column: 1 / -1;
    margin-bottom: 3rem;
  }

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

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

  .guide-hero {
    grid-template-columns: 1fr;
    padding-top: 88px;
  }

  .guide-hero-copy {
    padding: 7rem 7vw 5rem;
  }

  .guide-hero-image {
    height: 70vw;
    min-height: 500px;
    margin: 0;
  }

  .guide-opening,
  .guide-food,
  .island-care {
    grid-template-columns: 1fr;
  }

  .guide-opening > .section-label,
  .guide-food > .section-label,
  .island-care > .section-label {
    margin-bottom: 3rem;
  }

  .food-list {
    grid-column: auto;
  }

  .easy-day,
  .go-further {
    grid-template-columns: 1fr;
  }

  .easy-day-title {
    min-height: 480px;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 15%);
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding: 0 5vw;
  }

  .wordmark span {
    font-size: 1.7rem;
  }

  .hero-copy {
    padding: 5rem 6vw 3rem;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 17vw, 5rem);
  }

  .hero-image {
    height: 82vw;
    min-height: 340px;
  }

  .hero-facts {
    width: calc(100% - 2rem);
    margin: -1.5rem 1rem 0;
  }

  .hero-facts div {
    min-height: 95px;
    padding: 1rem;
  }

  .hero-facts strong {
    font-size: 2rem;
  }

  .hero-facts span {
    font-size: 0.54rem;
    line-height: 1.35;
  }

  .section-pad {
    padding: 5.5rem 6vw;
  }

  .story {
    padding-top: 7rem;
  }

  .lead {
    font-size: 2.55rem;
  }

  .story-columns {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 2.5rem;
  }

  .stay-image {
    min-height: 420px;
  }

  .stay-copy {
    padding: 5.5rem 7vw;
  }

  .stay h2,
  .location h2,
  .gallery h2 {
    font-size: 3.5rem;
  }

  .gallery-heading {
    display: block;
  }

  .gallery-heading > p {
    margin-top: 1.2rem;
  }

  .gallery-grid {
    grid-auto-rows: 64vw;
    grid-template-columns: 1fr;
  }

  .gallery-wide {
    grid-column: auto;
  }

  .gallery-tall {
    grid-row: auto;
  }

  .gallery-extra {
    grid-template-columns: 1fr;
  }

  .location-copy {
    padding: 5.5rem 7vw;
  }

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

  .inquire h2 {
    font-size: 4rem;
  }

  .inquire-actions {
    flex-direction: column;
    gap: 1.2rem;
  }

  .site-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }

  .site-footer p:last-child {
    text-align: center;
  }

  .footer-mark {
    order: -1;
  }

  .guide-hero-copy {
    padding: 5rem 6vw 4rem;
  }

  .breadcrumbs {
    margin-bottom: 3rem;
  }

  .guide-hero h1 {
    font-size: clamp(3.7rem, 17vw, 5rem);
  }

  .guide-hero-image {
    height: 82vw;
    min-height: 340px;
  }

  .place-grid {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }

  .place-grid article {
    min-height: 0;
    padding: 2rem;
  }

  .place-grid h2 {
    margin-top: 2rem;
  }

  .easy-day-title {
    min-height: 400px;
    padding: 5.5rem 7vw;
  }

  .easy-day h2,
  .guide-food h2,
  .go-further h2,
  .island-care h2,
  .guide-return h2 {
    font-size: 3.5rem;
  }

  .day-list {
    padding: 3.5rem 7vw;
  }

  .day-list li {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .food-heading {
    display: block;
  }

  .food-heading p {
    margin-top: 1.5rem;
  }

  .food-list a {
    grid-template-columns: 1fr auto;
    gap: 0.4rem 1rem;
  }

  .food-list span {
    grid-column: 1 / -1;
  }

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

  .adventure-list article {
    min-height: 0;
    padding: 2.5rem 7vw;
  }

  .adventure-list h3 {
    margin-top: 2.5rem;
  }

  .go-further-copy {
    padding: 5.5rem 7vw;
  }

  .care-layout ul {
    margin-top: 3rem;
  }

  .guide-return {
    padding: 6rem 7vw;
  }

  .lightbox {
    padding: 3rem 1rem 1rem;
  }

  .lightbox[open] {
    grid-template-columns: 2rem 1fr 2rem;
  }

  .lightbox figure {
    max-width: 78vw;
  }
}

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

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