/* ═══════════════════════════════════════════════════════════════
   COX LANDING HIDDEN GEM — Public Website
   Rustic · Luxurious · Elegantly Southern
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --gold:       #c9a84c;
  --gold-lt:    #e8d5a3;
  --brown:      #2a1f14;
  --brown-md:   #4a3728;
  --brown-lt:   #7a5c44;
  --cream:      #f8f3ec;
  --cream-dk:   #ede6d9;
  --blush:      #e8d0c0;
  --sage:       #8a9e7a;
  --purple:     #6b5b8a;
  --white:      #ffffff;
  --text:       #2e1f14;
  --text-lt:    #6b5040;

  --ff-serif:   'Cormorant Garamond', Georgia, serif;
  --ff-display: 'Cinzel', serif;
  --ff-sans:    'Lato', system-ui, sans-serif;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-serif);
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
  font-size: 1.1rem;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }

/* ── LABELS & HEADINGS ────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-label.light { color: var(--gold-lt); }

h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--brown);
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: 1.15rem;
  color: var(--text-lt);
  max-width: 650px;
  margin: 0 auto 3rem;
  text-align: center;
  font-style: italic;
}

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--brown);
  font-family: var(--ff-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: 2px solid var(--gold);
  transition: var(--transition);
}
.btn-primary:hover {
  background: var(--brown);
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--ff-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: 2px solid rgba(255,255,255,0.7);
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--brown);
  border-color: var(--gold);
}

.btn-sm { padding: 0.6rem 1.5rem; font-size: 0.72rem; }
.btn-full { width: 100%; text-align: center; }

/* ── NAVBAR ───────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.5rem 0;
  transition: background 0.45s ease, box-shadow 0.45s ease, padding 0.45s ease;
  background: transparent;
}
.navbar.scrolled {
  background: var(--brown);
  box-shadow: 0 2px 24px rgba(0,0,0,0.45);
  padding: 0.3rem 0;
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* ── LOGO — Script (wide) with faded edges ─────────────────────── */
.nav-logo { flex-shrink: 0; }

.logo-script {
  height: 88px;
  width: auto;
  object-fit: contain;
  /* Fade all four edges so the cream background blends into the navbar */
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0%, black 14%, black 86%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 14%, black 86%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right,  transparent 0%, black 14%, black 86%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 14%, black 86%, transparent 100%);
  mask-composite: intersect;
  filter: brightness(1.0) contrast(1.05) drop-shadow(0 1px 4px rgba(0,0,0,0.2));
  transition: transform var(--transition);
}
.logo-script:hover { transform: scale(1.03); }

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.25rem;
}
.nav-links a {
  font-family: var(--ff-display);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.5rem 0.85rem;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--brown) !important;
  padding: 0.5rem 1.2rem;
  border: 2px solid var(--gold);
}
.nav-links .nav-cta:hover { background: transparent; color: var(--gold) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.4rem;
}

/* ── HERO ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center 25%;
  transition: transform 0.1s linear;
  filter: brightness(0.75) saturate(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.28) 0%,
    rgba(20,10,5,0.55) 55%,
    rgba(20,10,5,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
  max-width: 780px;
}

/* Hero emblem — floral horseshoe logo with faded edges */
.hero-emblem {
  width: 180px;
  height: 180px;
  margin: 0 auto 1.4rem;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(197,160,100,0.6);
  box-shadow: 0 0 0 6px rgba(197,160,100,0.18), 0 4px 24px rgba(0,0,0,0.45);
  background: #2b1f14;
}
.hero-emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 50%;
  filter: brightness(1.08) contrast(1.04);
  animation: emblemFadeIn 1.4s ease both;
}

@keyframes emblemFadeIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}

.hero-eyebrow {
  font-family: var(--ff-display);
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 0.5rem;
  animation: fadeUp 1s ease 0.3s both;
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1rem;
  animation: fadeUp 1s ease 0.5s both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-lt);
  font-weight: 300;
}

.hero-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem auto 1.2rem;
  color: var(--gold);
  animation: fadeUp 1s ease 0.7s both;
}
.hero-rule span {
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.hero-rule i { font-size: 1.1rem; }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  line-height: 1.6;
  animation: fadeUp 1s ease 0.85s both;
}

