/* ============================================================
   FAVENTE RENTAL AND EVENT CATERING LLC
   Stylesheet — Elegant Gold & Forest Green Theme
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Lato:wght@300;400;700&display=swap');

/* --- CSS Variables --- */
:root {
  --green-dark:    #0F3320;
  --green-mid:     #1A4731;
  --green-light:   #2D6A4F;
  --gold:          #C9A84C;
  --gold-light:    #E2C97E;
  --gold-dark:     #9B7B1E;
  --cream:         #F8F3EB;
  --cream-dark:    #EDE6D6;
  --white:         #FFFFFF;
  --text-dark:     #1A1A1A;
  --text-muted:    #5A5A5A;
  --shadow:        0 8px 40px rgba(0,0,0,0.15);
  --shadow-sm:     0 4px 20px rgba(0,0,0,0.10);
  --radius:        6px;
  --transition:    all 0.35s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-dark);
  margin-bottom: 1rem;
}
.section-title span { color: var(--gold); }
.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.7;
}
.center { text-align: center; }
.center .section-subtitle { margin: 0 auto; }

/* --- Gold Divider --- */
.gold-divider {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  margin: 1rem 0 2rem;
  border-radius: 2px;
}
.center .gold-divider { margin: 1rem auto 2rem; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--green-dark);
  box-shadow: 0 4px 18px rgba(201,168,76,0.40);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.55);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--green-dark);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--green-dark);
}
.btn-green {
  background: var(--green-mid);
  color: var(--white);
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.8rem 0;
  transition: var(--transition);
  background: transparent;
}
#navbar.scrolled {
  background: var(--green-dark);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  padding: 0.5rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.nav-logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition: var(--transition);
}
#navbar.scrolled .nav-logo img { width: 44px; height: 44px; }
.nav-brand-text { line-height: 1.1; }
.nav-brand-text .brand-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.nav-brand-text .brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links .btn { margin-left: 0.5rem; padding: 0.6rem 1.5rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: transparent !important;
  border: none;
  outline: none;
}
.hamburger span {
  display: block;
  width: 28px; height: 3px;
  background: #C9A84C !important;
  border-radius: 3px;
  transition: var(--transition);
  box-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--green-dark);
  position: fixed;
  top: 0; right: -100%;
  width: 280px; height: 100vh;
  padding: 5rem 2rem 2rem;
  z-index: 999;
  transition: right 0.4s ease;
  box-shadow: -8px 0 40px rgba(0,0,0,0.4);
}
.mobile-nav.open { right: 0; display: flex; }
.mobile-nav a {
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--gold); padding-left: 0.5rem; }
.mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}
.mobile-overlay.show { display: block; }

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  height: 100vh;
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../Past Work/IMG_6009.JPEG') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
#hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 30, 18, 0.82) 0%,
    rgba(15, 51, 32, 0.55) 60%,
    rgba(15, 51, 32, 0.20) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-title {
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.6rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.25);
  letter-spacing: -0.01em;
}
.hero-title .gold-text { color: var(--gold); }
.hero-motto {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-style: italic;
  color: rgba(255,255,255,0.80);
  margin-bottom: 1.8rem;
  letter-spacing: 0.04em;
}
.hero-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 420px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2s infinite;
}
@keyframes scrollAnim {
  0% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0.3); }
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce-bar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
.announce-bar span { color: var(--white); margin: 0 0.5rem; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services {
  padding: 6rem 0;
  background: var(--cream);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-bottom-color: var(--gold);
}
.service-card-img {
  height: 220px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  position: absolute;
  top: 195px;
  left: 1.5rem;
  border: 3px solid var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 2;
}
.service-card-body { padding: 2.2rem 1.5rem 1.5rem; }
.service-card-body h3 {
  font-size: 1.35rem;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
}
.service-card-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.service-tag {
  display: inline-block;
  background: var(--cream);
  color: var(--green-mid);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  border: 1px solid var(--cream-dark);
  margin: 0.2rem 0.2rem 0.2rem 0;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#why-us {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, #1A4731 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
#why-us::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12);
}
#why-us::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
}
#why-us .section-title { color: var(--white); }
#why-us .section-label { color: var(--gold-light); }
#why-us .gold-divider { margin: 1rem 0 3rem; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 0;
  position: relative;
  z-index: 1;
}
.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-4px);
}
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.why-card h3 {
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}
.why-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}

