/* ===================================================
   Shared Roots Media – Design System
   Colors, typography & spacing from stitch screens
   =================================================== */

:root {
  /* Brand palette */
  --olive: #3E4F3D;
  --clay: #C46A4A;
  --beige: #EFE7DC;
  --white: #ffffff;

  /* Functional */
  --text: #2b2b2b;
  --text-light: rgba(62, 79, 61, 0.7);
  --muted: #6f6b65;
  --border: rgba(62, 79, 61, 0.1);
  --border-solid: #e1ddd5;

  /* Surfaces */
  --bg: #ffffff;
  --bg-alt: #f9f7f4;
  --bg-neutral: #f9f7f4;
  --bg-soft: #fdfcfa;
  --bg-steps: #f9f7f4;

  /* Misc */
  --radius: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --max-w: 1200px;
}

/* ─── Reset ───────────────────────────────────────── */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

body {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--olive);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--clay);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--olive);
  line-height: 1.15;
  margin: 0;
}

p {
  margin: 0;
  color: var(--text-light);
}

ul, ol {
  margin: 0;
  padding: 0;
}

/* ─── Layout ──────────────────────────────────────── */

.shell {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.shell--center {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

.shell--narrow {
  max-width: 800px;
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section__head h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section__head p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.section__actions {
  text-align: center;
  margin-top: 3rem;
}

/* ─── Root Pattern Background ─────────────────────── */

.root-pattern {
  background-image: radial-gradient(circle at 2px 2px, rgba(62, 79, 61, 0.07) 1px, transparent 0);
  background-size: 24px 24px;
}

/* ─── Header ──────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--olive);
}

.brand:hover {
  color: var(--olive);
  text-decoration: none;
}

.brand__icon {
  font-size: 1.75rem;
  line-height: 1;
}

.brand__label {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.brand__logo {
  height: 50px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(62, 79, 61, 0.8);
  transition: color 0.2s;
}

.nav__link:hover {
  color: var(--clay);
  text-decoration: none;
}

.nav__link--cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 2.75rem;
  padding: 0 2rem;
  border-radius: var(--radius-full);
  background: var(--olive);
  color: var(--beige);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(62, 79, 61, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav__link--cta:hover {
  color: var(--beige);
  text-decoration: none;
  transform: scale(1.03);
  box-shadow: 0 6px 24px rgba(62, 79, 61, 0.25);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--olive);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.25s ease;
}

/* ─── Buttons ─────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-xl);
  border: 2px solid var(--olive);
  background: var(--olive);
  color: var(--beige);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn:hover {
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--olive);
  border-color: rgba(62, 79, 61, 0.2);
}

.btn--ghost:hover {
  background: rgba(62, 79, 61, 0.05);
  color: var(--olive);
}

.btn--clay {
  background: var(--clay);
  border-color: var(--clay);
  color: var(--beige);
}

.btn--clay:hover {
  background: #b35e40;
  border-color: #b35e40;
}

.btn--pill {
  border-radius: var(--radius-full);
  padding: 0.9rem 2.5rem;
}

.btn--lg {
  padding: 1.15rem 3rem;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ─── Eyebrow / Accent ────────────────────────────── */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--olive);
  background: rgba(62, 79, 61, 0.1);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.accent {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--clay);
}

/* ─── Hero: Video ────────────────────────────────── */

.hero--video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 70vh;
  min-height: 400px;
  max-height: 600px;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem 3rem;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}

.hero__content {
  max-width: 600px;
}

.hero--video .eyebrow {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.hero--video h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
}

.hero--video h1 .accent {
  color: var(--clay);
}

.hero--video .hero__lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.hero--video .hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero--video .btn--ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.hero--video .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* ─── Hero: Home ──────────────────────────────────── */

.hero--home {
  padding: 3.5rem 0 4.5rem;
}

.hero--home .hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero__copy h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: var(--olive);
}

.hero__lead {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 34rem;
  color: var(--text-light);
}