.hero-btns {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 1s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-lt);
  font-size: 1.1rem;
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── PILLARS STRIP ─────────────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--brown);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.pillar {
  padding: 2.8rem 2rem;
  text-align: center;
  color: var(--cream);
  transition: background var(--transition);
}
.pillar:hover { background: var(--brown-md); }
.pillar.pillar-center {
  background: var(--brown-md);
  border-left: 1px solid rgba(201,168,76,0.25);
  border-right: 1px solid rgba(201,168,76,0.25);
}
.pillar i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
}
.pillar h3 {
  font-family: var(--ff-display);
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 0.6rem;
}
.pillar p {
  font-size: 0.95rem;
  color: rgba(248,243,236,0.75);
  line-height: 1.65;
}

/* ── OUR STORY ─────────────────────────────────────────────────── */
.story {
  background: var(--cream);
  position: relative;
}
.story::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.story-text h2 { color: var(--brown); }

.story-lead {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--brown-lt);
  margin-bottom: 1.2rem;
  line-height: 1.6;
  border-left: 3px solid var(--gold);
  padding-left: 1.2rem;
}

.story-text p {
  color: var(--text-lt);
  margin-bottom: 1rem;
  font-size: 1.08rem;
}

.story-quote {
  margin: 2rem 0;
  padding: 1.5rem 1.8rem;
  background: var(--cream-dk);
  border-left: 4px solid var(--gold);
  position: relative;
}
.story-quote .fa-quote-left {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  display: block;
}
.story-quote blockquote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--brown);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}
.story-quote cite {
  font-size: 0.85rem;
  font-family: var(--ff-display);
  letter-spacing: 0.1em;
  color: var(--gold);
  font-style: normal;
}

/* Story photo stack */
.story-photos { position: relative; }

.story-main-photo {
  position: relative;
  border: 6px solid var(--cream-dk);
  box-shadow: 12px 16px 48px rgba(42,31,20,0.25);
}
.story-main-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}
.photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(42,31,20,0.88), transparent);
  color: var(--gold-lt);
  font-family: var(--ff-display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.4rem 1rem 0.8rem;
  text-align: center;
}

.story-secondary-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.story-secondary-photos img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 4px solid var(--cream-dk);
  box-shadow: 6px 8px 24px rgba(42,31,20,0.18);
  transition: transform var(--transition);
}
.story-secondary-photos img:hover { transform: scale(1.03); }

