/* ============================================================
   CARRIAGE DRIVING UK — Main Stylesheet
   ============================================================ */

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

:root {
  --green-dark:   #1B4332;
  --green-mid:    #2D6A4F;
  --green-light:  #6B8F71;
  --gold:         #C9A84C;
  --gold-dark:    #A07830;
  --cream:        #FAF8F3;
  --cream-dark:   #EDE8DF;
  --brown-dark:   #2C1810;
  --brown-mid:    #5C3D2E;
  --brown-light:  #8B6555;
  --text:         #2C1810;
  --text-light:   #6B5A50;
  --white:        #FFFFFF;
  --shadow:       rgba(44, 24, 16, 0.15);
  --shadow-dark:  rgba(44, 24, 16, 0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
}

a { color: var(--green-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-dark); }

img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   NAVIGATION
   ============================================================ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(27, 67, 50, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 20px var(--shadow-dark);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
}

.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.3rem;
  align-items: center;
}

.nav-item { position: relative; }

.nav-link {
  display: block;
  padding: 0.4rem 0.75rem;
  color: var(--cream);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.2s;
  cursor: pointer;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--green-dark);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 6px;
  min-width: 220px;
  box-shadow: 0 8px 30px var(--shadow-dark);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s;
  list-style: none;
  padding: 0.5rem 0;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.2rem;
  color: var(--cream-dark);
  font-size: 0.88rem;
  transition: all 0.2s;
}

.dropdown-menu li a:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  padding-left: 1.5rem;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}

.hero:hover .hero-bg { transform: scale(1.03); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 67, 50, 0.88) 0%,
    rgba(44, 24, 16, 0.65) 60%,
    rgba(27, 67, 50, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--brown-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 3px;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  max-width: 700px;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-title em { color: var(--gold); font-style: normal; }

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(250, 248, 243, 0.88);
  max-width: 560px;
  margin-bottom: 2.2rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Small hero for inner pages */
.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
  padding-bottom: 3rem;
}

.page-hero .hero-content {
  padding: 2rem 2rem 0;
}

.page-hero .hero-title { font-size: clamp(1.8rem, 4vw, 3rem); }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--brown-dark);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(160, 120, 48, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(250, 248, 243, 0.6);
}

