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

body {
  font-family: 'Georgia', serif;
  background: #f7f4ef;
  color: #2c2c2c;
  line-height: 1.8;
}

/* HEADER */
header {
  background: #2d5a27;
  color: #fff;
  padding: 70px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1567306226416-28f0efdc88ce?w=1400&q=60') center/cover no-repeat;
  opacity: 0.18;
}

header .inner {
  position: relative;
  z-index: 1;
}

header h1 {
  font-size: 3rem;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

header p {
  font-size: 1.1rem;
  opacity: 0.88;
  font-style: italic;
}

/* NAV */
nav {
  background: #234820;
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 14px 24px;
  flex-wrap: wrap;
}

nav a {
  color: #c8ddc5;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

nav a:hover, nav a.active { color: #fff; }

/* MAIN */
main {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

section { margin-bottom: 60px; }

h2 {
  font-size: 1.5rem;
  color: #2d5a27;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #c8ddc5;
}

h2.plain {
  border-bottom: none;
  padding-bottom: 0;
  font-size: 2rem;
  margin-bottom: 8px;
}

h3 {
  font-size: 1.2rem;
  color: #2d5a27;
  margin-top: 36px;
  margin-bottom: 12px;
}

p { margin-bottom: 16px; font-size: 1.05rem; }

p.lead {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 32px;
}

p.subtitle {
  font-style: italic;
  color: #666;
  margin-bottom: 32px;
  font-size: 1.05rem;
}

ul.flow { padding-left: 24px; margin-bottom: 20px; }
ul.flow li { margin-bottom: 10px; }

em { font-style: italic; }
strong { font-weight: bold; }

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 32px 0 40px;
}

.card {
  background: #fff;
  border: 1px solid #c8ddc5;
  border-radius: 8px;
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.card h3 {
  font-size: 1.1rem;
  color: #2d5a27;
  margin-top: 0;
  margin-bottom: 10px;
}

.card p { font-size: 0.95rem; color: #555; margin: 0; line-height: 1.6; }

/* COLLECTION NUMBERS */
.collection {
  display: flex;
  gap: 24px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.collection-item {
  flex: 1;
  min-width: 180px;
  background: #fff;
  border: 1px solid #c8ddc5;
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.collection-item .number {
  font-size: 3.5rem;
  font-weight: bold;
  color: #2d5a27;
  line-height: 1;
}

.collection-item .label {
  font-size: 1rem;
  color: #555;
  margin-top: 10px;
}

/* DESTINATIONS BLOCK */
.destinations {
  background: #fff;
  border: 1px solid #c8ddc5;
  border-radius: 8px;
  padding: 20px 28px;
  margin: 24px 0;
}

.destinations ul { padding-left: 20px; }
.destinations li { margin-bottom: 10px; font-size: 1rem; }
.destinations strong { color: #2d5a27; }

/* FIGURES */
figure {
  margin: 36px 0;
  text-align: center;
}

figure img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

figure figcaption {
  font-size: 0.85rem;
  color: #777;
  font-style: italic;
  margin-top: 10px;
}

/* CONTACT */
.contact-box {
  background: #2d5a27;
  color: #fff;
  border-radius: 10px;
  padding: 44px 36px;
  text-align: center;
}

.contact-box h2 {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.25);
  margin-bottom: 16px;
}

.contact-box p {
  opacity: 0.9;
  max-width: 520px;
  margin: 0 auto 24px;
}

.contact-box a.btn {
  display: inline-block;
  background: #fff;
  color: #2d5a27;
  padding: 13px 36px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  margin: 6px;
}

.contact-box a.btn:hover { background: #e8f4e6; }

/* PAGE LINKS BOTTOM */
.page-end {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e0dbd3;
  font-size: 0.95rem;
}

.page-end a {
  color: #2d5a27;
  text-decoration: underline;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 32px 24px;
  font-size: 0.85rem;
  color: #999;
  border-top: 1px solid #e0dbd3;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.7;
}

footer a { color: #2d5a27; text-decoration: none; }
