/* ================================================
   FILE: style.css
   Fonts: Montserrat (sans) + Cormorant Garamond (serif)
   Color Scheme: Forest Green + Gold + Cream
================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --forest: #1a3428;
  --forest-mid: #244535;
  --forest-light: #2f5a46;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale: #f5e8c0;
  --cream: #faf6ed;
  --cream-dark: #f0e8d5;
  --ink: #1a1a14;
  --ink-mid: #3d3d30;
  --ink-light: #6b6b52;
  --white: #ffffff;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Typography */
h1, h2, h3, h4, .logo-name, .hero-title, .service-card h3, .mission-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

h2 {
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.1;
  margin-bottom: 14px;
}

h2 em {
  font-style: italic;
  color: var(--gold);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-kicker::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header p {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-mid);
  max-width: 580px;
  margin: 0 auto;
}

/* Topbar */
#topbar {
  background: var(--forest);
  height: 38px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

#topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left {
  display: flex;
  gap: 24px;
}

.topbar-item {
  font-size: 11px;
  font-weight: 500;
  color: rgba(250, 246, 237, 0.55);
}

.topbar-badge {
  font-size: 10px;
  font-weight: 600;
  color: var(--gold-light);
}

/* Navbar */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26, 52, 40, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

#navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

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

.logo-img {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--forest);
}

.logo-fallback {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--forest);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  line-height: 1;
}

.logo-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.65);
  margin-top: 3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-menu li a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 246, 237, 0.75);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 2px;
  transition: all 0.25s;
  font-family: 'Montserrat', sans-serif;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--forest) !important;
  padding: 9px 20px !important;
  border-radius: 2px;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--forest) !important;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--gold);
}

/* Hero */
.hero {
  background: var(--forest);
  position: relative;
  min-height: calc(100vh - 114px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(201, 168, 76, 0.08), transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 30px;
  padding: 6px 16px 6px 8px;
  margin-bottom: 32px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-light);
}

.badge-icon {
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--forest);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5.5vw, 86px);
  font-weight: 600;
  color: var(--cream);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.hero-title span {
  display: block;
  font-weight: 400;
  font-style: italic;
  color: rgba(250, 246, 237, 0.55);
}

.hero-title em {
  display: block;
  font-weight: 600;
  color: var(--gold);
  font-style: normal;
}

.hero-divider {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 28px 0;
}

.hero-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(250, 246, 237, 0.65);
  max-width: 500px;
  margin-bottom: 44px;
}

.hero-desc strong {
  color: rgba(250, 246, 237, 0.9);
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--forest);
  padding: 14px 32px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(250, 246, 237, 0.8);
  padding: 14px 32px;
  border: 1px solid rgba(250, 246, 237, 0.25);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(201, 168, 76, 0.1);
  background: rgba(201, 168, 76, 0.04);
  border-radius: 2px;
}

.hero-stats > div {
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid rgba(201, 168, 76, 0.1);
}

.hero-stats > div:last-child {
  border-right: none;
}

.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 246, 237, 0.5);
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.hero-ring {
  position: absolute;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 50%;
  animation: spin 50s linear infinite;
}

.hero-ring-2 {
  position: absolute;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 50%;
  animation: spin-reverse 35s linear infinite;
}

.hero-ring-3 {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1.5px solid rgba(201, 168, 76, 0.18);
  border-radius: 50%;
  animation: spin 22s linear infinite;
}

.hero-logo {
  position: relative;
  z-index: 5;
  width: 200px;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(201, 168, 76, 0.25));
  animation: float 6s ease-in-out infinite;
}

.hero-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-top: 3px solid var(--gold);
  border-radius: 2px;
  padding: 24px 32px;
  text-align: center;
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 360px;
}

.hero-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
}

.hero-card-full {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 246, 237, 0.4);
  display: block;
  margin: 4px 0 14px;
}

.hero-pillars {
  display: flex;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 2px;
}

.hero-pillars span {
  font-size: 10px;
  font-weight: 500;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-light);
  padding: 7px 16px;
  border-right: 1px solid rgba(201, 168, 76, 0.15);
}

.hero-pillars span:last-child {
  border-right: none;
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 40px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  writing-mode: vertical-rl;
  opacity: 0.6;
  animation: bob 2.5s ease-in-out infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes bob {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(8px); opacity: 0.8; }
}

/* Marquee */
.marquee {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  height: 48px;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.marquee-track {
  display: inline-block;
  animation: marquee 30s linear infinite;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Mission */
.mission {
  background: var(--forest);
  padding: 100px 0;
  position: relative;
}

.mission::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-quote {
  position: relative;
  padding: 40px;
}

.quote-mark {
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 140px;
  font-weight: 900;
  color: var(--gold-pale);
  opacity: 0.15;
  line-height: 1;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.quote-text span {
  color: var(--gold);
  font-weight: 600;
}

.quote-author {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.5);
}

.mission-cards {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(201, 168, 76, 0.06);
}

.mission-card {
  background: var(--forest-light);
  padding: 24px 28px;
  border-left: 3px solid transparent;
  display: flex;
  gap: 16px;
  transition: all 0.3s;
}

.mission-card:hover {
  border-left-color: var(--gold);
  background: var(--forest-mid);
}

.card-icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.mission-card h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 5px;
}

.mission-card p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(250, 246, 237, 0.55);
}

