:root {
  --gre-navy: #0f2742;
  --gre-blue: #1c5ea8;
  --gre-blue-dark: #124780;
  --gre-gold: #c9a24f;
  --gre-light: #f4f8fc;
  --gre-text: #1e2a35;
  --gre-muted: #5f6e7b;
}

* { box-sizing: border-box; }
html, body { overflow-x: hidden; }
body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--gre-text);
  background-color: #fff;
}
img { max-width: 100%; height: auto; }

.gre-navbar {
  background: #fff;
  border-bottom: 1px solid #e5ebf2;
  box-shadow: 0 2px 12px rgba(15, 39, 66, 0.06);
  padding: 0.45rem 0;
}
.brand-logo { height: 54px; width: auto; display: block; }
.navbar .nav-link {
  color: var(--gre-navy);
  font-weight: 500;
  padding: 0.5rem 0.75rem;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus { color: var(--gre-blue); }
.nav-cta-wrap { margin-top: 0.5rem; }

.btn-gre-primary {
  background: var(--gre-blue);
  color: #fff;
  border: 1px solid var(--gre-blue);
  font-weight: 600;
}
.btn-gre-primary:hover,
.btn-gre-primary:focus {
  background: var(--gre-blue-dark);
  border-color: var(--gre-blue-dark);
  color: #fff;
}
.btn-gre-outline {
  border: 1px solid var(--gre-blue);
  color: var(--gre-blue);
}

.gre-hero { padding-top: 1rem; }
.hero-eyebrow {
  color: var(--gre-blue);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  font-weight: 700;
}
.hero-title { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 700; color: var(--gre-navy); line-height: 1.15; }
.hero-copy { color: var(--gre-muted); font-size: 1.05rem; }
.hero-trust-note { color: var(--gre-muted); font-size: .92rem; }
.hero-image { border-radius: 18px; box-shadow: 0 18px 36px rgba(15, 39, 66, .16); }

.value-card, .process-step {
  background: #fff;
  border: 1px solid #e3eaf2;
  border-radius: 16px;
  padding: 1.5rem;
}
.value-card, .process-step { transition: transform .2s ease, box-shadow .2s ease; }
.value-card:hover, .process-step:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(18, 71, 128, .12); }
.value-card h3 { font-size: 1.2rem; color: var(--gre-navy); margin-bottom: .65rem; }
.value-card p, .process-step p { color: var(--gre-muted); margin-bottom: 0; }

.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(28, 94, 168, .11);
  color: var(--gre-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: .85rem;
}
.process-strip { background: var(--gre-light); border-radius: 18px; }
.step-label { font-size: .78rem; text-transform: uppercase; font-weight: 700; color: var(--gre-gold); letter-spacing: .08em; margin-bottom: .65rem; }
.process-step h4 { color: var(--gre-navy); margin-bottom: .5rem; }


.company-copy-section {
  margin-top: .5rem;
}
.company-copy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.company-copy-card {
  background: #fff;
  border: 1px solid #e3eaf2;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(15, 39, 66, 0.06);
}
.company-copy-label {
  color: var(--gre-navy);
  font-size: 1.35rem;
  margin-bottom: .9rem;
}
.company-copy-card p {
  color: var(--gre-muted);
  margin-bottom: .9rem;
  line-height: 1.65;
}
.company-copy-card p:last-child {
  margin-bottom: 0;
}

.cta-band {
  background: linear-gradient(135deg, var(--gre-blue) 0%, var(--gre-blue-dark) 100%);
  color: #fff;
  border-radius: 18px;
  padding: 2rem;
}
.cta-band h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: .5rem; }
.btn-cta-band { color: var(--gre-blue-dark); font-weight: 600; }

.gre-footer {
  background: var(--gre-navy);
  color: #d7e2ef;
  border-top: 3px solid var(--gre-gold);
}

.footer-meta-links {
  text-align: left;
}

.footer-credit-link {
  font-size: .82rem;
  line-height: 1.2;
}

.footer-credit-row {
  width: 100%;
}

@media (min-width: 576px) {
  .footer-meta-links {
    text-align: right;
  }
}

