:root {
  --sand-100: #fff6dc;
  --sand-200: #f6deb0;
  --sand-300: #f0c883;
  --sea-700: #0f5d73;
  --sea-600: #1a738a;
  --sea-500: #2e96b5;
  --sky-200: #dff3ff;
  --sun-300: #ffd667;
  --sun-400: #ffbe45;
  --ink-900: #1d2a2f;
  --ink-700: #33454b;
  --free-100: #d6f2e1;
  --free-700: #1f6b46;
  --occ-100: #f8d9c7;
  --occ-700: #8a3e1e;
  --unknown-100: #ece7de;
  --unknown-700: #6a6357;
  --white: #ffffff;
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 18px 50px rgba(31, 37, 38, 0.12);
  --container: min(1120px, 92vw);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink-900);
  background: linear-gradient(180deg, #f2fbff 0%, #f7fcff 38%, #fff8ea 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  margin: 0 0 0.6rem;
  font-family: "Fraunces", serif;
  line-height: 1.14;
  color: var(--ink-900);
}

p {
  margin: 0 0 1rem;
  line-height: 1.7;
  color: var(--ink-700);
}

a {
  color: inherit;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  background-image: radial-gradient(rgba(0, 0, 0, 0.28) 0.5px, transparent 0.5px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
  z-index: -1;
}

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

.section {
  padding: 4.5rem 0;
  position: relative;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--sea-700);
  margin-bottom: 0.8rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(232, 246, 255, 0.72);
  border-bottom: 1px solid rgba(15, 93, 115, 0.14);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
  gap: 0.2rem;
}

.brand span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sea-700);
  font-weight: 700;
}

.brand strong {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  color: var(--ink-900);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--ink-700);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--sea-700);
}

.btn-small {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(15, 93, 115, 0.12);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(22, 78, 87, 0.3);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink-900);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-weight: 700;
  font-family: inherit;
}

.hero {
  padding-top: 6.2rem;
  padding-bottom: 5.2rem;
  overflow: hidden;
  min-height: min(86vh, 820px);
  border-bottom: 1px solid rgba(15, 93, 115, 0.18);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease;
}

.hero-slide:nth-child(1) {
  background-position: center 38%;
}

.hero-slide:nth-child(2) {
  background-position: center 46%;
}

.hero-slide:nth-child(3) {
  background-position: center 44%;
}

.hero-slide:nth-child(4) {
  background-position: center 30%;
}

.hero-slide:nth-child(5) {
  background-position: center 40%;
}

.hero-slide:nth-child(6) {
  background-position: center 36%;
}

.hero-slide.is-active {
  opacity: 1;
  animation: heroZoom 9s ease-in-out forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 212, 105, 0.56) 0%, rgba(255, 212, 105, 0) 38%),
    linear-gradient(110deg, rgba(8, 43, 56, 0.66) 0%, rgba(13, 69, 88, 0.46) 38%, rgba(9, 61, 78, 0.32) 63%, rgba(255, 229, 158, 0.2) 100%);
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy {
  border-radius: var(--radius-xl);
  padding: 1.3rem 1.4rem;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 236, 0.86));
  border: 1px solid rgba(14, 74, 92, 0.16);
  box-shadow: var(--shadow-soft);
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.9rem);
  max-width: 16ch;
}

.hero-copy p {
  font-size: 1.08rem;
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.3rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 800;
  font-family: inherit;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(120deg, #0c7092, #29a5cc);
  box-shadow: 0 12px 24px rgba(12, 112, 146, 0.35);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(120deg, #0e7d9f, #30b2da);
}

.btn-secondary {
  color: var(--ink-900);
  background: rgba(255, 251, 237, 0.92);
  border: 1px solid rgba(31, 37, 38, 0.2);
}

.hero-card {
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.6rem;
  background:
    linear-gradient(165deg, rgba(15, 93, 115, 0.15), rgba(255, 211, 107, 0.28)),
    rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(31, 37, 38, 0.2);
  box-shadow: var(--shadow-soft);
}

.hero-card h2 {
  font-size: 1.5rem;
}

.hero-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1rem;
}

.hero-note {
  font-weight: 700;
  color: var(--sea-700);
}

.section-head {
  max-width: 740px;
  margin-bottom: 1.8rem;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
}

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

.card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 93, 115, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 237, 0.82));
  padding: 1.35rem;
  box-shadow: 0 12px 24px rgba(31, 37, 38, 0.08);
}

.card h3 {
  font-size: 1.45rem;
}

.pricing {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(15, 93, 115, 0.2);
  background: rgba(255, 255, 255, 0.9);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(22, 78, 87, 0.1);
}

