:root {
  --ge-rose: #cba0a7;
  --ge-berry: #3b1019;
  --ge-cream: #fdf7f4;
  --ge-paper: #fffdfb;
  --ge-ink: #24191c;
  --ge-muted: #6d5a60;
  --ge-border: #e8d7db;
  --ge-shadow: 0 18px 48px rgba(59, 16, 25, 0.08);
  --ge-radius-lg: 28px;
  --ge-radius-md: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.92), transparent 22%),
    linear-gradient(180deg, #fffafa 0%, var(--ge-cream) 48%, #f6ecef 100%);
  color: var(--ge-ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.7;
}

a {
  color: var(--ge-berry);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.ge-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.ge-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(253, 247, 244, 0.9);
  border-bottom: 1px solid rgba(59, 16, 25, 0.08);
}

.ge-topbar,
.ge-linkbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ge-topbar {
  padding: 22px 0 16px;
}

.ge-linkbar {
  padding: 0 0 16px;
  flex-wrap: wrap;
}

.ge-brand {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  color: var(--ge-ink);
  text-decoration: none;
}

.ge-brand .custom-logo {
  max-height: 58px;
  width: auto;
}

.ge-brand--logo .custom-logo-link {
  display: inline-block;
}

.ge-brand__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.ge-brand__tag {
  color: var(--ge-muted);
  font-size: 0.92rem;
}

.ge-nav {
  flex: 1;
}

.ge-menu,
.ge-footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ge-menu {
  justify-content: flex-end;
}

.ge-menu a,
.ge-footer-menu a,
.ge-app-link {
  color: var(--ge-berry);
  text-decoration: none;
  font-weight: 700;
}

.ge-linkbar__label {
  color: var(--ge-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.ge-app-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ge-app-link {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(203, 160, 167, 0.22);
}

.ge-main {
  padding: 36px 0 72px;
}

.ge-kicker,
.ge-pattern__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(203, 160, 167, 0.24);
  color: var(--ge-berry);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ge-hero,
.ge-page,
.ge-article,
.ge-empty-state,
.ge-cta-panel {
  border: 1px solid rgba(59, 16, 25, 0.08);
  border-radius: var(--ge-radius-lg);
  background: rgba(255, 253, 251, 0.92);
  box-shadow: var(--ge-shadow);
}

.ge-hero,
.ge-empty-state,
.ge-cta-panel {
  padding: 38px;
}

.ge-page,
.ge-article {
  padding: 36px;
}

.ge-hero h1,
.ge-page h1,
.ge-article h1,
.ge-empty-state h1,
.ge-cta-panel h2,
.ge-card__title,
.wp-block-heading {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.ge-hero h1,
.ge-page h1,
.ge-article h1,
.ge-empty-state h1 {
  margin: 16px 0 14px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.ge-hero__copy,
.ge-page__content > :first-child,
.ge-article__content > :first-child {
  font-size: 1.08rem;
}

.ge-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.ge-button-row--compact {
  margin-top: 18px;
}

.ge-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--ge-berry);
  font-weight: 800;
  text-decoration: none;
}

.ge-button--primary {
  background: var(--ge-berry);
  color: var(--ge-paper);
}

.ge-button--secondary {
  background: transparent;
  color: var(--ge-berry);
}

.ge-post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.ge-card {
  padding: 24px;
  border: 1px solid var(--ge-border);
  border-radius: var(--ge-radius-md);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 36px rgba(59, 16, 25, 0.06);
}

.ge-card__meta,
.ge-article__meta,
.ge-card__footer,
.ge-post-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: space-between;
}

.ge-card__meta,
.ge-article__meta,
.ge-taxonomy,
.ge-linkbar__label,
.ge-card__excerpt {
  color: var(--ge-muted);
}

.ge-card__title {
  margin: 12px 0;
  font-size: 1.7rem;
}

.ge-card__eyebrow {
  margin: 0;
  color: var(--ge-muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ge-card__subcopy {
  margin: -2px 0 0;
  color: var(--ge-muted);
  font-size: 0.92rem;
}

.ge-card__title a {
  color: inherit;
  text-decoration: none;
}

.ge-text-link {
  font-weight: 800;
  text-decoration: none;
}

.ge-taxonomy a {
  font-weight: 700;
}

.ge-article__header,
.ge-page__header {
  margin-bottom: 24px;
}

.ge-article__media {
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: var(--ge-radius-md);
}

.ge-article__content,
.ge-page__content {
  font-size: 1.03rem;
}

.ge-article__content > * + *,
.ge-page__content > * + * {
  margin-top: 1.1em;
}

.ge-article__content blockquote,
.ge-page__content blockquote,
.wp-block-quote {
  margin: 1.8rem 0;
  padding: 1.2rem 1.4rem;
  border-left: 4px solid var(--ge-rose);
  background: rgba(203, 160, 167, 0.14);
  border-radius: 0 18px 18px 0;
}

.ge-article__content ul,
.ge-page__content ul {
  padding-left: 1.2rem;
}

.ge-article__footer {
  display: grid;
  gap: 20px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--ge-border);
}

.ge-post-nav {
  margin-top: 18px;
  padding: 0 4px;
}

.ge-post-nav a {
  font-weight: 800;
  text-decoration: none;
}

.navigation.pagination {
  margin-top: 28px;
}

.navigation.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.navigation.pagination a,
.navigation.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--ge-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  text-decoration: none;
}

.navigation.pagination .current {
  background: var(--ge-berry);
  border-color: var(--ge-berry);
  color: var(--ge-paper);
}

.ge-empty-state {
  text-align: center;
  margin-top: 28px;
}

.ge-empty-state--wide {
  max-width: 820px;
}

.ge-footer {
  padding: 0 0 32px;
}

.ge-cta-panel {
  margin-bottom: 26px;
  display: grid;
  gap: 18px;
}

.ge-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
  padding: 28px 0;
}

.ge-footer__heading {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
}

.ge-footer__copy,
.ge-footer__meta {
  color: var(--ge-muted);
}

.ge-footer__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(59, 16, 25, 0.08);
  font-size: 0.95rem;
}

