@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --navy: #062747;
  --deep-navy: #031b32;
  --gold: #c58a2a;
  --orange: #c76022;
  --cream: #f7f1e6;
  --soft-cream: #fbf7ef;
  --green: #174533;
  --sage: #6b7d5b;
  --ink: #111827;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft-cream);
  color: var(--ink);
  font-family: "Inter", sans-serif;
}

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

/* HEADER */

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  padding: 20px 58px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg,
    rgba(251,247,239,1) 0%,
    rgba(251,247,239,1) 30%,
    rgba(251,247,239,0.72) 52%,
    rgba(251,247,239,0) 100%
  );
}

.logo-wrap {
  display: flex;
  align-items: center;
}

.ccki-logo {
  width: 285px;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #111;
}

.desktop-nav a {
  transition: 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--orange);
}

.desktop-nav a.active-link {
  color: var(--orange);
  position: relative;
}

.desktop-nav a.active-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 3px;
  background: var(--gold);
  border-radius: 999px;
}

.nav-button {
  background: linear-gradient(135deg, #e5a13c, #c45c21);
  color: var(--white) !important;
  padding: 15px 26px;
  border-radius: 7px;
  box-shadow: 0 8px 18px rgba(100, 55, 12, 0.18);
}

.mobile-menu {
  display: none;
  background: transparent;
  border: none;
  font-size: 30px;
  color: var(--navy);
}

/* HOMEPAGE */

.hero {
  min-height: 555px;
  position: relative;
  overflow: hidden;
  padding: 135px 60px 60px;
  background:
    linear-gradient(90deg,
      rgba(251,247,239,1) 0%,
      rgba(251,247,239,1) 18%,
      rgba(251,247,239,0.94) 28%,
      rgba(251,247,239,0.45) 55%,
      rgba(0,0,0,0.04) 100%
    ),
    url("images/hero-image.png");
  background-size: cover;
  background-position: center right;
}

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

.hero h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 5.3vw, 88px);
  line-height: 0.98;
  color: var(--navy);
  letter-spacing: -0.04em;
}

.hero h1 .line-one,
.hero h1 .line-two {
  display: block;
  white-space: nowrap;
}

.gold-word {
  color: var(--gold);
}

.change-word {
  color: var(--gold);
  position: relative;
  display: inline-block;
}

.change-word::after {
  content: "";
  position: absolute;
  left: 3%;
  bottom: -18px;
  width: 94%;
  height: 18px;
  border-top: 4px solid var(--gold);
  border-radius: 50% 50% 0 0;
  transform: rotate(-2deg);
}

.hero p {
  margin: 34px 0 24px;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.7;
  color: #151515;
}

.hero-buttons {
  display: flex;
  gap: 24px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 176px;
  padding: 17px 24px;
  border-radius: 7px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.04em;
  background: var(--navy);
  color: var(--white);
}

