/* ========================================
   ROYAL FARM VENUE – MAIN STYLESHEET
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Open+Sans:wght@300;400;500;600&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --black:      #0F0F0F;
  --charcoal:   #141414;
  --ivory:      #F7F3EA;
  --gold:       #C6A75E;
  --gold-light: #D4B97A;
  --gold-dark:  #A8893C;
  --off-white:  #EDEDED;
  --text-dark:  #333;
  --text-mid:   #555;
  --text-light: #888;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--black);
  color: var(--off-white);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- TYPOGRAPHY ---- */
.heading-serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ---- LAYOUT ---- */
.container { max-width: 1152px; margin: 0 auto; padding: 0 1rem; }
.container-sm { max-width: 768px; margin: 0 auto; padding: 0 1rem; }
.container-md { max-width: 896px; margin: 0 auto; padding: 0 1rem; }

/* ---- GOLD DIVIDER ---- */
.gold-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  width: 100%;
}
.gold-divider.short { max-width: 6rem; }
.gold-divider.medium { max-width: 9rem; }
.gold-divider.center { margin-left: auto; margin-right: auto; }

/* ---- BUTTONS ---- */
.btn-gold-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: background-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
}
.btn-gold-solid:hover {
  background-color: var(--gold-light);
  box-shadow: 0 0 20px rgba(198,167,94,0.4);
}

.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: background-color 0.3s, box-shadow 0.3s, color 0.3s;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
}
.btn-gold-outline:hover {
  background-color: var(--gold);
  color: var(--black);
  box-shadow: 0 0 20px rgba(198,167,94,0.3);
}
.btn-gold-outline.dark-bg { border-color: rgba(198,167,94,0.5); }

.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.65rem; }

/* ---- NAV LINK ---- */
.nav-link {
  position: relative;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  right: 50%;
  height: 1px;
  background-color: var(--gold);
  transition: left 0.3s ease, right 0.3s ease;
}
.nav-link:hover::after { left: 0; right: 0; }

/* ---- HEADER ---- */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background-color: #0F0F0F;
  border-bottom: 1px solid rgba(198,167,94,0.15);
  transition: background-color 0.3s;
}
#site-header.scrolled { background-color: rgba(15,15,15,0.98); }
.header-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 1024px) { .header-inner { height: 80px; } }

.logo-wrap { display: flex; align-items: center; gap: 0.75rem; }
.logo-img { height: 40px; width: 40px; object-fit: contain; }
@media (min-width: 1024px) { .logo-img { height: 48px; width: 48px; } }
.logo-text { display: none; }
@media (min-width: 640px) { .logo-text { display: block; } }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(237,237,237,0.7);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
@media (min-width: 1024px) { .desktop-nav { display: flex; } }

.header-ctas { display: none; align-items: center; gap: 0.75rem; }
@media (min-width: 1024px) { .header-ctas { display: flex; } }

.header-phone-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(198,167,94,0.35);
  transition: background-color 0.2s;
}
.header-phone-btn:hover { background-color: rgba(198,167,94,0.08); }

.mobile-top-actions { display: flex; align-items: center; gap: 0.5rem; }
@media (min-width: 1024px) { .mobile-top-actions { display: none; } }

.mobile-call-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.45rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid rgba(198,167,94,0.35);
}

.hamburger { padding: 0.5rem; color: var(--gold); }
.hamburger svg { display: block; }

.mobile-nav {
  display: none;
  background-color: var(--black);
  border-top: 1px solid rgba(198,167,94,0.2);
  padding: 1rem 1.5rem 1.5rem;
}
.mobile-nav.open { display: block; }
.mobile-nav .nav-link {
  display: block;
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(198,167,94,0.07);
}
.mobile-nav-ctas { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.25rem; }

/* ---- PAGE WRAP ---- */
.page-wrap { padding-top: 64px; }
@media (min-width: 1024px) { .page-wrap { padding-top: 80px; } }

/* ---- HERO ---- */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--black);
  overflow: hidden;
}
.hero-section.short { min-height: 60vh; }
.hero-section.medium { min-height: 80vh; }
.hero-section.tall { min-height: 85vh; }

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.65) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1rem;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.25rem;
  line-height: 1.1;
  font-size: clamp(2rem, 6vw, 4rem);
}

.hero-body {
  color: rgba(237,237,237,0.85);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hero-btns { flex-direction: row; justify-content: center; }
}

.hero-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--gold);
}