.ge-pattern {
  border-radius: var(--ge-radius-md);
}

.ge-pattern--hero,
.ge-pattern--cta,
.ge-pattern--columns .wp-block-column {
  padding: 1.25rem;
  border: 1px solid var(--ge-border);
  background: rgba(255, 255, 255, 0.95);
}

.ge-pattern--columns {
  gap: 18px;
}

.ge-hybrid-note {
  margin-top: 18px;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(59, 16, 25, 0.08);
  background: rgba(203, 160, 167, 0.16);
  color: var(--ge-ink);
}

.ge-routine-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.85fr);
  gap: 22px;
  margin-top: 28px;
  align-items: start;
}

.ge-routine-sidebar {
  display: grid;
  gap: 22px;
}

.ge-fact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.ge-fact-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ge-border);
}

.ge-fact-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.ge-fact-list span {
  color: var(--ge-muted);
}

.ge-chip-row,
.ge-handle-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ge-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(203, 160, 167, 0.18);
  color: var(--ge-berry);
  font-weight: 700;
  text-decoration: none;
}

.ge-chip--muted {
  background: rgba(59, 16, 25, 0.06);
  color: var(--ge-ink);
}

.ge-post-grid--hybrid {
  margin-top: 28px;
}

.ge-section-heading {
  margin: 0 0 18px;
}

.ge-section-heading h2 {
  margin: 12px 0 10px;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.ge-section-heading p:last-child {
  margin-bottom: 0;
  color: var(--ge-muted);
}

.ge-routine-products {
  margin-top: 28px;
}

.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: var(--ge-berry);
  border: 1px solid var(--ge-berry);
}

.wp-block-post-featured-image img {
  border-radius: var(--ge-radius-md);
}

@media (max-width: 860px) {
  .ge-topbar,
  .ge-linkbar,
  .ge-card__footer,
  .ge-footer__meta,
  .ge-post-nav,
  .ge-fact-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .ge-routine-layout {
    grid-template-columns: 1fr;
  }

  .ge-menu {
    justify-content: flex-start;
  }

  .ge-hero,
  .ge-page,
  .ge-article,
  .ge-empty-state,
  .ge-cta-panel {
    padding: 26px;
  }

  .ge-hero h1,
  .ge-page h1,
  .ge-article h1,
  .ge-empty-state h1 {
    font-size: clamp(2rem, 8vw, 3.2rem);
  }
}

@media (max-width: 580px) {
  .ge-shell {
    width: min(1180px, calc(100% - 20px));
  }

  .ge-topbar {
    padding-top: 18px;
  }

  .ge-app-link,
  .ge-button {
    width: 100%;
  }

  .ge-button-row {
    width: 100%;
  }
}

.ge-button--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--ge-paper);
}

