:root {
  --cream: #fbf6ef;
  --paper: #fffdf9;
  --ink: #2c2a29;
  --muted: #6d6762;
  --sage: #95a58d;
  --sage-dark: #6c836f;
  --plum: #755764;
  --gold: #b79a58;
  --line: rgba(44,42,41,.13);
  --shadow: 0 22px 60px rgba(44, 42, 41, .10);
  --radius: 26px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(183,154,88,.16), transparent 34rem),
    radial-gradient(circle at 92% 8%, rgba(149,165,141,.20), transparent 24rem),
    var(--cream);
  line-height: 1.65;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(251, 246, 239, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; }
.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: contain;
  flex: 0 0 auto;
}
.brand strong { display: block; font-size: 1rem; line-height: 1.2; }
.brand small { display: block; color: var(--muted); font-size: .78rem; }
.nav { display: flex; align-items: center; gap: 1rem; font-size: .95rem; }
.nav a { text-decoration: none; color: var(--muted); font-weight: 650; }
.nav a:hover { color: var(--ink); }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.2rem, 5vw, 5rem);
  align-items: center;
}
.hero h1 {
  max-width: 840px; margin: .4rem 0 1.2rem;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: .95; letter-spacing: -.065em;
}
.hero-text { max-width: 720px; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.35rem); }
.eyebrow {
  color: var(--sage-dark); text-transform: uppercase; letter-spacing: .13em;
  font-size: .78rem; font-weight: 800; margin: 0 0 .6rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px;
  padding: .78rem 1.15rem; border-radius: 999px; text-decoration: none; font-weight: 800;
}
.button.primary { background: var(--ink); color: white; }
.button.secondary { border: 1px solid var(--line); background: rgba(255,253,249,.75); }
.hero-card, .card, .service, .about-photo-card, .contact-card, .gallery-item {
  background: rgba(255, 253, 249, .92); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero-card { padding: 1.45rem; }
.hero-card h2 { margin-top: 0; color: var(--plum); }
.hero-card ul { padding-left: 1.2rem; margin-bottom: 0; }
.section { padding: clamp(3.2rem, 7vw, 6rem) clamp(1.2rem, 5vw, 5rem); }
.intro {
  max-width: 1120px; margin: 0 auto; font-size: clamp(1.25rem, 2.8vw, 2rem);
  line-height: 1.35; color: var(--plum);
}
.section-heading { max-width: 780px; margin-bottom: 2rem; }
.section-heading.narrow { max-width: 900px; }
.section-copy { color: var(--muted); max-width: 760px; }
.section-heading h2, .philosophy h2, .about h2, .contact h2 {
  margin: 0; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1; letter-spacing: -.04em;
}
.grid { display: grid; gap: 1.1rem; }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card, .service { padding: 1.4rem; }
.card h3, .service h3, .contact-card h3 { margin: 0 0 .6rem; font-size: 1.25rem; }
.card p, .service p, .contact-card p, .about p { color: var(--muted); }
.alt {
  background: rgba(149,165,141,.12);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.philosophy {
  display: grid; grid-template-columns: minmax(0, .8fr) minmax(280px, 1fr);
  gap: 2rem; align-items: start;
}
.question-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.question-list li {
  background: rgba(255,253,249,.92); border: 1px solid var(--line);
  border-radius: 18px; padding: 1rem 1.1rem; font-weight: 740;
}
.gallery-section { background: rgba(117,87,100,.05); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 1.1rem;
  align-items: stretch;
}
.gallery-large { grid-row: span 2; }
.gallery-item { overflow: hidden; min-height: 260px; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
}
.about {
  display: grid; grid-template-columns: minmax(0, 1fr) 380px;
  gap: 2rem; align-items: center;
}
.about-photo-card { padding: .8rem; }
.about-photo-card img { border-radius: 20px; width: 100%; height: auto; }
.contact {
  display: grid; grid-template-columns: minmax(0, .85fr) minmax(280px, .65fr);
  gap: 2rem; background: var(--paper);
}
.contact-card { padding: 1.45rem; }
.contact-card a { text-decoration: none; color: var(--plum); font-weight: 700; }
.site-footer {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 1.4rem clamp(1.2rem, 5vw, 5rem); color: var(--muted);
  border-top: 1px solid var(--line); font-size: .92rem;
}
@media (max-width: 900px) {
  .site-header { position: static; align-items: flex-start; flex-direction: column; }
  .nav { flex-wrap: wrap; }
  .hero, .grid.three, .grid.two, .philosophy, .gallery-grid, .about, .contact { grid-template-columns: 1fr; }
  .hero { padding-top: 3rem; }
  .gallery-large { grid-row: auto; }
  .site-footer { flex-direction: column; }
}


.gallery-grid-expanded {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.9fr;
  gap: 1.1rem;
  grid-auto-rows: 240px;
  align-items: stretch;
}
.gallery-grid-expanded .gallery-item { min-height: 0; }
.gallery-grid-expanded .gallery-large {
  grid-row: span 2;
}
.gallery-grid-expanded .gallery-tall {
  grid-row: span 2;
}
.gallery-grid-expanded .wide {
  grid-column: span 1;
}
@media (max-width: 900px) {
  .gallery-grid-expanded {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .gallery-grid-expanded .gallery-large,
  .gallery-grid-expanded .gallery-tall,
  .gallery-grid-expanded .wide {
    grid-row: auto;
    grid-column: auto;
  }
  .gallery-grid-expanded .gallery-item {
    min-height: 220px;
  }
}


/* Keep Khaled visible in the winter pond photo */
.gallery-winter {
  background: #e7ecee;
}
.gallery-winter img {
  object-fit: contain;
  object-position: left center;
}


/* Fuller custom gallery layout */
.gallery-grid-custom {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.95fr;
  grid-template-areas:
    "creek winter waterfall"
    "creek snowtrail lakejump"
    "paddle paddle beach";
  gap: 1.1rem;
  align-items: stretch;
}
.gallery-grid-custom .gallery-item {
  min-height: 240px;
  overflow: hidden;
}
.gallery-grid-custom .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-creek { grid-area: creek; min-height: 500px; }
.gallery-winter { grid-area: winter; background: #e7ecee; }
.gallery-waterfall { grid-area: waterfall; }
.gallery-snowtrail { grid-area: snowtrail; }
.gallery-lakejump { grid-area: lakejump; }
.gallery-paddle { grid-area: paddle; min-height: 260px; }
.gallery-beach { grid-area: beach; }

.gallery-winter img {
  object-position: left center;
}
.gallery-waterfall img {
  object-position: center center;
}
.gallery-beach img {
  object-position: center center;
}
.gallery-paddle img {
  object-position: center center;
}

@media (max-width: 900px) {
  .gallery-grid-custom {
    grid-template-columns: 1fr;
    grid-template-areas:
      "creek"
      "winter"
      "waterfall"
      "snowtrail"
      "lakejump"
      "paddle"
      "beach";
  }
  .gallery-grid-custom .gallery-item,
  .gallery-creek,
  .gallery-paddle {
    min-height: 220px;
  }
}