.script-tagline {
  position: absolute;
  right: 80px;
  bottom: 38px;
  font-family: "Brush Script MT", cursive;
  font-size: 32px;
  line-height: 1.1;
  color: white;
  transform: rotate(-5deg);
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

.script-tagline span {
  display: inline-block;
  position: relative;
}

.script-tagline span::after {
  content: "";
  position: absolute;
  left: 4%;
  bottom: -12px;
  width: 92%;
  height: 10px;
  border-top: 2.5px solid var(--gold);
  border-radius: 50% 50% 0 0;
  transform: rotate(-3deg);
}

.work-section {
  padding: 34px 52px 24px;
  background: var(--soft-cream);
}

.section-heading {
  text-align: center;
  margin: 0 auto 24px;
}

.section-heading p {
  margin: 0;
  color: var(--navy);
  text-transform: uppercase;
  font-family: "Cinzel", serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.heading-line {
  width: 86px;
  height: 3px;
  background: var(--gold);
  margin: 12px auto 0;
  border-radius: 999px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1680px;
  margin: 0 auto;
}

.work-card {
  min-height: 285px;
  border-radius: 11px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(25, 20, 15, 0.16);
  border: 1px solid rgba(0,0,0,0.08);
  display: block;
  color: inherit;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(25, 20, 15, 0.22);
}

.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.lab-card {
  background:
    linear-gradient(90deg, rgba(250,246,236,0.98) 0%, rgba(250,246,236,0.84) 45%, rgba(250,246,236,0.22) 100%),
    url("images/victor-presentation.png");
  background-size: cover;
  background-position: 62% 32%;
}

.lab-card::before {
  background: rgba(255, 248, 235, 0.12);
}

.upp-card {
  background:
    linear-gradient(90deg, rgba(248,241,227,0.98) 0%, rgba(248,241,227,0.88) 48%, rgba(248,241,227,0.32) 100%),
    url("images/lompoc-downtown-ocean-avenue-placeholder.png");
  background-size: cover;
  background-position: center;
}

.upp-card::before {
  background: rgba(255, 248, 235, 0.2);
}

.roses-card {
  background:
    linear-gradient(90deg, rgba(3, 15, 25, 0.97) 0%, rgba(3, 15, 25, 0.82) 52%, rgba(3, 15, 25, 0.34) 100%),
    url("images/roses-from-concrete-rose-placeholder.png");
  background-size: cover;
  background-position: center right;
  color: white;
}

.roses-card::before {
  background: rgba(0, 0, 0, 0.08);
}

.card-content {
  padding: 34px 34px;
  max-width: 325px;
  position: relative;
  z-index: 2;
}

.card-content h2 {
  margin: 0;
  color: #071f39;
  font-size: 28px;
  line-height: 1.04;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.005em;
  text-shadow: 0 1px 2px rgba(255,255,255,0.45);
}

.dark-card h2 {
  color: #fff3df;
  text-shadow: 0 2px 9px rgba(0,0,0,0.55);
}

.small-line {
  width: 44px;
  height: 3px;
  background: var(--gold);
  margin: 18px 0;
}

.small-line.gold {
  background: #e8a43c;
}

.card-content p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
  color: #122033;
  text-shadow: 0 1px 2px rgba(255,255,255,0.45);
}

.dark-card p {
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.tile-link {
  color: #345e24;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
}

.dark-card .tile-link {
  color: #e8a43c;
}

.mission-section {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 34px;
  padding: 12px 60px 34px;
  align-items: stretch;
  background: var(--soft-cream);
}

.mission-left {
  padding-top: 8px;
  max-width: 760px;
}

.eyebrow {
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 6px;
}

.mission-left h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: 36px;
  line-height: 1.05;
}

.mission-left p:not(.eyebrow) {
  margin: 14px 0 16px;
  font-size: 16px;
  line-height: 1.65;
}

.mission-left a {
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
}

.mission-image {
  min-height: 185px;
  background:
    linear-gradient(90deg, rgba(251,247,239,0.05), rgba(251,247,239,0.15)),
    url("images/lompoc-image.png");
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}

/* SHARED CONNECT AND FOOTER */

.connect-section {
  min-height: 100px;
  display: grid;
  grid-template-columns: 1.1fr 1.25fr 0.8fr 2fr;
  align-items: center;
  gap: 22px;
  padding: 18px 60px;
  background: #fbf6ee;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.connect-title {
  margin: 0;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
}

.connect-section p {
  margin: 4px 0 0;
  font-size: 14px;
}

.email-form {
  display: flex;
  gap: 0;
}

.email-form input {
  flex: 1;
  border: none;
  background: white;
  padding: 16px 18px;
  border-radius: 8px 0 0 8px;
  font-size: 14px;
}

.email-form button {
  border: none;
  background: var(--navy);
  color: white;
  padding: 0 24px;
  border-radius: 0 8px 8px 0;
  font-weight: 800;
  text-transform: uppercase;
}

.socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.socials span {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}

.socials a {
  width: 28px;
  height: 28px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.home-of {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  color: var(--navy);
  min-width: 0;
}

.home-of span {
  font-family: "Brush Script MT", cursive;
  font-size: 26px;
  color: var(--orange);
  transform: rotate(-4deg);
  white-space: nowrap;
  flex-shrink: 0;
}

.home-of img {
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.home-of img:nth-of-type(1) {
  height: 54px;
  transform: translateY(-3px);
}

.home-of img:nth-of-type(2) {
  height: 52px;
}

.home-of img:nth-of-type(3) {
  height: 50px;
}

.site-footer {
  min-height: 45px;
  background: var(--navy);
  color: white;
  padding: 12px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.site-footer a {
  margin-left: 18px;
  text-transform: uppercase;
}

/* INNER PAGE SHARED HEADER */

.about-page .site-header,
.our-work-page .site-header,
.resources-page .site-header,
.contact-page .site-header {
  position: relative;
  background: var(--soft-cream);
  border-bottom: 1px solid rgba(6, 39, 71, 0.08);
}

.about-page main,
.resources-page main,
.contact-page main {
  background: var(--soft-cream);
}

/* ABOUT PAGE */

.about-hero {
  min-height: 485px;
  position: relative;
  overflow: hidden;
  padding: 118px 60px 58px;
  background: var(--soft-cream);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/lompoc-la-purisima-mission-placeholder.png");
  background-size: auto 100%;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0.86;
  z-index: 0;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 42%,
    rgba(0,0,0,0.18) 52%,
    rgba(0,0,0,0.75) 66%,
    black 82%,
    black 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 42%,
    rgba(0,0,0,0.18) 52%,
    rgba(0,0,0,0.75) 66%,
    black 82%,
    black 100%
  );
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(251,247,239,1) 0%,
    rgba(251,247,239,1) 34%,
    rgba(251,247,239,0.92) 50%,
    rgba(251,247,239,0.62) 68%,
    rgba(251,247,239,0.22) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.about-hero-content {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-hero-text {
  max-width: 720px;
}

.about-hero-text h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 4.8vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--navy);
}

.about-hero-text p {
  max-width: 665px;
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.67;
  color: #172333;
}

.about-gold-line {
  width: 86px;
  height: 4px;
  background: var(--gold);
  border-radius: 999px;
  margin: 20px 0 24px;
}

.about-gold-line.small {
  width: 54px;
  height: 3px;
  margin: 12px 0 16px;
}

.about-gold-line.centered {
  margin-left: auto;
  margin-right: auto;
}

.about-eyebrow {
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 6px;
}

.about-snapshot {
  padding: 34px 60px 26px;
  background: var(--soft-cream);
}

.about-snapshot-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 34px;
  align-items: stretch;
}

.about-purpose {
  position: relative;
  padding: 26px 30px;
  background: #fffaf1;
  border-radius: 12px;
  border: 1px solid rgba(6, 39, 71, 0.08);
  box-shadow: 0 10px 26px rgba(25, 20, 15, 0.06);
}

.about-purpose::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 24px;
  width: 72px;
  height: 72px;
  border: 2px solid rgba(197, 138, 42, 0.22);
  border-radius: 50%;
}

.about-purpose h2,
.about-centered-heading h2,
.about-rooted-copy h2,
.founder-copy h2,
.about-closing h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: 34px;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.about-purpose p,
.about-rooted-copy p,
.founder-copy p {
  margin: 0 0 13px;
  font-size: 15.5px;
  line-height: 1.57;
  color: #172333;
}

.about-pull-quote {
  position: relative;
  background:
    linear-gradient(135deg, rgba(6, 39, 71, 0.98), rgba(3, 27, 50, 0.94));
  border-radius: 12px;
  padding: 30px 28px;
  box-shadow: 0 10px 26px rgba(25, 20, 15, 0.12);
  color: white;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-pull-quote::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 105px;
  height: 105px;
  border: 2px solid rgba(197, 138, 42, 0.35);
  border-radius: 50%;
}

.about-pull-quote span {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 58px;
  line-height: 0.65;
  color: var(--gold);
  margin-bottom: 10px;
}

.about-pull-quote p {
  margin: 0;
  font-family: "Playfair Display", serif;
  color: white;
  font-size: 34px;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.about-approach-compact {
  padding: 34px 60px 30px;
  background: var(--cream);
}

.about-centered-heading {
  max-width: 740px;
  margin: 0 auto 22px;
  text-align: center;
}

.approach-strip {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.approach-item {
  min-height: 145px;
  position: relative;
  background: #fffaf1;
  border-radius: 11px;
  padding: 24px 22px 22px;
  border: 1px solid rgba(6, 39, 71, 0.08);
  box-shadow: 0 10px 26px rgba(25, 20, 15, 0.06);
  overflow: hidden;
}

.approach-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  width: 44px;
  height: 4px;
  background: var(--gold);
  border-radius: 0 0 999px 999px;
}

.approach-item h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.approach-item p {
  margin: 0;
  color: #172333;
  font-size: 14.5px;
  line-height: 1.48;
}

.about-rooted-band {
  min-height: 275px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--soft-cream);
}

.about-rooted-image {
  background:
    linear-gradient(90deg,
      rgba(6,39,71,0.10) 0%,
      rgba(6,39,71,0.04) 38%,
      rgba(247,241,230,0.30) 68%,
      rgba(247,241,230,0.75) 88%,
      rgba(247,241,230,1) 100%
    ),
    url("images/central-coast-surf-beach-placeholder.png");
  background-size: cover;
  background-position: center;
}

.about-rooted-copy {
  padding: 38px 60px 34px 42px;
  max-width: 730px;
  align-self: center;
}

.about-founder {
  padding: 38px 60px;
  background: var(--cream);
}

.about-founder-card {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 255px 1fr;
  gap: 42px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255,250,241,1), rgba(251,247,239,1));
  border: 1px solid rgba(6, 39, 71, 0.08);
  border-radius: 18px;
  padding: 32px 40px;
  box-shadow: 0 14px 34px rgba(25, 20, 15, 0.08);
  position: relative;
  overflow: hidden;
}