.ge-main--cinematic {
  padding-top: 0;
  background:
    radial-gradient(circle at top, rgba(109, 49, 69, 0.38), transparent 28%),
    linear-gradient(180deg, #0f0a0d 0%, #170f14 34%, #120c11 68%, #0b080a 100%);
}

.ge-home {
  background:
    radial-gradient(circle at top, rgba(109, 49, 69, 0.22), transparent 22%),
    linear-gradient(180deg, #0f0a0d 0%, #170f14 34%, #120c11 68%, #0b080a 100%);
  color: #f7ede8;
}

.ge-home .ge-header {
  background: rgba(12, 8, 10, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ge-home .ge-brand,
.ge-home .ge-brand__title,
.ge-home .ge-menu a,
.ge-home .ge-app-link {
  color: #fbf1eb;
}

.ge-home .ge-brand__tag,
.ge-home .ge-linkbar__label {
  color: rgba(251, 241, 235, 0.7);
}

.ge-home .ge-app-link {
  background: rgba(255, 255, 255, 0.08);
}

.ge-main--cinematic .ge-button {
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.ge-main--cinematic .ge-button:hover {
  transform: translateY(-2px);
}

.ge-main--cinematic .ge-button--primary {
  background: linear-gradient(135deg, #f7e3dc 0%, #eed0c5 100%);
  border-color: transparent;
  color: #231418;
}

.ge-main--cinematic .ge-button--secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff8f4;
}

.ge-main--cinematic .ge-button--ghost:hover,
.ge-main--cinematic .ge-button--secondary:hover {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.08);
  color: #fff8f4;
}

.ge-home-hero {
  position: relative;
  min-height: calc(100vh - 92px);
  padding: 54px 0 120px;
  background:
    linear-gradient(90deg, rgba(7, 5, 7, 0.76) 0%, rgba(14, 9, 12, 0.5) 42%, rgba(24, 14, 19, 0.82) 100%),
    linear-gradient(180deg, rgba(15, 9, 12, 0.1) 0%, rgba(9, 6, 8, 0.76) 100%),
    url("../images/hero-banner.png") center/cover no-repeat;
}

.ge-home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(9, 6, 8, 0) 0%, rgba(11, 7, 9, 1) 100%);
}

.ge-home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  gap: 28px;
  align-items: end;
  min-height: 74vh;
}

.ge-home-hero__content,
.ge-home-surface--hero,
.ge-home-card,
.ge-home-split,
.ge-home-banner {
  animation: ge-rise-in 0.8s ease both;
}

.ge-home-surface--hero {
  animation-delay: 0.12s;
}

.ge-home-card:nth-child(2) {
  animation-delay: 0.08s;
}

.ge-home-card:nth-child(3) {
  animation-delay: 0.14s;
}

.ge-home-card:nth-child(4) {
  animation-delay: 0.2s;
}

.ge-home-eyebrow,
.ge-home-section-kicker,
.ge-home-surface__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #f3d7cb;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ge-home-eyebrow::before,
.ge-home-section-kicker::before,
.ge-home-surface__eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.72;
}

.ge-home-hero h1,
.ge-home-split__content h2,
.ge-home-banner__content h2,
.ge-home-live-item h2,
.ge-home-card h2,
.ge-home-stat h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.03em;
  line-height: 0.96;
}

.ge-home-hero h1 {
  max-width: 820px;
  margin: 18px 0 18px;
  font-size: clamp(3.4rem, 8vw, 6.7rem);
  color: #fff5ef;
}

.ge-home-hero__lede,
.ge-home-split__content > p,
.ge-home-banner__content p,
.ge-home-card p,
.ge-home-live-item p,
.ge-home-surface__empty,
.ge-home-surface__note,
.ge-home-stat p,
.ge-home-checklist li {
  color: rgba(250, 239, 234, 0.78);
}

.ge-home-hero__lede {
  max-width: 720px;
  font-size: 1.08rem;
}

.ge-button-row--home {
  margin-top: 30px;
}

.ge-home-surface {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(34, 19, 26, 0.84) 0%, rgba(17, 11, 14, 0.88) 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.ge-home-live-list {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.ge-home-live-item {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ge-home-live-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.ge-home-live-item__label {
  margin: 0 0 8px;
  color: #e6bcaa;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ge-home-live-item h2 {
  margin: 0 0 6px;
  font-size: 2rem;
}

.ge-home-live-item h2 a {
  color: #fff4ee;
  text-decoration: none;
}

.ge-home-surface__note {
  margin: 22px 0 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.ge-home-card-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: -84px;
  margin-bottom: 48px;
}

.ge-home-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(44, 25, 33, 0.94) 0%, rgba(20, 13, 16, 0.95) 100%);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.ge-home-card:hover {
  transform: translateY(-8px);
  border-color: rgba(238, 202, 188, 0.48);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
}

.ge-home-card img {
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
}

.ge-home-card h2 {
  margin: 0 0 12px;
  font-size: 2.15rem;
  color: #fff3ed;
}

.ge-home-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 40px 0;
}

.ge-home-split--reverse .ge-home-split__content {
  order: 1;
}

.ge-home-split--reverse .ge-home-split__media {
  order: 2;
}

.ge-home-split__media img {
  width: 100%;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  object-fit: cover;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.24);
}