/* ============================================================
   RENTALS SECTION
   ============================================================ */
#rentals {
  padding: 6rem 0;
  background: var(--white);
}
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 2rem 0;
  justify-content: center;
}
.filter-btn {
  padding: 0.5rem 1.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--cream-dark);
  border-radius: 30px;
  background: var(--cream);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--gold-light);
}
.rentals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.8rem;
}
.rental-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
}
.rental-item:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.rental-item.hidden { display: none; }
.rental-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.rental-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.rental-item:hover .rental-img-wrap img { transform: scale(1.07); }
.rental-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 51, 32, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.rental-item:hover .rental-overlay { opacity: 1; }
.rental-overlay span {
  font-size: 2rem;
  color: var(--gold-light);
}
.rental-info { padding: 1.2rem 1.4rem 1.5rem; }
.rental-info h3 {
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 0.3rem;
}
.rental-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.rental-cat-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201,168,76,0.12);
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 0.5rem;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--gold);
  padding: 3rem 0;
}
.stats-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-top: 0.3rem;
}

/* ============================================================
   BOOKING FORM
   ============================================================ */
#booking {
  padding: 6rem 0;
  background: var(--cream);
}
.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}
.booking-info h3 {
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 0.8rem;
}
.booking-info p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.booking-perks { margin-top: 2rem; }
.booking-perk {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.perk-icon {
  width: 42px; height: 42px;
  min-width: 42px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold-light);
}
.perk-text strong {
  display: block;
  color: var(--green-dark);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}
.perk-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.booking-form {
  background: var(--white);
  border-radius: 14px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--gold);
}
.booking-form h3 {
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}
.booking-form .form-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-style: italic;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
}
.form-group label .required { color: var(--gold-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: #C0392B;
  background: #FDF1F0;
}
.field-error {
  display: none;
  color: #C0392B;
  font-size: 0.78rem;
  font-family: 'Lato', sans-serif;
  letter-spacing: normal;
  text-transform: none;
  font-weight: 600;
}
.field-error.show { display: block; }
.form-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--green-dark);
  margin: 1.5rem 0 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--cream-dark);
}
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}
.check-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-dark);
}
.check-label input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--green-mid);
  cursor: pointer;
}
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.88rem;
}
.radio-option input[type="radio"] {
  accent-color: var(--green-mid);
  width: 16px; height: 16px;
}
.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  font-style: italic;
}
.form-submit { margin-top: 1.5rem; width: 100%; text-align: center; }
.form-submit .btn { width: 100%; padding: 1rem; font-size: 0.9rem; }
#form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(45,106,79,0.08);
  border-radius: 10px;
  border: 1px solid rgba(45,106,79,0.2);
  margin-top: 1rem;
}
#form-success .success-icon { font-size: 3rem; margin-bottom: 1rem; }
#form-success h4 {
  color: var(--green-dark);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
#form-success p { color: var(--text-muted); font-size: 0.92rem; }

/* ============================================================
   PAST WORK GALLERY
   ============================================================ */
#past-work {
  padding: 6rem 0;
  background: var(--white);
}
.gallery-masonry {
  columns: 3;
  column-gap: 1.2rem;
  margin-top: 3rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,51,32,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.active { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 2.5rem;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}
.lightbox-close:hover { color: var(--gold); transform: rotate(90deg); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: var(--white);
  cursor: pointer;
  background: rgba(255,255,255,0.08);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  user-select: none;
}
.lightbox-nav:hover { background: rgba(201,168,76,0.3); color: var(--gold); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ============================================================
   ABOUT US
   ============================================================ */
#about {
  padding: 6rem 0;
  background: var(--cream);
}
.about-intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}
.about-text .section-subtitle { max-width: 500px; }
.about-text ul {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.about-text ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
}
.about-text ul li::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.75rem;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow);
  object-fit: cover;
  max-height: 520px;
}
.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--white);
  padding: 1.2rem 1.6rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.about-img-badge .badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.about-img-badge span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
}

