: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: "Trebuchet MS", "Gill Sans", "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: "Palatino Linotype", "Book Antiqua", Palatino, 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: "Palatino Linotype", "Book Antiqua", Palatino, 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 {
  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__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: "Palatino Linotype", "Book Antiqua", Palatino, 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;
}

.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 {
    flex-direction: column;
    align-items: flex-start;
  }

  .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%;
  }
}
