/* Typography: self-hosted TT Ramillas (serif) and Garet (geometric sans) */
@font-face {
  font-family: "Garet";
  src: url("spacetype-garet/Spacetype - Garet Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Garet";
  src: url("spacetype-garet/Spacetype - Garet Heavy.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Ramillas";
  src: url("TT-Ramillas/Demo_Fonts/Fontspring-DEMO-tt_ramillas_regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Ramillas";
  src: url("TT-Ramillas/Demo_Fonts/Fontspring-DEMO-tt_ramillas_bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --headline: #747e49;
  --text: #1a1a1a;
  --muted: #4a4a4a;
  --bg: #ffffff;
  --border: #7e845a;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "Garet", "Avenir Next", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

h1, h2, h3, .display, .headline {
  font-family: "TT Ramillas", Georgia, Cambria, "Times New Roman", serif;
  color: var(--headline);
}

.container { width: min(1200px, 92%); margin: 0 auto; }
.two-col { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 5vw, 56px); align-items: center; }

/* Buttons */
.btn { display:inline-block; text-decoration:none; border-radius:6px; padding:14px 24px; font-weight:600; }
.btn--outline { color:#fff; border:2px solid #fff; }

/* Hero */
.hero { position: relative; min-height: calc(100vh + 150px); display: grid; place-items: center; text-align: center; overflow: hidden; }
.hero__bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.hero::after { content:""; position:absolute; inset:0; background: rgba(0,0,0,.4); }
.hero__inner { position:relative; z-index:1; color:#fff; padding: 10vh 0; }
.headline { font-size: clamp(40px, 9vw, 96px); letter-spacing:.5px; line-height: 1.02; color:#fff; margin:0 0 12px; }
.tagline { margin:0 0 20px; font-size: clamp(16px, 2.5vw, 22px); color:#f2f5f0; }

/* Intro */
section { padding: clamp(64px, 10vw, 120px) 0; }
.display { font-size: clamp(36px, 6vw, 72px); color: var(--headline); letter-spacing:.6px; }
.intro .body p { margin: 0 0 14px; color:#2b2b2b; font-size: clamp(16px, 2vw, 18px); }
.intro__image .arch { width:100%; height:auto; border-top-left-radius: 100% 100%; border-top-right-radius: 100% 100%; border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
.intro__flower { position:absolute; left:0; bottom:-10px; width:140px; }
.intro { position:relative; }
.display { font-size: clamp(30px, 5vw, 44px); }

/* Founders */
.section-title { font-size: clamp(28px, 4.5vw, 44px); margin: 0 0 24px; color: var(--headline); }
.impact .section-title { margin: 0 0 48px; }
.founders__grid { display:grid; grid-template-columns: 1fr 120px 1fr; gap: clamp(16px, 5vw, 40px); align-items: start; }
.founder { text-align:center; }
.portrait { width: min(420px, 86%); aspect-ratio: 1 / 1; margin: 0 auto 14px; border-top-left-radius: 50% 50%; border-top-right-radius: 50% 50%; border-bottom-left-radius: 0; border-bottom-right-radius: 0; overflow: hidden; }
.portrait img { width:100%; height:100%; object-fit:cover; }
.founder__name { color:#000; font-size: 22px; letter-spacing:1px; margin: 8px 0 6px; }
.founder__role, .founder__bio { color:#2f2f2f; margin:0 0 6px; }
.leaf { width: 120px; justify-self:center; align-self:center; }

/* Impact */
.impact__grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 4vw, 48px); text-align:center; }
.impact__art { height: 260px; width:auto; margin: 0 auto 14px; display:block; }
.impact h3 { color:#000; letter-spacing:.8px; font-size: clamp(18px, 2.2vw, 24px); }
.impact p { color:#2b2b2b; font-size: clamp(14px, 1.8vw, 18px); }

/* Initiatives */
.initiatives { position:relative; }
.initiatives__grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 4vw, 48px); text-align:center; align-items:start; }
.circle { width:min(300px, 86%); aspect-ratio:1/1; margin: 0 auto 18px; border:2px solid var(--border); border-radius:999px; display:grid; place-items:center; font-family:"TT Ramillas",serif; font-size: clamp(28px, 4vw, 40px); color:#000; text-align:center; line-height:1.15; }
.initiatives p { font-size: clamp(16px, 2vw, 20px); font-weight: 400; color:#000; }
.initiatives p br + strong { font-weight: 700; }
.initiatives p strong { font-weight: 700; }
.flower-left-1 { position:absolute; left:2%; bottom:10%; width:100px; }
.flower-left-2 { position:absolute; left:32%; bottom:10%; width:100px; }
.flower-left-3 { position:absolute; left:62%; bottom:10%; width:100px; }
.flower-right { position:absolute; right:2%; bottom:10%; width:100px; }

@media (max-width: 960px) {
  .flower-left-2, .flower-left-3, .flower-right {
    display: none;
  }
  .flower-left-1 {
    position: relative;
    display: block;
    margin: 40px auto 0;
    left: auto;
    bottom: auto;
  }
}

/* Contact */
.contact { position:relative; text-align:center; min-height: 80vh; display:flex; align-items:center; }
.lead { color:#2b2b2b; margin: 8px 0 18px; }
.email { color:#000; font-weight:600; text-decoration:none; border-bottom:2px solid #000; padding-bottom: 2px; }
.contact__flower { position:absolute; left:0; bottom:0; width:220px; opacity:.95; }

/* Footer */
.footer { background: var(--headline); }
.footer p { margin:0; padding:18px 0; color:#ffffff; text-align:center; }

/* Responsive */
@media (max-width: 960px) {
  .two-col { grid-template-columns: 1fr; }
  .founders__grid { grid-template-columns: 1fr; }
  .leaf { display:none; }
  .impact__grid, .initiatives__grid { grid-template-columns: 1fr; }
  .hero { min-height: 74vh; }
  .flower-left-1,
  .flower-left-2,
  .flower-left-3,
  .flower-right {
    margin-top: 165px;
  }
}

/* Base */
:root {
  --text: #1d1d1f;
  --muted: #4b4b50;
  --bg: #ffffff;
  --accent: #2c6e49;
  --accent-2: #e7f0ea;
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.12), 0 4px 10px rgba(0,0,0,.06);
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica Neue, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, Cambria, "Times New Roman", serif;
  line-height: 1.2;
  margin: 0 0 .5rem;
  color: #102a43;
}

p { margin: 0 0 1rem; color: var(--muted); }

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
}

/* Nav + Hero */
.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px min(1140px, 92%);
  margin: 0 auto;
}

.brand { font-weight: 600; letter-spacing: .2px; }

.cta {
  text-decoration: none;
  color: #fff;
  background: var(--accent);
  padding: 10px 16px;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.8) saturate(1.05);
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1140px, 92%);
  margin: 0 auto 8vh;
  color: #fff;
}

.hero__title { font-size: clamp(32px, 6vw, 60px); margin-bottom: .25rem; }
.hero__subtitle { color: #f0f4f8; font-size: clamp(16px, 2.4vw, 20px); }

/* Sections */
section { padding: 96px 0; }

.about .card-stack { position: relative; min-height: 340px; }
.card {
  width: 100%;
  border-radius: 16px;
  background: var(--card);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.card--shadow { position: absolute; inset: 0 8% 12% 0; }
.card--overlay {
  position: absolute; right: 0; bottom: 0; width: 70%;
  transform: rotate(-2deg);
}

.location { background: linear-gradient(180deg, #fff, #f8fafb); }
.location .lead { margin-bottom: 24px; }
.location__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.location__grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; box-shadow: var(--shadow); }
.location__grid img:nth-child(1) { grid-column: span 7; height: 340px; }
.location__grid img:nth-child(2) { grid-column: span 5; height: 340px; }
.location__grid img:nth-child(3) { grid-column: span 6; height: 300px; }
.location__grid img:nth-child(4) { grid-column: span 6; height: 300px; }

.vision .checklist { padding-left: 0; list-style: none; }
.vision .checklist li { margin: 8px 0; padding-left: 28px; position: relative; }
.vision .checklist li:before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700; }

.cta-block { position: relative; overflow: hidden; text-align: center; color: #fff; }
.cta-block__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.6); }
.cta-block .container { position: relative; z-index: 1; }
.cta-block h2 { color: #fff; }
.button { display: inline-block; margin-top: 8px; text-decoration: none; background: #fff; color: var(--accent); padding: 12px 18px; border-radius: 999px; }

/* Footer */
.footer { background: #0b1f18; color: #d9ede0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; }
.copy { color: #b6d1c3; }

/* Responsive */
@media (max-width: 960px) {
  .two-col { grid-template-columns: 1fr; }
  .about .card-stack { min-height: 260px; }
  .location__grid img:nth-child(1),
  .location__grid img:nth-child(2),
  .location__grid img:nth-child(3),
  .location__grid img:nth-child(4) { grid-column: span 12; height: 240px; }
}


