:root {
  --bg: #f2eedf;
  --surface: rgba(250, 246, 232, 0.84);
  --surface-strong: #fcf8ea;
  --text: #11261b;
  --muted: #4e5f51;
  --accent: #184a2c;
  --accent-strong: #0f321d;
  --accent-soft: #2f6b44;
  --gold: #b8922f;
  --gold-soft: #d7c072;
  --line: rgba(17, 38, 27, 0.14);
  --shadow: 0 20px 60px rgba(16, 37, 25, 0.16);
}

* {
  box-sizing: border-box;
}

.is-hidden {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(184, 146, 47, 0.22), transparent 24%),
    radial-gradient(circle at top right, rgba(24, 74, 44, 0.18), transparent 30%),
    linear-gradient(180deg, #e8e1c8 0%, var(--bg) 32%, #efe9d7 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("images/magazine.jpeg") no-repeat center top;
  background-size: cover;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

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

a {
  color: inherit;
}

.site-header,
.hero,
.section,
.site-footer {
  width: min(1180px, calc(100% - 5rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0 2.25rem;
  position: sticky;
  top: 0;
  z-index: 10;
}

.menu-toggle,
.nav-backdrop {
  display: none;
}

.brand {
  display: inline-flex;
  gap: 0.55rem;
  align-items: baseline;
  text-decoration: none;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(252, 248, 234, 0.72);
  border: 1px solid rgba(184, 146, 47, 0.22);
  box-shadow: 0 12px 32px rgba(16, 37, 25, 0.08);
  backdrop-filter: blur(10px);
}

.brand-mark {
  font-style: italic;
  color: var(--gold);
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--accent);
}

.site-nav {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  padding: 0.45rem;
  border-radius: 999px;
  background: rgba(252, 248, 234, 0.72);
  border: 1px solid rgba(184, 146, 47, 0.22);
  box-shadow: 0 12px 32px rgba(16, 37, 25, 0.08);
  backdrop-filter: blur(10px);
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
  background: rgba(24, 74, 44, 0.08);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(540px, 760px);
  gap: 2.75rem;
  align-items: center;
  padding: 2rem 0 5rem;
  justify-content: space-between;
}

.hero-copy {
  padding: 2rem 0;
  max-width: 22rem;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-card,
.gallery-item,
.calendar-shell,
.month-card,
.inquiry-form,
.map-card {
  background: var(--surface);
  border: 1px solid rgba(184, 146, 47, 0.26);
  box-shadow: var(--shadow);
  border-radius: 1.5rem;
}

.hero-card {
  overflow: hidden;
  padding: 0.7rem;
  background: var(--surface);
  border: 1px solid rgba(184, 146, 47, 0.26);
  box-shadow: var(--shadow);
  position: relative;
  min-width: 0;
  width: 100%;
  border-radius: 1.5rem;
}

.hero-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 1.28 / 1;
  min-height: 0;
}

.hero-slide {
  margin: 0;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(4%);
  transition: opacity 320ms ease, transform 320ms ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.hero-slider-nav {
  position: absolute;
  left: 1.6rem;
  bottom: 1.6rem;
  display: flex;
  gap: 0.45rem;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  background: rgba(17, 38, 27, 0.2);
  border: 1px solid rgba(252, 248, 234, 0.42);
  backdrop-filter: blur(8px);
}

.hero-dot {
  width: 0.82rem;
  height: 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(250, 246, 232, 0.7);
  background: rgba(250, 246, 232, 0.2);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(16, 37, 25, 0.18);
}

.hero-dot.is-active {
  background: var(--gold);
}

.section {
  padding: 4.5rem 0;
}

.section-heading {
  margin-bottom: 2.6rem;
  max-width: 28rem;
}

.section h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  letter-spacing: -0.03em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: start;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  align-self: start;
  padding: 0.7rem;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

.gallery-item.featured {
  grid-column: span 2;
}

.gallery-item.featured img {
  height: auto;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  margin-bottom: 1.75rem;
}

.details-copy {
  max-width: 52rem;
  margin-bottom: 1.75rem;
}

.intro-copy {
  max-width: 60rem;
  margin-bottom: 0;
}

.details-label {
  margin: 0 0 0.6rem;
  color: var(--accent);
  font-weight: 700;
}

.details-copy p + p {
  margin-top: 1rem;
}

.intro-copy p {
  color: var(--text);
  line-height: 1.65;
}

.info-card {
  background: var(--surface);
  border: 1px solid rgba(184, 146, 47, 0.26);
  box-shadow: var(--shadow);
  border-radius: 1.5rem;
  padding: 1.65rem;
}

.info-card h3 {
  margin: 0 0 1rem;
  color: var(--accent);
}

.info-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
}

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

.equipment-card {
  background: var(--surface);
  border: 1px solid rgba(184, 146, 47, 0.26);
  box-shadow: var(--shadow);
  border-radius: 1.5rem;
  padding: 1.65rem;
}

.equipment-card-wide {
  grid-column: span 2;
}

.equipment-card h3 {
  margin: 0 0 1rem;
  color: var(--accent);
}

.equipment-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
}

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

.price-card {
  background: linear-gradient(180deg, rgba(24, 74, 44, 0.08), rgba(250, 246, 232, 0.92));
  border: 1px solid rgba(184, 146, 47, 0.32);
  box-shadow: var(--shadow);
  border-radius: 1.5rem;
  padding: 1.65rem;
}

.price-card h3 {
  margin: 0 0 1rem;
  color: var(--accent);
}

.price-rows {
  display: grid;
  gap: 0.85rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row strong {
  color: var(--accent);
  font-size: 1.05rem;
  text-align: right;
}

.map-card {
  padding: 1rem;
}

.map-copy {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.5rem 0.5rem 1rem;
  color: var(--accent);
}

.map-copy p {
  margin: 0;
}

.map-card iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 1rem;
}

.map-link {
  display: inline-flex;
  margin: 1rem 0 0 0.5rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.map-link:hover,
.map-link:focus-visible {
  color: var(--accent-strong);
}

.calendar-shell {
  max-width: 920px;
  margin: 0 auto;
  padding: 1rem;
  display: grid;
  gap: 0.85rem;
  background: rgba(255, 252, 246, 0.92);
  border: 1px solid rgba(17, 38, 27, 0.08);
  box-shadow: 0 20px 50px rgba(16, 37, 25, 0.08);
  border-radius: 1.5rem;
}

.calendar-toolbar {
  display: grid;
  grid-template-columns: 2.5rem 1fr 2.5rem;
  gap: 0.5rem;
  align-items: center;
}

.calendar-month-title-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  min-width: 0;
}

.calendar-month-title {
  text-align: center;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
  min-width: 0;
  padding: 0.45rem 0 0.7rem;
}

.calendar-nav {
  min-height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent);
  font: inherit;
  font-size: 1.1rem;
  cursor: pointer;
}

