/* ============================================================
   BRIGHT VIEW FARM — SHARED STYLES
   ============================================================ */

@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');

/* === VARIABLES === */
:root {
  --green:        #2D4A35;
  --green-dark:   #1e3225;
  --green-light:  #3d6347;
  --ivory:        #F7F3EC;
  --gold:         #B8962E;
  --gold-light:   #d4af50;
  --charcoal:     #1C1C1C;
  --text-muted:   #6b6b6b;
  --border:       #ddd7ce;
  --white:        #ffffff;
  --shadow:       0 4px 24px rgba(0,0,0,0.09);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

ul.services-list {
  list-style: disc;
  padding-left: 24px;
  margin-top: 20px;
}

ul.services-list li {
  margin-bottom: 8px;
}

/* === BASE === */
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--ivory);
  color: var(--charcoal);
  font-size: 17px;
  line-height: 1.75;
}

/* === UTILITIES === */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

.text-center { text-align: center; }
.text-center .section-subheading { margin-left: auto; margin-right: auto; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-heading--white { color: var(--white); }

.section-subheading {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 48px;
  line-height: 1.8;
}

.gold-divider {
  width: 52px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 22px;
}

.gold-divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 13px 30px;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}

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

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn--outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--outline-green:hover { background: var(--green); color: var(--white); }

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green);
  border-bottom: 3px solid var(--gold);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 68px;
}

.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav__links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  white-space: nowrap;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.2s;
}

@media (max-width: 820px) {
  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: 71px;
    left: 0;
    right: 0;
    background: var(--green-dark);
    flex-direction: column;
    gap: 0;
    padding: 12px 0 16px;
  }
  .nav__links.open { display: flex; }
  .nav__links a {
    padding: 11px 28px;
    width: 100%;
    border-bottom: none;
  }
}

/* ============================================================
   HERO — HOME
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(320px, 34vw, 620px);
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero--slideshow {
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: hero-slide-fade 30s infinite;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: -24s; }
.hero-slide:nth-child(3) { animation-delay: -18s; }
.hero-slide:nth-child(4) { animation-delay: -12s; }
.hero-slide:nth-child(5) { animation-delay: -6s; }

.home-hero .hero-slide:nth-child(1) { background-position: 60% center; }

/* Our Story slideshow — per-photo crop adjustments so the subject
   (not sky or foreground grass) stays in frame at wide aspect ratios. */
.our-story-hero .hero-slide:nth-child(1) { background-position: center 40%; }
.our-story-hero .hero-slide:nth-child(2) { background-position: center 60%; }
.our-story-hero .hero-slide:nth-child(3) { background-position: center 22%; }
.our-story-hero .hero-slide:nth-child(5) { background-position: center 70%; }

@keyframes hero-slide-fade {
  0%     { opacity: 1; }
  16.67% { opacity: 1; }
  20%    { opacity: 0; }
  96.67% { opacity: 0; }
  100%   { opacity: 1; }
}

/* Our Story hero has a 6th slide (seasonal snow scene) — needs its own
   evenly-spaced timing instead of the shared 5-slide/30s rotation. */
.our-story-hero .hero-slide { animation: hero-slide-fade 36s infinite; }
.our-story-hero .hero-slide:nth-child(1) { animation-delay: 0s; }
.our-story-hero .hero-slide:nth-child(2) { animation-delay: -30s; }
.our-story-hero .hero-slide:nth-child(3) { animation-delay: -24s; }
.our-story-hero .hero-slide:nth-child(4) { animation-delay: -18s; }
.our-story-hero .hero-slide:nth-child(5) { animation-delay: -12s; }
.our-story-hero .hero-slide:nth-child(6) { animation-delay: -6s; }

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0 auto;
  padding: 60px 0;
  text-align: center;
}

.hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  text-align: center;
}

.hero__tagline {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  margin: 0 auto 36px;
  line-height: 1.65;
  max-width: 440px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   ECLIPSE AWARD BANNER
   ============================================================ */
.eclipse-banner {
  background: var(--green-dark);
  border-bottom: 4px solid var(--gold);
  padding: 52px 0;
}

.eclipse-banner__inner {
  display: flex;
  align-items: flex-start;
  gap: 36px;
}

.eclipse-banner__trophy {
  font-size: 3.8rem;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.eclipse-banner__tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 10px;
  border-radius: 2px;
}

.eclipse-banner__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.eclipse-banner__horse {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}

.eclipse-banner__desc {
  font-size: 0.96rem;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .eclipse-banner__inner { flex-direction: column; gap: 20px; }
  .eclipse-banner__trophy { font-size: 2.6rem; }
}

/* ============================================================
   PAGE HERO — inner pages
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 38, 24, 0.88) 0%,
    rgba(20, 38, 24, 0.35) 55%,
    transparent 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 40px 0;
}

.page-hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.page-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

/* ============================================================
   HOME — INTRO SECTION
   ============================================================ */
.intro-section { padding: 88px 0; }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.intro-grid__image {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.intro-grid__text p + p { margin-top: 16px; }

@media (max-width: 780px) {
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   HOME — PILLARS
   ============================================================ */
.pillars-section {
  background: var(--green);
  padding: 80px 0;
}

.pillars-header { margin-bottom: 52px; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pillar {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 2px;
  transition: background 0.2s;
}
.pillar:hover { background: rgba(255,255,255,0.05); }

.pillar__number {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.pillar__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}

.pillar__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}

@media (max-width: 720px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ============================================================
   HOME — AWARDS STRIP
   ============================================================ */
.awards-section {
  padding: 80px 0;
  background: var(--white);
}

.awards-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 44px;
}

.award-badge {
  background: var(--ivory);
  border: 2px solid var(--gold);
  border-radius: 2px;
  padding: 22px 30px;
  text-align: center;
  min-width: 150px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.award-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.award-badge__year {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}

.award-badge__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   HOME — PHOTO GRID
   ============================================================ */
.photo-grid-section { padding: 80px 0; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 44px;
}

.photo-grid__item {
  aspect-ratio: 1;
  overflow: hidden;
}

.photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.photo-grid__item:hover img { transform: scale(1.06); }

@media (max-width: 640px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--ivory);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 88px 0;
  text-align: center;
}

.cta-section .section-subheading {
  margin-left: auto;
  margin-right: auto;
}

.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-intro { padding: 80px 0 48px; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 0 0 80px;
}

.service-card {
  background: var(--white);
  border-radius: 2px;
  padding: 36px 32px;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
}

.service-card__icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  line-height: 1;
}

.service-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--green);
  margin-bottom: 12px;
}