/* ── SECTION DIVIDER ───────────────────────────────────────────── */
.divider-banner {
  background: var(--cream-dk);
  padding: 1.8rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.divider-inner {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.divider-inner span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.divider-emblem {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  -webkit-mask-image: radial-gradient(circle 48% at 50% 50%,
    black 38%, rgba(0,0,0,0.85) 58%, transparent 78%);
  mask-image: radial-gradient(circle 48% at 50% 50%,
    black 38%, rgba(0,0,0,0.85) 58%, transparent 78%);
  filter: sepia(0.2) brightness(0.95);
}

/* ── THE VENUE ─────────────────────────────────────────────────── */
.venue { background: var(--white); }
.venue .container { text-align: center; margin-bottom: 2rem; }
.venue h2 { color: var(--brown); }

.venue-mosaic {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  grid-template-rows: repeat(2, 240px);
  gap: 6px;
  max-height: 490px;
  overflow: hidden;
  margin: 2rem 0;
}
.mosaic-large {
  grid-row: 1 / 3;
}
.mosaic-large img, .mosaic-top img, .mosaic-mid img, .mosaic-bot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.mosaic-large:hover img,
.mosaic-top:hover img,
.mosaic-mid:hover img,
.mosaic-bot:hover img { transform: scale(1.04); }
.mosaic-large, .mosaic-top, .mosaic-mid, .mosaic-bot { overflow: hidden; }

.venue-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.feature {
  text-align: center;
  padding: 2rem 1.2rem;
  background: var(--cream);
  border-bottom: 3px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(42,31,20,0.1);
}
.feature i {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.feature h4 {
  font-family: var(--ff-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.5rem;
}
.feature p { font-size: 0.92rem; color: var(--text-lt); }

/* ── EVENTS ────────────────────────────────────────────────────── */
.events {
  background: var(--cream-dk);
  text-align: center;
}
.events h2 { color: var(--brown); }

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.event-card {
  background: var(--white);
  box-shadow: 0 4px 24px rgba(42,31,20,0.1);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: left;
  overflow: hidden;
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(42,31,20,0.18);
}
.event-img { overflow: hidden; aspect-ratio: 16/10; }
.event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.event-card:hover .event-img img { transform: scale(1.06); }

.event-body { padding: 1.5rem; }

.event-badge {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--brown);
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.75rem;
}
.badge-riding { background: var(--sage); color: var(--white); }
.badge-private { background: var(--purple); color: var(--white); }
.badge-festival { background: #2a7a3b; color: var(--white); }

/* Events headings */
.events-heading { margin-bottom: 1.25rem; }
.events-tag {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 2px;
}
.upcoming-tag { background: var(--gold); color: var(--brown); }
.past-tag { background: #e0d8cf; color: var(--brown); }

/* Featured event card (full width) */
.event-card--featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column: 1 / -1;
}
.event-card--featured .event-img--flyer {
  aspect-ratio: unset;
  min-height: 420px;
}
.event-img--flyer img {
  object-fit: contain !important;
  background: #111;
}

/* Sub-flyers row */
.event-sub-flyers {
  display: flex;
  gap: 0.75rem;
  margin: 1rem 0;
}
.event-sub-flyers img {
  width: 48%;
  border-radius: 4px;
  object-fit: contain;
  background: #111;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}
.event-sub-flyers img:hover { transform: scale(1.03); }

.event-lineup {
  background: #faf7f3;
  border-left: 3px solid var(--gold);
  padding: 0.65rem 0.9rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: var(--text-lt);
}

/* Past events grid */
.events-grid--past { grid-template-columns: repeat(2, 1fr); }

.event-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 0.75rem;
}
.event-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.85rem;
}
.event-meta span {
  font-size: 0.82rem;
  color: var(--text-lt);
  font-family: var(--ff-sans);
}
.event-meta i { color: var(--gold); margin-right: 0.4rem; }
.event-card p { font-size: 0.95rem; color: var(--text-lt); margin-bottom: 1.2rem; }

.events-cta { margin-top: 1rem; }
.events-cta .btn-outline {
  color: var(--brown);
  border-color: var(--brown-lt);
}
.events-cta .btn-outline:hover {
  background: var(--gold);
  color: var(--brown);
  border-color: var(--gold);
}

/* ── RIDING CLUB ────────────────────────────────────────────────── */
.riding {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.riding-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) saturate(0.8);
}
.riding-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42,31,20,0.82) 45%, rgba(42,31,20,0.55) 100%);
}
.riding-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.riding-text { color: var(--cream); }
.riding-text h2 {
  color: var(--gold-lt);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}
.riding-text p {
  color: rgba(248,243,236,0.82);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.riding-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.riding-list li {
  font-size: 1rem;
  color: rgba(248,243,236,0.88);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.riding-list i { color: var(--gold); flex-shrink: 0; }

/* Riding photos side by side with offset */
.riding-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: end;
}
.riding-photo-frame {
  overflow: hidden;
  box-shadow: 8px 12px 36px rgba(0,0,0,0.5);
  border: 4px solid rgba(201,168,76,0.35);
}
.riding-photo-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
  transition: transform 0.65s ease;
}
.riding-photo-frame:hover img { transform: scale(1.05); }
.riding-photo-frame.r1 { transform: translateY(1.5rem); }
.riding-photo-frame.r2 { transform: translateY(-1rem); }