.calendar-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.calendar-selected,
.calendar-season {
  padding: 0.65rem 0.8rem;
  border-radius: 0.75rem;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--accent);
  font-size: 0.84rem;
}

.calendar-selected {
  font-weight: 700;
}

.calendar-legend {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.8rem;
}

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

.dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  display: inline-block;
}

.dot.available,
.day.available {
  background: #bfd0b8;
}

.dot.booked,
.day.booked {
  background: #d2cec2;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.month-card {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  min-width: 0;
}

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

.weekdays span {
  text-align: center;
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  padding-bottom: 0.25rem;
}

.day,
.day-empty {
  aspect-ratio: 1 / 0.82;
  border-radius: 0.58rem;
}

.day-out {
  aspect-ratio: 1 / 0.82;
  border-radius: 0.58rem;
  background: transparent;
  border: 0;
}

.day {
  border: 1px solid rgba(17, 38, 27, 0.08);
  font: inherit;
  color: var(--text);
  cursor: pointer;
  padding: 0;
  display: grid;
  place-items: center;
  min-height: 2rem;
  background: #ffffff;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.day.booked {
  color: #8b8a86;
  background: #f2f0ea;
  text-decoration: line-through;
}

.day.selected {
  border-color: var(--accent);
  background: rgba(24, 74, 44, 0.12);
}

.day.range {
  background: rgba(24, 74, 44, 0.08);
  border-color: rgba(24, 74, 44, 0.14);
}

.day-label {
  font-size: 0.72rem;
  font-weight: 700;
}

.admin-panel {
  border-top: 1px solid var(--line);
  padding-top: 0.5rem;
}

.admin-panel summary {
  cursor: pointer;
  color: var(--accent);
  font-weight: 700;
  padding: 0.5rem 0;
}

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

.admin-grid label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.95rem;
  color: var(--accent);
}

.admin-grid input,
.admin-grid select {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  font: inherit;
}

.admin-actions {
  display: flex;
  gap: 0.75rem;
  align-items: end;
  flex-wrap: wrap;
}

.admin-login-form {
  padding: 0;
}

.admin-session {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.admin-requests-shell {
  margin-top: 1.5rem;
}

.admin-subheading {
  margin-bottom: 1.2rem;
  max-width: none;
}

.request-list {
  display: grid;
  gap: 1rem;
}

.request-card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #ffffff;
  padding: 1.25rem;
}

