:root {
  --bg: #f7f6f2;
  --white: #ffffff;
  --tint: #efede7;
  --text: #111111;
  --muted: rgba(17, 17, 17, 0.68);
  --soft: rgba(17, 17, 17, 0.45);
  --border: rgba(17, 17, 17, 0.1);
  --dark: #111111;
  --dark-soft: rgba(255, 255, 255, 0.5);
  --radius: 2rem;
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.04);
  --shadow-photo: 0 14px 50px rgba(0, 0, 0, 0.05);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 246, 242, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}

.brand-logo {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  gap: 32px;
  font-size: 0.95rem;
  color: rgba(17, 17, 17, 0.7);
}

.nav a:hover,
.text-link:hover,
.contact-link:hover {
  color: var(--text);
}

.section-border {
  border-bottom: 1px solid var(--border);
}

.section-white {
  background: var(--white);
}

.section-tint {
  background: var(--tint);
}

.hero {
  padding: 96px 0 112px;
}

.hero-grid,
.two-col,
.founder-grid,
.contact-grid {
  display: grid;
  gap: 48px;
}

.hero-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
}

.hero-copy h1,
.about h2,
.founder h2,
.contact h2 {
  margin: 0;
  letter-spacing: -0.03em;
  font-weight: 500;
}

.hero-copy h1 {
  max-width: 840px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.95;
}

.eyebrow {
  margin: 0 0 24px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--soft);
}

.eyebrow-dark {
  color: rgba(255, 255, 255, 0.5);
}

.hero-side {
  padding-left: 24px;
}

.hero-side p,
.body-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about,
.approach,
.founder {
  padding: 96px 0 112px;
}

.about-grid,
.approach-grid {
  grid-template-columns: 0.8fr 1.2fr;
}

.about h2,
.founder h2,
.contact h2 {
  font-size: clamp(2.2rem, 4vw, 4.25rem);
}

.body-copy {
  display: grid;
  gap: 28px;
}

.approach-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.approach-card {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.approach-card h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.founder-grid {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 56px;
}

.founder-photo-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #ece8df;
  box-shadow: var(--shadow-photo);
  aspect-ratio: 4 / 5;
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact {
  padding: 80px 0 96px;
  background: var(--dark);
  color: white;
}

.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
}

.contact-link-wrap {
  justify-self: end;
}

.contact-link {
  font-size: 1.25rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: rgba(255, 255, 255, 0.85);
}

.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--dark-soft);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  font-size: 0.76rem;
  line-height: 1.7;
}

.footer-disclaimer {
  max-width: 720px;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero,
  .about,
  .approach,
  .founder {
    padding: 72px 0 80px;
  }

  .hero-grid,
  .about-grid,
  .approach-grid,
  .founder-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-side,
  .contact-link-wrap {
    padding-left: 0;
    justify-self: start;
  }

  .brand-logo {
    height: 32px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, calc(100% - 32px));
  }

  .header-inner {
    padding: 16px 0;
  }

  .brand-logo {
    height: 26px;
  }

  .approach-card {
    padding: 28px;
  }

  .hero-copy h1 {
    font-size: 2.6rem;
  }

  .contact-link {
    font-size: 1.05rem;
  }
}