.about-founder-card::after {
  content: "";
  position: absolute;
  right: -56px;
  top: -56px;
  width: 150px;
  height: 150px;
  border: 2px solid rgba(197, 138, 42, 0.22);
  border-radius: 50%;
}

.founder-image-wrap {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 7px solid var(--cream);
  outline: 3px solid var(--gold);
  box-shadow: 0 14px 32px rgba(6, 39, 71, 0.18);
  justify-self: center;
  background: var(--cream);
  position: relative;
  z-index: 2;
}

.founder-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.founder-copy {
  position: relative;
  z-index: 2;
}

.founder-copy h2 {
  margin-bottom: 4px;
}

.founder-title {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-closing {
  padding: 30px 60px;
  background: var(--soft-cream);
}

.about-closing-inner {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 108px;
  background:
    linear-gradient(90deg, rgba(6, 39, 71, 0.98), rgba(6, 39, 71, 0.78)),
    url("images/central-coast-surf-beach-placeholder.png");
  background-size: cover;
  background-position: center;
  border-radius: 13px;
  padding: 28px 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  overflow: hidden;
}

.about-closing h2 {
  color: white;
  max-width: 720px;
}

.about-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 15px 22px;
  border-radius: 7px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #e5a13c, #c45c21);
  color: var(--white);
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(100, 55, 12, 0.2);
}