.fade-in { animation: fadeIn .5s ease-in-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px);} to { opacity: 1; transform: translateY(0);} }

@media (min-width: 992px) {
  .nav-cta-wrap { margin-top: 0; }
}

.about-hero {
  background: linear-gradient(180deg, #fff 0%, var(--gre-light) 100%);
  border-radius: 18px;
}

.about-hero-image {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(15, 39, 66, .16);
  object-fit: cover;
}

.about-section-card,
.core-value-card {
  background: #fff;
  border: 1px solid #e3eaf2;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(15, 39, 66, 0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.about-section-card:hover,
.core-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(18, 71, 128, .12);
}

.about-section-card h2,
.core-value-card h3,
.about-goals-card h2 {
  color: var(--gre-navy);
}

.about-section-card p,
.core-value-card p,
.about-goals-card p,
.about-section-intro {
  color: var(--gre-muted);
  line-height: 1.65;
}

.about-feature-card {
  background: #fff;
  border: 1px solid #e3eaf2;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 24px rgba(15, 39, 66, 0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.about-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(18, 71, 128, .12);
}

.about-feature-kicker {
  color: var(--gre-blue);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  font-weight: 700;
}

.about-feature-card p {
  color: var(--gre-text);
  line-height: 1.7;
}

.about-goals-card {
  background: var(--gre-light);
  border: 1px solid #d9e6f3;
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform .2s ease, box-shadow .2s ease;
}

.about-goals-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(18, 71, 128, .12);
}

.about-goals-feature {
  align-items: center;
}

.about-goals-image {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(15, 39, 66, .16);
  object-fit: cover;
}

@media (min-width: 992px) {
  .about-hero {
    padding: 2.5rem;
  }
}

.services-hero {
  background: linear-gradient(180deg, #fff 0%, var(--gre-light) 100%);
  border-radius: 18px;
}

.services-hero-image {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(15, 39, 66, .16);
  object-fit: cover;
}

.service-card,
.services-feature-card,
.services-dream-card {
  background: #fff;
  border: 1px solid #e3eaf2;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(15, 39, 66, 0.06);
}

.service-card {
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(18, 71, 128, .12);
}

.service-card h3,
.services-feature-card h2,
.services-dream-card h2 {
  color: var(--gre-navy);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: .65rem;
}

.service-card p,
.services-feature-card p {
  color: var(--gre-muted);
  margin-bottom: 0;
  line-height: 1.65;
}

.services-dream-card {
  background: var(--gre-light);
  border-color: #d9e6f3;
}

.services-dream-card p {
  color: var(--gre-text);
  line-height: 1.65;
}

@media (min-width: 992px) {
  .services-hero {
    padding: 2.5rem;
  }
}

.rich-text-editor {
  background: #fff;
  border: 1px solid #d9e6f3;
  border-radius: 16px;
  padding: 1rem;
}

.rich-text-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.rich-text-toolbar button {
  border: 1px solid #d9e6f3;
  color: var(--gre-navy);
  background: var(--gre-light);
  border-radius: 10px;
  padding: 0.35rem 0.7rem;
  font-size: 0.92rem;
  line-height: 1.2;
}

.rich-text-toolbar button:hover,
.rich-text-toolbar button:focus {
  background: #fff;
  border-color: var(--gre-blue);
  color: var(--gre-blue);
}

.rich-text-surface {
  min-height: 240px;
  border: 1px solid #d9e6f3;
  border-radius: 16px;
  background: #fff;
  padding: 1rem;
  line-height: 1.65;
}

.rich-text-surface:focus {
  outline: none;
  border-color: var(--gre-blue);
  box-shadow: 0 0 0 0.15rem rgba(28, 94, 168, 0.15);
}

.rich-text-hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.blog-post-body {
  line-height: 1.75;
  color: var(--gre-text);
}

.blog-post-body p {
  margin-bottom: 1rem;
}

.blog-post-body ul,
.blog-post-body ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.blog-post-body li {
  margin-bottom: 0.4rem;
}

.blog-post-body a {
  color: var(--gre-blue);
  text-decoration: underline;
}

.blog-post-body a:hover,
.blog-post-body a:focus {
  color: var(--gre-blue-dark);
}

.blog-post-body strong,
.blog-post-body b {
  color: var(--gre-navy);
  font-weight: 700;
}

@media (max-width: 575.98px) {
  .rich-text-editor {
    padding: 0.75rem;
  }

  .rich-text-surface {
    min-height: 200px;
    padding: 0.75rem;
  }
}

.blog-hero {
  background: linear-gradient(180deg, #fff 0%, var(--gre-light) 100%);
  border-radius: 18px;
  margin-bottom: 1rem;
}

.blog-grid .blog-card {
  background: #fff;
  border: 1px solid #e3eaf2;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(15, 39, 66, 0.06);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(18, 71, 128, .12);
}

.blog-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-meta {
  color: var(--gre-muted);
  font-size: .92rem;
}

.blog-title-link,
.blog-read-link {
  color: var(--gre-blue);
  text-decoration: none;
}

.blog-title-link:hover,
.blog-title-link:focus,
.blog-read-link:hover,
.blog-read-link:focus {
  color: var(--gre-blue-dark);
}

.blog-read-link {
  font-weight: 600;
}

.blog-empty-card,
.blog-sidebar-card,
.blog-faq-accordion {
  background: #fff;
  border: 1px solid #e3eaf2;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(15, 39, 66, 0.06);
}

.blog-empty-card,
.blog-sidebar-card {
  padding: 1.5rem;
}

.blog-empty-card h2,
.blog-sidebar-card h2,
.blog-faq-section h2,
.blog-detail-layout h1 {
  color: var(--gre-navy);
}

.blog-empty-card p,
.blog-sidebar-card p {
  color: var(--gre-muted);
}

.blog-detail-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 16px;
}

.blog-post-body {
  color: var(--gre-text);
  line-height: 1.7;
}

.blog-share {
  border-top: 1px solid #e3eaf2;
  padding-top: 1.25rem;
}

.blog-share-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .8rem;
  border: 1px solid #d9e6f3;
  border-radius: 999px;
  color: var(--gre-blue);
  text-decoration: none;
  font-weight: 500;
}

