/* ============================================
   OLIMPIA CLUB MALINDI — STYLESHEET
   Vintage Italian Riviera members' club
   Deep forest green · Aged gold · Ivory
   Art deco · Dense editorial · Retro glam
   ============================================ */

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

:root {
  --green:        #1C3A2E;
  --green-deep:   #0F2219;
  --green-mid:    #2A5240;
  --green-light:  #3A6E58;
  --gold:         #B8912A;
  --gold-light:   #D4AE56;
  --gold-pale:    #F0DFA0;
  --ivory:        #F7F2E8;
  --ivory-dark:   #EDE5D0;
  --ivory-deep:   #D6C9AA;
  --white:        #FDFAF4;
  --text:         #1C1208;
  --text-mid:     #4A3E28;
  --text-muted:   #7A6C4E;
  --shadow:       0 6px 40px rgba(15,34,25,0.25);
  --shadow-lg:    0 20px 80px rgba(15,34,25,0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--ivory);
  color: var(--text);
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Libre Baskerville', serif; }

/* ============================================
   LOADER — spinning crest
   ============================================ */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--green-deep);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }

.loader-crest {
  position: relative;
  width: 80px;
  height: 80px;
}
.loader-crest-ring {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  border-right-color: var(--gold-light);
  border-radius: 50%;
  animation: crestSpin 1.2s linear infinite;
}
.loader-crest-ring.inner {
  inset: 12px;
  border-top-color: var(--gold-pale);
  border-right-color: transparent;
  animation-duration: 0.8s;
  animation-direction: reverse;
}
@keyframes crestSpin { to { transform: rotate(360deg); } }

.loader-crest-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.4rem;
  color: var(--gold-light);
  font-style: italic;
}

.loader-text {
  text-align: center;
}
.loader-text .name {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.6rem;
  color: var(--ivory);
  font-weight: 400;
  letter-spacing: 0.1em;
}
.loader-text .sub {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(247,242,232,0.35);
  margin-top: 4px;
}

/* ============================================
   TICKER — scrolling amenities strip
   ============================================ */
.ticker {
  background: var(--gold);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.55rem 0;
}
.ticker-inner {
  display: inline-block;
  animation: tickerScroll 28s linear infinite;
}
.ticker-inner span {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 600;
  padding: 0 2.5rem;
}
.ticker-inner span::before {
  content: '✦';
  margin-right: 2.5rem;
  opacity: 0.6;
}
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  background: var(--green-deep);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(184,145,42,0.25);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.brand-emblem {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-light);
  flex-shrink: 0;
}
.brand-text .top {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  color: var(--ivory);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
}
.brand-text .bottom {
  font-size: 0.5rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(247,242,232,0.35);
  display: block;
  margin-top: 1px;
}
.navbar-nav .nav-link {
  color: rgba(247,242,232,0.65) !important;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem !important;
  transition: color 0.25s;
}
.navbar-nav .nav-link:hover { color: var(--gold-light) !important; }
.btn-nav-reserve {
  background: var(--gold);
  color: var(--green-deep) !important;
  font-size: 0.68rem !important;
  font-weight: 600;
  letter-spacing: 0.2em;
  padding: 0.42rem 1.2rem !important;
  transition: all 0.3s;
}
.btn-nav-reserve:hover { background: var(--gold-light); color: var(--green-deep) !important; }
.navbar-toggler { border-color: rgba(184,145,42,0.3); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(184,145,42,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   HERO — centered crest layout
   ============================================ */
.hero {
  background: var(--green-deep);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 1rem 4rem;
}

/* radial glow */
.hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,145,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* art deco grid lines */
.hero-deco-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-deco-lines::before,
.hero-deco-lines::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(184,145,42,0.12) 30%, rgba(184,145,42,0.12) 70%, transparent);
}
.hero-deco-lines::before { left: 12%; }
.hero-deco-lines::after  { right: 12%; }

/* large circle crest */
.hero-crest {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 2.5rem;
}
.hero-crest-outer {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184,145,42,0.3);
  border-radius: 50%;
}
.hero-crest-mid {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(184,145,42,0.2);
  border-radius: 50%;
}
.hero-crest-inner {
  position: absolute;
  inset: 28px;
  border: 1.5px solid rgba(184,145,42,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
}
.hero-crest-o {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.8rem;
  color: var(--gold-light);
  font-style: italic;
  line-height: 1;
  font-weight: 700;
}
.hero-crest-star {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
}

.hero-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.15rem;
}
.hero h1 span { display: block; font-weight: 400; font-style: italic; color: var(--gold-light); font-size: 0.6em; }
.hero-sub {
  font-size: 0.72rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(247,242,232,0.4);
  margin: 1.25rem 0 2rem;
}

