:root {
  --ce-bg: #f7f1e8;
  --ce-surface: #fffdf9;
  --ce-surface-strong: #f1e7dc;
  --ce-surface-sage: #dde4da;
  --ce-surface-lilac: #e8e1ea;
  --ce-text: #4f4a43;
  --ce-text-soft: #7d7368;
  --ce-heading: #2d3b33;
  --ce-border: rgba(78, 65, 52, 0.12);
  --ce-accent: #b66c5a;
  --ce-accent-dark: #945240;
  --ce-sage: #7f9582;
  --ce-shadow: 0 24px 60px rgba(94, 74, 53, 0.12);
  --ce-radius: 28px;
  --ce-container: 1320px;
  --ce-serif: 'Cormorant Garamond', Georgia, serif;
  --ce-sans: 'Manrope', Arial, sans-serif;
}

body {
  background: linear-gradient(180deg, #fbf7f1 0%, #f3ece3 100%);
  color: var(--ce-text);
  font-family: var(--ce-sans);
}

body,
button,
input,
select,
textarea {
  font-family: var(--ce-sans);
}

h1,
h2,
h3,
h4,
h5,
h6,
.ce-brand__title,
.ce-footer__title {
  color: var(--ce-heading);
  font-family: var(--ce-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
}

a {
  color: var(--ce-accent-dark);
}

a:hover,
a:focus {
  color: var(--ce-accent);
}

.container,
.site-content.container,
.site-footer.container,
.site-header .container {
  max-width: var(--ce-container);
}

.ce-site-content {
  padding-bottom: 0;
}

.ce-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(251, 247, 241, 0.88);
  border-bottom: 1px solid rgba(78, 65, 52, 0.08);
}

.ce-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
  padding: 0.85rem 0;
}

.ce-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex: 0 0 auto;
}

.ce-brand__logo img {
  width: min(320px, 100%);
  height: auto;
}

.ce-brand__text {
  min-width: 0;
}

.ce-brand__title {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  text-decoration: none;
}

.ce-brand__tagline {
  margin: 0.35rem 0 0;
  color: var(--ce-text-soft);
  font-size: 0.95rem;
}

.ce-header__nav-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
  flex: 1 1 auto;
  min-width: 0;
}

.ce-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ce-menu li {
  margin: 0;
}

.ce-menu a {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 0.72rem;
  border-radius: 999px;
  color: var(--ce-heading);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.ce-menu .current-menu-item > a,
.ce-menu a:hover,
.ce-menu a:focus {
  background: rgba(182, 108, 90, 0.12);
  color: var(--ce-accent-dark);
}

.ce-menu-toggle {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
}

.ce-menu-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  margin: 0.3rem 0;
  background: var(--ce-heading);
}

.ce-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.82rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ce-header__cta {
  flex: 0 0 auto;
}

.ce-button:hover,
.ce-button:focus {
  transform: translateY(-1px);
}

.ce-button-primary {
  background: var(--ce-accent);
  color: #fff;
}

.ce-button-primary:hover,
.ce-button-primary:focus {
  background: var(--ce-accent-dark);
  color: #fff;
}

.ce-button-secondary {
  border-color: rgba(182, 108, 90, 0.3);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ce-heading);
}

.ce-button-secondary:hover,
.ce-button-secondary:focus {
  border-color: var(--ce-accent);
  background: rgba(182, 108, 90, 0.1);
}

.ce-home,
.ce-page,
.ce-blog-index,
.ce-single {
  padding-bottom: 6rem;
}

.ce-hero {
  padding: 4.25rem 0 2rem;
}

.ce-hero__grid,
.ce-split,
.ce-page-content__inner,
.ce-final-cta {
  display: grid;
  gap: 2rem;
}

.ce-hero__grid,
.ce-split,
.ce-final-cta {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
}

.ce-hero__content h1,
.ce-page-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(3rem, 5vw, 5.25rem);
  line-height: 0.96;
}

.ce-lead,
.ce-page-hero__subtitle {
  max-width: 50rem;
  color: var(--ce-text-soft);
  font-size: 1.15rem;
  line-height: 1.8;
}

.ce-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1rem;
}

.ce-trust-line {
  margin: 0;
  color: var(--ce-text-soft);
  font-size: 0.98rem;
}