/* ---- QUICK CONTACT BAR ---- */
.quick-contact-bar {
  padding: 1.25rem 1rem;
  background-color: #0A0A0A;
  border-top: 1px solid rgba(198,167,94,0.2);
  border-bottom: 1px solid rgba(198,167,94,0.2);
}
.quick-contact-bar .bar-label {
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}
.quick-contact-bar .bar-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .quick-contact-bar .bar-btns { flex-direction: row; justify-content: center; }
}
.quick-contact-bar .bar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  width: 100%;
  transition: all 0.2s;
}
@media (min-width: 640px) { .quick-contact-bar .bar-btn { width: auto; } }
.quick-contact-bar .bar-btn.call-btn {
  color: var(--gold);
  border: 1px solid rgba(198,167,94,0.35);
  background: #141414;
}
.quick-contact-bar .bar-btn.call-btn:hover { background: rgba(198,167,94,0.08); }
.quick-contact-bar .bar-btn.wa-btn {
  background-color: var(--gold);
  color: var(--black);
}
.quick-contact-bar .bar-btn.wa-btn:hover { background-color: var(--gold-light); }
.quick-contact-bar .bar-btn.map-btn {
  color: var(--gold);
  border: 1px solid rgba(198,167,94,0.35);
  background: #141414;
}
.quick-contact-bar .bar-btn.map-btn:hover { background: rgba(198,167,94,0.08); }

/* ---- SECTIONS ---- */
.section { padding: 5rem 1rem; }
.section-sm { padding: 4rem 1rem; }
.section-black { background-color: var(--black); }
.section-charcoal { background-color: var(--charcoal); }
.section-ivory { background-color: var(--ivory); }

/* ---- TRUST STRIP ---- */
.trust-strip {
  padding: 1.75rem 1rem;
  background-color: var(--black);
  border-top: 1px solid rgba(198,167,94,0.15);
  border-bottom: 1px solid rgba(198,167,94,0.15);
}
.trust-strip-inner {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) { .trust-strip-inner { flex-direction: row; justify-content: center; gap: 3rem; } }
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--off-white);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.trust-item .gold-dot { color: var(--gold); }
.trust-sep {
  display: none;
  background: rgba(198,167,94,0.4);
  height: 20px;
  width: 1px;
}
@media (min-width: 768px) { .trust-sep { display: block; } }

/* ---- GRID LAYOUTS ---- */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-2-lg { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.grid-align-center { align-items: center; }

/* ---- IMG GOLD FRAME ---- */
.img-gold-frame {
  border: 1px solid var(--gold);
  padding: 4px;
}
.img-gold-frame img { width: 100%; height: 22rem; object-fit: cover; display: block; }
.img-gold-frame img.tall { height: 26rem; }

/* ---- CELEBRATION CARD ---- */
.celebration-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(198,167,94,0.3);
  transition: border-color 0.3s;
  height: 18rem;
  cursor: pointer;
  display: block;
}
.celebration-card:hover { border-color: var(--gold); }
.celebration-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.celebration-card:hover img { transform: scale(1.05); }
.celebration-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.3) 60%, transparent 100%);
}
.celebration-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
}
.celebration-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.celebration-card-desc { font-size: 0.875rem; color: rgba(237,237,237,0.8); }
.celebration-card-arrow {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.celebration-card:hover .celebration-card-arrow { opacity: 1; }

/* ---- CARD GOLD HOVER ---- */
.card-gold-hover {
  border: 1px solid rgba(198,167,94,0.3);
  transition: box-shadow 0.3s, transform 0.3s;
}
.card-gold-hover:hover {
  box-shadow: 0 0 30px rgba(198,167,94,0.2), 0 8px 30px rgba(0,0,0,0.3);
  transform: translateY(-4px);
}

/* ---- DARK FEATURE CARD ---- */
.dark-card {
  background-color: var(--charcoal);
  overflow: hidden;
}
.dark-card .card-img {
  position: relative;
  height: 11rem;
  overflow: hidden;
}
.dark-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.dark-card:hover .card-img img { transform: scale(1.05); }
.dark-card .card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.7) 0%, transparent 60%);
}
.dark-card .card-body { padding: 1.5rem; }
.dark-card .card-title { font-family: 'Playfair Display', serif; font-size: 1.0625rem; color: var(--gold); margin-bottom: 0.5rem; }

/* ---- WHITE CARD ---- */
.white-card {
  background-color: #fff;
  border: 1px solid rgba(198,167,94,0.2);
  padding: 2rem;
  transition: box-shadow 0.3s;
}
.white-card:hover { box-shadow: 0 0 24px rgba(198,167,94,0.15); }
.white-card .card-title { font-family: 'Playfair Display', serif; font-size: 1.0625rem; color: var(--black); margin-bottom: 0.5rem; }

/* ---- GALLERY ---- */
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.gallery-item {
  position: relative;
  overflow: hidden;
  height: 16rem;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(198,167,94,0.25);
  border: 2px solid var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--off-white); }

