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

/* ===== TOKENS ===== */
:root {
  --dark-brown:   #3a1200;
  --medium-brown: #6b3010;
  --light-brown:  #9b6040;
  --tan:          #c49060;
  --beige:        #f0dfc0;
  --light-beige:  #faf4e8;
  --parchment:    #e8d5a5;
  --gold:         #c8a020;
  --gold-light:   #e0c060;
  --green:        #2d6a1e;
  --dark-green:   #1e4a14;
  --white:        #ffffff;
  --text-dark:    #2a1000;
  --text-medium:  #5a3020;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.12);
  --shadow-md:    0 4px 20px rgba(0,0,0,.18);
  --shadow-lg:    0 8px 30px rgba(0,0,0,.25);
  --radius:       8px;
  --ease:         all 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; font-size: 16px; line-height: 1.6; color: var(--text-dark); background: var(--light-beige); }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* Reusable: fills parent container like background-size:cover */
.img-cover {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block; z-index: 0;
}

/* All image containers need relative positioning for img-cover to work */
.home-tile-thumb,
.service-card-image,
.about-feat-img,
.p-card-img,
.highlight-photo,
.success-photo-img {
  position: relative;
  overflow: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--dark-brown);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 44px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img{
  height: 70px;
}
.nav-logo-icon {
  width: 46px; height: 46px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(200,160,32,.12);
  color: var(--gold);
  font-size: 26px;
  line-height: 1;
  font-family: serif;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-brand-top  { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; color: var(--white); letter-spacing: 3px; }
.nav-brand-bot  { font-family: 'Playfair Display', serif; font-size: 9px; font-weight: 400; color: var(--gold); letter-spacing: 2.5px; }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a {
  color: var(--white);
  font-size: 13px; font-weight: 600; letter-spacing: .3px;
  transition: var(--ease);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--ease); }

/* ===== HOME HERO ===== */
.home-hero {
  position: relative;
  height: 65vh; min-height: 440px;
  /*  background-image: url('../images/home-hero.jpg');  */
  background: linear-gradient(160deg, #3d5a20 0%, #4e6e30 25%, #6e7c40 50%, #8a7448 75%, #6a5230 100%);
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.home-hero::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.28);
  z-index: 1;
}
.home-logo { position: relative; z-index: 2; text-align: center; }
.home-barn-icon {
  width: 72px; height: 72px; margin: 0 auto 10px;
}
.home-logo-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5.5vw, 58px);
  font-weight: 700; color: var(--gold);
  letter-spacing: 7px; text-transform: uppercase;
  text-shadow: 2px 2px 10px rgba(0,0,0,.55);
  line-height: 1.05;
}
.home-logo-location {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(12px, 1.8vw, 17px);
  color: var(--white);
  letter-spacing: 2px;
  margin-top: 10px;
  text-shadow: 1px 1px 6px rgba(0,0,0,.5);
}

