:root {
  --bg: #0f0c0a;
  --bg-soft: #171210;
  --panel: #1d1613;
  --panel-2: #221915;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f4ede7;
  --muted: rgba(244, 237, 231, 0.72);
  --accent: #c88642;
  --accent-soft: #f0c48d;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(200, 134, 66, 0.12), transparent 24%),
    linear-gradient(180deg, #120d0b 0%, #0f0c0a 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

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

a,
button {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
  background: none;
}

.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  width: min(1160px, calc(100% - 28px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(22, 16, 13, 0.76);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
  z-index: 20;
  transition: background 260ms ease, border-color 260ms ease, transform 260ms ease, box-shadow 260ms ease;
}

.brand,
.site-nav a,
.button {
  text-decoration: none;
}

.brand,
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
}

.brand {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  gap: 24px;
}

.site-nav a {
  color: rgba(244, 237, 231, 0.82);
  position: relative;
  transition: color 200ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 132px clamp(20px, 4vw, 48px) 44px;
}

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

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 12, 10, 0.82) 0%, rgba(15, 12, 10, 0.5) 42%, rgba(15, 12, 10, 0.68) 100%),
    linear-gradient(180deg, rgba(15, 12, 10, 0.16), rgba(15, 12, 10, 0.84));
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 1;
  transition: transform 320ms ease;
}

.hero-content {
  max-width: 700px;
}

.eyebrow,
.card-label {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  color: var(--accent-soft);
}

h1 {
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 6.2rem);
  line-height: 0.92;
  max-width: 720px;
}

.hero-copy,
.section-copy p,
.feature-text p,
.events-copy p,
.reserve-panel p,
.section-note,
.hero-card p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy {
  max-width: 620px;
  margin: 20px 0 0;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease, box-shadow 200ms ease, color 200ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: inherit;
}

.button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -120%;
  width: 48%;
  z-index: -1;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-18deg);
  transition: left 480ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.button:hover::after {
  left: 140%;
}

.button:active {
  transform: translateY(-1px) scale(0.985);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.button-primary {
  background: var(--accent);
  color: #1a120e;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.button-primary::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #e0a867 0%, #c88642 45%, #a96b33 100%);
}

.button-primary:hover {
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    0 10px 24px rgba(200, 134, 66, 0.22);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.button-secondary::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.button-secondary:hover {
  border-color: rgba(240, 196, 141, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.hero-card {
  margin-left: auto;
  width: min(100%, 360px);
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(20, 14, 11, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  animation: floatCard 7s ease-in-out infinite;
  position: relative;
}

.hero-card h2 {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 1.06;
}

.directions-icon-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 134, 66, 0.15);
  border: 2px solid var(--accent);
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 300ms ease;
  text-decoration: none;
  line-height: 1;
}

.directions-icon-btn:hover {
  background: rgba(200, 134, 66, 0.3);
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(200, 134, 66, 0.3);
}

.section {
  padding: 88px clamp(20px, 4vw, 48px);
}

.story-grid,
.events-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.section-copy h2,
.section-head h2,
.events-copy h2,
.reserve-panel h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.98;
}

.story-image img,
.feature-image img,
.events-media img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 700ms ease, filter 500ms ease;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
  align-items: end;
}

.section-note {
  max-width: 360px;
}

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

.feature-card,
.reserve-panel {
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.feature-card:hover,
.reserve-panel:hover,
.event-list article:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 196, 141, 0.22);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.feature-text {
  padding: 30px;
}

.feature-text h3,
.event-list h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.05;
}

.feature-text ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.events-copy {
  padding-right: 14px;
}

.event-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.event-list article {
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: 22px;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.event-list p {
  margin: 10px 0 0;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.gallery-item img {
  height: 340px;
  object-fit: cover;
  transition: transform 700ms ease, filter 500ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 7, 5, 0.72));
}