/* ---- GALLERY FILTER TABS ---- */
.filter-bar {
  padding: 2rem 1rem;
  background-color: var(--black);
  border-bottom: 1px solid rgba(198,167,94,0.15);
  position: sticky;
  top: 64px;
  z-index: 40;
}
@media (min-width: 1024px) { .filter-bar { top: 80px; } }
.filter-btns { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.filter-btn {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(198,167,94,0.3);
  color: var(--gold);
  background: transparent;
  transition: all 0.3s;
  cursor: pointer;
}
.filter-btn.active, .filter-btn:hover {
  background-color: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ---- LIGHTBOX ---- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox-inner { max-width: 56rem; width: 100%; position: relative; }
.lightbox-close {
  position: absolute;
  top: -3rem; right: 0;
  color: #fff;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}
.lightbox img { width: 100%; max-height: 75vh; object-fit: contain; }
.lightbox-caption { text-align: center; margin-top: 1rem; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }

/* ---- FAQ ACCORDION ---- */
.faq-list { border-top: 1px solid rgba(198,167,94,0.15); }
.faq-item { border-bottom: 1px solid rgba(198,167,94,0.15); }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  gap: 1rem;
}
.faq-q { font-size: 1rem; font-weight: 500; color: var(--black); }
.faq-icon {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.125rem;
  font-weight: 300;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-icon.open { transform: rotate(180deg); }
.faq-answer { display: none; padding-bottom: 1.25rem; }
.faq-answer.open { display: block; }
.faq-a { font-size: 0.875rem; line-height: 1.75; color: var(--text-mid); }

/* ---- PRICING CARD ---- */
.pricing-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(198,167,94,0.3);
  background-color: var(--charcoal);
}
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(198,167,94,0.15);
  background-color: #1A1505;
}
.pricing-badge {
  padding: 0.5rem;
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  background-color: var(--gold);
  color: var(--black);
}
.pricing-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.pricing-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--gold); margin-bottom: 0.25rem; }
.pricing-subtitle { font-size: 0.7rem; color: rgba(237,237,237,0.5); margin-bottom: 1rem; }
.pricing-price { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--off-white); margin-bottom: 1.25rem; }
.pricing-features { flex: 1; margin-bottom: 1.75rem; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(237,237,237,0.72);
  margin-bottom: 0.625rem;
}
.pricing-features .check { color: var(--gold); font-size: 0.75rem; }

/* ---- TESTIMONIAL ---- */
.testimonial-card {
  background-color: var(--charcoal);
  border: 1px solid rgba(198,167,94,0.2);
  padding: 2rem;
}
.testimonial-quote { font-size: 0.9375rem; line-height: 1.75; color: rgba(237,237,237,0.85); margin-bottom: 1.5rem; font-style: italic; }
.testimonial-name { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--gold); }
.testimonial-event { font-size: 0.7rem; color: rgba(237,237,237,0.45); letter-spacing: 0.1em; text-transform: uppercase; }

/* ---- LOCATION SECTION ---- */
.location-section { padding: 5rem 1rem; }
.location-section.dark { background-color: var(--black); }
.location-section.light { background-color: var(--ivory); }
.location-inner { max-width: 48rem; margin: 0 auto; text-align: center; }
.location-points { margin-bottom: 2rem; }
.location-points li { font-size: 0.875rem; margin-bottom: 0.5rem; }
.location-btns { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
@media (min-width: 640px) { .location-btns { flex-direction: row; justify-content: center; } }

/* ---- SCARCITY SECTION ---- */
.scarcity-section { padding: 5rem 1rem; }
.scarcity-section.dark { background-color: var(--black); }
.scarcity-section.light { background-color: var(--ivory); }
.scarcity-inner { max-width: 40rem; margin: 0 auto; text-align: center; }
.scarcity-btns { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
@media (min-width: 640px) { .scarcity-btns { flex-direction: row; justify-content: center; } }

/* ---- SECTION HEADINGS ---- */
.section-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.section-h2-gold { font-family: 'Playfair Display', serif; font-size: clamp(1.75rem, 4vw, 2.5rem); color: var(--gold); margin-bottom: 1.25rem; }
.section-h2-dark { font-family: 'Playfair Display', serif; font-size: clamp(1.75rem, 4vw, 2.5rem); color: var(--black); margin-bottom: 1.25rem; }
.section-h2-white { font-family: 'Playfair Display', serif; font-size: clamp(1.75rem, 4vw, 2.5rem); color: var(--off-white); margin-bottom: 1.25rem; }
.section-body { font-size: 1rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 1rem; }
.section-body-ivory { color: rgba(237,237,237,0.75); }

/* ---- BULLET LIST ---- */
.bullet-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--text-mid); margin-bottom: 0.375rem; }
.bullet-list li::before { content: '•'; color: var(--gold); flex-shrink: 0; }
.diamond-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--text-mid); margin-bottom: 0.375rem; }
.diamond-list li::before { content: '◈'; color: var(--gold); flex-shrink: 0; }

