:root {
  --bg: #fbfaf7;
  --bg-soft: #f0f1eb;
  --text: #171614;
  --muted: #675f55;
  --teal: #087d7a;
  --amber: #9f6627;
  --ink: #fffdf8;
  --max-width: 1160px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fffdf9 0%, var(--bg) 46%, #f2f1ea 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body::selection {
  background: rgba(8, 125, 122, 0.18);
  color: var(--text);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 5vw;
  background: rgba(251, 250, 247, 0.82);
  backdrop-filter: blur(16px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 250, 247, 0.94);
  box-shadow: 0 12px 34px rgba(32, 27, 22, 0.055);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  font-size: 0.92rem;
  font-weight: 650;
}

.brand-mark {
  display: inline-grid;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 6px;
  background: rgba(8, 125, 122, 0.08);
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(88svh - var(--header-height)));
  overflow: hidden;
  align-items: center;
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background-image: url("assets/daleenton-hero.png");
  background-position: center right;
  background-size: cover;
  filter: saturate(0.92) brightness(1.16);
  opacity: 0.82;
  transform: scale(1.01);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(251, 250, 247, 1) 0%,
      rgba(251, 250, 247, 0.98) 36%,
      rgba(251, 250, 247, 0.72) 66%,
      rgba(251, 250, 247, 0.16) 100%
    ),
    linear-gradient(
      0deg,
      rgba(251, 250, 247, 0.95) 0%,
      rgba(251, 250, 247, 0.16) 52%,
      rgba(251, 250, 247, 0.78) 100%
    );
}

.hero-inner {
  width: min(var(--max-width), 90vw);
  margin: 0 auto;
  padding: 4.5rem 0 5rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 1.2rem;
  font-size: 4.5rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 2rem;
  color: #4f4941;
  font-size: 1.2rem;
}

.hero-actions,
.contact-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 0.78rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: #2d2823;
}

.button-secondary {
  background: rgba(32, 27, 22, 0.06);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(8, 125, 122, 0.08);
}

.section,
.contact-section,
.site-footer {
  width: min(var(--max-width), 90vw);
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 4rem;
  align-items: end;
}

.section-copy {
  max-width: 730px;
}

.section h2,
.contact-section h2 {
  margin-bottom: 1rem;
  font-size: 2.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.section p,
.contact-section p {
  color: var(--muted);
  font-size: 1.04rem;
}

.signal-list {
  display: grid;
  gap: 1.05rem;
  margin: 0;
}

.signal-list div {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 1rem;
  padding: 0.2rem 0;
}

.signal-list dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-list dd {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 720;
}

.approach-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 4rem;
  align-items: start;
}

.principles {
  display: grid;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.principles li {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1.25rem;
  padding: 0;
}

.principles span {
  grid-column: 1;
  grid-row: 1 / span 2;
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 850;
}

.principles h3 {
  grid-column: 2;
  margin-bottom: 0.4rem;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.principles p {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  justify-content: space-between;
  margin-bottom: 5rem;
  padding: 1.5rem 0 2rem;
}

.contact-section > div {
  max-width: 690px;
}

.contact-section .button {
  flex: 0 1 auto;
}

.site-footer {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

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

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  h1 {
    font-size: 3.25rem;
  }

  .intro-section,
  .approach-section {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .section h2,
  .contact-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 660px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    padding: 0 1rem;
  }

  .brand span:last-child {
    max-width: 8.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-mark {
    width: 2rem;
    height: 2rem;
  }

  .site-nav {
    gap: 0.8rem;
    font-size: 0.8rem;
  }

  .hero {
    min-height: calc(86svh - var(--header-height));
  }

  .hero-media {
    background-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(
        90deg,
        rgba(251, 250, 247, 1) 0%,
        rgba(251, 250, 247, 0.94) 54%,
        rgba(251, 250, 247, 0.58) 100%
      ),
      linear-gradient(
        0deg,
        rgba(251, 250, 247, 0.98) 0%,
        rgba(251, 250, 247, 0.28) 55%,
        rgba(251, 250, 247, 0.88) 100%
      );
  }

  .hero-inner {
    padding: 3.4rem 0 3.8rem;
  }

  h1 {
    font-size: 2.55rem;
    line-height: 1.02;
  }

  .hero-lede {
    font-size: 1.05rem;
  }

  .hero-actions,
  .contact-section {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 4rem 0;
  }

  .section h2,
  .contact-section h2 {
    font-size: 1.75rem;
  }

  .principles li {
    grid-template-columns: 2.3rem minmax(0, 1fr);
    gap: 0.85rem;
  }

  .signal-list div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .contact-section,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer {
    padding: 1.5rem 0;
  }
}

@media (max-width: 520px) {
  .brand span:last-child {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
