:root {
  --bg: #f5f1ea;
  --surface: #fdfbf7;
  --surface-2: #f2ece3;
  --text: #1f1a17;
  --muted: #6f6a63;
  --line: #d8d1c7;
  --accent: #234b63;
  --accent-deep: #183749;
  --accent-soft: #dbe7ee;
  --max-width: 1100px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 10px 30px rgba(31, 26, 23, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 241, 234, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
  gap: 1rem;
}

.brand-name {
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.05rem;
}

.nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.95rem;
  color: var(--muted);
}

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

.hero {
  padding: 6rem 0 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.eyebrow,
.section-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

h1,
h2 {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.8rem);
  max-width: 11ch;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

p {
  margin: 0 0 1rem;
  max-width: 65ch;
}

.hero-text {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 48rem;
}

.section {
  padding: 4rem 0;
}

.founder-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 2.5rem;
  align-items: center;
}

.founder-photo-wrap {
  position: relative;
}

.founder-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface-2);
}

.card-grid,
.examples-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.card,
.example-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.contact-section {
  padding: 5rem 0 6rem;
}

.contact-card {
  background: linear-gradient(180deg, var(--accent-soft), #eaf0f3);
  border: 1px solid #bfd0da;
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 18px 40px rgba(35, 75, 99, 0.12);
}

.contact-label {
  color: var(--accent-deep);
}

.contact-text {
  color: #385364;
  max-width: 46rem;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(35, 75, 99, 0.12);
  border-radius: 18px;
  padding: 1.15rem 1.1rem;
  min-height: 120px;
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(35, 75, 99, 0.1);
}

.contact-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-deep);
}

.contact-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  overflow-wrap: anywhere;
}

@media (max-width: 950px) {
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .founder-photo-wrap {
    max-width: 420px;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 1rem 0;
  }

  .hero {
    padding: 4.5rem 0 3rem;
  }

  .card-grid,
  .examples-list {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 12ch;
  }

  .contact-card {
    padding: 1.5rem;
  }
}