:root {
  --ink: #162824;
  --muted: #64726e;
  --paper: #fffaf1;
  --shell: #f3eadc;
  --reef: #0b6e69;
  --reef-dark: #084c49;
  --clay: #be623c;
  --sun: #eeb75d;
  --line: rgba(22, 40, 36, .14);
  --shadow: 0 18px 50px rgba(41, 45, 39, .18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Source Sans 3", sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 250, 241, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid var(--reef);
  border-radius: 50%;
  color: var(--reef-dark);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1;
}

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

.site-nav a {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(11, 110, 105, .1);
  color: var(--reef-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero,
.page-hero {
  position: relative;
  min-height: 86svh;
  display: flex;
  align-items: flex-end;
  padding: 130px clamp(20px, 5vw, 72px) 72px;
  background-image: linear-gradient(90deg, rgba(10, 18, 17, .72), rgba(10, 18, 17, .18)), var(--hero-image);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.compact-hero {
  min-height: 52svh;
}

.hero-inner {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  line-height: 1.03;
}

h1 {
  max-width: 820px;
  font-size: clamp(3rem, 8vw, 7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4.1rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 1.22rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

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

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

.button.glass {
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .12);
  color: #fff;
  backdrop-filter: blur(12px);
}

.section {
  padding: clamp(54px, 8vw, 108px) clamp(20px, 5vw, 72px);
}

.section.narrow {
  max-width: 900px;
  margin: 0 auto;
}

.tinted,
.amenity-band {
  background: var(--shell);
}

.intro-grid,
.split-feature,
.contact-layout,
.calendar-header,
.quote-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

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

.feature-copy p,
.section-heading p,
.quote-strip p,
.muted {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--reef);
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.image-stack img,
.feature-image {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-stack img:nth-child(2) {
  transform: translateY(42px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.card-grid,
.gallery-grid,
.food-list,
.guide-layout {
  display: grid;
  gap: 18px;
}

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

.photo-card,
.food-card,
.guide-layout article,
.faq-item,
.month-card,
.quote-form,
.contact-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, .76);
}

.photo-card {
  overflow: hidden;
}

.photo-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.photo-card h3,
.photo-card p,
.food-card,
.guide-layout article,
.faq-item {
  padding: 0 22px;
}

.photo-card h3 {
  padding-top: 22px;
}

.photo-card p {
  color: var(--muted);
  padding-bottom: 24px;
}

.quote-strip {
  background: #e8d0af;
}

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

.gallery-item {
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: none;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .22s ease;
}

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

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

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.dot {
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 6px;
  border-radius: 50%;
}

.dot.available,
.day.is-open {
  background: #d7ead5;
  color: #195e39;
}

.dot.unavailable,
.day.is-booked {
  background: #f1c9bb;
  color: #8a321e;
}

.notice,
.success,
.form-errors {
  padding: 14px 16px;
  border-radius: var(--radius);
}

.notice {
  background: #fff2c9;
}

.success {
  background: #d7ead5;
  color: #195e39;
}

.form-errors {
  background: #f1c9bb;
  color: #742818;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.month-card {
  padding: 18px;
}

.month-card h3 {
  margin-bottom: 16px;
}

.weekdays,
.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.weekdays {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.day {
  display: grid;
  min-height: 34px;
  place-items: center;
  border-radius: 6px;
  font-weight: 800;
}

.day.empty {
  background: transparent;
}

.quote-form,
.contact-note {
  padding: clamp(22px, 4vw, 36px);
}

.quote-form {
  display: grid;
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.price-note {
  font-weight: 800;
  color: var(--clay);
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-item,
.guide-layout article,
.food-card {
  padding: 24px;
}

.faq-item p,
.guide-layout p,
.food-card p {
  color: var(--muted);
}

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

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(7, 18, 17, .86);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-height: 88vh;
  border-radius: var(--radius);
}

.lightbox button {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 1020px) {
  .card-grid.three,
  .calendar-grid,
  .guide-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 73px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

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

  .hero,
  .page-hero {
    min-height: 72svh;
    padding: 110px 20px 48px;
  }

  .compact-hero {
    min-height: 46svh;
  }

  .intro-grid,
  .split-feature,
  .contact-layout,
  .calendar-header,
  .quote-strip,
  .form-row {
    grid-template-columns: 1fr;
  }

  .image-stack,
  .card-grid.three,
  .calendar-grid,
  .gallery-grid,
  .guide-layout,
  .food-list {
    grid-template-columns: 1fr;
  }

  .image-stack img:nth-child(2) {
    transform: none;
  }

  .image-stack img,
  .feature-image {
    height: 300px;
  }

  .legend {
    justify-content: flex-start;
  }

  .site-footer {
    display: grid;
  }
}

