:root {
  --forest: #1e3d2f;
  --forest-light: #2f5a44;
  --forest-dark: #14291f;
  --earth: #7a5c3e;
  --sand: #faf8f3;
  --sand-dark: #eee8da;
  --accent: #b5622e;
  --accent-dark: #93501f;
  --ink: #202b21;
  --muted: #647163;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 6px 24px rgba(20, 41, 31, 0.1);
  --shadow-sm: 0 2px 10px rgba(20, 41, 31, 0.07);
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { overflow-x: hidden; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--sand);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

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

a { color: var(--forest); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--accent-dark); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  background: rgba(20, 41, 31, 0.97);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.logo:hover { color: var(--white); }
.logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.15);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #d6e3d9;
  font-weight: 500;
  font-size: 0.93rem;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(20,41,31,0.55) 0%, rgba(20,41,31,0.82) 100%),
    var(--hero-image, none) center 30% / cover no-repeat,
    linear-gradient(160deg, var(--forest) 0%, var(--forest-dark) 100%);
  color: var(--white);
  padding: 7rem 1.5rem 6rem;
  text-align: center;
}

.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: #a9c2af;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3rem);
  margin: 0 0 1rem;
}

.hero p {
  max-width: 620px;
  margin: 0 auto;
  color: #d6e3d9;
  font-size: 1.08rem;
}

.hero .btn { margin-top: 2rem; }

/* Page header (non-home pages) */
.page-header {
  background:
    linear-gradient(180deg, rgba(20,41,31,0.6) 0%, rgba(20,41,31,0.85) 100%),
    var(--header-image, none) center / cover no-repeat,
    linear-gradient(160deg, var(--forest) 0%, var(--forest-dark) 100%);
  color: var(--white);
  padding: 4.5rem 1.5rem;
  text-align: center;
}

.page-header h1 { margin: 0 0 0.6rem; font-size: clamp(1.8rem, 4vw, 2.4rem); }
.page-header p { color: #d6e3d9; margin: 0; max-width: 560px; margin: 0 auto; }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 0.98rem;
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--forest);
  color: var(--forest);
  padding: 0.68rem 1.65rem;
}

.btn-outline:hover { background: var(--forest); color: var(--white); }

/* Sections */
section { padding: 4rem 1.5rem; }

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 { margin: 0 0 0.6rem; font-size: clamp(1.5rem, 3vw, 1.9rem); }
.section-title p { color: var(--muted); margin: 0; }

/* Placeholder image block (stand-in until real photos are added) */
.img-placeholder {
  background: repeating-linear-gradient(135deg, var(--sand-dark), var(--sand-dark) 12px, #e2dbc7 12px, #e2dbc7 24px);
  border: 1px dashed #c2b696;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
  min-height: 170px;
}

/* Cards / grid */
.grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.grid-2up { grid-template-columns: 1fr 1fr; align-items: center; }
@media (max-width: 700px) {
  .grid-2up { grid-template-columns: 1fr; }
}

.card-img-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin: 0 0 0.5rem; font-size: 1.15rem; }
.card-body p { color: var(--muted); margin: 0 0 1rem; flex: 1; font-size: 0.95rem; }
.card-price { font-weight: 700; color: var(--forest); margin-bottom: 0.75rem; }
.card-meta { font-size: 0.82rem; color: var(--accent-dark); margin-bottom: 0.5rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }

/* Activity chips */
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.chip {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
  color: var(--forest-dark);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

/* Photo tile gallery (activities) */
.tile-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.tile {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.tile:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tile:hover img { transform: scale(1.08); }

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 28, 20, 0.85) 100%);
}

.tile-label {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.8rem;
  z-index: 1;
  color: var(--white);
  font-weight: 600;
  font-size: 0.98rem;
}

/* Group cards with background photo */
.group-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.group-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.group-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.group-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,41,31,0.05) 30%, rgba(15,28,20,0.92) 100%);
}

.group-card-body {
  position: relative;
  z-index: 1;
  padding: 1.25rem 1.4rem;
  color: var(--white);
}

.group-card-body h3 { margin: 0 0 0.3rem; color: var(--white); font-size: 1.15rem; }
.group-card-body p { margin: 0; color: #d6e3d9; font-size: 0.9rem; }

/* Simple photo grid (gallery) */
.photo-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 130px;
}

.photo-grid a, .photo-grid > div {
  border-radius: 10px;
  overflow: hidden;
  display: block;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.photo-grid a:hover img { transform: scale(1.08); }

.photo-grid .tall { grid-row: span 2; }

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

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Blog */
.blog-list { display: grid; gap: 1.75rem; }

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem;
  transition: box-shadow 0.2s ease;
}

.blog-card:hover { box-shadow: var(--shadow); }
.blog-card .date { color: var(--accent-dark); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.blog-card h3 { margin: 0.5rem 0; font-size: 1.3rem; }

.blog-card { display: flex; gap: 1.5rem; align-items: stretch; padding: 0; overflow: hidden; }
.blog-card-img { flex: 0 0 240px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-content { padding: 1.5rem 1.75rem 1.5rem 0; flex: 1; }

@media (max-width: 640px) {
  .blog-card { flex-direction: column; }
  .blog-card-img { flex: 0 0 180px; width: 100%; }
  .blog-card-content { padding: 1.25rem 1.5rem 1.5rem; }
}

article.post .post-cover {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.75rem;
  aspect-ratio: 16 / 9;
}
article.post .post-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

article.post {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
  max-width: 760px;
  margin: 2.5rem auto;
}

article.post h1 { margin-top: 0; font-size: clamp(1.7rem, 4vw, 2.2rem); }
article.post .date { color: var(--accent-dark); margin-bottom: 1.75rem; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }
article.post p { margin-bottom: 1.2rem; }

/* Contact form */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  padding: 2.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; margin-bottom: 0.4rem; font-weight: 600; font-size: 0.9rem; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid #d6cfba;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.15s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--forest-light);
}

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

.contact-info {
  display: grid;
  gap: 1.1rem;
  margin-bottom: 2.5rem;
  text-align: center;
  color: var(--muted);
}

.contact-info strong { color: var(--ink); }

/* Footer */
.site-footer {
  background: var(--forest-dark);
  color: #b9cabd;
  padding: 3rem 1.5rem 1.75rem;
  margin-top: 3rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
}

.footer-col h4 { color: var(--white); margin: 0 0 0.85rem; font-size: 1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: #b9cabd; font-size: 0.92rem; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  text-align: center;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.09);
  font-size: 0.82rem;
  color: #839786;
}

.footer-bottom a { color: #a3b8a7; text-decoration: underline; }
.footer-bottom a:hover { color: var(--white); }

/* Responsive nav */
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background: var(--forest-dark);
    padding: 0.5rem 0 1.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.75rem 1.5rem;
  }
  .nav-links a.active::after { display: none; }
  .nav-links a.active { background: rgba(255,255,255,0.06); }
  .nav-bar { flex-wrap: wrap; }
}

@media (max-width: 600px) {
  section { padding: 3rem 1.25rem; }
  .hero { padding: 4rem 1.25rem 3.5rem; }
  article.post { padding: 1.75rem; margin: 1.5rem auto; }
  .contact-form { padding: 1.75rem; }
}