.blog-share-link:hover,
.blog-share-link:focus {
  color: var(--gre-blue-dark);
  border-color: var(--gre-blue);
}

.blog-faq-accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid #e3eaf2;
}

.blog-faq-accordion .accordion-item:last-child {
  border-bottom: 0;
}

.blog-faq-accordion .accordion-button {
  color: var(--gre-navy);
  font-weight: 600;
  background-color: #fff;
}

.blog-faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 .2rem rgba(28, 94, 168, .18);
}

.blog-faq-accordion .accordion-button:not(.collapsed) {
  background-color: var(--gre-light);
  color: var(--gre-blue-dark);
}

.blog-faq-accordion .accordion-body {
  color: var(--gre-text);
  line-height: 1.7;
}

.contact-hero {
  background: linear-gradient(180deg, #fff 0%, var(--gre-light) 100%);
  border-radius: 18px;
}

.contact-hero-image {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(15, 39, 66, .16);
  object-fit: cover;
}

.contact-form-section {
  padding-top: .5rem;
}

.contact-content-wrap {
  max-width: 860px;
}

.contact-form-card {
  background: #fff;
  border: 1px solid #d9e6f3;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 24px rgba(15, 39, 66, 0.08);
}

.contact-warning-card {
  border-radius: 16px;
  border-width: 1px;
  margin-bottom: 0;
}

.contact-next-steps {
  background: var(--gre-light);
  border: 1px solid #d9e6f3;
  border-radius: 16px;
  padding: 1.5rem;
}

.contact-next-steps h2 {
  color: var(--gre-navy);
}

.contact-step-card {
  background: #fff;
  border: 1px solid #e3eaf2;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 8px 20px rgba(15, 39, 66, 0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.contact-step-card:hover,
.contact-step-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(18, 71, 128, .12);
}

.contact-step-card p {
  color: var(--gre-muted);
}

@media (min-width: 992px) {
  .contact-hero {
    padding: 2.5rem;
  }

  .contact-form-card,
  .contact-next-steps {
    padding: 1.75rem;
  }
}