/* OUR WORK PAGE */

.our-work-page main {
  background: var(--soft-cream);
}

.work-page-hero {
  min-height: 380px;
  position: relative;
  overflow: hidden;
  padding: 96px 60px 54px;
  background: var(--soft-cream);
}

.work-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/lompoc-community-heritage-mural-placeholder.png");
  background-size: auto 100%;
  background-position: 100% center;
  background-repeat: no-repeat;
  opacity: 0.82;
  z-index: 0;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 43%,
    rgba(0,0,0,0.16) 52%,
    rgba(0,0,0,0.72) 68%,
    black 84%,
    black 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 43%,
    rgba(0,0,0,0.16) 52%,
    rgba(0,0,0,0.72) 68%,
    black 84%,
    black 100%
  );
}

.work-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(251,247,239,1) 0%,
    rgba(251,247,239,1) 34%,
    rgba(251,247,239,0.92) 50%,
    rgba(251,247,239,0.58) 70%,
    rgba(251,247,239,0.12) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.work-page-hero-content {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.work-page-hero h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(50px, 5.2vw, 86px);
  line-height: 0.98;
  color: var(--navy);
  letter-spacing: -0.045em;
}

.work-page-hero p {
  max-width: 650px;
  margin: 0;
  font-size: 17px;
  line-height: 1.68;
  color: #172333;
}

.work-page-gold-line {
  width: 86px;
  height: 4px;
  background: var(--gold);
  border-radius: 999px;
  margin: 20px 0 24px;
}

.program-section {
  padding: 0 60px;
  background: var(--soft-cream);
}

.program-section:nth-of-type(even) {
  background: var(--cream);
}

.program-inner {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 285px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: stretch;
  border-top: 1px solid rgba(197, 138, 42, 0.28);
}

.program-inner.reverse {
  grid-template-columns: 1.18fr 0.82fr;
}

.program-inner.reverse .program-image-area {
  order: 2;
}

.program-inner.reverse .program-copy {
  order: 1;
  padding-left: 0;
  padding-right: 56px;
}