th {
  background: rgba(22, 78, 87, 0.1);
  color: var(--ink-900);
}

tr:last-child td {
  border-bottom: 0;
}

.table-note {
  padding: 0.9rem 1rem 1.1rem;
  margin: 0;
  color: var(--ink-700);
  font-size: 0.95rem;
}

.terms {
  margin-top: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 93, 115, 0.2);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.87), rgba(255, 245, 216, 0.72));
  padding: 1rem 1.1rem;
}

.booking-actions {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 93, 115, 0.2);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(222, 245, 255, 0.65));
  padding: 1.1rem 1.2rem;
  margin-bottom: 1rem;
}

.booking-actions p {
  margin-top: 0.9rem;
  margin-bottom: 0;
}

.calendar-shell {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 93, 115, 0.23);
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem;
}

.calendar-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: flex-start;
}

.calendar-header h3 {
  font-size: 1.45rem;
  margin-bottom: 0;
}

.calendar-active {
  margin: 0.22rem 0 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-700);
}

#calendar-status {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(51, 69, 75, 0.75);
  max-width: 38ch;
  text-align: right;
}

#calendar-status.is-error {
  font-weight: 700;
  color: var(--occ-700);
}

.calendar-controls {
  margin-top: 0.85rem;
}

.calendar-controls-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.calendar-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.calendar-option {
  border: 1px solid rgba(15, 93, 115, 0.24);
  background: rgba(236, 249, 255, 0.75);
  color: var(--ink-900);
  border-radius: 999px;
  padding: 0.56rem 0.95rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.calendar-option:hover,
.calendar-option:focus-visible {
  background: rgba(215, 241, 251, 0.92);
  border-color: rgba(15, 93, 115, 0.45);
}

.calendar-option.is-active {
  background: linear-gradient(130deg, #0f6f8f, #2d9ec0);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 8px 18px rgba(12, 112, 146, 0.28);
}

.calendar-select-wrap {
  display: none;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink-700);
}

.calendar-select {
  display: block;
  margin-top: 0.35rem;
  min-width: 220px;
  border-radius: 10px;
  border: 1px solid rgba(31, 37, 38, 0.2);
  background: rgba(255, 255, 255, 0.95);
  padding: 0.58rem 0.72rem;
  font: inherit;
  color: var(--ink-900);
}

.calendar-refresh {
  padding: 0.66rem 1rem;
  font-size: 0.86rem;
  font-weight: 700;
}

.calendar-help {
  margin: 0.7rem 0 0;
  font-size: 0.92rem;
}

.weekend-filter-toggle {
  margin-top: 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(15, 93, 115, 0.2);
  border-radius: 999px;
  background: rgba(236, 249, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-700);
  cursor: pointer;
}

.weekend-filter-toggle input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #0f6f8f;
  cursor: pointer;
}

.calendar-summary {
  margin: 0.72rem 0 0;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--ink-700);
}

.weekend-strip {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.weekend-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(14, 74, 92, 0.2);
  background: rgba(255, 248, 227, 0.92);
  color: var(--ink-900);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.34rem 0.62rem;
}

.weekend-pill.is-more {
  background: rgba(224, 244, 255, 0.94);
}

.weekend-strip-empty {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.86rem;
  font-weight: 700;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  margin-top: 0.7rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink-700);
}

.calendar-legend span {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}

.legend-box {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  display: inline-block;
}

.legend-box.free {
  background: var(--free-100);
  border: 1px solid rgba(31, 107, 70, 0.3);
}

.legend-box.occupied {
  background: var(--occ-100);
  border: 1px solid rgba(138, 62, 30, 0.3);
}

.legend-box.unknown {
  background: var(--unknown-100);
  border: 1px solid rgba(106, 99, 87, 0.3);
}

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

.month-card {
  border: 1px solid rgba(31, 37, 38, 0.11);
  border-radius: var(--radius-sm);
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.96);
}

.month-title {
  margin: 0 0 0.6rem;
  font-size: 1.08rem;
  color: var(--ink-900);
}

.weekdays,
.days-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
}

.weekdays span {
  font-size: 0.74rem;
  font-weight: 800;
  text-align: center;
  color: var(--ink-700);
}

.day-cell {
  min-height: 34px;
  border-radius: 7px;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  font-weight: 700;
}

.day-cell.empty {
  background: transparent;
  border-color: transparent;
}

.day-cell.free {
  background: var(--free-100);
  border-color: rgba(31, 107, 70, 0.28);
  color: var(--free-700);
}

.day-cell.occupied {
  background: var(--occ-100);
  border-color: rgba(138, 62, 30, 0.28);
  color: var(--occ-700);
}

