:root {
  --cream: #f8f2ea;
  --white: #fffaf4;
  --sand: #dfcdb8;
  --sand-light: #efe1d2;
  --seafoam: #dce9e5;
  --ocean: #6e96a7;
  --ocean-dark: #486d7c;
  --sage: #8c9a7c;
  --forest: #283328;
  --muted: #66706b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--forest);
  font-family: Arial, Helvetica, sans-serif;
}

h1,
h2,
h3,
.logo {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 950px;
  margin: 0 0 26px;
  font-size: clamp(52px, 9vw, 108px);
  line-height: 0.9;
  letter-spacing: -3px;
}

h2 {
  margin: 0 0 24px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -1px;
}

h3 {
  margin: 0 0 14px;
  font-size: 30px;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 7%;
  background: rgba(248, 242, 234, 0.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(223, 205, 184, 0.45);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: 82px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  font-size: 15px;
  color: var(--forest);
}

.menu-button {
  display: none;
  border: 1px solid var(--sand);
  background: var(--white);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--forest);
}

.hero {
position: relative;
min-height: 100vh;
overflow: hidden;
display: flex;
align-items: center;
padding: 160px 7% 90px;
}

.hero-video {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
}

.hero-overlay {
position: absolute;
inset: 0;

background:
linear-gradient(
90deg,
rgba(248,242,234,.95) 0%,
rgba(248,242,234,.82) 42%,
rgba(248,242,234,.45) 100%
);
}

.hero-content {
position: relative;
z-index: 2;
max-width: 820px;
}
.hero-content {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--ocean-dark);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 700;
}

.hero-text {
  max-width: 650px;
  font-size: 20px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-block;
  border-radius: 999px;
  padding: 15px 24px;
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.button.primary {
  background: var(--ocean);
  color: white;
}

.button.primary:hover {
  background: var(--ocean-dark);
}

.button.secondary {
  background: rgba(255, 250, 244, 0.9);
  color: var(--forest);
  border: 1px solid var(--sand);
}

.section {
  padding: 105px 7%;
}

.about-grid,
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  background: var(--white);
}

.location-grid {
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
}

.image-card {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(40, 51, 40, 0.13);
  background: var(--sand);
}

.image-card img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 640px;
  object-fit: cover;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 40px;
}

.card {
  min-height: 245px;
  padding: 36px;
  border: 1px solid var(--sand);
  border-radius: 34px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(40, 51, 40, 0.08);
}

.approach {
  background:
    linear-gradient(
      rgba(220, 233, 229, 0.78),
      rgba(220, 233, 229, 0.88)
    ),
    url("https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=2400&q=80");
  background-size: cover;
  background-position: center;
}

.approach-box {
  max-width: 820px;
  background: rgba(255, 250, 244, 0.94);
  border: 1px solid var(--sand);
  border-radius: 38px;
  padding: 52px;
}

.contact {
  text-align: center;
  background:
    linear-gradient(
      rgba(220, 233, 229, 0.92),
      rgba(220, 233, 229, 0.92)
    ),
    url("https://images.unsplash.com/photo-1471922694854-ff1b63b20054?auto=format&fit=crop&w=2400&q=80");
  background-size: cover;
  background-position: center;
}

.contact p {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.email-text {
  margin-top: 22px;
  font-weight: 700;
  color: var(--forest);
}

.footer {
  padding: 34px 7%;
  background: var(--forest);
  text-align: center;
}

.footer p {
  margin: 8px 0;
  color: var(--cream);
  font-size: 14px;
}

.footer .small {
  opacity: 0.75;
  font-size: 13px;
}

@media (max-width: 900px) {
  .site-header {
    position: relative;
    padding: 20px;
    align-items: flex-start;
  }

  .menu-button {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: 24px;
    padding: 22px;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 95px 20px;
    background:
      linear-gradient(
        rgba(248, 242, 234, 0.9),
        rgba(248, 242, 234, 0.96)
      ),
      url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
  }

  .section {
    padding: 76px 20px;
  }

  .about-grid,
  .location-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .approach-box {
    padding: 34px;
  }
}
.crisis-resources {
max-width: 700px;
margin: 30px auto 0;
padding-top: 25px;
border-top: 1px solid rgba(255,255,255,0.15);
}

.crisis-resources h3 {
color: var(--cream);
margin-bottom: 18px;
font-size: 24px;
}

.crisis-resources p {
color: var(--cream);
margin: 10px 0;
font-size: 15px;
line-height: 1.6;
}

.crisis-resources strong {
color: white;
}