/* art deco divider */
.deco-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.25rem auto;
  max-width: 320px;
}
.deco-divider .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,145,42,0.5));
}
.deco-divider .line.rev { background: linear-gradient(to left, transparent, rgba(184,145,42,0.5)); }
.deco-divider .diamond {
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.deco-divider .dot {
  width: 4px; height: 4px;
  background: rgba(184,145,42,0.5);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.hero-pill {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,242,232,0.5);
  border: 1px solid rgba(184,145,42,0.25);
  padding: 0.3rem 0.9rem;
}

.btn-primary-gold {
  background: var(--gold);
  color: var(--green-deep);
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 0.95rem 2.5rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  margin-right: 0.75rem;
  margin-bottom: 0.5rem;
}
.btn-primary-gold:hover {
  background: var(--gold-light);
  color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184,145,42,0.35);
}
.btn-outline-gold {
  background: transparent;
  color: rgba(247,242,232,0.65);
  border: 1px solid rgba(184,145,42,0.35);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 0.95rem 2.5rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  margin-bottom: 0.5rem;
}
.btn-outline-gold:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.hero-scroll span {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(247,242,232,0.25);
  margin-bottom: 0.5rem;
}
.hero-scroll-line {
  width: 1px; height: 38px;
  background: linear-gradient(to bottom, rgba(184,145,42,0.6), transparent);
  margin: 0 auto;
  animation: scrollFade 2s ease-in-out infinite;
}
@keyframes scrollFade { 0%,100%{opacity:.3} 50%{opacity:1} }

/* ============================================
   SECTION COMMONS
   ============================================ */
.sec-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.65rem;
}
.sec-title {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.sec-title em { font-style: italic; color: var(--green-mid); }

/* art deco section divider — reusable */
.section-deco {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 1.25rem 0;
}
.section-deco .l { flex: 0 0 40px; height: 1px; background: var(--gold); opacity: 0.5; }
.section-deco .d { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }
.section-deco .d2 { width: 4px; height: 4px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; opacity: 0.4; }

/* ============================================
   ABOUT — dark green left panel
   ============================================ */
.about-section {
  background: var(--ivory);
  padding: 0;
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 700px;
}
.about-left {
  background: var(--green);
  padding: 5rem 3rem 5rem 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-left::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 300px; height: 300px;
  border: 1px solid rgba(184,145,42,0.1);
  border-radius: 50%;
}
.about-left::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 200px; height: 200px;
  border: 1px solid rgba(184,145,42,0.07);
  border-radius: 50%;
}
.about-left .sec-title { color: var(--ivory); }
.about-left .sec-eyebrow { color: var(--gold-light); }
.about-left p { font-size: 0.92rem; line-height: 1.85; color: rgba(247,242,232,0.6); margin-bottom: 1rem; }

.about-right {
  padding: 5rem 5% 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.amenity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(184,145,42,0.15);
  border: 1px solid rgba(184,145,42,0.15);
  margin-bottom: 2rem;
}
.amenity-item {
  background: var(--white);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: background 0.25s;
}
.amenity-item:hover { background: var(--ivory-dark); }
.amenity-item i { font-size: 1.5rem; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.amenity-item .a-title { font-family: 'Libre Baskerville', serif; font-size: 0.9rem; color: var(--text); margin-bottom: 0.2rem; }
.amenity-item .a-desc { font-size: 0.72rem; color: var(--text-muted); line-height: 1.5; }

@media (max-width: 900px) {
  .about-section { grid-template-columns: 1fr; }
  .about-left { padding: 4rem 5%; min-height: auto; }
  .about-right { padding: 4rem 5%; }
}

/* ============================================
   MENU — classic Italian menu card style
   ============================================ */
.menu-section {
  background: var(--ivory-dark);
  padding: 7rem 0;
  position: relative;
}
.menu-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--green), var(--gold), var(--green));
}

.menu-card {
  background: var(--white);
  border: 1px solid rgba(184,145,42,0.15);
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
}
.menu-card::after {
  content: '';
  position: absolute;
  top: 8px; left: 8px; right: 8px; bottom: 8px;
  border: 1px solid rgba(184,145,42,0.08);
  pointer-events: none;
}
.menu-card-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--green);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(184,145,42,0.2);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.menu-card-title i { color: var(--gold); font-size: 0.9rem; }

