/* 1. Custom Font Alias to bypass local conflicts */
@font-face {
  font-family: "G-Sans-Wide";
  src: url("https://fonts.gstatic.com/s/googlesansflex/v20/t5s6IQcYNIWbFgDgAAzZ34auoVyXkJCOvp3SFWJbN5hF8Ju1x6sKCyp0l9sI40swNJwInycYAJzz0m7kJ4qFQOJBOjLvDSndo0SKMpKSTzwliVdHAy4xyRg2eWQTmw.woff2") format("woff2");
  font-weight: 100 1000;
  font-stretch: 25% 151%;
}

:root {
  --bg: #f7f4ee;
  --text: #171717;
  --muted: #5f5f5f;
  --card: #ffffff;
  --accent: #2f5d50;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  /* Use the custom alias first, then fallback */
  font-family: "G-Sans-Wide", "Google Sans Flex", system-ui, sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.page {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

.hero {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--card);
  padding: 48px;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.portrait {
  width: 165px;
  height: 165px;
  object-fit: cover;
  border-radius: 28px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .85rem;
}

h1 {
  margin: 0;
  font-family: "G-Sans-Wide", sans-serif;
  /* Set weight to normal so variation settings take full control */
  font-weight: 400; 
  /* Backup driver for width */
  font-stretch: 150%; 
  font-variation-settings: 
    "wght" 700, 
    "wdth" 150, 
    "opsz" 14;
  line-height: 1;
  letter-spacing: -0.03em;
}

.lede {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.2rem;
}

/* Styled List for the Hero Section */
.hero ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  color: var(--muted);
  font-weight: 500;
}

.hero li {
  margin-bottom: 8px;
}

.hero li::before {
  content: "•";
  color: var(--accent);
  display: inline-block; 
  width: 1em;
  font-weight: 900;
}

.content {
  margin-top: 32px;
  background: var(--card);
  padding: 48px;
  border-radius: 28px;
}

.content h2 {
  margin-top: 0;
  font-family: "G-Sans-Wide", sans-serif;
  font-weight: 400;
  font-stretch: 150%;
  font-variation-settings: 
    "wght" 600, 
    "wdth" 150, 
    "opsz" 14;
  letter-spacing: -0.03em;
}

a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 28px;
    text-align: center;
  }

  .portrait {
    width: 160px;
    height: 160px;
    margin: 0 auto;
  }

  .hero ul {
    text-align: left;
    display: inline-block;
  }

  .content {
    padding: 28px;
  }
}