:root {
  --bg: #f5efdf;
  --bg-soft: #ece3d1;
  --surface: rgba(255, 251, 245, 0.76);
  --surface-strong: #fffaf1;
  --surface-alt: #f0e5d3;
  --text: #1d3025;
  --muted: #556454;
  --accent: #7c9760;
  --accent-deep: #304d38;
  --accent-warm: #b8894d;
  --line: rgba(48, 77, 56, 0.14);
  --shadow: 0 24px 60px rgba(44, 58, 32, 0.1);
  --shadow-soft: 0 14px 34px rgba(44, 58, 32, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(164, 184, 120, 0.18), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(184, 137, 77, 0.14), transparent 22%),
    linear-gradient(180deg, #f6f1e7 0%, #efe5d7 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 48px;
}

.hero,
.section,
.contact-panel {
  backdrop-filter: blur(12px);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.92), rgba(244, 235, 220, 0.92));
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 26px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -18% auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 151, 96, 0.2), transparent 68%);
  pointer-events: none;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 76px;
  height: 76px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(48, 77, 56, 0.14);
  background: #fff8ed;
  box-shadow: 0 12px 30px rgba(48, 77, 56, 0.16);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-text {
  font-size: 1.1rem;
}

.brand-subtext {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  color: var(--accent-deep);
  font-weight: 600;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: start;
  padding: 56px 10px 16px;
}

.hero-side {
  display: grid;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: var(--accent-deep);
  margin: 0 0 12px;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  margin: 0;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3.2rem, 7.4vw, 5.9rem);
  max-width: 8.5ch;
  text-wrap: balance;
  line-height: 0.9;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  max-width: 12ch;
  text-wrap: balance;
}

h3 {
  font-size: 2rem;
  line-height: 1;
}

.lead,
.intro-grid p,
.service-card p,
.process-grid p,
.resource-group a,
.contact-panel p,
.hero-card li {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--muted);
}

.lead {
  max-width: 58ch;
  margin-top: 18px;
}

.hero-mini-facts strong,
.hero-note span {
  display: block;
  color: var(--accent-deep);
  font-size: 0.9rem;
}

.hero-mini-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.hero-mini-facts div {
  padding-top: 12px;
  border-top: 1px solid rgba(48, 77, 56, 0.14);
}

.hero-mini-facts span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent-deep);
  color: white;
  box-shadow: 0 12px 32px rgba(61, 88, 53, 0.2);
}

.button-secondary {
  background: transparent;
  border: 1px solid rgba(61, 88, 53, 0.22);
  color: var(--accent-deep);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.28);
  color: white;
}

.hero-card,
.service-card,
.resource-group,
.process-grid article,
.section {
  border: 1px solid var(--line);
}

.hero-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(244, 237, 225, 0.94), rgba(235, 223, 203, 0.88));
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.card-label {
  margin: 0 0 14px;
  font-weight: 700;
  color: var(--accent-deep);
  font-size: 1.1rem;
}

.hero-card-art {
  position: relative;
  height: 132px;
  margin-bottom: 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.9), rgba(233, 223, 202, 0.7));
  overflow: hidden;
}

.leaf {
  position: absolute;
  display: block;
  background: linear-gradient(180deg, rgba(124, 151, 96, 0.9), rgba(48, 77, 56, 0.95));
  border-radius: 100% 0;
  transform-origin: bottom left;
  box-shadow: 0 16px 26px rgba(48, 77, 56, 0.14);
}

.leaf-one {
  width: 84px;
  height: 84px;
  bottom: -6px;
  left: 54px;
  transform: rotate(-42deg);
}

.leaf-two {
  width: 110px;
  height: 110px;
  bottom: -18px;
  left: 128px;
  transform: rotate(-10deg);
}

.leaf-three {
  width: 78px;
  height: 78px;
  bottom: 8px;
  right: 48px;
  transform: rotate(22deg);
}

.hero-card-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-note span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.86);
  border: 1px solid rgba(48, 77, 56, 0.1);
}

.hero-photo-card {
  display: block;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.92), rgba(241, 232, 216, 0.84));
  box-shadow: var(--shadow-soft);
}