.home-bottom {
  background: linear-gradient(to bottom, #2c1006, #1a0804);
  padding: 26px 44px 34px;
}
.home-tagline {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(14px, 2.2vw, 21px);
  color: var(--white);
  margin-bottom: 26px;
  letter-spacing: .4px;
}
.home-tagline em { font-style: normal; color: var(--gold-light); }

.home-services-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 920px;
  margin: 0 auto 26px;
}
.home-tile {
  display: flex; align-items: center; gap: 10px;
}
.home-tile-thumb {
  width: 76px; height: 64px;
  border-radius: 5px;
  flex-shrink: 0;
  overflow: hidden;
  /*  background-image: url('../images/tile-[name].jpg');  */
}
.home-tile-thumb.t1 { background: linear-gradient(135deg,#4a6028,#7a6038); }
.home-tile-thumb.t2 { background: linear-gradient(135deg,#5a7040,#8a7048); }
.home-tile-thumb.t3 { background: linear-gradient(135deg,#3e6830,#6a7840); }
.home-tile-thumb.t4 { background: linear-gradient(135deg,#7a6030,#9a7840); }
.home-tile-info { display: flex; flex-direction: column; }
.home-tile-icon { font-size: 15px; margin-bottom: 3px; color: var(--gold); }
.home-tile-name { font-size: 12.5px; font-weight: 700; color: var(--white); line-height: 1.25; }
.home-tile-desc { font-size: 10.5px; color: var(--parchment); margin-top: 2px; }

.home-cta-wrap { text-align: center; }
.btn-cta {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 14px 48px;
  border-radius: 5px;
  border: none; cursor: pointer;
  transition: var(--ease);
  box-shadow: var(--shadow-sm);
}
.btn-cta:hover { background: var(--dark-green); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ===== HOME EXTENDED SECTIONS ===== */
.home-section { padding: 60px 0; }
.home-section-inner { max-width: 1060px; margin: 0 auto; padding: 0 28px; }
.home-section-head { text-align: center; margin-bottom: 38px; }
.home-section-title { font-family: 'Dancing Script', cursive; font-size: clamp(34px,5vw,52px); font-weight: 700; color: var(--dark-brown); margin-bottom: 8px; }
.home-section-subtitle { font-size: 14px; color: var(--text-medium); letter-spacing: .3px; }
.home-section-link { text-align: center; margin-top: 32px; }

.home-about-section { background: var(--light-beige); border-top: 3px solid var(--parchment); }
.home-about-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.home-about-card { background: var(--white); border: 1px solid var(--parchment); border-radius: var(--radius); padding: 24px 20px; }
.home-about-card h3 { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; color: var(--dark-brown); margin-bottom: 10px; }
.home-about-card p { font-size: 13.5px; color: var(--text-medium); line-height: 1.65; }

.home-services-section { background: var(--beige); }
.home-service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.hs-card { background: var(--white); border: 1px solid var(--parchment); border-radius: var(--radius); overflow: hidden; }
.hs-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.hs-card-body { padding: 16px; }
.hs-card-title { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.hs-card-desc { font-size: 12.5px; color: var(--text-medium); line-height: 1.55; }

.home-gallery-section { background: var(--dark-brown); }
.home-gallery-section .home-section-title { color: var(--parchment); }
.home-gallery-section .home-section-subtitle { color: rgba(255,255,255,.65); }
.home-gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.hg-item { position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: 5px; }
.hg-item img { transition: transform .4s ease; }
.hg-item:hover img { transform: scale(1.06); }

.home-testi-section { background: var(--light-beige); border-top: 3px solid var(--parchment); }
.home-testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.home-membership-section { background: linear-gradient(135deg,#3a1200,#6a3a18); padding: 62px 28px; text-align: center; }
.home-membership-section .home-section-title { color: var(--parchment); }
.home-membership-section .home-section-subtitle { color: rgba(255,255,255,.72); }
.home-member-benefits { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin: 28px 0 36px; }
.home-member-benefit { color: var(--white); font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 7px; }
.home-member-benefit::before { content: '★'; color: var(--gold); font-size: 15px; }

.btn-outline-brown { display: inline-block; background: transparent; color: var(--dark-brown); border: 2px solid var(--dark-brown); font-family: 'Open Sans', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 11px 32px; border-radius: 5px; transition: var(--ease); }
.btn-outline-brown:hover { background: var(--dark-brown); color: var(--white); }
.btn-outline-light { display: inline-block; background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.7); font-family: 'Open Sans', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 11px 32px; border-radius: 5px; transition: var(--ease); }
.btn-outline-light:hover { background: rgba(255,255,255,.15); }
.btn-gold { display: inline-block; background: var(--gold); color: var(--dark-brown); font-family: 'Open Sans', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 14px 42px; border-radius: 5px; transition: var(--ease); }
.btn-gold:hover { background: #b8900e; transform: translateY(-2px); }

/* ===== PAGE HERO BANNER ===== */
.page-hero {
  position: relative;
  height: 40vh; min-height: 290px;
  /*  background-image: url('../images/[page]-hero.jpg');  */
  background-size: cover; background-position: center 40%;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(26,8,0,.78) 0%, rgba(26,8,0,.42) 55%, rgba(26,8,0,.08) 100%);
  z-index: 1;
}
.page-hero-bg-services  { background: linear-gradient(135deg,#3d5820,#556a30,#8a7040,#6a5230); }
.page-hero-bg-gallery   { background: linear-gradient(135deg,#3d5820,#4e6e30,#7a7050,#6a5230); }
.page-hero-bg-events    { background: linear-gradient(120deg,#2c4818,#405830,#6e6840,#5a4828); }
.page-hero-content {
  position: relative; z-index: 2;
  padding: 28px 60px 32px;
}
.page-hero-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 700; color: var(--white);
  line-height: 1.05;
  text-shadow: 2px 2px 12px rgba(0,0,0,.55);
}
.page-hero-subtitle {
  font-size: 14px; color: rgba(255,255,255,.88);
  margin-top: 6px; letter-spacing: .5px;
}

/* ===== PAGE WRAPPER ===== */
.page-body {
  background: var(--light-beige);
  min-height: 60vh;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 30px;
}
.service-card {
  display: flex;
  background: var(--beige);
  border: 1px solid var(--parchment);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-height: 245px;
}
.service-card-text {
  flex: 1;
  padding: 26px 26px 22px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.service-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 21px; font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--parchment);
}
.service-card-title.green-title { color: var(--green); }
.service-card-desc {
  font-size: 14px; color: var(--text-medium);
  line-height: 1.75; flex: 1; margin-bottom: 20px;
}
.btn-learn {
  display: inline-block;
  background: var(--dark-brown);
  color: var(--white);
  font-size: 13px; font-weight: 600;
  padding: 10px 22px;
  border-radius: 4px;
  transition: var(--ease);
  align-self: flex-start;
}
.btn-learn.green-btn { background: var(--green); }
.btn-learn:hover { opacity: .82; transform: translateY(-1px); }
.service-card-image {
  width: 52%;
  flex-shrink: 0;
  background-size: cover; background-position: center;
}
.svc-img-1 { background: linear-gradient(135deg,#4a6028,#7a6038,#5a4e2a); /*url('../images/svc-schooling.jpg')*/ }
.svc-img-2 { background: linear-gradient(135deg,#3e6030,#6a7840,#5a6832); /*url('../images/svc-rental.jpg')*/ }
.svc-img-3 { background: linear-gradient(135deg,#4a5828,#6a7038,#7a6040); /*url('../images/svc-lessons.jpg')*/ }
.svc-img-4 { background: linear-gradient(135deg,#5a6030,#7a7040,#8a6838); /*url('../images/svc-competition.jpg')*/ }

/* ===== ABOUT HERO ===== */
.about-hero {
  position: relative;
  height: 44vh; min-height: 300px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg,#3a5818,#6e7840,#8a7450);
}
.about-hero::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(250,244,232,0.52);
  z-index: 1;
}
.about-hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 28px 40px;
}
.about-hero-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(52px, 7vw, 82px);
  font-weight: 700;
  color: var(--dark-brown);
  line-height: 1;
  text-shadow: 1px 1px 6px rgba(255,255,255,0.7);
}
.about-hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--dark-brown);
  margin-top: 8px;
  text-shadow: 0 1px 4px rgba(255,255,255,0.9);
}

/* ===== ABOUT ===== */
.about-wrapper { max-width: 960px; margin: 0 auto; padding: 40px 30px 50px; }
.about-location-bar {
  text-align: center; font-size: 14px; font-weight: 600;
  color: var(--dark-brown);
  background: var(--parchment);
  padding: 13px 20px; margin: 0 0 36px;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
}
.about-info-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 0;
  margin-bottom: 38px;
  border: 1px solid var(--parchment);
  border-radius: var(--radius);
  background: var(--light-beige);
  overflow: hidden;
}
.about-info-col {
  text-align: center; padding: 28px 22px;
  border-right: 1px solid var(--parchment);
}
.about-info-col:last-child { border-right: none; }
.about-info-col .info-icon {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: var(--parchment);
  border-radius: 50%;
  margin: 0 auto 14px;
}
.about-info-col h3 { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--dark-brown); margin-bottom: 8px; }
.about-info-col p  { font-size: 13px; color: var(--text-medium); line-height: 1.75; }
.about-photo {
  position: relative;
  width: 100%; height: 360px;
  background: linear-gradient(120deg,#3a5818,#4e6c28,#6e7840,#8a7450,#6a5838);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 18px;
}
.about-photo-caption {
  text-align: center; font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 15px; color: var(--medium-brown);
  line-height: 1.7; max-width: 680px; margin: 0 auto 36px;
}
.about-features-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 36px; }
.about-feat-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.about-feat-img {
  position: relative; overflow: hidden;
  height: 185px;
  background: linear-gradient(135deg,#4a6028,#8a6840);
}
.about-feat-label {
  background: var(--dark-brown); color: var(--white);
  text-align: center; font-size: 12px; font-weight: 600;
  letter-spacing: 0.03em; text-transform: uppercase;
  padding: 10px 8px;
}
.about-footer-quote {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 19px;
  color: var(--medium-brown); padding: 20px 16px;
  border-top: 1px solid var(--parchment);
}

/* ===== GALLERY ===== */
.gallery-page-wrap { max-width: 1060px; margin: 0 auto; padding: 44px 26px; }
.gallery-header { text-align: center; margin-bottom: 22px; }
.gallery-header h1 { font-family: 'Dancing Script', cursive; font-size: 50px; font-weight: 700; color: var(--dark-brown); }
.gallery-header p  { font-size: 14px; color: var(--text-medium); margin-top: 4px; }

.gallery-filters { display: flex; justify-content: center; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.filter-btn {
  background: var(--dark-brown); color: var(--white);
  border: none; padding: 8px 20px; border-radius: 4px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: var(--ease);
}
.filter-btn.active, .filter-btn:hover { background: var(--green); }

.gallery-section-label {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; color: var(--dark-brown);
  margin: 26px 0 12px;
  padding-bottom: 6px; border-bottom: 2px solid var(--parchment);
}
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gallery-grid.three-col { grid-template-columns: 1fr 1fr 1fr; }
.gallery-grid + .gallery-grid { margin-top: 26px; }
.g-item {
  border-radius: 6px; overflow: hidden;
  position: relative;
  background-size: cover; background-position: center;
  cursor: pointer;
}
.g-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  transition: var(--ease);
}
.g-item:hover::after { background: rgba(0,0,0,.18); }
.g-tall  { aspect-ratio: 4/3; }
.g-short { aspect-ratio: 4/3; }
.g-wide  { aspect-ratio: 16/7; grid-column: span 2; }
.g-item-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,8,0,.82), transparent);
  color: var(--white);
  font-size: 13px; font-weight: 600;
  padding: 22px 12px 10px;
  z-index: 1;
}
/* gallery image placeholders */
.gi-riding       { background: linear-gradient(135deg,#4a6028,#6a7838,#8a6840); }
.gi-jumping      { background: linear-gradient(135deg,#3e5820,#5a6a30,#7a7040); }
.gi-competition  { background: linear-gradient(135deg,#5a5020,#7a6830,#9a7840); }
.gi-horses1      { background: linear-gradient(135deg,#6a5428,#8a6a38,#7a5830); }
.gi-horses2      { background: linear-gradient(135deg,#5a4a20,#7a6030,#9a7840); }
.gi-facility1    { background: linear-gradient(135deg,#3a5020,#5a6830,#6a7840); }
.gi-facility2    { background: linear-gradient(135deg,#4a5828,#6a7038,#8a7848); }
.gi-kids         { background: linear-gradient(135deg,#4e6828,#6a7a38,#7a6840); }
.gi-winners      { background: linear-gradient(135deg,#6a5820,#8a7030,#a08040); }

/* ===== MEMBERSHIP ===== */
.membership-hero {
  position: relative;
  height: 44vh; min-height: 300px;
  background: linear-gradient(120deg,#3a5818,#4e6c28,#8a7050,#6a5238);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.membership-hero::before { content: ''; position: absolute; inset: 0; background: rgba(26,8,0,.52); z-index: 1; }
.membership-hero-content { position: relative; z-index: 2; text-align: center; color: var(--white); padding: 0 20px; }
.membership-hero-content h1 { font-family: 'Dancing Script', cursive; font-size: clamp(44px,6vw,72px); font-weight: 700; }
.membership-hero-content p  { font-size: 14px; opacity: .88; margin-top: 8px; letter-spacing: 0.02em; }

.membership-page { max-width: 1060px; margin: 0 auto; padding: 36px 30px 50px; }

.membership-badges {
  display: flex; justify-content: center; gap: 16px;
  padding: 22px 0 28px; flex-wrap: wrap;
}
.membership-badge {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: var(--dark-brown);
  background: var(--parchment);
  padding: 8px 18px; border-radius: 20px;
  border: 1px solid #d4b880;
}
.badge-star { color: var(--gold); font-size: 16px; }

.pricing-cards {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-bottom: 52px;
  padding: 14px 0 24px;
}
.p-card {
  background: var(--light-beige);
  border: 1px solid var(--parchment);
  border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
  transition: var(--ease);
}
.p-card.featured {
  background: var(--white);
  border: 2px solid var(--green);
  transform: translateY(-14px);
  box-shadow: 0 12px 36px rgba(45,106,30,.18);
}
.p-card-img {
  height: 175px;
  background-size: cover; background-position: center;
}
.pc-img-1 { background: linear-gradient(135deg,#4a6028,#7a7040,#8a6040); }
.pc-img-2 { background: linear-gradient(135deg,#2a5018,#4a6828,#6a7840); }
.pc-img-3 { background: linear-gradient(135deg,#5a5828,#7a6838,#9a7848); }
.p-card-body { padding: 22px 20px; flex: 1; display: flex; flex-direction: column; }
.p-card-title { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--dark-brown); margin-bottom: 12px; padding-bottom: 10px; border-bottom: 2px solid var(--parchment); }
.p-card.featured .p-card-title { color: var(--green); }
.p-features { flex: 1; margin-bottom: 14px; padding-left: 0; list-style: none; }
.p-features li { font-size: 13px; color: var(--text-medium); padding: 4px 0; display: flex; align-items: flex-start; gap: 7px; }
.p-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.p-price { font-family: 'Playfair Display', serif; font-size: 13px; font-weight: 700; color: var(--dark-brown); margin-bottom: 14px; padding: 8px 0; border-top: 1px solid var(--parchment); }
.btn-join {
  display: block; text-align: center;
  background: var(--dark-brown); color: var(--white);
  padding: 11px; border-radius: 4px;
  font-size: 13px; font-weight: 600;
  transition: var(--ease);
}
.p-card.featured .btn-join { background: var(--green); }
.btn-join:hover { opacity: .83; }

.membership-benefits { margin-bottom: 44px; }
.membership-benefits h2 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--dark-brown); text-align: center; margin-bottom: 26px; }
.benefits-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.benefit-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.benefit-icon {
  width: 58px; height: 58px; background: var(--parchment);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--dark-brown);
}
.benefit-label { font-size: 12px; font-weight: 600; color: var(--text-medium); text-align: center; }

.membership-cta {
  text-align: center;
  background: var(--parchment);
  padding: 40px 24px;
  border-radius: var(--radius);
  border: 1px solid #d4b880;
}
.membership-cta p { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--dark-brown); margin-bottom: 18px; }

/* ===== CONTACT ===== */
.contact-page { max-width: 960px; margin: 0 auto; padding: 40px 30px 56px; }
.contact-hero {
  position: relative; height: 300px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.contact-hero::before { content: ''; position: absolute; inset: 0; background: rgba(30,10,0,.52); z-index: 1; }
.contact-hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; }
.contact-hero-content h1 { font-family: 'Dancing Script', cursive; font-size: clamp(44px,7vw,72px); font-weight: 700; color: var(--white); margin-bottom: 6px; }
.contact-hero-content p  { color: rgba(255,255,255,.88); font-size: 15px; }

.contact-info-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 40px; }
.contact-col {
  background: var(--light-beige); border: 1px solid var(--parchment);
  border-radius: var(--radius); padding: 26px 24px;
}
.contact-col h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--dark-brown); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--parchment); }
.contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.contact-icon-wrap {
  width: 38px; height: 38px; background: var(--green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white); flex-shrink: 0;
}
.contact-item-text { font-size: 14px; color: var(--text-medium); line-height: 1.5; }
.contact-item-text strong { display: block; font-size: 12px; font-weight: 700; color: var(--dark-brown); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 3px; }
.contact-hours { font-size: 13px; color: var(--text-medium); margin: 4px 0 14px 50px; font-style: italic; }
.contact-map {
  height: 175px; border-radius: 6px; overflow: hidden;
  border: 1px solid var(--parchment);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }

.contact-form { background: var(--light-beige); border: 1px solid var(--parchment); border-radius: var(--radius); padding: 32px 28px; }
.contact-form h2 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--dark-brown); margin-bottom: 24px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-grp { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-grp label { font-size: 13px; font-weight: 600; color: var(--text-medium); }
.form-grp input,
.form-grp select,
.form-grp textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--parchment);
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px; color: var(--text-dark);
  background: var(--white);
  transition: var(--ease);
}
.form-grp input:focus,
.form-grp select:focus,
.form-grp textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,106,30,.1);
}
.form-grp textarea { resize: vertical; min-height: 130px; }

/* ===== EVENTS ===== */
.events-content {
  max-width: 1100px; margin: 0 auto;
  padding: 40px 24px;
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 22px;
}
.events-col {
  background: var(--light-beige);
  border: 1px solid var(--parchment);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex; flex-direction: column;
}
.events-col h2 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--dark-brown); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--parchment); }
.event-item { margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--parchment); }
.event-item:last-child { border-bottom: none; margin-bottom: 0; }
.event-date { font-size: 11px; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.event-name { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; color: var(--dark-brown); margin-bottom: 3px; }
.event-detail { font-size: 12px; color: var(--text-medium); line-height: 1.5; }
.event-bullet-list { flex: 1; }
.event-bullet-list li { font-size: 13px; color: var(--text-medium); padding: 5px 0; display: flex; align-items: flex-start; gap: 8px; border-bottom: 1px solid var(--parchment); }
.event-bullet-list li:last-child { border-bottom: none; }
.event-bullet-list li::before { content: '•'; color: var(--green); font-weight: 700; flex-shrink: 0; }

.highlights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; flex: 1; }
.highlight-photo {
  aspect-ratio: 4/3; border-radius: 4px;
  background-size: cover; background-position: center;
}
.hp1 { background: linear-gradient(135deg,#4a6028,#7a6840); }
.hp2 { background: linear-gradient(135deg,#5a5820,#7a7038); }
.hp3 { background: linear-gradient(135deg,#3e5818,#6a6830); }
.hp4 { background: linear-gradient(135deg,#5a6030,#8a7040); }

.btn-view-gallery {
  display: block; text-align: center;
  background: var(--green); color: var(--white);
  padding: 10px; border-radius: 4px;
  font-size: 13px; font-weight: 600;
  margin-top: auto;
  transition: var(--ease);
}
.btn-view-gallery:hover { background: var(--dark-green); }
.btn-participant {
  display: block; text-align: center;
  background: var(--dark-brown); color: var(--white);
  padding: 11px; border-radius: 4px;
  font-size: 13px; font-weight: 600;
  margin-top: auto; transition: var(--ease);
}
.btn-participant:hover { opacity: .85; }

.events-cta {
  position: relative; overflow: hidden;
  background: var(--dark-brown);
  text-align: center;
  color: var(--white);
}
.events-cta::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(20,6,0,.68);
  z-index: 1;
}
.events-cta-inner {
  position: relative; z-index: 2;
  padding: 56px 24px;
}
.events-cta h2 { font-family: 'Dancing Script', cursive; font-size: 48px; margin-bottom: 10px; }
.events-cta p  { font-size: 15px; opacity: .85; margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }
.events-cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-ev {
  padding: 14px 36px; border-radius: 4px;
  font-size: 14px; font-weight: 600;
  transition: var(--ease); cursor: pointer;
}
.btn-ev-primary { background: var(--green); color: var(--white); border: none; }
.btn-ev-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.7); }
.btn-ev:hover { transform: translateY(-2px); opacity: .9; }

/* ===== FAQ ===== */
.page-hero-bg-faq { background: linear-gradient(120deg,#3d5820,#556a30,#8a7040,#6a5230); }
.faq-page { max-width: 960px; margin: 0 auto; padding: 44px 30px 50px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 44px; }
.faq-card {
  background: var(--white);
  border: 1px solid var(--parchment);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-q {
  font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700;
  color: var(--dark-brown);
  background: var(--parchment);
  padding: 14px 20px;
  margin: 0;
}
.faq-a {
  font-size: 13px; color: var(--text-medium); line-height: 1.75;
  padding: 14px 20px;
  margin: 0;
}

.faq-contact-box {
  text-align: center;
  background: var(--parchment);
  border: 1px solid #d4b880;
  padding: 44px 30px;
  border-radius: var(--radius);
}
.faq-contact-box h2 { font-family: 'Dancing Script', cursive; font-size: 32px; font-weight: 700; color: var(--dark-brown); margin-bottom: 6px; }
.faq-contact-box p  { font-size: 14px; color: var(--text-medium); margin-bottom: 24px; }
.faq-contact-items { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.faq-contact-item { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: var(--dark-brown); }

/* ===== TESTIMONIALS ===== */
.page-hero-bg-testi { background: linear-gradient(135deg,#3a5020,#556a30,#7a6840,#5a4828); }
.testi-page { max-width: 960px; margin: 0 auto; padding: 44px 30px 50px; }

.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 52px; }
.testi-card {
  background: var(--light-beige);
  border: 1px solid var(--parchment);
  border-radius: var(--radius);
  padding: 24px 22px 20px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.testi-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 14px;
  color: var(--text-medium); line-height: 1.8;
  flex: 1; margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--parchment);
}
.testi-quote::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 52px; line-height: 0.8;
  color: var(--gold); opacity: .75;
  display: block; margin-bottom: 6px;
}
.testi-footer { display: flex; align-items: center; gap: 14px; }
.testi-photo {
  width: 54px; height: 54px; border-radius: 50%;
  object-fit: cover; object-position: center top;
  border: 3px solid var(--gold);
  display: block; flex-shrink: 0;
}
.testi-info { display: flex; flex-direction: column; gap: 2px; }
.testi-stars { color: var(--gold); font-size: 12px; letter-spacing: 1px; }
.testi-name  { font-size: 13px; font-weight: 700; color: var(--dark-brown); }
.testi-role  { font-size: 12px; color: var(--text-medium); }

.success-section { margin-bottom: 44px; }
.success-section h2 { font-family: 'Playfair Display', serif; font-size: 27px; font-weight: 700; color: var(--dark-brown); text-align: center; margin-bottom: 28px; }
.success-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.success-photo-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.success-photo-img {
  height: 210px;
  background-size: cover; background-position: center;
}
.sp-before { background: linear-gradient(135deg,#6a6040,#7a7050); }
.sp-after  { background: linear-gradient(135deg,#3a5818,#5a7030,#6a8040); }
.success-photo-label { background: var(--dark-brown); color: var(--white); text-align: center; font-size: 12px; font-weight: 600; padding: 8px; }
.success-quote {
  background: var(--beige); padding: 30px 36px;
  border-radius: var(--radius); text-align: center;
}
.success-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 17px;
  color: var(--text-medium); line-height: 1.75;
  margin-bottom: 12px;
}
.success-quote blockquote::before { content: '\201C'; font-size: 24px; color: var(--gold); }
.success-quote blockquote::after  { content: '\201D'; font-size: 24px; color: var(--gold); }
.success-quote cite { font-size: 14px; font-weight: 700; color: var(--dark-brown); font-style: normal; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-brown); color: var(--white);
  padding: 16px 44px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; gap: 16px; flex-wrap: wrap;
}
.footer-address { color: rgba(255,255,255,.72); }
.footer-social  { display: flex; gap: 14px; }
.footer-social a { color: var(--white); font-size: 18px; transition: var(--ease); }
.footer-social a:hover { color: var(--gold); }

/* ===== SHARED BUTTONS ===== */
.btn-green {
  display: inline-block; background: var(--green); color: var(--white);
  padding: 12px 30px; border-radius: 4px;
  font-size: 14px; font-weight: 600;
  transition: var(--ease); border: none; cursor: pointer;
}
.btn-green:hover { background: var(--dark-green); transform: translateY(-2px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .navbar { padding: 0 22px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-info-row { grid-template-columns: 1fr; }
  .about-info-col { border-right: none; border-bottom: 1px solid var(--parchment); }
  .about-info-col:last-child { border-bottom: none; }
  .about-features-row { grid-template-columns: 1fr 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .p-card.featured { transform: none; }
  .events-content { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .home-services-row { grid-template-columns: repeat(2,1fr); }
  .benefits-row { grid-template-columns: repeat(2,1fr); }
  .gallery-grid.three-col { grid-template-columns: 1fr 1fr; }
  .home-about-grid { grid-template-columns: 1fr; }
  .home-service-grid { grid-template-columns: repeat(2,1fr); }
  .home-gallery-grid { grid-template-columns: repeat(2,1fr); }
  .home-testi-grid { grid-template-columns: 1fr 1fr; }
  .home-member-benefits { gap: 18px; }
}
@media (max-width: 640px) {
  .navbar { padding: 0 16px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--dark-brown); padding: 16px 20px; gap: 14px; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .page-hero-content { padding: 18px 24px 22px; }
  .page-hero-title { font-size: 34px; }
  .home-services-row { grid-template-columns: repeat(2,1fr); }
  .form-row-2 { grid-template-columns: 1fr; }
  .contact-info-row { grid-template-columns: 1fr; }
  .success-photos { grid-template-columns: 1fr; }
  .about-features-row { grid-template-columns: 1fr; }
  .benefits-row { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer { flex-direction: column; text-align: center; gap: 10px; }
  .events-cta-btns { flex-direction: column; align-items: center; }
  .home-service-grid { grid-template-columns: 1fr 1fr; }
  .home-gallery-grid { grid-template-columns: 1fr 1fr; }
  .home-testi-grid { grid-template-columns: 1fr; }
  .home-member-benefits { flex-direction: column; align-items: center; gap: 14px; }
}