.menu-item {
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(184,145,42,0.15);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
}
.menu-item:last-child { border-bottom: none; }
.menu-item-name { font-family: 'Libre Baskerville', serif; font-size: 0.98rem; color: var(--text); }
.menu-item-desc { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.15rem; line-height: 1.4; font-style: italic; }
.menu-item-price { font-family: 'Libre Baskerville', serif; font-size: 0.98rem; color: var(--green-mid); white-space: nowrap; flex-shrink: 0; }

/* signature dish badge */
.sig-badge {
  display: inline-block;
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--green-deep);
  padding: 0.15rem 0.5rem;
  font-weight: 600;
  margin-left: 0.4rem;
  vertical-align: middle;
}

/* ============================================
   FACILITIES — alternating dark/light rows
   ============================================ */
.facilities-section { padding: 0; }

.facility-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}
.facility-row.reverse { direction: rtl; }
.facility-row.reverse > * { direction: ltr; }

.facility-img {
  overflow: hidden;
  position: relative;
}
.facility-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.facility-row:hover .facility-img img { transform: scale(1.04); }

.facility-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 4rem 5%;
}
.facility-row:nth-child(odd) .facility-content { background: var(--green); }
.facility-row:nth-child(even) .facility-content { background: var(--ivory-dark); }
.facility-row:nth-child(odd) .facility-content .sec-title { color: var(--ivory); }
.facility-row:nth-child(odd) .facility-content .sec-eyebrow { color: var(--gold-light); }
.facility-row:nth-child(odd) .facility-content p { color: rgba(247,242,232,0.6); }
.facility-row:nth-child(even) .facility-content .sec-title { color: var(--green); }
.facility-row:nth-child(even) .facility-content .sec-eyebrow { color: var(--gold); }
.facility-row:nth-child(even) .facility-content p { color: var(--text-muted); }
.facility-content p { font-size: 0.9rem; line-height: 1.85; margin-bottom: 1rem; }

@media (max-width: 768px) {
  .facility-row { grid-template-columns: 1fr; }
  .facility-row.reverse { direction: ltr; }
  .facility-img { height: 220px; }
  .facility-content { padding: 3rem 5%; }
}

/* ============================================
   EVENTS — tabletop card stack
   ============================================ */
.events-section {
  background: var(--green-deep);
  padding: 7rem 0;
  position: relative;
}
.events-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23B8912A' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.events-section .sec-title { color: var(--ivory); }
.events-section .sec-eyebrow { color: var(--gold-light); opacity: 0.7; }

.event-card {
  background: var(--green);
  border: 1px solid rgba(184,145,42,0.2);
  padding: 2.25rem 2rem;
  height: 100%;
  position: relative;
  transition: transform 0.35s, box-shadow 0.35s;
}
.event-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.event-card:hover::before { transform: scaleX(1); }
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.event-day {
  font-size: 0.58rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.event-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.5rem;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 0.85rem;
}
.event-desc { font-size: 0.83rem; line-height: 1.75; color: rgba(247,242,232,0.5); margin-bottom: 1.25rem; }
.event-detail { list-style: none; padding: 0; border-top: 1px solid rgba(184,145,42,0.15); padding-top: 1rem; }
.event-detail li { font-size: 0.76rem; color: rgba(247,242,232,0.4); padding: 0.22rem 0; display: flex; align-items: center; gap: 0.5rem; }
.event-detail li i { color: var(--gold); width: 14px; }

/* ============================================
   REVIEWS — staggered horizontal strip
   ============================================ */
.reviews-section {
  background: var(--ivory);
  padding: 7rem 0;
}
.reviews-ticker-wrap {
  overflow: hidden;
  margin: 2.5rem 0;
}
.reviews-ticker {
  display: flex;
  gap: 1.5rem;
  animation: reviewScroll 40s linear infinite;
  width: max-content;
}
.reviews-ticker:hover { animation-play-state: paused; }

@keyframes reviewScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.review-card {
  width: 340px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid rgba(184,145,42,0.15);
  border-top: 3px solid var(--gold);
  padding: 1.75rem;
}
.review-stars { color: var(--gold); font-size: 0.75rem; margin-bottom: 0.6rem; }
.review-text {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1rem;
}
.reviewer { font-size: 0.73rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); }
.reviewer-src { font-size: 0.66rem; color: var(--text-muted); margin-top: 2px; }

/* static reviews grid below ticker */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 991px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 576px)  { .reviews-grid { grid-template-columns: 1fr; } }