.program-image-area {
  position: relative;
  min-height: 285px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.program-image-area::before {
  display: none;
}

.program-logo-wrap {
  width: 255px;
  height: 255px;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  background: rgba(255,250,241,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(25, 20, 15, 0.08);
  border: 1px solid rgba(197, 138, 42, 0.22);
}

.program-logo-wrap img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  display: block;
}

.program-copy {
  padding: 44px 0 42px 56px;
  align-self: center;
}

.program-copy h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: 42px;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.program-tagline {
  margin: 8px 0 16px;
  color: var(--orange);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 21px;
  line-height: 1.25;
}

.program-copy > p:not(.program-tagline) {
  max-width: 740px;
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.62;
  color: #172333;
}

.program-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  max-width: 760px;
}

.program-details h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
}

.program-details ul {
  margin: 0;
  padding-left: 18px;
}

.program-details li {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.35;
  color: #172333;
}

.program-ckl .program-inner {
  border-top: none;
}

.program-ckl .program-logo-wrap {
  outline: 4px solid rgba(6, 39, 71, 0.08);
}

.program-upp .program-copy h2 {
  color: #9f3f1e;
}

.program-upp .program-logo-wrap {
  border-color: rgba(199, 96, 34, 0.28);
}

.program-roses .program-copy h2 {
  color: var(--green);
}

.program-roses .program-logo-wrap {
  border-color: rgba(23, 69, 51, 0.28);
}

.work-page-closing {
  padding: 32px 60px;
  background: var(--soft-cream);
}

.work-page-closing-inner {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 110px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, rgba(247,241,230,1), rgba(255,250,241,1));
  border-top: 1px solid rgba(197, 138, 42, 0.28);
  border-bottom: 1px solid rgba(197, 138, 42, 0.28);
  padding: 26px 34px;
}

.closing-mark {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(197,138,42,0.18) 0%, rgba(197,138,42,0.08) 44%, rgba(197,138,42,0) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.closing-mark span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  position: relative;
}

.closing-mark span::before,
.closing-mark span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  height: 28px;
  background: var(--gold);
  transform: translateX(-50%);
}

.closing-mark span::before {
  top: -35px;
}

.closing-mark span::after {
  bottom: -35px;
}

.work-page-closing p {
  margin: 0;
  max-width: 920px;
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

/* RESOURCES PAGE */

.resources-page main {
  background: var(--soft-cream);
}

.resources-hero {
  padding: 64px 60px 28px;
  background:
    radial-gradient(circle at 82% 22%, rgba(197,138,42,0.12) 0%, rgba(197,138,42,0.04) 26%, rgba(251,247,239,0) 54%),
    var(--soft-cream);
}

.resources-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.resources-hero h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(50px, 5.2vw, 84px);
  line-height: 0.98;
  color: var(--navy);
  letter-spacing: -0.045em;
}

.resources-hero p {
  max-width: 760px;
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: #172333;
}

.resources-gold-line {
  width: 86px;
  height: 4px;
  background: var(--gold);
  border-radius: 999px;
  margin: 20px 0 24px;
}

.resources-section {
  padding: 32px 60px 36px;
  background: var(--soft-cream);
}

.resources-section.research-section {
  background: var(--cream);
  border-top: 1px solid rgba(197, 138, 42, 0.28);
}

.resources-section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.resources-section-heading {
  margin-bottom: 24px;
}

.resources-section-heading h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.resources-section-heading p {
  max-width: 760px;
  margin: 10px 0 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: #172333;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: 26px;
  align-items: start;
}

.resource-card {
  background: #fffaf1;
  border: 1px solid rgba(6, 39, 71, 0.08);
  border-radius: 8px;
  padding: 10px 10px 18px;
  box-shadow: 0 10px 24px rgba(25, 20, 15, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(25, 20, 15, 0.12);
}

.resource-cover {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  background: #e9e4d8;
}

.resource-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(18%) saturate(70%);
}

.resource-overlay {
  position: absolute;
  inset: 0;
  background: rgba(55, 60, 64, 0.36);
  z-index: 1;
}

.coming-soon-label {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  color: #fffaf1;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0,0,0,0.34);
}

.coming-soon-label::before,
.coming-soon-label::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 118%;
  height: 2px;
  background: rgba(197, 138, 42, 0.95);
  transform: translateX(-50%);
}

.coming-soon-label::before {
  top: -12px;
}

.coming-soon-label::after {
  bottom: -12px;
}

.resource-card h3 {
  margin: 16px 8px 0;
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: -0.015em;
  text-align: center;
}

.resources-note {
  padding: 30px 60px;
  background: var(--soft-cream);
}

