:root {
  --starbucks-green: #006241;
  --green-accent: #00754a;
  --house-green: #1e3932;
  --uplift-green: #2b5148;
  --green-light: #d4e9e2;
  --cream: #f2f0eb;
  --ceramic: #edebe9;
  --white: #ffffff;
  --gold: #cba258;
  --text: rgba(0, 0, 0, 0.87);
  --soft-text: rgba(0, 0, 0, 0.58);
  --shadow-card: 0 0 0.5px rgba(0, 0, 0, 0.14), 0 1px 1px rgba(0, 0, 0, 0.24);
  --shadow-nav: 0 1px 3px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.06), 0 0 2px rgba(0, 0, 0, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: SoDoSans, "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 40px;
  background: var(--white);
  box-shadow: var(--shadow-nav);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--starbucks-green);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--starbucks-green);
  position: relative;
  flex: 0 0 auto;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--cream);
  border-radius: 50px;
}

.brand-mark::before {
  width: 19px;
  height: 8px;
  left: 10px;
  top: 12px;
}

.brand-mark::after {
  width: 8px;
  height: 19px;
  left: 16px;
  top: 11px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 18px;
  border: 1px solid var(--green-accent);
  border-radius: 50px;
  color: var(--white);
  background: var(--green-accent);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.button:active {
  transform: scale(0.95);
}

.page-hero {
  min-height: 82svh;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
  padding: 132px 40px 56px;
  background: var(--cream);
}

.hero-copy {
  width: min(650px, 100%);
}

.hero-media {
  margin: 0;
}

.hero-media img {
  width: 100%;
  height: min(560px, calc(100svh - 170px));
  object-fit: cover;
  object-position: 72% center;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--starbucks-green);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  color: var(--starbucks-green);
  font-size: 50px;
  font-weight: 600;
  line-height: 1.15;
}

h2 {
  color: var(--starbucks-green);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.24;
}

h3 {
  color: var(--text);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.28;
}

p,
li {
  color: var(--text);
  font-size: 17px;
  line-height: 1.68;
}

.hero-copy p {
  max-width: 620px;
  margin: 20px 0 28px;
}

.section {
  padding: 64px 40px;
  background: var(--white);
}

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

.feature-band {
  padding: 64px 40px;
  color: var(--white);
  background: var(--house-green);
}

.feature-band h2,
.feature-band h3,
.feature-band p,
.feature-band li,
.feature-band .eyebrow {
  color: var(--white);
}

.feature-band p,
.feature-band li {
  color: rgba(255, 255, 255, 0.76);
}

.inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 52px;
  align-items: start;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.card {
  min-height: 250px;
  padding: 28px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.card .label {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 5px 12px;
  border-radius: 50px;
  color: var(--house-green);
  background: var(--green-light);
  font-size: 13px;
  font-weight: 700;
}

.card p {
  margin: 14px 0 0;
  color: var(--soft-text);
  font-size: 16px;
  line-height: 1.55;
}

.list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.status {
  padding: 22px;
  border-radius: 12px;
  color: var(--white);
  background: var(--house-green);
  box-shadow: var(--shadow-card);
}

.status strong {
  display: block;
  color: var(--gold);
  font-size: 18px;
}

.status span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.45;
}

.footer {
  padding: 48px 40px;
  color: var(--white);
  background: var(--house-green);
}

.footer .inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 72px;
    padding: 14px 18px;
  }

  .nav {
    display: none;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .page-hero {
    grid-template-columns: 1fr;
    padding: 112px 20px 40px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-media img {
    height: 400px;
  }

  .section,
  .feature-band,
  .footer {
    padding: 48px 20px;
  }

  .split,
  .card-grid,
  .status-grid {
    grid-template-columns: 1fr;
  }
}