.review-grid-card {
  background: var(--white);
  border-left: 3px solid var(--green-mid);
  padding: 1.5rem;
}
.review-grid-card .review-stars { color: var(--gold); font-size: 0.72rem; margin-bottom: 0.5rem; }
.review-grid-card .review-text { font-family: 'Libre Baskerville', serif; font-style: italic; font-size: 0.9rem; line-height: 1.65; color: var(--text); margin-bottom: 0.85rem; }
.review-grid-card .reviewer { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--green); }
.review-grid-card .reviewer-src { font-size: 0.65rem; color: var(--text-muted); margin-top: 2px; }

/* ============================================
   GALLERY — full-width collage strip
   ============================================ */
.gallery-section {
  background: var(--green-deep);
  padding: 7rem 0;
}
.gallery-section .sec-title { color: var(--ivory); }
.gallery-section .sec-eyebrow { color: var(--gold-light); opacity: 0.7; }

.collage-strip {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  grid-template-rows: 240px 240px;
  gap: 6px;
  margin-top: 2.5rem;
}
.collage-strip .c1 { grid-row: span 2; }
.collage-strip .c4 { grid-row: span 2; }

.collage-item {
  overflow: hidden;
  position: relative;
  background: var(--green);
}
.collage-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  filter: saturate(0.85);
}
.collage-item:hover img { transform: scale(1.07); filter: saturate(1.1); }
.collage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,34,25,0.8), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 1rem;
}
.collage-item:hover .collage-overlay { opacity: 1; }
.collage-label {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  color: var(--gold-pale);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .collage-strip { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px 160px; }
  .collage-strip .c1, .collage-strip .c4 { grid-row: span 1; }
}

/* ============================================
   LOCATION — dark two-column
   ============================================ */
.location-section {
  background: var(--green);
  padding: 7rem 0;
}
.location-section .sec-title { color: var(--ivory); }
.location-section .sec-eyebrow { color: var(--gold-light); opacity: 0.7; }

.contact-block { margin-bottom: 1.75rem; }
.contact-lbl {
  font-size: 0.56rem;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: rgba(247,242,232,0.35);
  display: block;
  margin-bottom: 0.3rem;
}
.contact-val {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  color: rgba(247,242,232,0.82);
  line-height: 1.55;
}
.contact-val a { color: rgba(247,242,232,0.82); text-decoration: none; transition: color 0.2s; }
.contact-val a:hover { color: var(--gold-light); }

.map-frame {
  width: 100%; height: 400px;
  border: none; display: block;
  filter: saturate(0.4) contrast(1.15) brightness(0.85);
}

.social-row { display: flex; gap: 0.75rem; margin-top: 2rem; }
.social-btn {
  width: 40px; height: 40px;
  border: 1px solid rgba(184,145,42,0.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(184,145,42,0.6);
  text-decoration: none; font-size: 0.95rem;
  transition: all 0.3s;
}
.social-btn:hover { background: var(--gold); color: var(--green-deep); border-color: var(--gold); }

.cta-bar {
  margin-top: 2.5rem;
  background: var(--gold);
  padding: 1.75rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cta-bar-title { font-family: 'Libre Baskerville', serif; font-size: 1.3rem; color: var(--green-deep); font-weight: 700; }
.cta-bar-sub { font-size: 0.75rem; color: rgba(15,34,25,0.6); margin-top: 2px; }
.btn-cta-dark {
  background: var(--green-deep);
  color: var(--gold-light);
  border: none;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  white-space: nowrap;
}
.btn-cta-dark:hover { background: var(--green); color: var(--gold-pale); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--green-deep);
  padding: 4rem 0 1.75rem;
  border-top: 1px solid rgba(184,145,42,0.15);
}
.footer-emblem {
  width: 50px; height: 50px;
  border: 1.5px solid rgba(184,145,42,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Libre Baskerville', serif;
  font-style: italic; font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.footer-name { font-family: 'Libre Baskerville', serif; font-size: 1.5rem; color: var(--ivory); font-weight: 700; letter-spacing: 0.05em; }
.footer-tagline { font-family: 'Libre Baskerville', serif; font-style: italic; font-size: 0.82rem; color: rgba(247,242,232,0.3); margin-top: 0.4rem; }
.footer-heading { font-size: 0.56rem; letter-spacing: 0.45em; text-transform: uppercase; color: rgba(184,145,42,0.5); margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.45rem; }
.footer-links a { font-size: 0.77rem; letter-spacing: 0.07em; color: rgba(247,242,232,0.3); text-decoration: none; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(184,145,42,0.1);
  font-size: 0.65rem; color: rgba(247,242,232,0.18);
  text-align: center; letter-spacing: 0.08em;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
