:root {
  --brown-dark: #794017;
  --brown-mid: #96521E;
  --brown-warm: #B86825;
  --cream: #F5ECD7;
  --cream-light: #FDF6E3;
  --gold: #fdbf43;
  --gold-light: #eeb83b;
  --green-sage: #4A5E3A;
  --text-dark: #1A0F06;
  --text-mid: #3D2314;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--cream);
  color: var(--text-dark);
  font-family: 'Libre Baskerville', serif;
  overflow-x: hidden;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: rgba(60, 33, 15, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gold);
}

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

.nav-logo img {
  height: 70px;
  width: auto;
}

.nav-logo span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--gold-light);
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--gold-light); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--brown-dark);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 40px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,147,42,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(139,69,19,0.2) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9932A' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-tag {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.75rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 14vw, 11rem);
  line-height: 0.9;
  color: var(--cream-light);
  letter-spacing: 4px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.4s;
}

.hero h1 span {
  display: block;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1rem;
  color: rgba(245,236,215,0.7);
  margin-top: 24px;
  font-style: italic;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.6s;
}

.hero-divider {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 32px auto;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.7s;
}

.hero-location {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.8s;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 1s;
}

.btn-primary {
  background: var(--gold);
  color: var(--brown-dark);
  padding: 16px 36px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 3px;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid var(--gold);
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  padding: 16px 36px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 3px;
  text-decoration: none;
  border: 2px solid rgba(245,236,215,0.4);
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: var(--cream);
}

.btn-secondary {
  display: inline-block;
  margin-top: 16px;
  background: var(--brown-dark);
  color: var(--cream);
  padding: 16px 36px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 3px;
  text-decoration: none;
  border: 2px solid var(--brown-dark);
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: transparent;
  color: var(--brown-dark);
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s ease forwards 1.4s;
}

.scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(245,236,215,0.4);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 40px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: var(--brown-dark);
  margin-bottom: 24px;
}

.about-text h2 em {
  color: var(--gold);
  font-style: italic;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid var(--gold);
  z-index: -1;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--brown-dark);
  color: var(--gold-light);
  padding: 20px;
  text-align: center;
  border: 1px solid var(--gold);
}

.about-badge strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  display: block;
  line-height: 1;
}

.about-badge span {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== SERVICES ===== */
.services {
  background: var(--brown-dark);
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9932A' fill-opacity='0.03'%3E%3Cpath fill-rule='evenodd' d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0l28-28v2L54 40h-2zm4 0l24-24v2L58 40h-2zm4 0l20-20v2L62 40h-2zm4 0l16-16v2L66 40h-2zm4 0l12-12v2L70 40h-2zm4 0l8-8v2l-6 6h-2zm4 0l4-4v2l-2 2h-2z'/%3E%3C/g%3E%3C/svg%3E");
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-tag {
  font-size: 0.7rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: 3px;
  color: var(--cream-light);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: rgba(245,236,215,0.04);
  border: 1px solid rgba(201,147,42,0.2);
  padding: 56px 48px;
  position: relative;
  transition: all 0.4s;
}

.service-card:hover {
  background: rgba(201,147,42,0.08);
  border-color: var(--gold);
}

.service-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: rgba(201,147,42,0.15);
  position: absolute;
  top: 20px;
  right: 24px;
  line-height: 1;
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--cream-light);
  margin-bottom: 16px;
}

.service-card p {
  color: rgba(245,236,215,0.65);
  line-height: 1.8;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.service-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--gold-light);
  letter-spacing: 2px;
}

.service-price small {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.7rem;
  color: rgba(245,236,215,0.5);
  letter-spacing: 1px;
  display: block;
  margin-top: 4px;
}

/* ===== WHAT'S INCLUDED ===== */
.includes {
  padding: 120px 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.includes h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brown-dark);
  margin-bottom: 16px;
}

.includes > p {
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 60px;
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.include-item {
  padding: 32px 24px;
  border: 1px solid rgba(139,69,19,0.2);
  background: var(--cream-light);
  transition: all 0.3s;
}

.include-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44,26,14,0.1);
}

.include-item .icon { font-size: 2rem; margin-bottom: 12px; }

.include-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.include-item p {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.includes-note {
  font-size: 0.85rem;
  color: var(--gold);
  font-style: italic;
}

/* ===== MENU ===== */
.menu-section {
  background: var(--cream-light);
  padding: 120px 40px;
  border-top: 1px solid rgba(139,69,19,0.15);
  border-bottom: 1px solid rgba(139,69,19,0.15);
}

.menu-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.menu-inner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  letter-spacing: 3px;
  color: var(--brown-dark);
  margin-bottom: 12px;
}

.menu-inner .sub {
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 56px;
}

