:root {
  --ink: #143431;
  --muted: #5f6f68;
  --paper: #fbf8ef;
  --shell: #f0e5d1;
  --sand: #dcbf86;
  --sun: #f2b25f;
  --sea: #1a6466;
  --deep: #092524;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(12, 35, 34, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-200%);
  background: var(--white);
  padding: 0.6rem 0.8rem;
}

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

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 3vw, 2.5rem);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(8, 25, 24, 0.68), rgba(8, 25, 24, 0));
}

.brand,
.site-header nav {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(9, 37, 36, 0.55);
  font-size: 0.78rem;
}

.site-header nav a {
  padding: 0.45rem 0.55rem;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--deep);
}

.hero picture,
.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 25, 24, 0.74), rgba(8, 25, 24, 0.23) 58%, rgba(8, 25, 24, 0.12)),
    linear-gradient(0deg, rgba(8, 25, 24, 0.66), rgba(8, 25, 24, 0) 50%);
}

.hero-content {
  position: relative;
  max-width: 820px;
  padding: 9rem clamp(1.25rem, 6vw, 5rem) 6rem;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 8.25rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 850;
}

.button.primary {
  background: var(--sun);
  color: var(--deep);
}

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

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--deep);
  color: var(--white);
}

.quick-facts div {
  min-height: 8.5rem;
  padding: 1.4rem clamp(1rem, 2vw, 2rem);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.quick-facts strong,
.quick-facts span {
  display: block;
}

.quick-facts strong {
  margin-bottom: 0.4rem;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
}

.quick-facts span {
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5rem);
}

.intro,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: start;
}

.section-heading {
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr);
  grid-column: 1 / -1;
  margin-bottom: 2rem;
}

.section-heading h2 {
  max-width: 940px;
}

.intro-copy {
  columns: 2 18rem;
  column-gap: 2rem;
  color: var(--muted);
  font-size: 1.06rem;
}

.image-feature,
.do-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 1rem;
  padding: 0 clamp(1.25rem, 5vw, 5rem);
}

.feature-card,
.photo-grid figure,
.do-layout figure {
  margin: 0;
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-card.wide img {
  aspect-ratio: 16 / 10;
}

figcaption {
  padding: 0.85rem 1rem 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.photo-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.photo-button:focus-visible,
.button:focus-visible,
.site-header a:focus-visible,
.lightbox-close:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.stay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--sea);
  padding-top: 0;
  padding-bottom: 0;
}

.stay-card {
  padding: clamp(1.4rem, 4vw, 2.6rem);
  background: var(--paper);
}

.number {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--sea);
  font-weight: 900;
}

.stay-card p,
.do-list p,
.practical-grid p,
.booking-content p {
  color: var(--muted);
}

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

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.photo-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.photo-grid .span-2 {
  grid-column: span 2;
}

.photo-grid .span-2 img {
  aspect-ratio: 2.05 / 1;
}

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

.do-section .section-heading h2 {
  color: var(--white);
}

.do-layout {
  padding: 0;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.do-list {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.do-list article {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.06);
}

.do-list p {
  color: rgba(255, 255, 255, 0.7);
}

.do-layout figure {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.do-layout img {
  height: 100%;
  min-height: 30rem;
  object-fit: cover;
}

.do-layout figcaption {
  color: rgba(255, 255, 255, 0.72);
}

.practical-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--sand);
}

.practical-grid > div {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--paper);
}

.booking {
  position: relative;
  min-height: 34rem;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--deep);
}

.booking img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
}

.booking::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 37, 36, 0.9), rgba(9, 37, 36, 0.3));
}

.booking-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5rem);
  color: var(--white);
}

.booking-content p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem clamp(1.25rem, 5vw, 5rem);
  background: var(--deep);
  color: var(--white);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span,
.footer-links a {
  color: rgba(255, 255, 255, 0.68);
}

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

.lightbox {
  width: min(94vw, 1180px);
  max-height: 92vh;
  padding: 0;
  border: 0;
  background: var(--deep);
  color: var(--white);
}

.lightbox::backdrop {
  background: rgba(3, 12, 12, 0.84);
}

.lightbox img {
  max-height: 78vh;
  object-fit: contain;
  background: #000;
}

.lightbox p {
  margin: 0;
  padding: 0.9rem 1rem 1rem;
  color: rgba(255, 255, 255, 0.82);
}

.lightbox-close {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(9, 37, 36, 0.86);
  color: var(--white);
  padding: 0.55rem 0.75rem;
  font-weight: 800;
}

@media (max-width: 880px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .site-header nav {
    gap: 0.15rem;
  }

  .site-header nav a {
    font-size: 0.84rem;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    padding-top: 7rem;
    padding-bottom: 4rem;
  }

  .quick-facts,
  .intro,
  .section-heading,
  .image-feature,
  .stay-grid,
  .do-layout,
  .practical-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .quick-facts div {
    min-height: 7.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

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

  .do-layout img {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 580px) {
  .brand span:last-child {
    max-width: 9.5rem;
    line-height: 1.1;
  }

  .site-header {
    padding-inline: 0.85rem;
  }

  .site-header nav a {
    padding-inline: 0.28rem;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 5rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .photo-grid .span-2 {
    grid-column: span 1;
  }

  .photo-grid .span-2 img {
    aspect-ratio: 1 / 1;
  }
}