/* ── GALLERY ────────────────────────────────────────────────────── */
.gallery {
  background: var(--brown);
  text-align: center;
}
.gallery .section-label { color: var(--gold); }
.gallery h2 { color: var(--gold-lt); }
.gallery .section-sub { color: rgba(248,243,236,0.65); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 4px;
  margin-top: 2rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(42,31,20,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: var(--gold-lt);
  font-size: 1.5rem;
}
.gallery-item:hover .gallery-hover { opacity: 1; }

/* ── LIGHTBOX ───────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,5,2,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
  border: 2px solid rgba(201,168,76,0.3);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--gold-lt);
  font-size: 1.6rem;
  cursor: pointer;
  transition: color var(--transition);
}
.lightbox-close:hover { color: var(--white); }

/* ── BOOK NOW ────────────────────────────────────────────────────── */
.book {
  position: relative;
  background: var(--brown);
}
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.book-text { color: var(--cream); }
.book-text h2 { color: var(--gold-lt); font-size: clamp(2rem, 3.5vw, 3.2rem); }
.book-text p { color: rgba(248,243,236,0.78); margin-bottom: 1.5rem; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: rgba(248,243,236,0.82);
  font-size: 0.98rem;
  line-height: 1.5;
}
.contact-item i { color: var(--gold); margin-top: 0.15rem; flex-shrink: 0; }
.contact-item a { color: rgba(248,243,236,0.82); }
.contact-item a:hover { color: var(--gold); }

/* Book section emblem — dark logo with faded edges */
.book-emblem {
  width: 160px;
  height: 160px;
  margin-top: 1rem;
}
.book-emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  -webkit-mask-image: radial-gradient(circle 48% at 50% 50%,
    black 40%, rgba(0,0,0,0.8) 58%, transparent 75%);
  mask-image: radial-gradient(circle 48% at 50% 50%,
    black 40%, rgba(0,0,0,0.8) 58%, transparent 75%);
  filter: brightness(1.1);
}

/* Booking form */
.book-form {
  background: var(--cream);
  padding: 2.5rem 2.5rem 2rem;
  box-shadow: 0 8px 48px rgba(0,0,0,0.35);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; margin-bottom: 1rem; }
.form-group label {
  font-family: var(--ff-display);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown-lt);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--blush);
  background: var(--white);
  padding: 0.7rem 0.9rem;
  font-family: var(--ff-serif);
  font-size: 1rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  border-radius: 0;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; }

.form-success {
  text-align: center;
  padding: 3rem 2rem;
}
.form-success i {
  font-size: 3rem;
  color: var(--sage);
  margin-bottom: 1rem;
  display: block;
}
.form-success h3 {
  font-family: var(--ff-serif);
  font-size: 2rem;
  color: var(--brown);
  margin-bottom: 0.75rem;
}
.form-success p { color: var(--text-lt); }

/* ── FOOTER ──────────────────────────────────────────────────────── */
.footer { background: var(--brown); padding: 4rem 0 0; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,168,76,0.18);
}

/* Footer dark logo — large with faded edges */
.footer-logo { display: flex; flex-direction: column; align-items: flex-start; }

.footer-logo-img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  -webkit-mask-image: radial-gradient(circle 48% at 50% 50%,
    black 42%, rgba(0,0,0,0.85) 60%, transparent 78%);
  mask-image: radial-gradient(circle 48% at 50% 50%,
    black 42%, rgba(0,0,0,0.85) 60%, transparent 78%);
  filter: brightness(1.08);
  margin-bottom: 0.5rem;
  margin-left: -1rem;
}

.footer-tagline {
  font-family: var(--ff-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(232,213,163,0.65);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.social-icons {
  display: flex;
  gap: 0.85rem;
}
.social-icons a {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-lt);
  font-size: 0.85rem;
  transition: background var(--transition), border-color var(--transition);
}
.social-icons a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--brown);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  color: rgba(248,243,236,0.62);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-lt); }

.footer-contact p {
  font-size: 0.95rem;
  color: rgba(248,243,236,0.62);
  margin-bottom: 0.6rem;
  line-height: 1.6;
}
.footer-contact i { color: var(--gold); margin-right: 0.5rem; }
.footer-contact a {
  color: rgba(248,243,236,0.62);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--gold-lt); }