.hero-photo-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-photo-copy .card-label {
  margin-bottom: 8px;
}

.hero-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.section {
  background: var(--surface);
  margin-top: 22px;
  border-radius: 28px;
  padding: 36px 30px;
  box-shadow: var(--shadow);
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.intro-grid,
.resources-grid,
.card-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

.intro-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

.founder-photos {
  position: relative;
}

.founder-photo-wrap {
  position: relative;
  padding: 14px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(238, 228, 211, 0.92));
  box-shadow: var(--shadow-soft);
}

.founder-photo-wrap::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 92px;
  height: 92px;
  border-radius: 24px;
  background: rgba(184, 137, 77, 0.14);
  z-index: 0;
}

.founder-photo-primary {
  width: min(100%, 360px);
}

.founder-photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
}

.founder-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.approach-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.approach-band p {
  margin: 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.9), rgba(242, 233, 219, 0.75));
  color: var(--accent-deep);
  font-weight: 700;
}

.card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  background:
    linear-gradient(180deg, rgba(255, 251, 244, 0.96), rgba(249, 242, 231, 0.92));
  border-radius: 24px;
  padding: 24px;
  min-height: 220px;
  box-shadow: var(--shadow-soft);
}

.service-kicker {
  margin: 0 0 10px;
  color: var(--accent-warm);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.73rem;
  font-weight: 800;
}

.service-card p,
.process-grid p {
  margin-bottom: 0;
}

.inline-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent-deep);
  font-weight: 700;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 22px;
}

.services-list p {
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.9), rgba(242, 233, 219, 0.72));
  border: 1px solid rgba(48, 77, 56, 0.1);
  color: var(--accent-deep);
  font-weight: 600;
  line-height: 1.5;
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid article {
  background: rgba(255, 252, 246, 0.92);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.process-grid span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(123, 143, 85, 0.14);
  color: var(--accent-deep);
  font-weight: 800;
  margin-bottom: 18px;
}

.resources-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.resources-intro {
  max-width: 62ch;
  margin: -6px 0 22px;
  color: var(--muted);
  line-height: 1.8;
}

.resource-group {
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.94), rgba(242, 233, 219, 0.82));
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.resource-group h3 {
  margin-bottom: 16px;
}

.resource-group a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(61, 88, 53, 0.08);
  transition: padding-left 180ms ease, color 180ms ease;
}

.resource-group a:hover {
  padding-left: 6px;
  color: var(--accent-deep);
}

.resource-group a:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background:
    radial-gradient(circle at top right, rgba(176, 136, 77, 0.18), transparent 25%),
    linear-gradient(135deg, rgba(47, 74, 41, 0.97), rgba(81, 112, 63, 0.94));
  color: white;
  border-radius: 28px;
  padding: 30px;
}

.contact-panel .eyebrow,
.contact-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-panel h2 {
  max-width: 12ch;
}

.contact-panel .button-primary {
  background: #f4e3bf;
  color: #344028;
  box-shadow: none;
  flex-shrink: 0;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.contact-meta {
  margin-top: 16px;
}

.contact-meta a {
  color: inherit;
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero-grid,
  .hero-side,
  .intro-grid,
  .founder-grid,
  .card-grid,
  .process-grid,
  .resources-grid,
  .services-list,
  .contact-panel,
  .hero-mini-facts,
  .approach-band {
    grid-template-columns: 1fr;
    display: grid;
  }

  .contact-panel {
    justify-content: start;
  }

  .hero-photo-card {
    display: block;
  }

  .founder-photos {
    min-height: 0;
    display: block;
  }

  h1 {
    max-width: 12ch;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 18px, 1180px);
    margin: 10px auto 28px;
  }

  .hero,
  .section {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-links {
    gap: 14px;
    flex-wrap: wrap;
  }

  .hero-grid {
    padding: 36px 0 6px;
  }

  .hero-card,
  .service-card,
  .process-grid article,
  .resource-group,
  .contact-panel {
    border-radius: 20px;
  }

  .button {
    width: 100%;
  }
}