.hero__actions {
  display: flex;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
  flex-wrap: wrap;
}

.hero__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  padding: 0;
  list-style: none;
}

.hero__metrics > div {
  border-left: 2px solid rgba(196, 106, 74, 0.3);
  padding-left: 1.5rem;
  padding-block: 0.5rem;
}

.hero__metrics dt {
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--olive);
}

.hero__metrics dd {
  margin: 0.25rem 0 0;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clay);
}

/* Hero media card */
.hero__media {
  position: relative;
}

.hero-card {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255, 255, 255, 0.5);
  position: relative;
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.hero-card figcaption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-card__label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.hero-card__quote {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--olive);
}

/* Trusted by logos */
.trusted {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.trusted__label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(62, 79, 61, 0.5);
  margin-bottom: 2rem;
}

.trusted__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  opacity: 0.55;
  transition: opacity 0.5s;
}

.trusted__logos:hover {
  opacity: 0.85;
}

.trusted__logos span {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--olive);
}

/* ─── Section Variants ────────────────────────────── */

.section--neutral {
  background: var(--bg-neutral);
}

.section--soft {
  background: var(--bg-soft);
  padding: 4rem 0;
}

.section--deep {
  background: var(--olive);
  color: var(--beige);
  padding: 5rem 0;
}

.section--deep h2,
.section--deep p {
  color: var(--beige);
}

.section--deep p {
  opacity: 0.8;
}

.section--white {
  background: rgba(255, 255, 255, 0.4);
}

/* ─── Case Studies ────────────────────────────────── */

.cards--cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.case {
  cursor: pointer;
}

.case__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}

.case__media img,
.case__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.case:hover .case__media img,
.case:hover .case__media video {
  transform: scale(1.08);
}

.case__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--clay);
  color: var(--beige);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.case__body {
  padding: 0 0.5rem;
}

.case__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--olive);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.case:hover .case__title {
  color: var(--clay);
}

.case__desc {
  font-size: 0.9rem;
  line-height: 1.6;
}

.case__tag {
  margin-top: 0.75rem;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--clay);
}

/* ─── Global Perspectives (Split) ─────────────────── */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

.split__content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.split__content p {
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 500;
}

.split__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.split__images img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow);
  border: 4px solid rgba(255, 255, 255, 0.3);
}

.split__images img:nth-child(2) {
  margin-top: 3rem;
}

/* Callout card */
.callout {
  margin-top: 2rem;
  padding: 1.75rem 2rem;
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(62, 79, 61, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.callout__icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-lg);
  background: rgba(196, 106, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clay);
  font-size: 1.5rem;
}

.callout__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--olive);
  margin-bottom: 0.25rem;
}

.callout__text {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ─── CTA Band ────────────────────────────────────── */

.cta-band {
  text-align: center;
  padding: 5rem 1.5rem;
  background: var(--olive);
  color: var(--beige);
}

.cta-band h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: var(--beige);
  margin-bottom: 1rem;
}

