:root {
  --ink: #15383d;
  --ink-soft: #456166;
  --teal: #075762;
  --teal-dark: #043f48;
  --sea: #dff2f3;
  --sea-deep: #9dd8dc;
  --sand: #f6efe4;
  --coral: #c94d3b;
  --coral-dark: #a9362a;
  --white: #ffffff;
  --line: #c9dcdd;
  --shadow: 0 18px 50px rgb(7 87 98 / 12%);
  --radius: 1.25rem;
  --max: 72rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--teal);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--coral-dark);
}

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

button,
.button {
  min-height: 2.9rem;
}

h1,
h2,
h3,
.brand-name {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.1rem;
  font-size: clamp(2.65rem, 7vw, 5.7rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
}

h3 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
}

p {
  margin-top: 0;
}

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 5rem;
  padding: 0.7rem max(1.25rem, calc((100vw - var(--max)) / 2));
  background: rgb(255 255 255 / 94%);
  border-bottom: 1px solid rgb(201 220 221 / 70%);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--teal-dark);
  text-decoration: none;
}

.brand img {
  width: 2.45rem;
  height: 2.45rem;
}

.brand-name {
  font-size: 1.55rem;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.75rem, 2.2vw, 1.8rem);
}

.site-nav a {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 0.16rem;
  text-underline-offset: 0.4rem;
}

.menu-toggle {
  display: none;
  width: 3rem;
  padding: 0;
  background: var(--white);
  color: var(--teal-dark);
  border: 1px solid var(--teal);
  border-radius: 0.65rem;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.15rem;
  background: var(--coral);
  color: var(--white);
  border: 1px solid var(--coral);
  border-radius: 0.5rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.header-cta:hover,
.button:hover {
  background: var(--coral-dark);
  color: var(--white);
  border-color: var(--coral-dark);
  transform: translateY(-1px);
}

.button-secondary {
  background: transparent;
  color: var(--teal-dark);
  border-color: var(--teal);
}

.button-secondary:hover {
  background: var(--teal);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: min(46rem, calc(100vh - 5rem));
  overflow: hidden;
  background: var(--sea);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(5rem, 12vw, 9rem) 1.25rem;
}

.hero-copy {
  max-width: 46rem;
  padding: clamp(1.5rem, 3vw, 2.35rem);
  background: rgb(255 255 255 / 92%);
  border: 1px solid rgb(201 220 221 / 78%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero h1 {
  max-width: 14ch;
  font-size: clamp(2.65rem, 5vw, 4.4rem);
}

.hero-content p {
  max-width: 39rem;
  margin-bottom: 1.75rem;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 2.4vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.page-hero {
  padding: clamp(4rem, 9vw, 7rem) 1.25rem;
  background: var(--sea);
}

.page-hero-inner,
.section {
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.page-hero p {
  max-width: 46rem;
  color: var(--ink-soft);
  font-size: 1.2rem;
}

.answer-first {
  position: relative;
  z-index: 2;
  max-width: 64rem;
  margin: -2.4rem auto 0;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 0.35rem solid var(--coral);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

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

.section-narrow {
  max-width: 54rem;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2.4rem;
}

.section-heading p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.band {
  background: var(--sand);
}

.band-sea {
  background: var(--sea);
}

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

.band-dark p,
.band-dark a:not(.button) {
  color: #dff2f3;
}

.fact-grid,
.amenity-grid,
.steps,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

.fact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fact,
.amenity,
.step {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
}

.fact strong,
.amenity strong,
.step strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--teal-dark);
}

.amenity-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.amenity {
  min-height: 9.5rem;
}

.check-list {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--coral);
  font-weight: 800;
}

.photo-frame,
.photo-placeholder {
  overflow: hidden;
  min-height: 22rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.photo-placeholder {
  display: grid;
  place-items: center;
  padding: 2rem;
  background: var(--sand);
  border: 1px dashed var(--teal);
  color: var(--ink-soft);
  text-align: center;
}

.photo-placeholder strong {
  display: block;
  color: var(--teal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

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

.gallery-grid .photo-placeholder:nth-child(3n) {
  grid-column: 1 / -1;
}

figure {
  margin: 0;
}

figcaption {
  padding-top: 0.75rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  counter-reset: journey;
}

.step {
  counter-increment: journey;
}

.step::before {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1rem;
  content: counter(journey);
  background: var(--coral);
  color: var(--white);
  border-radius: 50%;
  font-weight: 800;
}

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

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

.faq summary {
  position: relative;
  padding: 1.2rem 2.5rem 1.2rem 0;
  color: var(--teal-dark);
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

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

.faq summary::after {
  position: absolute;
  right: 0.4rem;
  content: "+";
  color: var(--coral);
  font-size: 1.6rem;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 50rem;
  padding: 0 0 1.2rem;
  color: var(--ink-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

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

.field label {
  color: var(--teal-dark);
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  background: var(--white);
  color: var(--ink);
  border: 1px solid #89aaad;
  border-radius: 0.45rem;
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.turnstile-status,
.form-result {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--sea);
  border-left: 0.3rem solid var(--teal);
  border-radius: 0.4rem;
}

.form-result[hidden] {
  display: none;
}

.site-footer {
  padding: 3rem max(1.25rem, calc((100vw - var(--max)) / 2));
  background: var(--teal-dark);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}

.site-footer h2 {
  margin-bottom: 0.7rem;
  font-size: 2rem;
}

.site-footer a {
  display: block;
  margin-bottom: 0.45rem;
  color: #e8f8f8;
}

.footer-meta {
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgb(255 255 255 / 25%);
  color: #c5dddd;
  font-size: 0.88rem;
}

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

:focus-visible {
  outline: 0.2rem solid var(--coral);
  outline-offset: 0.2rem;
}

@media (max-width: 62rem) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .js .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .js .site-nav {
    display: none;
  }

  .js .site-nav[data-open="true"] {
    display: flex;
  }

  html:not(.js) .site-header {
    grid-template-columns: 1fr auto;
  }

  html:not(.js) .site-nav {
    position: static;
    grid-column: 1 / -1;
    flex-flow: row wrap;
    padding: 0.75rem 0 0;
    border: 0;
    box-shadow: none;
  }

  .header-cta {
    justify-self: end;
  }

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

@media (max-width: 46rem) {
  .site-header {
    gap: 0.65rem;
    min-height: 4.5rem;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .brand img {
    width: 2rem;
    height: 2rem;
  }

  .header-cta {
    padding: 0.65rem 0.75rem;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 44rem;
  }

  .hero-content {
    justify-content: flex-start;
    padding-top: 5.5rem;
  }

  .hero-copy {
    background: rgb(255 255 255 / 94%);
  }

  .answer-first {
    margin: -1.5rem 1rem 0;
  }

  .split,
  .fact-grid,
  .steps,
  .footer-grid,
  .form-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid .photo-placeholder:nth-child(3n),
  .field-full {
    grid-column: auto;
  }

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

  .amenity {
    min-height: auto;
  }

  .photo-frame,
  .photo-placeholder {
    min-height: 18rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