.menu-coming {
  display: inline-block;
  border: 2px dashed var(--gold);
  padding: 48px 64px;
  background: rgba(201,147,42,0.05);
}

.menu-coming p {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--brown-mid);
  font-style: italic;
  margin-bottom: 8px;
}

.menu-coming small {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.menu-cta {
  margin-top: 40px;
}

.menu-coming p {
  margin-bottom: 16px;
}

/* ===== BOOKING / CTA ===== */
.booking {
  background: var(--green-sage);
  padding: 120px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(245,236,215,0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.booking::after {
  content: '';
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  border: 1px solid rgba(245,236,215,0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.booking-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.booking h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--cream-light);
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 24px;
}

.booking p {
  color: rgba(245,236,215,0.75);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 48px;
  font-style: italic;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
  background: rgba(245,236,215,0.1);
  border: 1px solid rgba(245,236,215,0.3);
  color: var(--cream);
  padding: 16px 20px;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(245,236,215,0.4);
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
  border-color: var(--gold-light);
}

.booking-form select option {
  background: var(--green-sage);
  color: var(--cream);
}

.booking-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* reCAPTCHA styling */
.booking-form .g-recaptcha {
  margin: 16px 0;
  display: flex;
  justify-content: center;
}

.booking-form .btn-primary {
  width: 100%;
  text-align: center;
  cursor: pointer;
  font-size: 1rem;
  

}
.booking-form .btn-primary:hover {
  background-color: var(--brown-mid);
  border: 3px solid var(--brown-mid);

}
.booking-form .btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ===== FORM MESSAGE ===== */
.form-message {
  padding: 16px 20px;
  border-radius: 4px;
  margin-top: 16px;
  font-size: 0.9rem;
  display: none;
}

.form-message.success {
  background: rgba(76, 175, 80, 0.2);
  border: 1px solid rgba(76, 175, 80, 0.5);
  color: #c8e6c9;
  display: block;
}

.form-message.error {
  background: rgba(244, 67, 54, 0.2);
  border: 1px solid rgba(244, 67, 54, 0.5);
  color: #ffcdd2;
  display: block;
}

/* ===== FOOTER ===== */
footer {
  background: var(--brown-dark);
  padding: 60px 40px 40px;
  text-align: center;
  border-top: 1px solid var(--gold);
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--gold-light);
  letter-spacing: 4px;
  margin-bottom: 8px;
}

.footer-tagline {
  font-style: italic;
  color: rgba(245,236,215,0.5);
  font-size: 0.85rem;
  margin-bottom: 32px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(245,236,215,0.5);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }

.footer-social a {
  display: inline-block;
  color: var(--gold);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 3px;
  text-decoration: none;
  border: 1px solid var(--gold);
  padding: 10px 28px;
  margin-bottom: 32px;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--brown-dark);
}

.footer-copy {
  font-size: 0.7rem;
  color: rgba(245,236,215,0.25);
  letter-spacing: 1px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===== CUSTOM DATE PICKER ===== */
.date-picker-wrapper {
  position: relative;
  width: 100%;
}

.date-picker-input {
  background: rgba(245,236,215,0.1);
  border: 1px solid rgba(245,236,215,0.3);
  color: var(--cream);
  padding: 16px 20px;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
}

.date-picker-input:hover {
  border-color: var(--gold-light);
}

.date-picker-icon {
  font-size: 1.2rem;
}

.date-picker-text {
  color: rgba(245,236,215,0.4);
}

.date-picker-text.selected {
  color: var(--cream);
}

.date-picker-calendar {
  position: fixed;
  background: var(--brown-dark);
  border: 1px solid var(--gold);
  padding: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  width: 320px;
  max-width: 90vw;
}

.date-picker-calendar.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,147,42,0.3);
}

.calendar-month-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  font-weight: 600;
}

.calendar-nav {
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 32px;
  height: 32px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-nav:hover {
  background: var(--gold);
  color: var(--brown-dark);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.calendar-weekdays span {
  text-align: center;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 0;
}

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

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--cream);
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.calendar-day:hover:not(.disabled):not(.empty) {
  background: rgba(201,147,42,0.2);
  border-color: var(--gold);
}

.calendar-day.selected {
  background: var(--gold);
  color: var(--brown-dark);
  font-weight: 600;
}

.calendar-day.today {
  border-color: var(--gold);
}

.calendar-day.disabled {
  color: rgba(245,236,215,0.2);
  cursor: not-allowed;
}

.calendar-day.empty {
  cursor: default;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }

  .about {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 24px;
  }

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

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

  .hero { padding: 100px 24px 80px; }
  .services, .booking, .menu-section, .includes { padding: 80px 24px; }
  footer { padding: 48px 24px 32px; }
}
