:root {
  color-scheme: light;
  --ink: #201c18;
  --muted: #655f58;
  --paper: #fffaf3;
  --surface: #fff2e1;
  --accent: #b94f3f;
  --accent-dark: #84382e;
  --sage: #607566;
  --line: rgba(32, 28, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(255, 250, 243, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fffaf3;
  background: var(--accent-dark);
  font-size: 0.74rem;
  letter-spacing: 0;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  font-size: 0.95rem;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

.hero {
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 112px clamp(20px, 5vw, 72px) 70px;
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.98) 0%, rgba(255, 250, 243, 0.9) 43%, rgba(255, 250, 243, 0.28) 72%),
    url("/assets/hero-cats.png") center right / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  max-width: 650px;
}

.hero-mobile-image {
  display: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 570px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 6.2vw, 5.25rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 4vw, 3.3rem);
  line-height: 1;
  letter-spacing: 0;
}

.lede {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  color: #fffaf3;
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button.secondary {
  background: rgba(255, 250, 243, 0.68);
}

.section {
  padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 1px;
  padding-bottom: 1px;
  background: var(--line);
}

.feature-grid article {
  min-height: 280px;
  padding: clamp(28px, 5vw, 44px);
  background: var(--paper);
}

.feature-number {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--sage);
  font-weight: 900;
}

.feature-grid p,
.split p,
.contact-band p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.split,
.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.split {
  background: var(--surface);
}

.contact-band {
  background: var(--sage);
  color: #fffaf3;
}

.contact-band .eyebrow,
.contact-band p {
  color: #fffaf3;
}

.contact-band .button {
  justify-self: end;
  background: #fffaf3;
  color: var(--ink);
  border-color: #fffaf3;
}

@media (max-width: 780px) {
  .site-header {
    position: sticky;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 68px;
    padding-bottom: 28px;
    background: linear-gradient(180deg, rgba(255, 250, 243, 0.98) 0%, rgba(255, 250, 243, 0.9) 100%);
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-mobile-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 11;
    margin-top: 28px;
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
  }

  .feature-grid,
  .split,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    min-height: 220px;
  }

  .contact-band .button {
    justify-self: start;
  }
}
