:root {
  color-scheme: light;
  --ink: #181815;
  --muted: #64645d;
  --paper: #faf7f1;
  --line: rgba(24, 24, 21, 0.16);
  --white: #fffaf3;
  --accent: #9d1f1f;
  --leaf: #39594b;
  --shadow: 0 18px 48px rgba(24, 24, 21, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration-color: rgba(157, 31, 31, 0.42);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-color: var(--accent);
}

.site-header {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 64px);
}

.brand,
.site-header nav a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.74);
  box-shadow: 0 8px 22px rgba(24, 24, 21, 0.08);
  color: var(--accent);
  font-size: 0.78rem;
}

.site-header nav a {
  border-bottom: 1px solid rgba(24, 24, 21, 0.28);
  padding-bottom: 3px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 82svh;
  overflow: hidden;
  place-items: center start;
  padding: 116px clamp(20px, 5vw, 64px) 72px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(250, 247, 241, 0.94) 0%, rgba(250, 247, 241, 0.76) 36%, rgba(250, 247, 241, 0.2) 72%),
    url("assets/workspace-hero.png") center / cover no-repeat;
  transform: scale(1.01);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--leaf);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.9rem, 12vw, 8.5rem);
  font-weight: 850;
  line-height: 0.92;
  letter-spacing: 0;
}

.intro {
  max-width: 560px;
  margin: 26px 0 0;
  color: #2b2b27;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 520;
  line-height: 1.28;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.primary-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(24, 24, 21, 0.2);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
  color: var(--white);
  font-weight: 800;
  padding: 13px 18px;
  text-decoration: none;
}

.primary-link:hover {
  background: #262621;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.info-strip p {
  min-height: 118px;
  margin: 0;
  background: var(--paper);
  padding: 28px clamp(20px, 5vw, 64px);
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  font-weight: 760;
  line-height: 1.25;
}

.info-strip span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .site-header {
    position: relative;
    background: var(--paper);
    padding-block: 16px;
  }

  .site-header nav a {
    font-size: 0.88rem;
  }

  .brand span:last-child {
    display: none;
  }

  .hero {
    min-height: 76svh;
    padding-top: 56px;
    place-items: end start;
  }

  .hero-media {
    background:
      linear-gradient(0deg, rgba(250, 247, 241, 0.98) 0%, rgba(250, 247, 241, 0.72) 45%, rgba(250, 247, 241, 0.18) 100%),
      url("assets/workspace-hero.png") 60% 50% / cover no-repeat;
  }

  .intro {
    max-width: 27rem;
  }

  .info-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .site-header {
    gap: 12px;
  }

  .site-header nav a {
    max-width: 56vw;
    overflow-wrap: anywhere;
  }

  h1 {
    font-size: clamp(3.55rem, 25vw, 5.8rem);
  }

  .primary-link {
    width: 100%;
  }
}
