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

:root {
  --green:       #3d6b4f;
  --green-dark:  #2c4f3a;
  --green-light: #e8f0eb;
  --cream:       #faf7f2;
  --text:        #1a1a1a;
  --muted:       #5a5a5a;
  --white:       #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

/* ── Shared ── */
.section-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 32px 44px;
  text-align: center;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--green-dark);
  margin-bottom: 10px;
}
.section-title.left { text-align: left; }

.section-subtitle {
  color: var(--muted);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
}

.btn {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  padding: 13px 30px;
  border-radius: 4px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn:hover { background: var(--green-dark); transform: translateY(-1px); }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { height: 60px; width: auto; border-radius: 6px; object-fit: contain; }

.nav { display: flex; gap: 28px; }
.nav a {
  text-decoration: none;
  color: var(--green-dark);
  font-size: 0.95rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav a:hover { color: var(--green); }

/* ── Hero ── */
.hero {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.25) 55%,
    transparent 100%);
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 620px;
  padding: 0 56px;
  color: var(--white);
}

.hero-content h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}

.hero-tagline {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  color: #c8e6d0;
  margin-bottom: 18px;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.86);
  margin-bottom: 32px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.65;
}

/* ── Facilities — card grid ── */
.facilities {
  background: var(--cream);
  padding-bottom: 80px;
}

.facilities-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.facility-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}

.facility-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}

.facility-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.facility-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.facility-card:hover .facility-img-wrap img {
  transform: scale(1.06);
}

.facility-body {
  padding: 20px 22px 26px;
}

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

.facility-body p {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Shared mosaic item ── */
.mosaic-item {
  overflow: hidden;
  position: relative;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.mosaic-item:hover img {
  transform: scale(1.05);
}

/* ── Farm Bounty mosaic ── */
/*
  7 images, 3-column grid, rows 300px:
  ┌──────────────────┬──────────┐
  │                  │  img 2   │  row 1
  │     img 1        ├──────────┤
  │   (2col × 2row)  │  img 3   │  row 2
  ├────────┬─────────┴──────────┤
  │  img 4 │  img 5  │  img 6   │  row 3
  ├────────┴─────────┴──────────┤
  │          img 7  (3col)      │  row 4
  └─────────────────────────────┘
*/
.farm-bounty { background: var(--white); padding-bottom: 80px; }

.bounty-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 5px;
}

.bounty-mosaic .mosaic-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.bounty-mosaic .mosaic-item:nth-child(7) {
  grid-column: span 3;
}

/* ── Adventures mosaic ── */
/*
  11 images, 4-column grid, rows 240px:
  ┌──────────────┬───────┬───────┐
  │              │ img2  │ img3  │  row 1
  │    img 1     ├───────┼───────┤
  │  (2×2)       │ img4  │ img5  │  row 2
  ├───────┬──────┴────────────────┤
  │ img6  │ img7  │               │  row 3
  ├───────┼───────┤   img 8 (2×2) │
  │ img9  │ img10 │               │  row 4
  ├───────┴───────┴───────────────┤
  │        img 11  (4col)         │  row 5
  └───────────────────────────────┘
*/
.adventures { background: var(--green-light); padding-bottom: 0; }

.adventure-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 5px;
}

.adventure-mosaic .mosaic-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.adventure-mosaic .mosaic-item:nth-child(8) {
  grid-column: span 2;
  grid-row: span 2;
}

.adventure-mosaic .mosaic-item:nth-child(11) {
  grid-column: span 4;
}

/* ── Attractions ── */
.attractions-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 32px 70px;
}

.attractions {
  background: var(--white);
  border-radius: 10px;
  padding: 36px 44px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
}

.attractions h3 {
  font-size: 1.35rem;
  color: var(--green-dark);
  margin-bottom: 22px;
}

.attractions-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 48px;
}

.attractions-list li {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
}

.dist {
  background: var(--green);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
  min-width: 46px;
  text-align: center;
}

/* ── Reach ── */
.reach { padding: 70px 0; background: var(--white); }

.reach-grid {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.reach-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: 10px;
  border: 1px solid #dde8e3;
  background: var(--cream);
}

.reach-icon { font-size: 2.4rem; margin-bottom: 12px; }

.reach-card h4 {
  font-size: 1.05rem;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.reach-card p {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.92rem;
  color: var(--muted);
}

/* ── Contact ── */
.contact { background: var(--green-light); padding: 80px 0; }

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.contact-info { padding-top: 6px; }

.contact-address {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: var(--muted);
  margin-top: 20px;
  margin-bottom: 22px;
  line-height: 1.9;
}

.contact-detail {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.97rem;
  margin-bottom: 10px;
  color: var(--text);
}

.contact-detail a { color: var(--green-dark); text-decoration: none; }
.contact-detail a:hover { text-decoration: underline; }

.contact-form {
  background: var(--white);
  border-radius: 10px;
  padding: 36px 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form h3 {
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cdd8d2;
  border-radius: 5px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.93rem;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--green); }

.contact-form .btn { align-self: flex-start; }

/* ── Footer ── */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.72);
  padding: 36px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-logo { height: 50px; border-radius: 4px; margin-bottom: 4px; }

.footer-inner p {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
}

.footer-copy {
  font-size: 0.8rem !important;
  color: rgba(255,255,255,0.4) !important;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .adventure-mosaic { grid-template-columns: repeat(3, 1fr); }
  .adventure-mosaic .mosaic-item:nth-child(8) { grid-column: span 2; }
  .adventure-mosaic .mosaic-item:nth-child(11) { grid-column: span 3; }
}

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

  .bounty-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .bounty-mosaic .mosaic-item:nth-child(1) { grid-column: span 2; }
  .bounty-mosaic .mosaic-item:nth-child(7) { grid-column: span 2; }

  .adventure-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .adventure-mosaic .mosaic-item:nth-child(1) { grid-column: span 2; }
  .adventure-mosaic .mosaic-item:nth-child(8) { grid-column: span 2; }
  .adventure-mosaic .mosaic-item:nth-child(11) { grid-column: span 2; }

  .attractions-list { grid-template-columns: 1fr; }
  .reach-grid { grid-template-columns: 1fr; max-width: 400px; }
  .contact-inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 520px) {
  .nav { display: none; }
  .hero-content { padding: 0 28px; }
  .section-header { padding: 50px 20px 32px; }
  .facilities-grid { grid-template-columns: 1fr; padding: 0 20px; }
}