/* Impact */
.impact {
  background: var(--forest);
  padding: 100px 0;
  position: relative;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(201, 168, 76, 0.1);
  margin-top: 64px;
  text-align: center;
}

.impact-item {
  padding: 52px 32px;
  border-right: 1px solid rgba(201, 168, 76, 0.08);
  transition: background 0.3s;
}

.impact-item:last-child {
  border-right: none;
}

.impact-item:hover {
  background: rgba(201, 168, 76, 0.05);
}

.impact-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.impact-item span:not(.impact-number) {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 246, 237, 0.35);
  display: block;
  margin: 8px 0 6px;
}

.impact-item small {
  font-size: 11px;
  font-weight: 300;
  font-style: italic;
  color: rgba(250, 246, 237, 0.3);
  font-family: 'Cormorant Garamond', serif;
}

/* Services Preview */
.services-preview {
  background: var(--white);
  padding: 100px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--cream-dark);
  margin: 64px 0 48px;
}

.service-card {
  padding: 40px 32px;
  border-right: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  background: var(--white);
  position: relative;
  transition: all 0.35s;
}

.service-card:nth-child(4n) {
  border-right: none;
}

.service-card:nth-last-child(-n+4) {
  border-bottom: none;
}

.service-card:hover {
  background: var(--cream);
}

.service-card:hover .service-icon {
  background: var(--gold);
  box-shadow: 0 6px 18px rgba(201, 168, 76, 0.3);
}

.service-card:hover h3 {
  color: var(--gold);
}

.service-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 600;
  color: rgba(201, 168, 76, 0.12);
  line-height: 1;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(232, 201, 122, 0.1));
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.service-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  line-height: 1.25;
  transition: color 0.3s;
}

.service-card p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-light);
}

.text-center {
  text-align: center;
}

/* Why PLRI */
.why-plri {
  background: var(--cream);
  padding: 100px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  position: relative;
  height: 540px;
}

.why-corner {
  position: absolute;
  top: 20px;
  left: 0;
  width: 36px;
  height: 36px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
}

.why-box {
  position: absolute;
  right: 0;
  top: 0;
  width: 80%;
  height: 82%;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.why-box img {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 0 32px rgba(201, 168, 76, 0.25));
}

.why-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--gold);
  padding: 24px 28px;
  min-width: 180px;
}

.why-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--forest);
  line-height: 1;
  display: block;
}

.why-badge span:last-child {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
}

.why-list {
  margin-top: 36px;
}

.why-item {
  display: flex;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.why-item:last-child {
  border-bottom: none;
}

.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.why-item:hover .why-icon {
  background: var(--gold);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
}

.why-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 5px;
}

.why-item p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-light);
}

/* CTA Banner */
.cta-banner {
  background: var(--forest);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 30px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 7px 20px;
  margin-bottom: 24px;
}

.cta-banner h2 {
  color: var(--cream);
  font-size: clamp(32px, 4vw, 58px);
}

.cta-banner h2 em {
  color: var(--gold);
}

.cta-banner p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(250, 246, 237, 0.5);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.85;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.phone-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 600;
  color: var(--cream);
}

/* Footer */
footer {
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo-img {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--forest);
}

/* Alternative: If you want to use an actual image tag */
.footer-logo-image {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  display: block;
}

.footer-logo-tag {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.5);
}

.footer-motto {
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  color: rgba(250, 246, 237, 0.4);
  line-height: 1.75;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 24px;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 2px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(250, 246, 237, 0.7);
}

.footer-grid h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.footer-grid ul {
  list-style: none;
}

.footer-grid li {
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(250, 246, 237, 0.45);
}

.footer-grid a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-grid a::before {
  content: '›';
  color: rgba(201, 168, 76, 0.3);
}

.footer-grid a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding: 24px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom span:first-child {
  font-size: 11px;
  color: rgba(250, 246, 237, 0.2);
}

.footer-pillars {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-style: italic;
  color: rgba(201, 168, 76, 0.6);
}

/* Inner Pages Shared */
.inner-hero {
  background: var(--forest);
  padding: 100px 0 72px;
  position: relative;
}

.inner-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
}

.inner-hero .container {
  position: relative;
  z-index: 2;
}

.inner-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.inner-kicker::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.inner-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 14px;
  line-height: 1.05;
}

.inner-title em {
  font-style: italic;
  color: var(--gold);
}

.inner-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(250, 246, 237, 0.5);
  max-width: 560px;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card:nth-child(4n) {
    border-right: 1px solid var(--cream-dark);
  }
  .service-card:nth-child(2n) {
    border-right: none;
  }
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  #topbar {
    display: none;
  }
  .container {
    padding: 0 24px;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(26, 52, 40, 0.98);
    padding: 0;
    margin: 0;
    width: 100%;
    z-index: 1001;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav-menu li a {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 0;
    display: block;
    width: 100%;
  }
  .nav-menu li:last-child a {
    border-bottom: none;
  }
  .nav-cta {
    margin: 0;
    border-radius: 0 !important;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 24px;
  }
  .hero-visual {
    display: none;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .mission-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .why-visual {
    height: 280px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom .container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .logo-img {
    width: 44px;
  }
}

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    border-right: none;
  }
  .impact-grid {
    grid-template-columns: 1fr;
  }
  .impact-item {
    border-right: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  }
}