.day-cell.unknown {
  background: var(--unknown-100);
  border-color: rgba(106, 99, 87, 0.24);
  color: var(--unknown-700);
}

.day-cell.weekend-free {
  box-shadow: inset 0 0 0 1px rgba(15, 93, 115, 0.18);
}

.day-cell.filtered-out {
  opacity: 0.2;
  transform: scale(0.93);
}

.day-cell.today {
  outline: 2px solid rgba(22, 78, 87, 0.5);
  outline-offset: -2px;
}

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

.gallery-item {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(31, 37, 38, 0.15);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 28px rgba(31, 37, 38, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.gallery-item figcaption {
  padding: 0.55rem 0.7rem;
  font-size: 0.86rem;
  color: var(--ink-700);
}

.route-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.route-copy {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 93, 115, 0.16);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.88), rgba(255, 248, 230, 0.76));
  padding: 1.2rem;
}

.route-copy .section-head {
  margin-bottom: 0.9rem;
}

.route-list {
  display: grid;
  gap: 0.55rem;
  margin: 0.9rem 0 1rem;
}

.route-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(22, 78, 87, 0.2);
  box-shadow: var(--shadow-soft);
  min-height: 340px;
}

.route-map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

.contact {
  padding-bottom: 5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.contact-copy ul {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 93, 115, 0.16);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.55rem;
}

.contact-form h3 {
  margin-bottom: 0.2rem;
}

.contact-form p {
  margin-bottom: 0.4rem;
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(31, 37, 38, 0.2);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  padding: 0.72rem 0.8rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(22, 78, 87, 0.25);
  border-color: rgba(22, 78, 87, 0.7);
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 0.2rem;
}

.consent-row input[type="checkbox"] {
  margin-top: 0.22rem;
}

.consent-row label {
  font-weight: 600;
  font-size: 0.86rem;
}

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

.feedback {
  margin: 0.4rem 0 0;
  min-height: 1.2em;
  font-weight: 700;
  color: var(--sea-700);
}

.feedback.success {
  color: var(--free-700);
}

.feedback.error {
  color: var(--occ-700);
}

.contact-form button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.static-note {
  margin-top: 0.7rem;
}

.site-footer {
  border-top: 1px solid rgba(15, 93, 115, 0.2);
  background: linear-gradient(180deg, rgba(235, 248, 255, 0.62), rgba(255, 239, 205, 0.64));
}

.footer-inner {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-inner p {
  margin: 0;
}

.visit-counter {
  font-weight: 700;
  color: var(--sea-700);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.09s;
}

.delay-2 {
  transition-delay: 0.16s;
}

@keyframes heroZoom {
  0% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    right: 1rem;
    top: 64px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.9rem;
    border: 1px solid rgba(31, 37, 38, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .hero-grid,
  .route-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 4rem;
  }

  .hero-grid {
    gap: 1.25rem;
  }

  .hero-copy,
  .hero-card {
    background: rgba(255, 255, 255, 0.92);
  }

  .cards,
  .gallery-grid,
  .calendar-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 3.2rem 0;
  }

  .hero {
    padding-top: 4.4rem;
    padding-bottom: 2.6rem;
    min-height: auto;
  }

  .hero-copy {
    padding: 1rem;
  }

  .hero-card {
    padding: 1.05rem;
  }

  .hero-copy p {
    max-width: none;
    font-size: 1rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .calendar-header {
    align-items: stretch;
  }

  #calendar-status {
    text-align: left;
    max-width: none;
  }

  .calendar-selector {
    display: none;
  }

  .calendar-select-wrap {
    display: block;
    width: 100%;
  }

  .calendar-select {
    width: 100%;
    min-width: 0;
  }

  .calendar-refresh {
    width: 100%;
  }

  .weekend-filter-toggle {
    width: 100%;
    justify-content: center;
  }

  .hero-slide {
    background-image: none !important;
    display: none;
  }

  .hero-slide:nth-child(4) {
    display: block;
    background-image: url('assets/hero/hero-04.jpg') !important;
    background-position: center 28%;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 72% 10%, rgba(255, 212, 105, 0.46) 0%, rgba(255, 212, 105, 0) 40%),
      linear-gradient(180deg, rgba(8, 43, 56, 0.58) 0%, rgba(13, 69, 88, 0.38) 44%, rgba(14, 68, 88, 0.2) 100%);
  }

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

  th,
  td {
    padding: 0.75rem 0.6rem;
    font-size: 0.9rem;
  }

  .day-cell {
    min-height: 30px;
    font-size: 0.8rem;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0.8rem 0;
  }
}