.cta-band p {
  font-size: 1.15rem;
  color: rgba(239, 231, 220, 0.8);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.cta-band .btn--clay {
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cta-band .btn--ghost {
  border-color: rgba(239, 231, 220, 0.3);
  color: var(--beige);
}

.cta-band .btn--ghost:hover {
  background: rgba(239, 231, 220, 0.1);
  color: var(--beige);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ─── Hero: Story ─────────────────────────────────── */

.hero--story {
  text-align: center;
  padding: 5rem 0 3rem;
}

.hero--story h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 500;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--olive);
  margin-bottom: 2rem;
}

.hero--story .divider {
  width: 6rem;
  height: 3px;
  background: rgba(196, 106, 74, 0.2);
  margin: 0 auto 2rem;
  border-radius: var(--radius-full);
}

.hero--story .hero__lead {
  font-size: 1.2rem;
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* Story content (article) */
.story-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
}

.story-article > section + section {
  margin-top: 4rem;
}

.story-article .story-hero-img {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(62, 79, 61, 0.05);
  margin-bottom: 3rem;
}

.story-article .story-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-article h2 {
  font-size: 2.25rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.story-article .prose {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.story-article .prose p {
  font-size: 1.05rem;
  line-height: 1.75;
}

.dropcap::first-letter {
  float: left;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 0.8;
  margin-right: 1rem;
  margin-top: 0.15rem;
  color: var(--clay);
}

/* Story cultural grid */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.story-grid h3 {
  font-size: 1.75rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.story-grid p {
  font-size: 1rem;
  line-height: 1.7;
}

.story-grid__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.story-grid__images img {
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(62, 79, 61, 0.05);
}

.story-grid__images img:nth-child(2) {
  margin-top: 1.5rem;
}

/* Story stacked layout */
.story-stacked {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.story-stacked h3 {
  font-size: 1.75rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.story-stacked > p {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
}

.story-stacked__images {
  margin-top: 2rem;
}

.story-stacked__images img,
.story-stacked__images video {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(62, 79, 61, 0.05);
}

.story-stacked__images img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 480px) {
  .story-stacked__images {
    grid-template-columns: 1fr;
  }
}

/* Impact quote block */
.impact-block {
  background: var(--olive);
  color: var(--beige);
  padding: 3rem;
  border-radius: var(--radius-2xl);
  position: relative;
  overflow: hidden;
}

.impact-block .material-symbols-outlined:first-child {
  font-size: 2.5rem;
  color: var(--clay);
  margin-bottom: 1rem;
}

.impact-block blockquote {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--beige);
  margin: 0 0 1rem;
  line-height: 1.4;
}

.impact-block p {
  color: rgba(239, 231, 220, 0.7);
  max-width: 32rem;
  font-size: 0.95rem;
}

.impact-block__bg {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  font-size: 12rem;
  opacity: 0.08;
}

/* Founders section */
.founders-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
  margin-top: 1.5rem;
}

.founders-photo {
  width: 300px;
  flex-shrink: 0;
  margin: 0;
}

.founders-photo img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 4px solid rgba(255, 255, 255, 0.5);
}

.founders-photo figcaption {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

@media (max-width: 768px) {
  .founders-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .founders-photo {
    width: 240px;
    margin: 0 auto;
  }
}

/* Story CTA */
.story-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(196, 106, 74, 0.05);
  border: 1px solid rgba(196, 106, 74, 0.1);
  border-radius: var(--radius-2xl);
  margin-top: 3rem;
}

.story-cta h3 {
  font-size: 2rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.story-cta p {
  max-width: 28rem;
  margin: 0 auto 1.5rem;
}

.story-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ─── Hero: Services ──────────────────────────────── */

.hero--services {
  text-align: center;
  padding: 5rem 0 4rem;
}

.hero--services h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--olive);
  margin-bottom: 1.25rem;
}

.hero--services h1 .accent {
  font-weight: 400;
}

.hero--services .hero__lead {
  max-width: 36rem;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Pillar sections */
.pillars {
  padding: 0;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 5rem 0;
}

.pillar:nth-child(odd) {
  background: rgba(62, 79, 61, 0.04);
}

.pillar__inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
}

.pillar:nth-child(even) .pillar__inner {
  flex-direction: row-reverse;
}

.pillar__text {
  flex: 1;
}

.pillar__tag {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--clay);
  margin-bottom: 1rem;
}

.pillar__text h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.pillar__text p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.pillar__text .accent {
  color: var(--olive);
  font-style: italic;
}

.pillar__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pillar__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(62, 79, 61, 0.9);
}

.pillar__list .material-symbols-outlined {
  font-size: 0.75rem;
  color: var(--clay);
}

.pillar__media {
  flex: 1;
}

