:root {
  --bg: #0d0c10;
  --panel: #17151c;
  --surface: #211e27;
  --primary: #f5f2ea;
  --muted: #aaa5ad;
  --accent: #d4af37;
  --accent-soft: #f1e3b5;
  --border: rgba(241, 227, 181, 0.18);
  --success: #3d8f60;
  --danger: #c94f4f;
  --warning: #57525c;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--primary);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 7rem 0;
}

.alt-section {
  background: var(--panel);
}

.eyebrow {
  margin: 0 0 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.1;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3.5rem, 9vw, 7.5rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

p {
  margin-top: 0;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 12, 16, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--primary);
}

.brand span {
  display: block;
  margin-top: -0.25rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.45rem;
  font-style: normal;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--primary);
  font-size: 0.95rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.55rem;
  border-radius: 0.2rem;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.2s ease;
  cursor: pointer;
}

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

.button-primary {
  background: var(--accent);
  color: #17151c;
  border-color: var(--accent);
}

.button-primary:hover {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
}

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

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 76px));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url("../images/WhatsApp Image 2026-09-06 at 1.51.00 PM.jpeg")
    center 42% / cover no-repeat;
}

.hero::before,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero::before {
  content: "";
  background: linear-gradient(
    90deg,
    rgba(13, 12, 16, 0.96) 0%,
    rgba(13, 12, 16, 0.62) 50%,
    rgba(13, 12, 16, 0.2) 100%
  );
}

.hero-overlay {
  background: linear-gradient(
    0deg,
    rgba(13, 12, 16, 0.92),
    transparent 35%,
    rgba(13, 12, 16, 0.28)
  );
}

.hero-content,
.about-grid,
.booking-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-inline: clamp(1.25rem, 4vw, 3.5rem);
}

.hero-copy {
  max-width: 640px;
}

.lede {
  font-size: 1.08rem;
  max-width: 540px;
}

.hero-subtitle {
  margin: -0.5rem 0 1.2rem;
  color: var(--accent-soft);
  font-family: Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-style: italic;
}

.actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-signature {
  align-self: end;
  justify-self: end;
  max-width: 220px;
  color: var(--accent-soft);
  font-family: Georgia, serif;
  font-size: 1.8rem;
  font-style: italic;
  text-align: right;
}

.hero-signature span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 0.48rem;
  font-style: normal;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 1.5rem;
  left: 50%;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  display: block;
  color: var(--accent);
  font-size: 1.3rem;
  text-align: center;
}

.section-heading {
  margin-bottom: 2rem;
}

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

.gallery-item {
  min-height: 260px;
  position: relative;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 0.2rem;
  display: flex;
  align-items: end;
  padding: 1.25rem;
  color: #fff;
  font-weight: 600;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, rgba(0, 0, 0, 0.8));
}

.gallery-item figcaption {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-item.tall {
  grid-row: span 2;
  min-height: 540px;
}

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

.gallery-one {
  background-image: url("../images/WhatsApp Image 2026-09-06 at 1.51.01 PM.jpeg");
}
.gallery-two {
  background-image: url("../images/WhatsApp Image 2026-09-06 at 1.48.48 PM.jpeg");
}
.gallery-three {
  background-image: url("../images/WhatsApp Image 2026-09-06 at 1.51.01 PM (1).jpeg");
}
.gallery-four {
  background-image: url("../images/WhatsApp Image 2026-09-06 at 1.48.49 PM.jpeg");
}
.gallery-five {
  background-image: url("../images/WhatsApp Image 2026-09-06 at 1.51.02 PM.jpeg");
}
.gallery-six {
  background-image: url("../images/WhatsApp Image 2026-09-06 at 1.51.03 PM.jpeg");
}

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

.price-panel {
  position: relative;
  background: rgba(13, 12, 16, 0.56);
  border: 1px solid var(--border);
  border-radius: 0.2rem;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
}

.price {
  margin-bottom: 1rem;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--primary);
  font-weight: 700;
}

.price-panel h3 {
  color: var(--accent-soft);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.88rem;
}

.price-row strong {
  color: var(--primary);
  text-align: right;
}

.booking-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.booking-flow {
  margin-top: 1.5rem;
}

.booking-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.field-group {
  margin-bottom: 1.2rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 0.2rem;
  padding: 0.9rem 1rem;
  color: var(--primary);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(212, 175, 55, 0.25);
  border-color: var(--accent);
}

.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.time-slot {
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--primary);
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.2s ease;
}

.time-slot.selected {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.time-slot:disabled,
.slot-box:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.legend {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.dot {
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  margin-right: 0.45rem;
  vertical-align: middle;
}

.green {
  background: var(--success);
}
.red {
  background: var(--danger);
}
.grey {
  background: var(--warning);
}

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

.day-column {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 0.7rem 0.5rem;
}

.day-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.55rem;
  color: var(--muted);
}

.slot-box {
  border-radius: 0.6rem;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.45rem;
  width: 100%;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.slot-box.selected {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.slot-box.available {
  background: var(--success);
}
.slot-box.booked {
  background: var(--danger);
}
.slot-box.unavailable {
  background: var(--warning);
  color: var(--primary);
}

.full-width {
  width: 100%;
}

.form-message {
  min-height: 1.4rem;
  margin-top: 1rem;
  font-weight: 600;
}

.form-message.success {
  color: var(--success);
}

.form-message.error {
  color: var(--danger);
}

.site-footer {
  padding: 1rem 0 2.5rem;
}

.section-heading > p:last-child,
.about-grid > p {
  max-width: 620px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
  color: var(--muted);
}

@media (max-width: 860px) {
  .hero-content,
  .about-grid,
  .booking-grid,
  .pricing-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none;
  }

  .hero-signature {
    display: none;
  }

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

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

  .hero {
    min-height: 680px;
    background-position: 62% center;
  }

  .hero::before {
    background: linear-gradient(
      90deg,
      rgba(13, 12, 16, 0.88),
      rgba(13, 12, 16, 0.34)
    );
  }

  .hero-copy {
    align-self: end;
    padding-bottom: 2rem;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 300px;
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .price-row strong {
    text-align: left;
  }
}