.ce-portrait-card,
.ce-message-card,
.ce-entry-card,
.ce-side-cta,
.ce-service-card,
.ce-step,
.ce-post-card,
.ce-contact-form-card,
.ce-editorial-note,
.ce-quiz-card,
.ce-faq-item,
.ce-final-cta,
.ce-page-hero__inner {
  border: 1px solid var(--ce-border);
  border-radius: var(--ce-radius);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: var(--ce-shadow);
}

.ce-portrait-card {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  background: linear-gradient(160deg, rgba(221, 228, 218, 0.95), rgba(232, 225, 234, 0.9));
}

.ce-portrait-card img,
.ce-split__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--ce-radius) - 8px);
  object-fit: cover;
}

.ce-section,
.ce-page-content {
  padding: 1.5rem 0;
}

.ce-section--soft {
  padding: 2.25rem 0;
}

.ce-section-heading {
  max-width: 44rem;
  margin-bottom: 1.75rem;
}

.ce-section-heading h2,
.ce-split__content h2,
.ce-final-cta h2,
.ce-footer__title,
.ce-side-cta h2 {
  margin: 0.25rem 0 0.85rem;
  font-size: clamp(2.2rem, 3vw, 3.6rem);
  line-height: 1.02;
}

.ce-section-eyebrow,
.ce-footer__eyebrow,
.ce-side-cta__eyebrow,
.ce-service-card__eyebrow,
.ce-post-card__meta {
  margin: 0;
  color: var(--ce-sage);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ce-message-card,
.ce-editorial-note,
.ce-page-hero__inner,
.ce-final-cta {
  padding: 2.25rem;
}

.ce-message-card__text,
.ce-editorial-note p {
  font-size: 1.1rem;
  line-height: 1.9;
}

.ce-card-grid,
.ce-post-grid,
.ce-quiz-grid,
.ce-steps {
  display: grid;
  gap: 1.25rem;
}

.ce-card-grid,
.ce-post-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ce-quiz-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ce-service-card,
.ce-step,
.ce-post-card,
.ce-quiz-card {
  padding: 1.5rem;
}

.ce-service-card p:last-of-type,
.ce-step p:last-child,
.ce-post-card__body p:last-child {
  margin-bottom: 0;
}

.ce-inline-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  color: var(--ce-accent-dark);
  font-weight: 700;
  text-decoration: none;
}

.ce-inline-link::after {
  content: '→';
  margin-left: 0.4rem;
}

.ce-quiz-card {
  display: block;
  color: var(--ce-heading);
  font-weight: 600;
  text-decoration: none;
}

.ce-quiz-card:hover,
.ce-quiz-card:focus {
  background: rgba(127, 149, 130, 0.1);
  color: var(--ce-heading);
}

.ce-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ce-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(182, 108, 90, 0.14);
  color: var(--ce-accent-dark);
  font-family: var(--ce-serif);
  font-size: 1.4rem;
  font-weight: 700;
}

.ce-section__cta {
  margin-top: 1.5rem;
}

.ce-badge-list,
.ce-footer__links,
.ce-side-cta__meta {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.ce-badge-list li,
.ce-footer__links li,
.ce-side-cta__meta li {
  margin-bottom: 0.75rem;
}

.ce-badge-list li {
  position: relative;
  padding-left: 1.4rem;
}

.ce-badge-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--ce-accent);
}

.ce-post-card {
  overflow: hidden;
  padding: 0;
}

.ce-post-card__image img,
.ce-article-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.ce-post-card__body {
  padding: 1.5rem;
}

.ce-faq-list {
  display: grid;
  gap: 1rem;
}

.ce-faq-item__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  border: 0;
  background: transparent;
  color: var(--ce-heading);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
}

.ce-faq-item__panel {
  display: none;
  padding: 0 1.5rem 1.5rem;
  color: var(--ce-text-soft);
}

.ce-faq-item.is-open .ce-faq-item__panel {
  display: block;
}

.ce-faq-item.is-open .ce-faq-item__icon {
  transform: rotate(45deg);
}

.ce-page-hero {
  padding: 3rem 0 1.25rem;
}

.ce-page-content__inner {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
}

.ce-entry-card,
.ce-side-cta {
  padding: 2rem;
}

.ce-entry-card .entry-content > :first-child,
.ce-side-cta > :first-child {
  margin-top: 0;
}

.ce-entry-card .entry-content h2 {
  margin-top: 2rem;
  font-size: 2.1rem;
}

.ce-entry-card .entry-content h3 {
  margin-top: 1.5rem;
  font-size: 1.45rem;
}