.gallery-item span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  font-weight: 600;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.05);
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.reserve-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 850ms ease, transform 850ms cubic-bezier(.2,.8,.2,1);
}

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

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.84);
  z-index: 30;
}

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

.lightbox-image {
  width: min(1100px, 100%);
  max-height: 85vh;
  object-fit: contain;
  border-radius: 24px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 200ms ease, background 200ms ease;
}

.lightbox-close:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.14);
}

.site-header.is-scrolled {
  background: rgba(18, 13, 11, 0.92);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.parallax-media {
  will-change: transform;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 980px) {
  .story-grid,
  .events-layout,
  .feature-grid,
  .gallery-grid,
  .reserve-panel {
    grid-template-columns: 1fr;
  }

  .section-head,
  .reserve-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
    padding-bottom: 32px;
  }

  .hero-card {
    margin-top: 24px;
    animation: none;
  }

  .directions-icon-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  .site-nav {
    display: none;
  }

  .story-image img,
  .feature-image img,
  .events-media img,
  .gallery-item img {
    min-height: auto;
    height: 300px;
  }
}

/* Booking Modal Styles */
.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.booking-modal.is-visible {
  opacity: 1;
  visibility: visible;
}

.booking-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.booking-modal-content {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  width: 90%;
  max-width: 420px;
  box-shadow: var(--shadow);
  animation: slideUp 300ms ease;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.booking-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: var(--muted);
  transition: color 200ms ease;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-modal-close:hover {
  color: var(--accent);
}

.booking-form-container h2 {
  margin: 0 0 8px;
  font-size: 1.8rem;
  color: var(--text);
}

.booking-subtitle {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
}

.form-group input,
.form-group select {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 200ms ease, background 200ms ease;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.form-group select option {
  background: var(--bg);
  color: var(--text);
  padding: 8px 12px;
}

.form-group select option:hover {
  background: var(--accent);
  color: var(--bg);
}

.form-group select option:checked {
  background: linear-gradient(var(--accent), var(--accent));
  background-color: var(--accent) !important;
  color: var(--bg) !important;
}

.guest-input-group {
  display: flex;
  gap: 10px;
}

.guest-input-group input {
  flex: 1;
}

.hidden-input {
  display: none;
}

.form-group input::placeholder {
  color: var(--muted);
}

.form-group small {
  margin-top: 4px;
  font-size: 0.85rem;
  color: var(--muted);
}

.booking-submit {
  margin-top: 10px;
  padding: 14px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.booking-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(200, 134, 66, 0.28);
}

@media (max-width: 480px) {
  .booking-modal-content {
    width: 95%;
    padding: 28px 24px;
    border-radius: 20px;
  }

  .booking-form-container h2 {
    font-size: 1.5rem;
  }

  .booking-submit {
    padding: 12px 20px;
  }
}

/* Contact Map Section Styles */
.contact-map-section {
  padding: 60px var(--section-padding);
}

.contact-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-header h2 {
  font-size: 2.4rem;
  margin: 12px 0 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.map-container {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--panel);
  border: 1px solid var(--line);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 450px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-item {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform 200ms ease, border-color 200ms ease;
}

.info-item:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 196, 141, 0.22);
}

.contact-info h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 600;
}

.contact-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

.contact-info a {
  color: var(--accent-soft);
  transition: color 200ms ease;
}

.contact-info a:hover {
  color: var(--accent);
}

.directions-btn {
  align-self: flex-start;
  margin-top: 12px;
  font-weight: 600;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.directions-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(200, 134, 66, 0.28);
}

@media (max-width: 980px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .map-container iframe {
    height: 350px;
  }

  .contact-info {
    gap: 20px;
  }
}

@media (max-width: 760px) {
  .contact-map-section {
    padding: 40px var(--section-padding);
  }

  .contact-header h2 {
    font-size: 1.8rem;
  }

  .map-container iframe {
    height: 300px;
  }

  .info-item {
    padding: 18px;
  }

  .contact-info h3 {
    font-size: 1.1rem;
  }
}
