
:root {
  --navy: #1f2a38;
  --navy-dark: #151f2b;
  --gold: #b68b2d;
  --gold-light: #d4b36a;
  --cream: #f5f3ee;
  --cream-dark: #ece9e3;
  --white: #ffffff;
  --text: #2f3948;
  --muted: #5d6570;
  --line: rgba(182, 139, 45, 0.24);
  --soft-line: rgba(31, 42, 56, 0.1);
  --shadow: 0 28px 80px rgba(31, 42, 56, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { 
  scroll-behavior: smooth; 
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

a { 
  color: inherit; 
  text-decoration: none; 
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

/* HEADER & NAVIGATION */
.site-header {
  background: rgba(245, 243, 238, 0.96);
  border-bottom: 1px solid rgba(31, 42, 56, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-wrap {
  min-height: 118px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo-wrap {
  display: inline-block;
}

.logo { 
  width: 180px; 
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--navy);
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav a { 
  transition: color 0.2s ease; 
}

.nav a:hover { 
  color: var(--gold); 
}

.nav-cta {
  border: 1px solid var(--gold);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--white);
}

/* HERO SECTION */
.hero {
  min-height: calc(100vh - 118px);
  padding: 90px 0;
  background:
    radial-gradient(circle at top right, rgba(182, 139, 45, 0.14), transparent 36%),
    linear-gradient(90deg, #ffffff 0%, #faf8f4 48%, #efe7d8 100%);
}

.hero-grid,
.split-grid,
.framework-grid,
.giveback-grid,
.feedback-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.feedback-grid {
  align-items: start;
}

/* TYPOGRAPHY */
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 22px;
}

.gold { 
  color: var(--gold); 
}

h1, h2, h3, h4 {
  color: var(--navy);
  line-height: 1.08;
}

h1 {
  font-size: clamp(3.5rem, 7vw, 6.4rem);
  margin-bottom: 28px;
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

h4 {
  font-size: 1rem;
  margin: 22px 0 12px;
}

.hero-text,
.feedback-text {
  font-size: 1.12rem;
  color: var(--text);
  max-width: 720px;
  margin-bottom: 32px;
  line-height: 1.75;
}

.feedback-text {
  color: var(--muted);
}

/* BUTTON SYSTEM */
.hero-buttons,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

.btn:hover { 
  transform: translateY(-2px); 
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--navy-dark);
}

.btn-secondary {
  border: 1px solid var(--navy);
  color: var(--navy);
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(31, 42, 56, 0.05);
}

.hero-card {
  background: var(--white);
  border-radius: 30px;
  padding: 52px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

/* BRAND VALUE STRIP */
.positioning-strip {
  background: var(--navy);
  color: var(--white);
  padding: 30px 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.strip-grid div {
  border-left: 1px solid rgba(182, 139, 45, 0.55);
  padding-left: 18px;
}

.strip-grid strong {
  display: block;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.strip-grid span {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

/* CARD BLOCKS AND CONTAINER BASES */
.section,
.feedback-section {
  padding: 92px 0;
}

.feedback-section {
  background: #ffffff;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.service-card,
.engagement-card,
.giveback-card,
.pledge-card,
.form-intro,
.readiness-form,
.feedback-card {
  background: var(--white);
  border-radius: 24px;
  padding: 30px;
  border: 1px solid var(--soft-line);
  box-shadow: 0 14px 38px rgba(31, 42, 56, 0.05);
}

.feedback-card {
  background: var(--cream);
  border-left: 5px solid var(--gold);
}

.feedback-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.feedback-form {
  display: grid;
  gap: 20px;
}

.service-card {
  min-height: 320px;
}

.service-card p,
.engagement-card p,
.giveback-card p,
.pledge-card p {
  color: var(--muted);
  line-height: 1.72;
}

/* ENGAGEMENT MATRIX GRID */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 40px;
}

.engagement-card span {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}

.engagement-card ul {
  list-style: none;
  margin-top: 22px;
}

.engagement-card li {
  padding: 10px 0;
  border-top: 1px solid rgba(31, 42, 56, 0.08);
  color: var(--text);
}

.engagement-card.featured {
  border: 1px solid var(--gold);
  box-shadow: var(--shadow);
}

/* MISSION & GIVE BACK */
.giveback-section {
  background: var(--navy);
  color: var(--white);
  padding: 92px 0;
}

.giveback-section h2 {
  color: var(--white);
}

.giveback-text {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.8;
  margin-bottom: 30px;
}

.giveback-card {
  border: 1px solid rgba(182, 139, 45, 0.5);
}

.giveback-card ul {
  list-style: none;
}

.giveback-card li {
  padding: 10px 0;
  border-top: 1px solid rgba(31, 42, 56, 0.08);
  color: var(--text);
}

/* INTERACTIVE FORMS LAYOUT */
.form-section {
  background: #ffffff;
  padding: 92px 0;
}

.form-intro {
  max-width: 880px;
  margin: 0 auto 34px;
  text-align: center;
}

.form-intro p {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.75;
}

.readiness-form {
  max-width: 980px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: #fbfaf7;
  border: 1px solid rgba(31, 42, 56, 0.18);
  border-radius: 14px;
  padding: 14px 15px;
  outline: none;
  transition: all 0.2s ease;
}

textarea {
  resize: vertical;
  min-height: 130px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(182, 139, 45, 0.15);
  background: #ffffff;
}

.form-submit {
  margin-top: 28px;
  background: var(--navy);
  color: var(--white);
  width: 100%;
}

.about-section {
  background: var(--cream);
  padding: 92px 0;
}

.pledge-card {
  border-left: 5px solid var(--gold);
}

.pledge-card h3 {
  font-size: 1.7rem;
}

/* CALL TO ACTION HUB */
.contact-section {
  background: var(--navy-dark);
  color: var(--white);
  text-align: center;
  padding: 100px 0;
}

.contact-section h2 {
  color: var(--white);
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1.08;
  margin-bottom: 24px;
}

.contact-text {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  max-width: 820px;
  margin: 0 auto 36px;
}

.contact-box { 
  max-width: 980px; 
}

.contact-buttons { 
  justify-content: center; 
}

.contact-primary {
  background: var(--gold);
  color: var(--navy);
}

.contact-primary:hover {
  background: var(--gold-light);
}

.contact-secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--white);
  background: transparent;
}

.contact-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.footer {
  background: #121a24;
  color: rgba(255, 255, 255, 0.72);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.92rem;
}

/* RESPONSIVE LAYOUT BREAKPOINTS */
@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .giveback-grid,
  .feedback-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .card-grid,
  .strip-grid,
  .engagement-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .hero { 
    min-height: auto; 
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

  .card-grid,
  .strip-grid,
  .engagement-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .btn { 
    width: 100%; 
  }

  h1 { font-size: 3rem; }
  h2 { font-size: 2.1rem; }
  .logo { width: 165px; }
  .hero { padding: 58px 0; }

  .hero-card,
  .service-card,
  .engagement-card,
  .giveback-card,
  .feedback-card,
  .pledge-card,
  .form-intro,
  .readiness-form {
    padding: 24px;
    border-radius: 20px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}