/* ============================================================
   1086 Riverside — styles
   Palette + type are defined as variables for easy tweaking.
   ============================================================ */

:root {
  --sage:        #5a8a7d;   /* primary brand */
  --sage-dark:   #436b60;   /* hover / accents */
  --sage-soft:   #e7eee9;   /* tints, alt sections */
  --cream:       #f7f5f0;   /* page background */
  --slate:       #2b3330;   /* headings / dark text */
  --body:        #4d5752;   /* body text */
  --line:        #e2ded4;   /* borders */
  --white:       #ffffff;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --maxw: 1140px;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(43, 51, 48, 0.10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--body);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { color: var(--slate); margin: 0 0 .4em; line-height: 1.1; }
p { margin: 0 0 1em; }
a { color: var(--sage-dark); text-decoration: none; }

.eyebrow {
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: .8em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .98rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--sage); color: #fff; box-shadow: 0 10px 24px rgba(90,138,125,.32); }
.btn-primary:hover { background: var(--sage-dark); color:#fff; }
.btn-ghost { background: transparent; color: var(--slate); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--sage); color: var(--sage-dark); }
.btn-sm { padding: 10px 20px; font-size: .9rem; }
.btn-lg { padding: 17px 38px; font-size: 1.05rem; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,245,240,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 72px; }

.brand { display: inline-flex; align-items: baseline; gap: .35em; }
.brand-mark { font-family: var(--serif); font-weight: 700; font-size: 1.5rem; color: var(--sage-dark); letter-spacing: .01em; }
.brand-name { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; color: var(--slate); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav > a:not(.btn) { color: var(--slate); font-weight: 500; font-size: .96rem; }
.nav > a:not(.btn):hover { color: var(--sage-dark); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--slate); border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 84px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-copy h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  letter-spacing: -.01em;
}
.hero-copy h1 em { color: var(--sage); font-style: italic; }
.lede { font-size: 1.12rem; max-width: 34em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }

.hero-media { position: relative; }
.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

/* ---------- Quick facts ---------- */
.facts { background: var(--sage); color: #fff; }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 36px 24px; }
.fact { text-align: center; }
.fact-num { display: block; font-family: var(--serif); font-weight: 700; font-size: 2.6rem; line-height: 1; }
.fact-label { display: block; margin-top: 8px; font-size: .9rem; opacity: .9; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-alt { background: var(--sage-soft); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(2rem, 3.6vw, 2.9rem); }
.section-sub { font-size: 1.08rem; }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-feature { border-color: var(--sage); box-shadow: 0 10px 30px rgba(90,138,125,.12); }
.card-tag { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); font-weight: 600; margin-bottom: 6px; }
.card h3 { font-family: var(--serif); font-weight: 600; font-size: 1.7rem; }

.feature-list { list-style: none; margin: 14px 0 0; padding: 0; }
.feature-list li { position: relative; padding-left: 26px; margin-bottom: 10px; }
.feature-list li::before {
  content: "";
  position: absolute; left: 0; top: .55em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage);
}

/* ---------- Opportunities ---------- */
.opps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.opp {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px;
}
.opp-primary { border-color: var(--sage); box-shadow: var(--shadow); }
.opp-tag { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); font-weight: 600; margin-bottom: 8px; }
.opp h3 { font-family: var(--serif); font-weight: 600; font-size: 1.9rem; }
.opp p { margin-bottom: 1.4em; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.gallery-item { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 3 / 2; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-wide { grid-column: 1 / -1; }
.gallery-wide img { aspect-ratio: 21 / 9; }

/* ---------- CTA ---------- */
.cta { background: var(--slate); color: #e9eeeb; text-align: center; padding: 90px 0; }
.cta-inner { max-width: 620px; }
.cta h2 { font-family: var(--serif); font-weight: 600; color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.cta p { color: #c4cdc9; font-size: 1.1rem; }
.cta .btn-lg { margin-top: 12px; }
.cta-email { margin-top: 20px; font-size: .95rem; }
.cta-email a { color: #9fc4b8; }

/* ---------- Footer ---------- */
.site-footer { background: #20272400; background: #1f2522; color: #aeb6b2; padding: 48px 0 28px; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.site-footer .brand-mark { color: #8fb6aa; }
.site-footer .brand-name { color: #e9eeeb; }
.footer-addr { margin: 8px 0 0; }
.footer-contact a { color: #9fc4b8; }
.footer-bottom { margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); font-size: .85rem; }
.footer-bottom p { margin: 0; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 48px 0 60px; }
  .cards, .opps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; }

  .nav-toggle { display: flex; }
  .nav {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px;
    display: none;
  }
  .nav.open { display: flex; }
  .nav > a:not(.btn) { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav .btn { margin-top: 14px; text-align: center; }
}

@media (max-width: 460px) {
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .fact-num { font-size: 2.1rem; }
}