.service-card__text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
}

.facilities-section {
  background: var(--green);
  padding: 80px 0;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
  text-align: center;
}

.facility-stat__number {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.facility-stat__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

@media (max-width: 640px) {
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
}

.services-photo-strip {
  padding: 80px 0;
}

.services-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 40px;
}

.services-photo-grid__item {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.services-photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}
.services-photo-grid__item:hover img { transform: scale(1.05); }

@media (max-width: 640px) {
  .services-photo-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   OUR STORY PAGE
   ============================================================ */
.story-section { padding: 80px 0; }

.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 88px;
}

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

.story-block__image {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.story-block__year {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 14px;
  border-radius: 2px;
}

.story-block__text p + p { margin-top: 16px; }

@media (max-width: 780px) {
  .story-block { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
  .story-block--reverse { direction: ltr; }
}

.legacy-quote {
  background: var(--green);
  padding: 80px 0;
  text-align: center;
}

.legacy-quote__mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 24px;
  display: block;
}

.legacy-quote__text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-style: italic;
  color: var(--white);
  max-width: 680px;
  margin: 0 auto 20px;
  line-height: 1.55;
}

.legacy-quote__attr {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ============================================================
   NEWS PAGE
   ============================================================ */
.news-section { padding: 80px 0; }

.eclipse-feature {
  background: var(--green-dark);
  border: 1px solid rgba(184, 150, 46, 0.5);
  border-radius: 2px;
  padding: 52px 48px;
  margin-bottom: 72px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 44px;
  align-items: start;
}

.eclipse-feature__trophy {
  font-size: 4.5rem;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.eclipse-feature__tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 14px;
  border-radius: 2px;
}

.eclipse-feature__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}

.eclipse-feature__subtitle {
  font-size: 1rem;
  color: var(--gold-light);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.eclipse-feature__text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
}

.eclipse-feature__text p + p { margin-top: 14px; }

@media (max-width: 640px) {
  .eclipse-feature {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
  }
  .eclipse-feature__trophy { font-size: 3rem; }
}

.toba-section { padding: 0 0 80px; }

.toba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 44px;
}

.toba-card {
  background: var(--white);
  border-radius: 2px;
  padding: 28px 28px;
  border-top: 4px solid var(--green);
  box-shadow: var(--shadow);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.toba-card__year {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 56px;
}

.toba-card__title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--green);
  margin-bottom: 6px;
}

.toba-card__text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .toba-grid { grid-template-columns: 1fr; }
}

.racing-news-section { padding: 0 0 80px; }

.news-item {
  background: var(--white);
  border-radius: 2px;
  padding: 28px 32px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}

.news-item__date {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.news-item__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 10px;
}

.news-item__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 80px 0; }

.contact-info-center {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.contact-info-center .contact-info__block {
  justify-content: center;
  text-align: left;
}

.contact-info__block {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info__icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.8;
}

.contact-info__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 0.97rem;
  color: var(--charcoal);
  line-height: 1.65;
}

.contact-info__value a { color: var(--green); transition: color 0.2s; }
.contact-info__value a:hover { color: var(--gold); }

.directions-card {
  background: var(--white);
  border-radius: 2px;
  padding: 32px;
  margin-top: 8px;
  border-left: 4px solid var(--green);
  box-shadow: var(--shadow);
}

.directions-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--green);
  margin-bottom: 14px;
}

.directions-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: 2px;
  padding: 40px 36px;
  box-shadow: var(--shadow);
}

.contact-form__heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 8px;
}

.contact-form__sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.65;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--ivory);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45, 74, 53, 0.1);
}

.form-group textarea {
  height: 130px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
}

/* Map */
.map-section { margin-top: 72px; }

.map-section__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.map-section iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green-dark);
  padding: 60px 0 32px;
  border-top: 3px solid var(--gold);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.2fr;
  gap: 52px;
  margin-bottom: 52px;
}

.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.footer__tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer__award-note {
  font-size: 0.8rem;
  color: var(--gold-light);
  font-style: italic;
  line-height: 1.55;
}

.footer__heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }

.footer__contact-line {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer__contact-line a {
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer__contact-line a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
}

@media (max-width: 820px) {
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ---- Site Header / Logo ---- */
.site-header {
  background-color: #2D4A35;
  padding: 20px 0 18px;
  text-align: center;
  border-bottom: 3px solid #B8962E;
}
.logo-link {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
}
.site-logo {
  width: 280px;
  max-width: 88vw;
  height: auto;
}
@media (max-width: 600px) {
  .site-logo { width: 220px; }
}