/* Team */
.team-section { margin-top: 2rem; }
.team-section > h3 {
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-img {
  overflow: hidden;
  background: var(--green-dark);
}
.team-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.team-card:hover .team-img img { transform: scale(1.05); }
.team-info {
  padding: 1.8rem;
  border-top: 4px solid var(--gold);
}
.team-info .team-role {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.3rem;
}
.team-info h3 {
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
}
.team-info p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Our Team photo */
.our-team-photo {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--cream-dark);
}
.team-photo-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-height: 480px;
}
.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.5s ease;
}
.team-photo-wrap:hover img { transform: scale(1.03); }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
#service-areas {
  padding: 5rem 0;
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
}
#service-areas .section-title { color: var(--white); }
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.area-chip {
  padding: 0.7rem 1.8rem;
  border: 1.5px solid rgba(201,168,76,0.4);
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cream);
  background: rgba(255,255,255,0.04);
  transition: var(--transition);
}
.area-chip:hover {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  padding: 6rem 0;
  background: var(--cream);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.7;
  margin-bottom: 0.8rem;
  display: block;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
}
.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green-dark);
}
.author-event {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.6rem; }

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  padding: 6rem 0;
  background: var(--white);
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  margin-top: 3rem;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-block h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}
.contact-block p, .contact-block a {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
}
.contact-block a:hover { color: var(--green-mid); text-decoration: underline; }
.contact-block .hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  border-bottom: 1px dashed var(--cream-dark);
}
.contact-block .hours-row span:first-child { color: var(--text-dark); font-weight: 700; }
.contact-block .hours-row.closed span { color: var(--text-muted); }
.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: var(--transition);
  letter-spacing: 0.08em;
}
.social-link:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--gold-light);
}
.social-link .social-icon { font-size: 1.1rem; }
.map-embed {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 420px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.7);
}
.map-embed:hover iframe { filter: saturate(1); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--green-dark);
  color: var(--cream);
  padding: 4rem 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.footer-logo img { width: 60px; height: 60px; object-fit: contain; }
.footer-logo .brand-main {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold);
}
.footer-logo .brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
}
.footer-brand p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 260px;
}
.footer-motto {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold-light);
  font-size: 0.95rem;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul li {
  margin-bottom: 0.6rem;
}
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--gold-light); padding-left: 0.3rem; }
.footer-col p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 0.4rem;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom .footer-social { display: flex; gap: 0.8rem; }
.footer-social-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-dark);
  transform: translateY(-2px);
}

/* ============================================================
   PAGE TRANSITION OVERLAY
   ============================================================ */
#page-transition {
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
#page-transition.fade-in {
  opacity: 1;
  pointer-events: all;
}
#page-transition img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  animation: pt-pulse 0.8s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 18px rgba(201,168,76,0.5));
}
@keyframes pt-pulse {
  from { opacity: 0.7; transform: scale(0.92); }
  to   { opacity: 1;   transform: scale(1.05); }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px; height: 46px;
  background: var(--green-dark);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 900;
  box-shadow: var(--shadow-sm);
}
#back-top.visible { opacity: 1; transform: translateY(0); }
#back-top:hover { background: var(--gold); color: var(--green-dark); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .booking-wrapper { grid-template-columns: 1fr; }
  .booking-info { order: 2; }
  .booking-form { order: 1; }
  .about-intro { grid-template-columns: 1fr; }
  .about-img-wrap { order: -1; }
  .about-img-badge { display: none; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 2; }
}
@media (max-width: 640px) {
  .hero-title { font-size: 2.4rem; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .footer-top { grid-template-columns: 1fr; }
  .stats-inner { flex-direction: column; align-items: center; }
  .rentals-grid { grid-template-columns: 1fr; }
}
