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

:root {
  --sage:       #6b8f71;
  --sage-dark:  #4a6b50;
  --sage-light: #e8f0e9;
  --cream:      #faf7f2;
  --warm-white: #ffffff;
  --charcoal:   #2d3a2e;
  --text:       #3d4a3e;
  --text-muted: #6b7c6d;
  --accent:     #a8c5ac;
  --border:     #d4e0d6;
}

html { scroll-behavior: smooth; }

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

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sage-dark);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--sage-dark); }

.nav-cta {
  background: var(--sage);
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 24px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--sage-dark) !important; color: #fff !important; }

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(45, 58, 46, 0.45) 0%,
    rgba(45, 58, 46, 0.65) 100%
  );
}
.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 2rem;
  max-width: 780px;
}
.hero-eyebrow {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 1.2rem;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.4rem;
  letter-spacing: -0.01em;
}
.hero-subtitle {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto 2.2rem;
  font-weight: 300;
}
.hero-btn {
  display: inline-block;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.8);
  color: #fff;
  text-decoration: none;
  padding: 0.85rem 2.2rem;
  border-radius: 32px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.25s;
  margin-right: 1rem;
}
.hero-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}
.hero-btn-fill {
  background: var(--sage);
  border-color: var(--sage);
}
.hero-btn-fill:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
}

/* ── SECTIONS ── */
section { padding: 90px 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.8rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 1.4rem;
}
.section-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 660px;
}

/* ── MEET TRISH ── */
#trish { background: var(--warm-white); }
.trish-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.trish-img-wrap {
  position: relative;
}
.trish-img-wrap::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 2px solid var(--accent);
  border-radius: 12px;
  z-index: 0;
}
.trish-img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  max-height: 520px;
  box-shadow: 0 12px 40px rgba(45,58,46,0.12);
}
.trish-credential {
  display: inline-block;
  margin-top: 1.6rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--sage-dark);
  background: var(--sage-light);
  padding: 0.4rem 1rem;
  border-radius: 20px;
}

/* ── WHAT WE OFFER ── */
#offer { background: var(--sage-light); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}
.card {
  background: #fff;
  border-radius: 12px;
  padding: 2.4rem 2rem;
  box-shadow: 0 2px 16px rgba(45,58,46,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(45,58,46,0.12);
}
.card-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
  font-size: 1.4rem;
}
.card-title {
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 0.7rem;
}
.card-body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── APPROACH ── */
#approach { background: var(--cream); }
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.approach-list {
  list-style: none;
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.approach-list li {
  display: flex;
  gap: 0.8rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.5;
}
.approach-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--sage);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3 3 7-7' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 55%;
  margin-top: 2px;
}
.approach-aside {
  background: var(--sage-dark);
  color: #fff;
  border-radius: 12px;
  padding: 2.8rem 2.4rem;
  margin-top: 0.5rem;
}
.approach-aside h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
}
.approach-aside p {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  opacity: 0.88;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.approach-aside ul {
  list-style: none;
  margin-top: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.approach-aside ul li {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  opacity: 0.88;
}
.aside-link {
  display: inline-block;
  margin-top: 0.8rem;
  color: var(--accent);
  text-decoration: none;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}
.aside-link:hover { opacity: 0.75; }

/* ── SERVICES ── */
#services { background: var(--warm-white); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  margin-top: 3rem;
}
.service-block {
  border-left: 3px solid var(--sage);
  padding: 0.4rem 0 0.4rem 1.6rem;
}
.service-block h3 {
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}
.service-block p,
.service-block ul {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.service-block ul {
  list-style: none;
  margin-top: 0.5rem;
}
.service-block ul li::before {
  content: '— ';
  color: var(--sage);
}

/* ── FEES ── */
#fees { background: var(--sage-light); }
.fees-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.fee-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(45,58,46,0.07);
}
.fee-card h3 {
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.fee-badge {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--sage-light);
  color: var(--sage-dark);
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
}
.fee-card p {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.fees-note {
  margin-top: 2.4rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ── CONTACT ── */
#contact { background: var(--charcoal); color: #fff; }
#contact .section-label { color: var(--accent); }
#contact .section-title { color: #fff; }
.contact-body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 560px;
}
.contact-email-btn {
  display: inline-block;
  margin-top: 2rem;
  background: var(--sage);
  color: #fff;
  text-decoration: none;
  padding: 0.9rem 2.4rem;
  border-radius: 32px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.contact-email-btn:hover { background: var(--sage-dark); }
.contact-details-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  margin-top: 3rem;
  padding-top: 2.4rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.contact-detail {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
}
.contact-detail strong {
  color: var(--accent);
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.contact-divider {
  background: var(--accent);
}
.contact-detail a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: color 0.2s, border-color 0.2s;
}
.contact-detail a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ── FOOTER ── */
footer {
  background: #1c2a1d;
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 2rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}
footer a { color: rgba(255,255,255,0.45); text-decoration: none; }
footer a:hover { color: var(--accent); }

/* ── DIVIDER ── */
.divider {
  width: 48px; height: 2px;
  background: var(--sage);
  margin: 1.4rem 0 2rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .trish-grid,
  .approach-grid,
  .services-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.8rem; }
  .cards,
  .fees-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero-btn { display: block; margin: 0 auto 1rem; text-align: center; max-width: 220px; }
}
@media (max-width: 480px) {
  section { padding: 64px 1.2rem; }
}