.ce-entry-card .entry-content p,
.ce-entry-card .entry-content li {
  color: var(--ce-text);
  line-height: 1.9;
}

.ce-entry-card .entry-content ul {
  padding-left: 1.2rem;
}

.ce-entry-card .entry-content figure {
  margin: 2rem 0;
}

.ce-entry-card .entry-content img {
  border-radius: 22px;
}

.ce-entry-card .entry-content iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
  border-radius: 22px;
}

.ce-side-cta {
  position: sticky;
  top: 6.6rem;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(241, 231, 220, 0.9));
}

.ce-contact-form-card {
  margin-top: 1.5rem;
  padding: 1.5rem;
}

.ce-form-intro {
  margin-top: 0;
  color: var(--ce-text-soft);
}

.ce-contact-form .ce-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.ce-contact-form p {
  margin: 0;
}

.ce-contact-form label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--ce-heading);
  font-size: 0.92rem;
  font-weight: 700;
}

.ce-contact-form input,
.ce-contact-form select,
.ce-contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--ce-border);
  border-radius: 18px;
  background: #fff;
  color: var(--ce-text);
  font-size: 1rem;
}

.ce-form-full {
  grid-column: 1 / -1;
}

.ce-checkbox label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-weight: 500;
}

.ce-checkbox input {
  width: auto;
  margin-top: 0.2rem;
}

.ce-form-notice {
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  font-weight: 700;
}

.ce-form-success {
  background: rgba(127, 149, 130, 0.14);
  color: #35533d;
}

.ce-form-error {
  background: rgba(182, 108, 90, 0.14);
  color: #7c4032;
}

.ce-honeypot {
  display: none;
}

.ce-footer {
  padding: 4rem 0 calc(5rem + 1rem);
  background: #2f3a34;
  color: rgba(255, 255, 255, 0.82);
}

.ce-footer a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.ce-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr 0.75fr;
  gap: 2rem;
}

.ce-footer__title,
.ce-footer__heading {
  color: #fff;
}

.ce-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ce-mobile-bar {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: none;
  gap: 0.65rem;
  z-index: 40;
}

.ce-mobile-bar__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: var(--ce-heading);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(45, 59, 51, 0.16);
  text-decoration: none;
}

.ce-mobile-bar__item--accent {
  background: var(--ce-accent);
  color: #fff;
}

.ce-pagination .nav-links {
  margin-top: 2rem;
}

#secondary,
.widget-area,
.site-header .header-image,
.breadcrumbs,
.header-social-icons {
  display: none;
}

@media (max-width: 1080px) {
  .ce-header__inner,
  .ce-header__nav-wrap {
    gap: 0.75rem;
  }

  .ce-brand__logo img {
    width: min(270px, 100%);
  }

  .ce-menu a {
    padding-inline: 0.75rem;
    font-size: 0.8rem;
  }

  .ce-card-grid,
  .ce-post-grid,
  .ce-quiz-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ce-page-content__inner,
  .ce-steps,
  .ce-footer__grid {
    grid-template-columns: 1fr;
  }

  .ce-side-cta {
    position: static;
  }
}

@media (max-width: 920px) {
  .ce-menu-toggle {
    display: block;
  }

  .ce-brand__logo img {
    width: min(240px, 100%);
  }

  .ce-header__nav-wrap {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--ce-border);
    border-radius: 28px;
    background: rgba(255, 253, 249, 0.98);
    box-shadow: var(--ce-shadow);
  }

  .ce-header__nav-wrap.is-open {
    display: flex;
  }

  .ce-menu {
    flex-direction: column;
    align-items: stretch;
  }

  .ce-menu a,
  .ce-header__cta {
    width: 100%;
    justify-content: center;
  }

  .ce-hero__grid,
  .ce-split,
  .ce-final-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .ce-hero,
  .ce-page-hero {
    padding-top: 2.25rem;
  }

  .ce-message-card,
  .ce-editorial-note,
  .ce-page-hero__inner,
  .ce-final-cta,
  .ce-entry-card,
  .ce-side-cta {
    padding: 1.5rem;
  }

  .ce-card-grid,
  .ce-post-grid,
  .ce-quiz-grid,
  .ce-contact-form .ce-form-grid {
    grid-template-columns: 1fr;
  }

  .ce-mobile-bar {
    display: flex;
  }

  .ce-footer__bottom {
    flex-direction: column;
  }

  .ce-brand__tagline {
    display: none;
  }
}
