:root {
  --ink: #0f1a1f;
  --ink-soft: #22323a;
  --sandstone: #d8c5aa;
  --sandstone-light: #f3ebdf;
  --paper: rgba(248, 242, 234, 0.82);
  --paper-strong: #fbf7f1;
  --eucalyptus: #6f8e7b;
  --eucalyptus-deep: #38574c;
  --copper: #b56c45;
  --copper-deep: #8d4f33;
  --line: rgba(15, 26, 31, 0.12);
  --shadow: 0 28px 72px rgba(15, 26, 31, 0.14);
  --radius-xl: 2rem;
  --radius-lg: 1.4rem;
  --radius-md: 1rem;
  --content-width: 1180px;
  --heading-font: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --body-font: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: var(--body-font);
  background:
    radial-gradient(circle at top left, rgba(111, 142, 123, 0.18), transparent 24rem),
    radial-gradient(circle at 82% 10%, rgba(181, 108, 69, 0.14), transparent 20rem),
    linear-gradient(180deg, #f5eee3 0%, #efe5d6 48%, #eadfce 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  opacity: 0.5;
  filter: blur(16px);
}

body::before {
  inset: auto auto 8rem -5rem;
  width: 20rem;
  height: 20rem;
  background: rgba(111, 142, 123, 0.14);
}

body::after {
  inset: 5rem -4rem auto auto;
  width: 16rem;
  height: 16rem;
  background: rgba(181, 108, 69, 0.12);
}

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

p,
li {
  line-height: 1.7;
}

.site-shell {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
  padding: 1.5rem 0 2rem;
}

.site-header,
.hero,
.trust-band,
.section,
.site-footer {
  animation: reveal 720ms ease both;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0 1.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.brand strong,
h1,
h2,
h3 {
  font-family: var(--heading-font);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.brand strong {
  display: block;
  font-size: 1.2rem;
}

.brand small {
  display: block;
  margin-top: 0.2rem;
  color: rgba(34, 50, 58, 0.78);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3.6rem;
  height: 3.6rem;
  border: 1px solid rgba(248, 242, 234, 0.4);
  border-radius: 1.2rem;
  color: var(--paper-strong);
  font-family: var(--heading-font);
  font-size: 1.15rem;
  background:
    linear-gradient(145deg, rgba(15, 26, 31, 0.96), rgba(34, 50, 58, 0.92));
  box-shadow: var(--shadow);
}

.site-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.site-nav a {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: rgba(34, 50, 58, 0.8);
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(251, 247, 241, 0.72);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.85fr);
  gap: 1.4rem;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.value-card,
.service-card,
.environment-panel,
.audience-card,
.engagement-step,
.cta-card {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-copy {
  padding: clamp(2rem, 4.4vw, 4rem);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(251, 247, 241, 0.92), rgba(244, 236, 225, 0.82));
}

.hero-panel {
  padding: 1.8rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(21, 35, 40, 0.95), rgba(44, 65, 58, 0.93));
  color: var(--paper-strong);
}

.eyebrow,
.panel-label,
.step-number {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}

.eyebrow {
  color: var(--eucalyptus-deep);
}

.panel-label,
.step-number {
  color: rgba(216, 197, 170, 0.9);
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3.25rem, 6vw, 5.7rem);
  line-height: 0.93;
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.02;
}

.intro {
  max-width: 41rem;
  margin: 1.4rem 0 0;
  font-size: 1.08rem;
  color: rgba(34, 50, 58, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.button-primary {
  color: var(--paper-strong);
  background: linear-gradient(135deg, var(--copper), var(--copper-deep));
  box-shadow: 0 18px 30px rgba(181, 108, 69, 0.24);
}

.button-secondary {
  color: var(--ink-soft);
  background: rgba(111, 142, 123, 0.12);
}

.hero-points,
.detail-list {
  margin: 0;
  padding-left: 1.15rem;
  color: rgba(34, 50, 58, 0.84);
}

.hero-points li + li,
.detail-list li + li {
  margin-top: 0.45rem;
}

.hero-panel p,
.hero-panel span {
  color: rgba(251, 247, 241, 0.82);
}

.panel-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.panel-grid article {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(251, 247, 241, 0.08);
  border: 1px solid rgba(216, 197, 170, 0.15);
}

.panel-grid strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.08rem;
  color: var(--paper-strong);
}

.trust-band {
  margin-top: 1.4rem;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 26, 31, 0.08);
  background: rgba(251, 247, 241, 0.7);
  text-align: center;
}

.trust-band p {
  margin: 0;
  color: rgba(34, 50, 58, 0.8);
}

.section {
  margin-top: 1.5rem;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  border-radius: var(--radius-xl);
  background: rgba(251, 247, 241, 0.46);
  border: 1px solid rgba(15, 26, 31, 0.08);
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(111, 142, 123, 0.08), rgba(251, 247, 241, 0.56));
}

.section-heading {
  max-width: 46rem;
}

.section-heading p:last-child {
  color: rgba(34, 50, 58, 0.82);
}

.value-grid,
.service-grid,
.environment-grid,
.audience-grid,
.engagement-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.environment-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.audience-grid,
.engagement-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card,
.service-card,
.environment-panel,
.audience-card,
.engagement-step {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
}

.value-card h3,
.service-card h3,
.environment-panel h3,
.audience-card h3,
.engagement-step h3 {
  margin: 0 0 0.6rem;
  font-size: 1.35rem;
}

.value-card p,
.service-card p,
.environment-panel p,
.audience-card p,
.engagement-step p {
  margin: 0;
  color: rgba(34, 50, 58, 0.82);
}

.emphasis {
  display: grid;
  align-content: center;
  background:
    linear-gradient(160deg, rgba(56, 87, 76, 0.92), rgba(15, 26, 31, 0.96));
}

.emphasis p {
  color: rgba(251, 247, 241, 0.84);
}

.pull-quote {
  margin-bottom: 1rem;
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  line-height: 1.06;
  color: var(--paper-strong);
}

.step-number {
  display: inline-block;
}

.section-cta {
  background:
    linear-gradient(180deg, rgba(251, 247, 241, 0.86), rgba(216, 197, 170, 0.18));
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
}

.cta-card p {
  margin: 0;
  max-width: 34rem;
  color: rgba(34, 50, 58, 0.82);
}

.site-footer {
  padding: 1.6rem 0 0.4rem;
}

.site-footer p {
  margin: 0;
  text-align: center;
  color: rgba(34, 50, 58, 0.74);
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-header,
  .hero,
  .trust-band,
  .section,
  .site-footer {
    animation: none;
  }

  .button,
  .site-nav a {
    transition: none;
  }
}

@media (max-width: 980px) {
  .hero,
  .value-grid,
  .service-grid,
  .environment-grid,
  .audience-grid,
  .engagement-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(calc(100% - 1rem), var(--content-width));
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 1.25rem;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav a {
    padding-left: 0;
  }

  .hero-copy,
  .hero-panel,
  .section {
    border-radius: 1.5rem;
  }

  .hero-copy,
  .hero-panel {
    padding: 1.5rem;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }
}