.request-card-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
  flex-wrap: wrap;
}

.request-card h3,
.request-card p {
  margin: 0;
}

.request-meta {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.9rem;
  color: var(--muted);
}

.request-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(24, 74, 44, 0.1);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
}

.request-badge.pending {
  background: rgba(184, 146, 47, 0.18);
  color: #6d5716;
}

.request-badge.approved {
  background: rgba(24, 74, 44, 0.12);
}

.request-badge.declined {
  background: rgba(123, 60, 42, 0.12);
  color: #7b3c2a;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  padding: 1.75rem;
}

.booking-form.is-disabled {
  display: none;
}

.booking-request-section.is-hidden {
  display: none;
}

.booking-form input[readonly] {
  color: var(--accent);
  font-weight: 700;
}

.inquiry-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.95rem;
  color: var(--accent);
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  font: inherit;
}

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

.form-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--line);
  transition: transform 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%);
  color: #f8f4e7;
  border-color: transparent;
}

.form-note {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.98rem;
}

.form-note.is-success {
  color: var(--accent);
  font-weight: 700;
}

.site-footer {
  padding: 2.5rem 0 4rem;
  color: var(--muted);
}

.lightbox {
  width: min(96vw, 1400px);
  max-width: none;
  padding: 1rem;
  border: 0;
  background: rgba(17, 38, 27, 0.18);
  border-radius: 1.5rem;
}

.lightbox::backdrop {
  background: rgba(10, 18, 13, 0.84);
}

.lightbox img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 88vh;
  margin: 0 auto;
  border-radius: 1rem;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(252, 248, 234, 0.9);
  color: var(--accent);
  font: inherit;
  font-size: 1.5rem;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(252, 248, 234, 0.9);
  color: var(--accent);
  font: inherit;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

@media (max-width: 1180px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    width: min(100%, calc(100% - 4rem));
  }

  .hero {
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .hero,
  .gallery-grid,
  .calendar-info,
  .info-grid,
  .pricing-grid,
  .equipment-grid,
  .admin-grid,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .calendar-month-title-wrap,
  .calendar-grid {
    grid-template-columns: 1fr;
  }

  .equipment-card-wide {
    grid-column: span 1;
  }

  .map-copy {
    flex-direction: column;
  }

  .site-header {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
    position: static;
    gap: 0.75rem;
    padding: 1rem 0 1.5rem;
  }

  .brand {
    width: auto;
    justify-content: flex-start;
    padding: 0.72rem 0.95rem;
    border-radius: 999px;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.36rem;
    width: 2.9rem;
    height: 2.9rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(252, 248, 234, 0.46);
    cursor: pointer;
    z-index: 15;
  }

  .menu-toggle span {
    display: block;
    width: 0.92rem;
    height: 1.5px;
    border-radius: 999px;
    background: var(--accent);
    transition: transform 180ms ease, opacity 180ms ease, width 180ms ease;
  }

  body.nav-open .menu-toggle span:nth-child(1) {
    width: 1rem;
    transform: translateY(3.9px) rotate(45deg);
  }

  body.nav-open .menu-toggle span:nth-child(2) {
    width: 1rem;
    transform: translateY(-3.9px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 0.9rem;
    right: 1rem;
    width: min(320px, calc(100vw - 2rem));
    display: grid;
    gap: 0.45rem;
    padding: 4.5rem 0.6rem 0.6rem;
    border-radius: 1.3rem;
    background: rgba(252, 248, 234, 0.96);
    border: 1px solid rgba(184, 146, 47, 0.22);
    box-shadow: 0 24px 60px rgba(16, 37, 25, 0.16);
    backdrop-filter: blur(14px);
    transform: translateX(calc(100% + 1.5rem));
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
    z-index: 14;
  }

  .site-nav a {
    text-align: left;
    padding: 0.95rem 1rem;
    min-height: 0;
    display: grid;
    place-items: start;
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.48);
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    border: 0;
    background: rgba(15, 31, 21, 0.24);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
    z-index: 13;
  }

  body.nav-open {
    overflow: hidden;
  }

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

  body.nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    gap: 1.75rem;
    padding-bottom: 3rem;
  }

  .hero-slides {
    min-height: 420px;
  }

  .section {
    padding: 3rem 0;
  }

  .site-header,
  .hero,
  .section,
  .site-footer {
    width: min(100%, calc(100% - 2rem));
  }

  .hero-card img,
  .gallery-item.featured img,
  .gallery-item img {
    max-height: none;
  }
}