/* ---- FORMS ---- */
.form-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: #666;
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  border: 1px solid rgba(198,167,94,0.3);
  background: #fff;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
  font-family: 'Open Sans', sans-serif;
}
.form-input:focus { border-color: var(--gold); }
.form-field { margin-bottom: 1.25rem; }

/* ---- FOOTER ---- */
#site-footer { background-color: var(--black); }
.footer-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 1fr 1fr 1fr; gap: 4rem; } }
.footer-logo-col { display: flex; flex-direction: column; align-items: center; text-align: center; }
@media (min-width: 1024px) { .footer-logo-col { align-items: flex-start; text-align: left; } }
.footer-logo { height: 4rem; width: 4rem; object-fit: contain; margin-bottom: 1rem; }
.footer-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--gold); margin-bottom: 0.25rem; }
.footer-subtitle { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(237,237,237,0.5); margin-bottom: 1.25rem; }
.footer-addr { font-size: 0.875rem; line-height: 1.75; color: rgba(237,237,237,0.75); }
.footer-phone { display: flex; align-items: center; gap: 0.4rem; margin-top: 0.75rem; color: var(--gold); font-weight: 600; font-size: 0.9375rem; }
.footer-links-col { text-align: center; }
@media (min-width: 1024px) { .footer-links-col { text-align: left; } }
.footer-col-title { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--gold); margin-bottom: 1.25rem; }
.footer-links li { margin-bottom: 0.625rem; }
.footer-links a { font-size: 0.875rem; color: rgba(237,237,237,0.65); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-cta-col { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
@media (min-width: 1024px) { .footer-cta-col { align-items: flex-start; } }
.footer-note { font-size: 0.7rem; line-height: 1.6; color: rgba(237,237,237,0.45); margin-top: 0.5rem; }
.footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; padding-bottom: 2.5rem; }
.footer-bottom img { height: 2rem; width: 2rem; object-fit: contain; opacity: 0.4; }
.footer-copy { font-size: 0.7rem; text-align: center; color: rgba(237,237,237,0.3); }

/* ---- FLOATING ELEMENTS ---- */
.floating-btns {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.floating-call {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(198,167,94,0.45);
  transition: transform 0.2s;
  font-size: 1.25rem;
}
.floating-call:hover { transform: scale(1.05); }
.floating-wa {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  font-size: 1.5rem;
  animation: wa-pulse 2.5s infinite;
  transition: transform 0.2s;
}
.floating-wa:hover { transform: scale(1.05); }
.scroll-top-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(15,15,15,0.9);
  border: 1px solid rgba(198,167,94,0.5);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  display: none;
}
.scroll-top-btn.visible { display: flex; }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 10px rgba(37,211,102,0); }
}

/* ---- SCROLL ANIMATIONS ---- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---- UTILITY ---- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-ivory { color: var(--ivory); }
.text-offwhite { color: var(--off-white); }
.text-dark { color: var(--black); }
.text-mid { color: var(--text-mid); }
.text-dim { color: rgba(237,237,237,0.45); font-size: 0.7rem; }
.italic-serif { font-family: 'Playfair Display', serif; font-style: italic; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-7 { margin-bottom: 1.75rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-10 { margin-top: 2.5rem; }
.w-full { width: 100%; }
.block { display: block; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.hidden { display: none; }

/* ---- HORSE SECTION BANNER ---- */
.horse-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
}
@media (min-width: 768px) { .horse-banner { height: 500px; } }
.horse-banner img { width: 100%; height: 100%; object-fit: cover; }
.horse-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.2) 100%);
}
.horse-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 2rem 2rem;
}
@media (min-width: 768px) { .horse-banner-content { padding: 2rem 4rem; } }
.horse-banner-inner { max-width: 28rem; }

/* ---- MAP EMBED ---- */
.map-embed-wrap { width: 100%; height: 350px; border: 1px solid rgba(198,167,94,0.3); overflow: hidden; }
.map-embed-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ---- CONTACT DIRECT ---- */
.contact-direct-box {
  padding: 1.5rem;
  border: 1px solid rgba(198,167,94,0.2);
  background-color: var(--ivory);
}

/* ---- RATING DISPLAY ---- */
.rating-display { display: flex; justify-content: center; align-items: center; gap: 0.5rem; }
.rating-number { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--gold); }
.rating-stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.05em; }
.rating-label { font-size: 0.7rem; color: var(--text-light); margin-top: 0.25rem; }