.footer-bottom {
  text-align: center;
  padding: 1.2rem;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.footer-bottom p {
  font-family: var(--ff-display);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: rgba(232,213,163,0.35);
  text-transform: uppercase;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .venue-features { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .events-grid .event-card:last-child { grid-column: span 2; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 200px); }
  .gallery-item:nth-child(1) { grid-row: span 2; }
  .gallery-item:nth-child(5) { grid-column: span 1; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 260px;
    background: var(--brown);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    transition: right 0.4s ease;
    box-shadow: -4px 0 24px rgba(0,0,0,0.4);
  }
  .nav-links.open { right: 0; }
  .nav-links .nav-cta { margin-top: 0.5rem; }

  .logo-script { height: 64px; }

  .pillars { grid-template-columns: 1fr; }
  .pillar.pillar-center { border-left: none; border-right: none; border-top: 1px solid rgba(201,168,76,0.25); border-bottom: 1px solid rgba(201,168,76,0.25); }

  .story-grid, .riding-content, .book-grid, .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-photos { order: -1; }

  .venue-features { grid-template-columns: 1fr 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .events-grid .event-card:last-child { grid-column: span 1; }
  .event-card--featured { grid-template-columns: 1fr; }
  .event-card--featured .event-img--flyer { min-height: 280px; }
  .events-grid--past { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 180px); }
  .gallery-item:nth-child(1) { grid-row: span 2; }
  .gallery-item:nth-child(5) { grid-column: span 2; }

  .form-row { grid-template-columns: 1fr; }
  .riding-photos { grid-template-columns: 1fr; gap: 1rem; }
  .riding-photo-frame.r1, .riding-photo-frame.r2 { transform: none; }

  .venue-mosaic { grid-template-rows: repeat(2, 180px); }

  .footer-logo-img { width: 160px; height: 160px; margin-left: 0; }
  .book-emblem { width: 120px; height: 120px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.8rem; }
  .hero-emblem { width: 120px; height: 120px; }
  .venue-features, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-rows: auto; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(5) { grid-column: span 1; grid-row: span 1; }
  .gallery-item { aspect-ratio: 4/3; }
  .gallery-item img { position: static; height: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   AVAILABILITY CALENDAR
═══════════════════════════════════════════════════════════ */
.availability { background: linear-gradient(180deg, #0e0800 0%, #1a0f00 100%); }

/* Legend */
.cal-legend {
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: center;
  margin-bottom: 28px;
}
.cal-legend-item { display: flex; align-items: center; gap: 7px; font-size: 0.82rem; color: #c8b890; font-family: 'Lato', sans-serif; }
.cal-dot { width: 13px; height: 13px; border-radius: 3px; flex-shrink: 0; }
.dot-available  { background: rgba(46,91,64,0.7);   border: 1.5px solid #3a7a54; }
.dot-held       { background: rgba(180,140,20,0.7);  border: 1.5px solid #c8a010; }
.dot-confirmed  { background: rgba(30,64,112,0.7);   border: 1.5px solid #2a5ca8; }
.dot-blocked    { background: rgba(139,26,26,0.7);   border: 1.5px solid #aa2222; }

/* Calendar wrapper */
.cal-wrapper {
  max-width: 900px; margin: 0 auto;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px; padding: 24px; backdrop-filter: blur(4px);
}

/* FullCalendar overrides */
.cal-wrapper .fc { font-family: 'Lato', sans-serif; }
.cal-wrapper .fc-toolbar-title {
  font-family: 'Cormorant Garamond', serif; color: #c9a84c; font-size: 1.5rem; font-weight: 600;
}
.cal-wrapper .fc-button {
  background: rgba(201,168,76,0.12) !important; border: 1px solid rgba(201,168,76,0.35) !important;
  color: #c9a84c !important; padding: 7px 16px !important; border-radius: 6px !important;
  font-family: 'Lato', sans-serif !important; font-size: 0.9rem !important; transition: all 0.2s !important;
}
.cal-wrapper .fc-button:hover { background: rgba(201,168,76,0.25) !important; }
.cal-wrapper .fc-button-active { background: rgba(201,168,76,0.3) !important; }
.cal-wrapper .fc-col-header-cell-cushion {
  color: #c9a84c !important; font-size: 0.8rem; font-weight: 600; text-decoration: none !important;
}
.cal-wrapper .fc-daygrid-day-number {
  color: #c8b890 !important; font-size: 0.9rem; text-decoration: none !important;
}
.cal-wrapper .fc-day-other .fc-daygrid-day-number { color: #444 !important; }
.cal-wrapper .fc-day-today { background: rgba(201,168,76,0.07) !important; }
.cal-wrapper .fc-scrollgrid,
.cal-wrapper .fc-scrollgrid td,
.cal-wrapper .fc-scrollgrid th { border-color: rgba(201,168,76,0.1) !important; }

/* Availability status day cells */
.cal-wrapper .fc-daygrid-day[data-status="available"] { cursor: pointer; }
.cal-wrapper .fc-daygrid-day[data-status="available"]:hover { background: rgba(46,91,64,0.18) !important; }
.cal-wrapper .fc-bg-event.cal-available { background: rgba(46,91,64,0.5) !important; }
.cal-wrapper .fc-bg-event.cal-held      { background: rgba(180,140,20,0.5) !important; }
.cal-wrapper .fc-bg-event.cal-confirmed { background: rgba(30,64,112,0.5) !important; }
.cal-wrapper .fc-bg-event.cal-blocked   { background: rgba(139,26,26,0.5) !important; }

/* ── Hold Request Modal ── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(6px);
  z-index: 2000; align-items: center; justify-content: center; padding: 16px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: linear-gradient(145deg, #1a0f00, #2a1a00);
  border: 1px solid rgba(201,168,76,0.35); border-radius: 20px;
  padding: 40px; width: 580px; max-width: 100%; max-height: 90vh; overflow-y: auto;
  position: relative; animation: modalIn 0.3s ease;
}
@keyframes modalIn { from { opacity:0; transform:translateY(20px) scale(0.97); } to { opacity:1; transform:none; } }
.modal-close {
  position: absolute; top: 16px; right: 20px; background: transparent;
  border: none; color: #a89060; font-size: 1.1rem; cursor: pointer; transition: color 0.2s;
}
.modal-close:hover { color: #e8c340; }
.modal-icon { font-size: 2.2rem; text-align: center; margin-bottom: 8px; }
.modal-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: #c9a84c;
  text-align: center; margin-bottom: 6px;
}
.modal-date-display {
  text-align: center; color: #e8c340; font-weight: 600; font-size: 1rem; margin-bottom: 24px;
}
.modal-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.modal-form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.modal-form-group label { font-size: 0.8rem; color: #a89060; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.modal-form-group input,
.modal-form-group select,
.modal-form-group textarea {
  padding: 11px 14px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.25); border-radius: 8px; color: #e8ddc8;
  font-family: 'Lato', sans-serif; font-size: 0.9rem; outline: none; transition: border-color 0.2s;
}
.modal-form-group input:focus,
.modal-form-group select:focus,
.modal-form-group textarea:focus { border-color: rgba(201,168,76,0.6); }
.modal-form-group select option { background: #2a1a00; color: #e8ddc8; }
.modal-submit-btn {
  width: 100%; padding: 14px; background: linear-gradient(135deg, #c9a84c, #a07830);
  border: none; border-radius: 10px; color: #1a0f00; font-family: 'Lato', sans-serif;
  font-weight: 700; font-size: 1rem; cursor: pointer; transition: all 0.25s; margin-top: 6px;
}
.modal-submit-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,0.35); }
.hold-success { text-align: center; padding: 16px 0; }
.hold-success .success-icon { font-size: 3rem; margin-bottom: 12px; }
.hold-success h4 { font-family: 'Cormorant Garamond', serif; color: #c9a84c; font-size: 1.5rem; margin-bottom: 8px; }
.hold-success p { color: #c8b890; font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; }
.modal-close-btn {
  padding: 11px 28px; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.4);
  border-radius: 8px; color: #c9a84c; cursor: pointer; font-size: 0.9rem; transition: all 0.2s;
}
.modal-close-btn:hover { background: rgba(201,168,76,0.25); }

@media (max-width: 600px) {
  .modal-form-row { grid-template-columns: 1fr; }
  .modal-box { padding: 28px 20px; }
  .cal-wrapper { padding: 12px; }
}
