:root {
  color-scheme: light;
  --paper: #f7f7ef;
  --ink: #17201a;
  --muted: #536056;
  --line: #d9ded2;
  --leaf: #2f6f4e;
  --leaf-dark: #1f5138;
  --sun: #f2b950;
  --coral: #d95f45;
  --sky: #dcebf4;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: var(--leaf-dark);
  text-underline-offset: 0.18em;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 247, 239, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
  padding: 14px 22px;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  border-radius: 12px;
  height: 36px;
  width: 36px;
}

.nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
}

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

.locale-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink) !important;
  padding: 5px 10px;
}

.hero {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.hero-inner,
.section,
.footer-inner {
  margin: 0 auto;
  max-width: 1120px;
  padding-left: 22px;
  padding-right: 22px;
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 82px);
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  padding-bottom: clamp(44px, 6vw, 76px);
  padding-top: clamp(46px, 7vw, 88px);
}

.hero-copy {
  max-width: 660px;
  min-width: 0;
}

.home-page .home-hero .hero-inner {
  align-items: start;
  gap: clamp(32px, 5vw, 70px);
  grid-template-columns: minmax(0, 1fr) minmax(250px, 330px);
  padding-bottom: clamp(46px, 6vw, 78px);
  padding-top: clamp(56px, 7vw, 94px);
}

.home-page .home-hero .phone {
  height: min(58svh, 560px);
  max-height: none;
  width: calc(min(58svh, 560px) * 0.46);
}

.availability-note {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 650;
  margin: 18px 0 0;
}

.eyebrow {
  color: var(--leaf-dark);
  font-size: 0.86rem;
  font-weight: 820;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.6rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0;
  line-height: 1.04;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.18;
  margin-bottom: 8px;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  max-width: 760px;
}

.actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  align-items: center;
  border: 2px solid var(--ink);
  border-radius: 999px;
  display: inline-flex;
  font-weight: 820;
  justify-content: center;
  line-height: 1.15;
  max-width: 100%;
  min-height: 48px;
  padding: 0 20px;
  text-align: center;
  text-decoration: none;
}

.button.primary {
  background: var(--ink);
  color: var(--white);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.phone {
  aspect-ratio: 552 / 1200;
  background: #f3f2f8;
  border: 1px solid rgba(23, 32, 26, 0.16);
  border-radius: 34px;
  box-shadow: 0 22px 58px rgba(23, 32, 26, 0.15);
  height: min(68svh, 640px);
  justify-self: end;
  overflow: hidden;
  width: calc(min(68svh, 640px) * 0.46);
}

.phone img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.section {
  padding-bottom: clamp(52px, 7vw, 82px);
  padding-top: clamp(52px, 7vw, 82px);
}

.band {
  border-top: 1px solid var(--line);
}

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

.band.sky {
  background: var(--sky);
}

.content-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 330px);
}

.article {
  max-width: 780px;
}

.article p,
.article li {
  color: var(--muted);
  font-size: 1.06rem;
}

.article ul {
  padding-left: 1.2rem;
}

.card-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.side-panel {
  align-self: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.side-panel p,
.side-panel li {
  color: var(--muted);
}

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

.link-list a {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  display: flex;
  font-weight: 760;
  justify-content: space-between;
  padding: 12px 14px;
  text-decoration: none;
}

.link-list a:hover {
  border-color: var(--leaf);
  color: var(--leaf-dark);
}

.press-assets {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.asset-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.asset-tile img {
  border-radius: 8px;
  margin-bottom: 12px;
}

.asset-tile a {
  font-weight: 760;
}

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 34px 0;
}

.footer-inner {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.footer a {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-inner,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .home-page .home-hero .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

  .hero-copy {
    max-width: calc(100vw - 44px);
    width: 100%;
  }

  .phone {
    height: auto;
    justify-self: center;
    max-height: none;
    width: min(86vw, 340px);
  }

  .home-page .home-hero .phone {
    height: auto;
    max-height: none;
    width: min(78vw, 300px);
  }

  .card-grid,
  .press-assets {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