.resources-note-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 30px;
  border-left: 4px solid var(--gold);
  background: linear-gradient(135deg, rgba(255,250,241,1), rgba(247,241,230,1));
  box-shadow: 0 10px 24px rgba(25, 20, 15, 0.05);
}

.resources-note p {
  max-width: 880px;
  margin: 0;
  font-size: 16px;
  line-height: 1.62;
  color: #172333;
}

/* CONTACT PAGE */

.contact-hero {
  min-height: 390px;
  position: relative;
  overflow: hidden;
  padding: 88px 60px 56px;
  background: var(--soft-cream);
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/contact-central-coast-placeholder.png");
  background-size: auto 100%;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0.88;
  z-index: 0;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 42%,
    rgba(0,0,0,0.18) 52%,
    rgba(0,0,0,0.75) 68%,
    black 84%,
    black 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 42%,
    rgba(0,0,0,0.18) 52%,
    rgba(0,0,0,0.75) 68%,
    black 84%,
    black 100%
  );
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(251,247,239,1) 0%,
    rgba(251,247,239,1) 34%,
    rgba(251,247,239,0.92) 50%,
    rgba(251,247,239,0.60) 70%,
    rgba(251,247,239,0.14) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.contact-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-hero-copy {
  max-width: 680px;
}

.contact-hero h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(50px, 5.2vw, 82px);
  line-height: 0.98;
  color: var(--navy);
  letter-spacing: -0.045em;
}

.contact-hero p {
  max-width: 640px;
  margin: 0 0 15px;
  font-size: 17px;
  line-height: 1.65;
  color: #172333;
}

.contact-gold-line {
  width: 86px;
  height: 4px;
  background: var(--gold);
  border-radius: 999px;
  margin: 20px 0 24px;
}

.contact-gold-line.small {
  width: 64px;
  height: 3px;
  margin: 14px 0 24px;
}

.contact-gold-line.centered {
  margin-left: auto;
  margin-right: auto;
}

.contact-form-section {
  padding: 0 60px 38px;
  background: var(--soft-cream);
  position: relative;
  z-index: 3;
}

.contact-form-card {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.78fr 1.42fr;
  gap: 42px;
  background:
    linear-gradient(135deg, rgba(255,250,241,1), rgba(251,247,239,0.96));
  border: 1px solid rgba(6, 39, 71, 0.10);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(25, 20, 15, 0.08);
  padding: 42px 46px;
}

.contact-form-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-intro h2,
.ways-heading h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: 36px;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.contact-form-intro > p {
  max-width: 320px;
  margin: 0;
  color: #172333;
  font-size: 16px;
  line-height: 1.6;
}

.direct-email-box {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
}

.email-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(197, 138, 42, 0.10);
  border: 1px solid rgba(197, 138, 42, 0.28);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.direct-email-box p {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.4;
  color: #172333;
}

.direct-email-box a {
  color: var(--orange);
  font-weight: 800;
  font-size: 15px;
}

.contact-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.form-field label span {
  color: var(--orange);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(6, 39, 71, 0.16);
  border-radius: 7px;
  background: rgba(255,255,255,0.88);
  padding: 14px 15px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #172333;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(197, 138, 42, 0.72);
  box-shadow: 0 0 0 3px rgba(197, 138, 42, 0.12);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field.full-width {
  margin-bottom: 18px;
}

.contact-submit-button {
  border: none;
  background: var(--navy);
  color: white;
  padding: 15px 26px;
  border-radius: 7px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(6, 39, 71, 0.20);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(6, 39, 71, 0.26);
}

.ways-to-connect-section {
  padding: 42px 60px 50px;
  background: var(--soft-cream);
}

.ways-to-connect-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.ways-heading {
  text-align: center;
  margin: 0 auto 28px;
}

.ways-heading p {
  max-width: 660px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  color: #172333;
}

.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.way-card {
  min-height: 210px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(255,250,241,1), rgba(247,241,230,0.92));
  border: 1px solid rgba(6, 39, 71, 0.09);
  border-radius: 12px;
  padding: 30px 28px;
  box-shadow: 0 10px 24px rgba(25, 20, 15, 0.06);
}