.pillar__media img,
.pillar__media video {
  width: 85%;
  max-width: 450px;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* Process steps */
.section--process {
  background: rgba(255, 255, 255, 0.3);
  padding: 5rem 0;
}

.section--process h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3.5rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step {
  text-align: center;
  padding: 0 1rem;
}

.step__icon {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-full);
  background: var(--clay);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--white);
}

.step__icon .material-symbols-outlined {
  font-size: 1.75rem;
}

.step h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ─── Hero: Contact ───────────────────────────────── */

.hero--contact {
  text-align: center;
  padding: 5rem 0 3rem;
}

.hero--contact h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero--contact .hero__lead {
  max-width: 34rem;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Contact grid */
.contact__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.card {
  background: var(--bg-alt);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-solid);
  padding: 2rem 2rem;
  box-shadow: var(--shadow);
}

.card--side {
  background: var(--bg-soft);
}

.card--side h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card--side p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.card--side .note {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 1rem;
  background: rgba(62, 79, 61, 0.04);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* Forms */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form__field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--olive);
}

.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-solid);
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(62, 79, 61, 0.1);
}

.form__field textarea {
  resize: vertical;
}

/* ─── Footer ──────────────────────────────────────── */

.site-footer {
  background: var(--olive);
  color: var(--beige);
  margin-top: 0;
  border-top: none;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer__brand-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer__brand .material-symbols-outlined {
  font-size: 2.25rem;
}

.footer__brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__logo {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(239, 231, 220, 0.7);
  max-width: 24rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social a {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(239, 231, 220, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--beige);
  transition: all 0.2s;
}

.footer__social a:hover {
  background: var(--clay);
  border-color: var(--clay);
  text-decoration: none;
}

.footer__social svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.footer__col h4 {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--clay);
  margin-bottom: 1.5rem;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__col a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(239, 231, 220, 0.8);
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--clay);
  text-decoration: none;
}

.footer__col p {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(239, 231, 220, 0.8);
  line-height: 1.8;
}

.footer__col .footer__email {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--clay);
  font-weight: 600;
}

.footer__col .footer__email:hover {
  text-decoration: underline;
}

.footer__bottom {
  background: rgba(62, 79, 61, 0.5);
  border-top: 1px solid rgba(239, 231, 220, 0.05);
  padding: 1.25rem 1.5rem;
}

.footer__bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(239, 231, 220, 0.4);
}

.footer__bottom-inner span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* ─── Responsive ──────────────────────────────────── */

@media (max-width: 1024px) {
  .hero--home .hero__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero__media {
    max-width: 500px;
    margin: 0 auto;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .split--reverse {
    direction: ltr;
  }

  .pillar__inner {
    flex-direction: column !important;
    text-align: center;
  }

  .pillar__text {
    max-width: 600px;
    margin: 0 auto;
  }

  .pillar__list {
    align-items: center;
  }

  .pillar__media img,
  .pillar__media video {
    height: 280px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }

  .hero--home {
    padding: 2.5rem 0 3rem;
  }

  .hero__copy h1 {
    font-size: 2.5rem;
  }

  .hero--story h1 {
    font-size: 2.5rem;
  }

  .hero--services h1 {
    font-size: 2.2rem;
  }

  .cards--cases {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .split__images {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.5rem;
  }

  .footer__bottom-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  /* Mobile nav */
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border-solid);
    flex-direction: column;
    padding: 1.25rem 1.5rem;
    gap: 0.75rem;
    display: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  }

  .nav--open {
    display: flex;
  }

  .nav__link--cta {
    width: 100%;
    justify-content: center;
  }

  .nav-toggle {
    display: inline-block;
  }

  .section__head h2 {
    font-size: 2rem;
  }

  .split__content h2 {
    font-size: 2rem;
  }

  .cta-band h2 {
    font-size: 2rem;
  }

  .hero-card figcaption {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.95);
  }

  .hero-card img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 480px) {
  .hero__metrics {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .trusted__logos {
    gap: 1.5rem;
  }

  .trusted__logos span {
    font-size: 0.9rem;
  }
}