.ge-home-split__content h2 {
  margin: 16px 0 18px;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  color: #fff4ee;
}

.ge-home-feature-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

.ge-home-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.ge-home-feature img {
  width: 42px;
  height: 42px;
}

.ge-home-feature p {
  margin: 0;
}

.ge-home-stats {
  margin: 22px 0 30px;
  padding: 48px 0;
  background: linear-gradient(90deg, rgba(13, 9, 11, 0.98) 0%, rgba(35, 20, 26, 0.96) 50%, rgba(13, 9, 11, 0.98) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ge-home-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ge-home-stat {
  text-align: center;
}

.ge-home-stat img {
  width: auto;
  height: 64px;
  margin: 0 auto 18px;
}

.ge-home-stat h2 {
  margin: 0 0 10px;
  font-size: clamp(3rem, 6vw, 5rem);
  color: #fff7f2;
}

.ge-home-stat p {
  max-width: 260px;
  margin: 0 auto;
}

.ge-home-checklist {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.ge-home-checklist li {
  position: relative;
  padding-left: 22px;
}

.ge-home-checklist li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #f1cdbd;
  box-shadow: 0 0 0 6px rgba(241, 205, 189, 0.14);
}

.ge-home-banner {
  margin-top: 18px;
  margin-bottom: 34px;
  padding: 52px 46px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 38px;
  background:
    linear-gradient(90deg, rgba(10, 6, 8, 0.86) 0%, rgba(14, 9, 12, 0.52) 42%, rgba(10, 6, 8, 0.88) 100%),
    url("../images/home-banner.png") center/cover no-repeat;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.26);
}

.ge-home-banner__content {
  max-width: 760px;
}

.ge-home-banner__content h2 {
  margin: 18px 0 16px;
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: #fff6f0;
}

.ge-home .ge-footer {
  padding-bottom: 40px;
  background: linear-gradient(180deg, rgba(11, 8, 10, 0) 0%, rgba(10, 7, 9, 0.98) 34%, rgba(10, 7, 9, 1) 100%);
}

.ge-home .ge-footer .ge-cta-panel {
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(34, 18, 24, 0.9) 0%, rgba(16, 10, 13, 0.94) 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.ge-home .ge-footer__heading,
.ge-home .ge-footer-menu a,
.ge-home .ge-footer__meta,
.ge-home .ge-footer__copy,
.ge-home .ge-footer .ge-kicker,
.ge-home .ge-footer .ge-cta-panel h2,
.ge-home .ge-footer .ge-cta-panel p {
  color: #f8ede7;
}

.ge-home .ge-footer__meta {
  border-top-color: rgba(255, 255, 255, 0.08);
}

@keyframes ge-rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .ge-home-hero__grid,
  .ge-home-split {
    grid-template-columns: 1fr;
  }

  .ge-home-card-grid,
  .ge-home-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ge-home-card-grid {
    margin-top: -50px;
  }

  .ge-home-split--reverse .ge-home-split__content,
  .ge-home-split--reverse .ge-home-split__media {
    order: initial;
  }
}

@media (max-width: 860px) {
  .ge-home-hero {
    min-height: auto;
    padding: 34px 0 88px;
  }

  .ge-home-card-grid,
  .ge-home-stats__grid {
    grid-template-columns: 1fr;
  }

  .ge-home-card-grid {
    margin-top: -40px;
  }

  .ge-home-banner {
    padding: 34px 26px;
  }
}

@media (max-width: 580px) {
  .ge-home-hero {
    padding-bottom: 74px;
  }

  .ge-home-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.3rem);
  }

  .ge-home-card,
  .ge-home-surface,
  .ge-home-banner {
    padding: 22px;
  }

  .ge-home-card-grid {
    margin-top: -26px;
  }

  .ge-home-banner__content h2,
  .ge-home-split__content h2 {
    font-size: clamp(2.3rem, 12vw, 3.5rem);
  }
}