.btn-outline:hover {
  background: rgba(250, 248, 243, 0.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

.btn-green:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   MAIN LAYOUT
   ============================================================ */

.main-content { min-height: 60vh; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   SECTIONS
   ============================================================ */

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

.bg-green { background: var(--green-dark); }
.bg-cream-dark { background: var(--cream-dark); }
.bg-brown { background: var(--brown-dark); }
.text-white { color: var(--white) !important; }
.text-gold { color: var(--gold) !important; }
.text-cream { color: var(--cream) !important; }

/* ============================================================
   CARDS
   ============================================================ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px var(--shadow-dark);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-img-tall { height: 280px; }

.card-body {
  padding: 1.5rem;
}

.card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.card-title {
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
}

.card-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-dark);
}

.card-link::after { content: ' →'; }
.card-link:hover { color: var(--gold-dark); }

/* Icon cards */
.icon-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.icon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 35px var(--shadow-dark);
}

.icon-card-icon {
  width: 64px;
  height: 64px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem;
}

.icon-card-title {
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.icon-card-text {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   FEATURE / CONTENT BLOCKS
   ============================================================ */

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }

.feature-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px var(--shadow-dark);
}

.feature-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.feature-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.feature-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.feature-text {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ============================================================
   QUOTE / PULLOUT
   ============================================================ */

.pullquote {
  background: var(--green-dark);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pullquote::before {
  content: '"';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 20rem;
  color: rgba(201, 168, 76, 0.07);
  top: -4rem;
  left: 2rem;
  line-height: 1;
}

.pullquote blockquote {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.pullquote cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================================
   ACCORDION / FAQ
   ============================================================ */

.accordion { max-width: 800px; margin: 0 auto; }

.accordion-item {
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--green-dark);
  text-align: left;
  transition: background 0.2s;
}

.accordion-header:hover { background: var(--cream-dark); }

.accordion-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: var(--green-dark);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.3s;
}

.accordion-item.open .accordion-icon { transform: rotate(45deg); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-item.open .accordion-body { max-height: 600px; }

.accordion-body-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ============================================================
   STEPS
   ============================================================ */

.steps { list-style: none; counter-reset: steps; }

.step-item {
  counter-increment: steps;
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}

.step-num {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
}

.step-num::after {
  content: counter(steps);
}

.step-body h3 {
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}

.step-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   COST TABLE
   ============================================================ */

.cost-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
}

.cost-table th {
  background: var(--green-dark);
  color: var(--cream);
  padding: 1rem 1.2rem;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
}

.cost-table td {
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--text);
  font-size: 0.95rem;
}

.cost-table tr:last-child td { border-bottom: none; }
.cost-table tr:nth-child(even) td { background: var(--cream); }

.cost-table .cost-range {
  font-weight: 700;
  color: var(--green-dark);
}

.cost-table .cost-total th {
  background: var(--gold);
  color: var(--brown-dark);
}

/* ============================================================
   GALLERY GRID
   ============================================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 0.75rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
}

.gallery-item:nth-child(3n+1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(27, 67, 50, 0.85));
  color: var(--cream);
  padding: 2rem 1rem 0.8rem;
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-caption { opacity: 1; }

/* ============================================================
   STAT BLOCKS
   ============================================================ */

.stats-strip {
  background: var(--green-dark);
  padding: 3.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--cream-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */

.breadcrumb {
  padding: 1rem 0;
  font-size: 0.82rem;
  color: rgba(250,248,243,0.7);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.breadcrumb a { color: rgba(250,248,243,0.7); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: 0.5; }

/* ============================================================
   PHASE CARDS (for Combined Driving)
   ============================================================ */

.phase-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 25px var(--shadow);
}

.phase-header {
  padding: 2rem;
  text-align: center;
  position: relative;
}

.phase-1 .phase-header { background: linear-gradient(135deg, #1B4332, #2D6A4F); }
.phase-2 .phase-header { background: linear-gradient(135deg, #5C3D2E, #8B6555); }
.phase-3 .phase-header { background: linear-gradient(135deg, #A07830, #C9A84C); }

.phase-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  position: absolute;
  top: 0.5rem;
  right: 1.5rem;
}

.phase-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.phase-name { font-size: 1.5rem; color: var(--white); margin-bottom: 0.2rem; }
.phase-sub { font-size: 0.8rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 2px; }

.phase-body { padding: 1.8rem; }
.phase-body p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; }

.phase-info-list { list-style: none; }
.phase-info-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
}
.phase-info-list li:last-child { border-bottom: none; }
.phase-info-list li strong { color: var(--green-dark); }

/* ============================================================
   BREED CARDS
   ============================================================ */

.breed-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.breed-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px var(--shadow-dark);
}

.breed-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.breed-body { padding: 1.5rem; }

.breed-name {
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 0.3rem;
}

.breed-origin {
  font-size: 0.78rem;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.6rem;
}

.breed-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 0.8rem; }

.breed-tag {
  background: var(--cream-dark);
  color: var(--brown-mid);
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}

/* ============================================================
   TIPS LIST
   ============================================================ */

.tips-list { list-style: none; }

.tip-item {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--cream-dark);
  align-items: flex-start;
}

.tip-item:last-child { border-bottom: none; }

.tip-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.tip-body h4 { color: var(--green-dark); font-size: 1.05rem; margin-bottom: 0.25rem; }
.tip-body p { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; }

/* ============================================================
   EVENT CARDS
   ============================================================ */

.event-card {
  display: flex;
  gap: 1.5rem;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  align-items: stretch;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 35px var(--shadow-dark);
}

.event-date-block {
  background: var(--green-dark);
  min-width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 1rem;
  flex-shrink: 0;
}

.event-month {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
}

.event-day {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
}

.event-body { padding: 1.2rem 1.2rem 1.2rem 0; }

.event-title { font-size: 1.15rem; color: var(--green-dark); margin-bottom: 0.3rem; }

.event-meta {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.event-desc { font-size: 0.92rem; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   RESOURCES / LINKS
   ============================================================ */

.resource-list { list-style: none; }

.resource-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.3rem;
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 0.8rem;
  box-shadow: 0 2px 12px var(--shadow);
  align-items: center;
  transition: transform 0.2s;
}

.resource-item:hover { transform: translateX(4px); }

.resource-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.resource-body h4 { font-size: 1rem; color: var(--green-dark); margin-bottom: 0.2rem; }
.resource-body p { font-size: 0.88rem; color: var(--text-light); }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--brown-dark);
  color: var(--cream-dark);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(237, 232, 223, 0.7);
  line-height: 1.7;
  margin-top: 0.75rem;
  max-width: 280px;
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(237, 232, 223, 0.7);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(237, 232, 223, 0.1);
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(237, 232, 223, 0.5);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================
   UTILITIES
   ============================================================ */

.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }

.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1.2rem auto;
  border-radius: 2px;
}

.divider-left { margin-left: 0; }

.highlight-box {
  background: var(--cream-dark);
  border-left: 4px solid var(--gold);
  padding: 1.5rem 1.8rem;
  border-radius: 0 8px 8px 0;
  margin: 2rem 0;
}

.highlight-box p { color: var(--text); font-size: 0.95rem; line-height: 1.8; }

.warning-box {
  background: #FFF8E7;
  border-left: 4px solid #F59E0B;
  padding: 1.5rem 1.8rem;
  border-radius: 0 8px 8px 0;
  margin: 2rem 0;
}

.warning-box p { color: var(--brown-mid); font-size: 0.95rem; line-height: 1.8; }

.check-list { list-style: none; }
.check-list li {
  padding: 0.4rem 0;
  padding-left: 1.8rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-weight: 700;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .feature-block { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-block.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(3n+1) { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--green-dark);
    flex-direction: column;
    padding: 1rem;
    gap: 0.2rem;
    border-top: 2px solid var(--gold);
    align-items: stretch;
  }

  .nav-menu.open { display: flex; }

  .nav-toggle { display: flex; }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--gold);
    border-radius: 0;
    margin-left: 1rem;
    background: rgba(255,255,255,0.05);
    display: none;
  }

  .nav-item:hover .dropdown-menu { display: block; }

  .hero { min-height: 80vh; }
  .section { padding: 3.5rem 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .event-card { flex-direction: column; }
  .event-date-block { flex-direction: row; gap: 0.5rem; min-width: auto; padding: 0.8rem 1.2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .hero-cta { flex-direction: column; }
  .btn { text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
}