.way-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(197, 138, 42, 0.10);
  border: 1px solid rgba(197, 138, 42, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.way-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.way-card p {
  margin: 0 0 18px;
  color: #172333;
  font-size: 14.5px;
  line-height: 1.55;
}

.way-card a {
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
}

/* MOBILE */

@media (max-width: 1050px) {
  .about-snapshot-inner,
  .about-rooted-band,
  .about-founder-card,
  .program-inner,
  .program-inner.reverse,
  .work-page-closing-inner,
  .contact-form-card,
  .ways-grid {
    grid-template-columns: 1fr;
  }

  .approach-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-rooted-image {
    min-height: 230px;
  }

  .about-rooted-copy {
    padding: 34px 38px;
    max-width: 100%;
  }

  .program-inner.reverse .program-image-area,
  .program-inner.reverse .program-copy {
    order: initial;
  }

  .program-copy,
  .program-inner.reverse .program-copy {
    padding: 34px 0 40px;
  }

  .program-image-area {
    min-height: 220px;
  }

  .program-logo-wrap {
    width: 210px;
    height: 210px;
  }

  .resource-grid {
    grid-template-columns: repeat(2, minmax(190px, 1fr));
  }

  .contact-form-card {
    gap: 30px;
  }

  .direct-email-box {
    margin-top: 28px;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 82px;
    padding: 22px 28px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .ccki-logo {
    width: 210px;
  }

  .hero {
    min-height: 680px;
    padding: 122px 28px 38px;
    background:
      linear-gradient(180deg,
        rgba(251,247,239,1) 0%,
        rgba(251,247,239,0.96) 24%,
        rgba(251,247,239,0.78) 46%,
        rgba(0,0,0,0.1) 100%
      ),
      url("images/hero-image.png");
    background-size: cover;
    background-position: center bottom;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 1.02;
  }

  .hero h1 .line-one,
  .hero h1 .line-two {
    white-space: normal;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.55;
    max-width: 370px;
  }

  .primary-button {
    min-width: 0;
    padding: 14px 18px;
    font-size: 12px;
  }

  .script-tagline {
    left: 38px;
    right: auto;
    bottom: 40px;
    font-size: 31px;
  }

  .work-section {
    padding: 30px 20px 28px;
  }

  .section-heading p {
    font-size: 26px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .work-card {
    min-height: 255px;
  }

  .lab-card {
    background-position: 70% center;
  }

  .card-content {
    max-width: 280px;
    padding: 28px 28px;
  }

  .card-content h2 {
    font-size: 25px;
  }

  .mission-section {
    grid-template-columns: 1fr;
    padding: 10px 28px 110px;
    gap: 22px;
  }

  .mission-left {
    max-width: 100%;
  }

  .mission-left h2 {
    font-size: 31px;
  }

  .mission-left p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.6;
  }

 .mission-image {
  display: none;
  }

  .connect-section {
    position: fixed;
    z-index: 40;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 68px;
    padding: 0;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.18);
  }

  .connect-section > div:first-child {
    height: 68px;
    background: var(--navy);
    color: white;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .connect-section .connect-title {
    margin: 0;
    font-size: 22px;
    line-height: 1;
  }

  .connect-section > div:first-child p:not(.connect-title) {
    display: none;
  }

  .email-form,
  .socials,
  .home-of {
    display: none;
  }

  .connect-section::after {
    content: "Get Involved →";
    height: 68px;
    background: linear-gradient(135deg, #e2a23a, #c35a20);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
  }

  .site-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 18px 20px 90px;
  font-size: 12px;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer a {
  margin-left: 0;
}


  .about-page .site-header,
  .our-work-page .site-header,
  .resources-page .site-header,
  .contact-page .site-header {
    position: relative;
    background: var(--soft-cream);
  }

  .about-hero {
    min-height: 540px;
    padding: 92px 28px 52px;
  }

  .about-hero::before {
    background-size: auto 92%;
    background-position: right bottom;
    opacity: 0.65;
  }

  .about-hero::after {
    background: linear-gradient(
      180deg,
      rgba(251,247,239,1) 0%,
      rgba(251,247,239,0.96) 42%,
      rgba(251,247,239,0.78) 68%,
      rgba(251,247,239,0.30) 100%
    );
  }

  .about-hero-text h1 {
    font-size: 42px;
    line-height: 1;
  }

  .about-hero-text p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.58;
  }

  .about-snapshot,
  .about-approach-compact,
  .about-founder,
  .about-closing {
    padding-left: 28px;
    padding-right: 28px;
  }

  .about-purpose h2,
  .about-centered-heading h2,
  .about-rooted-copy h2,
  .founder-copy h2,
  .about-closing h2 {
    font-size: 31px;
  }

  .about-purpose {
    padding: 24px 22px;
  }

  .about-pull-quote {
    padding: 30px 24px;
  }

  .about-pull-quote p {
    font-size: 32px;
  }

  .approach-strip {
    grid-template-columns: 1fr;
  }

  .about-founder-card {
    padding: 30px 24px;
  }

  .founder-image-wrap {
    width: 210px;
    height: 210px;
  }

  .about-closing-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }

  .about-button {
    width: 100%;
  }

  .work-page-hero {
    min-height: 390px;
    padding: 82px 28px 48px;
  }

  .work-page-hero::before {
    background-size: auto 92%;
    background-position: right bottom;
    opacity: 0.56;
  }

  .work-page-hero::after {
    background: linear-gradient(
      180deg,
      rgba(251,247,239,1) 0%,
      rgba(251,247,239,0.95) 48%,
      rgba(251,247,239,0.74) 74%,
      rgba(251,247,239,0.36) 100%
    );
  }

  .work-page-hero h1 {
    font-size: 48px;
  }

  .work-page-hero p {
    font-size: 15px;
    line-height: 1.58;
  }

  .program-section {
    padding: 0 28px;
  }

  .program-copy h2 {
    font-size: 33px;
  }

  .program-tagline {
    font-size: 19px;
  }

  .program-details {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .work-page-closing {
    padding: 28px;
  }

  .work-page-closing-inner {
    padding: 26px 24px;
  }

  .work-page-closing p {
    font-size: 26px;
  }

  .resources-hero {
    padding: 54px 28px 24px;
  }

  .resources-hero h1 {
    font-size: 48px;
  }

  .resources-hero p {
    font-size: 15px;
    line-height: 1.58;
  }

  .resources-section {
    padding: 28px;
  }

  .resources-section-heading h2 {
    font-size: 31px;
  }

  .resources-section-heading p {
    font-size: 15px;
  }

  .resource-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .resource-card {
    max-width: 340px;
  }

  .resources-note {
    padding: 28px;
  }

  .resources-note-inner {
    padding: 22px;
  }

  .contact-hero {
    min-height: 430px;
    padding: 82px 28px 48px;
  }

  .contact-hero::before {
    background-size: auto 92%;
    background-position: right bottom;
    opacity: 0.58;
  }

  .contact-hero::after {
    background: linear-gradient(
      180deg,
      rgba(251,247,239,1) 0%,
      rgba(251,247,239,0.95) 48%,
      rgba(251,247,239,0.76) 74%,
      rgba(251,247,239,0.34) 100%
    );
  }

  .contact-hero h1 {
    font-size: 48px;
  }

  .contact-hero p {
    font-size: 15px;
    line-height: 1.58;
  }

  .contact-form-section,
  .ways-to-connect-section {
    padding-left: 28px;
    padding-right: 28px;
  }

  .contact-form-card {
    padding: 30px 24px;
  }

  .contact-form-intro h2,
  .ways-heading h2 {
    font-size: 31px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .direct-email-box {
    grid-template-columns: 1fr;
  }

  .way-card {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .way-icon {
    width: 58px;
    height: 58px;
  }

  .our-work-page main,
  .about-page main,
  .resources-page main,
  .contact-page main {
    padding-bottom: 68px;
  }
}

@media (max-width: 900px) {
.site-header {
position: relative;
z-index: 1000;
}

.mobile-menu {
display: block;
cursor: pointer;
z-index: 1001;
}

body.mobile-nav-open .desktop-nav {
display: flex;
position: absolute;
top: 100%;
left: 0;
right: 0;
flex-direction: column;
align-items: stretch;
gap: 0;
background: var(--soft-cream);
border-top: 1px solid rgba(6, 39, 71, 0.08);
box-shadow: 0 18px 35px rgba(6, 39, 71, 0.16);
padding: 12px 24px 20px;
}

body.mobile-nav-open .desktop-nav a {
display: block;
padding: 14px 0;
border-bottom: 1px solid rgba(6, 39, 71, 0.08);
color: var(--navy);
}

body.mobile-nav-open .desktop-nav a.active-link::after {
display: none;
}

body.mobile-nav-open .desktop-nav .nav-button {
margin-top: 14px;
text-align: center;
border-bottom: none;
padding: 15px 22px;
color: var(--white) !important;
}

.connect-section {
cursor: pointer;
}
}
