/* Folk Heart Designs — ce-style.css */
:root {
  --ce-cream: #F5F0E8;
  --ce-warm-white: #FDFAF5;
  --ce-charcoal: #1C1C1C;
  --ce-ink: #2A2A2A;
  --ce-clay: #C4724A;
  --ce-clay-light: #E8A882;
  --ce-sage: #7A9E7E;
  --ce-sage-light: #A8C5AA;
  --ce-terracotta: #B85C38;
  --ce-gold: #D4A843;
  --ce-gold-light: #F0CC7A;
  --ce-muted: #8A8070;
  --ce-border: #DDD5C5;
  --ce-font-display: 'Playfair Display', Georgia, serif;
  --ce-font-body: 'Poppins', sans-serif;
  --ce-font-accent: 'Inter', sans-serif;
  --ce-radius: 4px;
  --ce-transition: 0.3s ease;
  --ce-shadow: 0 4px 24px rgba(28,28,28,0.08);
  --ce-shadow-lg: 0 12px 48px rgba(28,28,28,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ce-font-body);
  background: var(--ce-warm-white);
  color: var(--ce-ink);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ce-clay); text-decoration: none; transition: color var(--ce-transition); }
a:hover { color: var(--ce-terracotta); }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ce-font-display);
  color: var(--ce-charcoal);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; font-family: var(--ce-font-body); font-weight: 600; }

p { margin-bottom: 1.2rem; color: var(--ce-ink); }

/* ── Layout ── */
.ce-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.ce-container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.ce-section { padding: 80px 0; }
.ce-section-lg { padding: 120px 0; }

/* ── Navigation ── */
.ce-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253, 250, 245, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ce-border);
  transition: all 0.3s ease;
}
.ce-nav.ce-nav-scrolled {
  box-shadow: 0 2px 20px rgba(28,28,28,0.08);
}
.ce-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.ce-nav-logo {
  font-family: var(--ce-font-display);
  font-size: 1.4rem; font-weight: 800;
  color: var(--ce-charcoal);
  letter-spacing: -0.5px;
}
.ce-nav-logo span { color: var(--ce-clay); }
.ce-nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.ce-nav-links a {
  font-family: var(--ce-font-accent);
  font-size: 0.85rem; font-weight: 500;
  color: var(--ce-muted); letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
}
.ce-nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--ce-clay);
  transition: width 0.3s ease;
}
.ce-nav-links a:hover { color: var(--ce-charcoal); }
.ce-nav-links a:hover::after { width: 100%; }

.ce-nav-cta {
  background: var(--ce-charcoal); color: var(--ce-cream) !important;
  padding: 10px 22px; border-radius: 2px;
  font-size: 0.8rem !important; letter-spacing: 1px !important;
  text-transform: uppercase; font-weight: 600 !important;
}
.ce-nav-cta::after { display: none !important; }
.ce-nav-cta:hover { background: var(--ce-clay); color: white !important; }

.ce-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px;
}
.ce-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--ce-charcoal); transition: all 0.3s ease;
}
.ce-mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--ce-warm-white); border-bottom: 1px solid var(--ce-border);
  padding: 24px; z-index: 999;
}
.ce-mobile-menu.ce-open { display: block; }
.ce-mobile-menu ul { list-style: none; }
.ce-mobile-menu ul li { border-bottom: 1px solid var(--ce-border); }
.ce-mobile-menu ul li a {
  display: block; padding: 14px 0;
  font-family: var(--ce-font-accent); font-size: 0.9rem;
  color: var(--ce-ink); text-transform: uppercase; letter-spacing: 0.5px;
}

/* ── Buttons ── */
.ce-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; font-family: var(--ce-font-accent);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: all 0.3s ease; text-decoration: none;
  border-radius: 2px;
}
.ce-btn-primary {
  background: var(--ce-charcoal); color: var(--ce-cream);
}
.ce-btn-primary:hover {
  background: var(--ce-clay); color: white;
  transform: translateY(-2px);
}
.ce-btn-outline {
  background: transparent; color: var(--ce-charcoal);
  border: 1.5px solid var(--ce-charcoal);
}
.ce-btn-outline:hover {
  background: var(--ce-charcoal); color: var(--ce-cream);
}
.ce-btn-clay {
  background: var(--ce-clay); color: white;
}
.ce-btn-clay:hover {
  background: var(--ce-terracotta); color: white;
  transform: translateY(-2px);
}

/* ── Hero ── */
.ce-hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--ce-cream);
  padding-top: 72px;
}
.ce-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.ce-hero-content { position: relative; z-index: 2; }
.ce-hero-label {
  font-family: var(--ce-font-accent);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--ce-clay);
  margin-bottom: 24px;
}
.ce-hero-title {
  font-size: clamp(2.5rem, 7vw, 4rem);
  line-height: 1.05; font-weight: 900;
  color: var(--ce-charcoal);
  margin-bottom: 28px;
}
.ce-hero-title em { color: var(--ce-clay); font-style: italic; }
.ce-hero-subtitle {
  font-size: 1.1rem; color: var(--ce-muted);
  max-width: 480px; margin-bottom: 40px; font-weight: 400;
}
.ce-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Page Hero (inner pages) ── */
.ce-page-hero {
  padding: 140px 0 80px;
  background: var(--ce-cream);
  position: relative; overflow: hidden;
}
.ce-page-hero-label {
  font-family: var(--ce-font-accent);
  font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--ce-clay); margin-bottom: 16px;
}
.ce-page-hero h1 { margin-bottom: 20px; }
.ce-page-hero p { font-size: 1.1rem; color: var(--ce-muted); max-width: 620px; }

/* ── Cards ── */
.ce-card {
  background: white; border-radius: var(--ce-radius);
  overflow: hidden; transition: all 0.3s ease;
  box-shadow: var(--ce-shadow);
}
.ce-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ce-shadow-lg);
}
.ce-card-img { overflow: hidden; }
.ce-card-img img {
  width: 100%; height: 240px; object-fit: cover;
  transition: transform 0.5s ease;
}
.ce-card:hover .ce-card-img img { transform: scale(1.05); }
.ce-card-body { padding: 28px; }
.ce-card-tag {
  font-family: var(--ce-font-accent);
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ce-clay); font-weight: 600; margin-bottom: 10px;
}
.ce-card-title { margin-bottom: 12px; font-size: 1.2rem; }
.ce-card-text { color: var(--ce-muted); font-size: 0.9rem; }

/* ── Grid ── */
.ce-grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.ce-grid-2 {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 48px; align-items: center;
}
.ce-grid-4 {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ── Divider ── */
.ce-divider {
  width: 60px; height: 3px; background: var(--ce-clay);
  margin-bottom: 24px;
}
.ce-divider-center { margin: 0 auto 24px; }

/* ── Section Headers ── */
.ce-section-header { margin-bottom: 56px; }
.ce-section-header.ce-center { text-align: center; }
.ce-section-header .ce-divider { display: inline-block; }
.ce-section-label {
  font-family: var(--ce-font-accent);
  font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--ce-clay); font-weight: 600; margin-bottom: 12px;
}
.ce-section-header h2 { margin-bottom: 16px; }
.ce-section-header p { color: var(--ce-muted); font-size: 1rem; max-width: 560px; }
.ce-section-header.ce-center p { margin: 0 auto; }

/* ── Quote ── */
.ce-quote {
  border-left: 3px solid var(--ce-clay);
  padding: 20px 32px; margin: 40px 0;
  background: var(--ce-cream);
}
.ce-quote p {
  font-family: var(--ce-font-display);
  font-size: 1.3rem; font-style: italic;
  color: var(--ce-charcoal); margin: 0;
}
.ce-quote cite {
  display: block; margin-top: 12px;
  font-family: var(--ce-font-accent);
  font-size: 0.8rem; color: var(--ce-muted);
  font-style: normal; letter-spacing: 1px;
}

/* ── Tag / Badge ── */
.ce-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--ce-cream); border: 1px solid var(--ce-border);
  font-family: var(--ce-font-accent);
  font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--ce-muted); border-radius: 2px;
}

/* ── Reading Progress ── */
.ce-reading-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--ce-clay); z-index: 2000; width: 0;
  transition: width 0.1s linear;
}

/* ── Footer ── */
.ce-footer {
  background: var(--ce-charcoal); color: rgba(255,255,255,0.7);
  padding: 72px 0 32px;
}
.ce-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.ce-footer-brand-name {
  font-family: var(--ce-font-display);
  font-size: 1.5rem; font-weight: 800;
  color: white; margin-bottom: 16px;
}
.ce-footer-brand-name span { color: var(--ce-clay-light); }
.ce-footer-tagline {
  font-size: 0.9rem; line-height: 1.6;
  margin-bottom: 24px; color: rgba(255,255,255,0.5);
}
.ce-footer-social { display: flex; gap: 16px; }
.ce-footer-social a {
  width: 38px; height: 38px; border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: all 0.3s ease;
}
.ce-footer-social a:hover {
  background: var(--ce-clay); border-color: var(--ce-clay);
  color: white;
}
.ce-footer-heading {
  font-family: var(--ce-font-accent);
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 20px; font-weight: 600;
}
.ce-footer-links { list-style: none; }
.ce-footer-links li { margin-bottom: 10px; }
.ce-footer-links a {
  color: rgba(255,255,255,0.6); font-size: 0.9rem;
  transition: color 0.3s ease;
}
.ce-footer-links a:hover { color: var(--ce-clay-light); }
.ce-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.ce-footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin: 0; }
.ce-footer-legal { display: flex; gap: 24px; }
.ce-footer-legal a {
  font-size: 0.75rem; color: rgba(255,255,255,0.35);
}
.ce-footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── Cookie Banner ── */
.ce-cookie-banner {
  position: fixed; bottom: 24px; left: 24px; right: 24px;
  max-width: 520px; background: var(--ce-charcoal);
  border-radius: 4px; padding: 24px; z-index: 9999;
  box-shadow: 0 8px 48px rgba(0,0,0,0.3);
  display: none;
}
.ce-cookie-banner.ce-visible { display: block; }
.ce-cookie-banner p {
  color: rgba(255,255,255,0.75); font-size: 0.85rem;
  margin-bottom: 16px;
}
.ce-cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.ce-cookie-accept {
  background: var(--ce-clay); color: white;
  border: none; padding: 10px 20px; border-radius: 2px;
  font-family: var(--ce-font-accent); font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.5px; cursor: pointer;
  transition: background 0.3s ease;
}
.ce-cookie-accept:hover { background: var(--ce-terracotta); }
.ce-cookie-decline {
  background: transparent; color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2); padding: 10px 20px;
  border-radius: 2px; font-family: var(--ce-font-accent); font-size: 0.8rem;
  cursor: pointer; transition: all 0.3s ease;
}
.ce-cookie-decline:hover { border-color: rgba(255,255,255,0.4); color: white; }

/* ── Form ── */
.ce-form-group { margin-bottom: 24px; }
.ce-form-label {
  display: block; font-family: var(--ce-font-accent);
  font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--ce-muted); font-weight: 600; margin-bottom: 8px;
}
.ce-form-input, .ce-form-textarea, .ce-form-select {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--ce-border);
  background: white; border-radius: var(--ce-radius);
  font-family: var(--ce-font-body); font-size: 0.95rem;
  color: var(--ce-ink); transition: border-color 0.3s ease;
  outline: none;
}
.ce-form-input:focus, .ce-form-textarea:focus, .ce-form-select:focus {
  border-color: var(--ce-clay);
}
.ce-form-textarea { min-height: 140px; resize: vertical; }
.ce-form-error {
  color: #c0392b; font-size: 0.8rem; margin-top: 6px; display: none;
}
.ce-form-error.ce-show { display: block; }
.ce-field-invalid .ce-form-input,
.ce-field-invalid .ce-form-textarea { border-color: #c0392b; }

/* ── Article ── */
.ce-article-hero { margin-bottom: 48px; }
.ce-article-hero img {
  width: 100%; height: 480px; object-fit: cover;
  border-radius: var(--ce-radius);
}
.ce-article-body h2 { margin: 48px 0 20px; font-size: 1.8rem; }
.ce-article-body h3 { margin: 36px 0 16px; font-size: 1.35rem; }
.ce-article-body p { font-size: 1.05rem; line-height: 1.85; color: #3A3A3A; margin-bottom: 1.4rem; }
.ce-article-body img {
  border-radius: var(--ce-radius); margin: 32px 0;
}
.ce-article-meta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.ce-article-meta span {
  font-size: 0.8rem; color: var(--ce-muted);
  font-family: var(--ce-font-accent);
}
.ce-article-meta .ce-dot { color: var(--ce-border); }

/* ── Stats ── */
.ce-stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--ce-border);
  border: 1px solid var(--ce-border); border-radius: var(--ce-radius);
  overflow: hidden; margin: 48px 0;
}
.ce-stat-cell {
  background: var(--ce-cream); padding: 32px 24px; text-align: center;
}
.ce-stat-num {
  font-family: var(--ce-font-display);
  font-size: 2.8rem; font-weight: 900; color: var(--ce-clay);
  display: block; margin-bottom: 8px;
}
.ce-stat-label { font-size: 0.85rem; color: var(--ce-muted); }

/* ── Timeline ── */
.ce-timeline { position: relative; padding-left: 32px; }
.ce-timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--ce-border);
}
.ce-timeline-item {
  position: relative; margin-bottom: 48px;
  opacity: 0; transform: translateX(-20px);
  transition: all 0.6s ease;
}
.ce-timeline-item.ce-visible { opacity: 1; transform: translateX(0); }
.ce-timeline-dot {
  position: absolute; left: -39px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--ce-clay); border: 3px solid var(--ce-cream);
  box-shadow: 0 0 0 2px var(--ce-clay);
}
.ce-timeline-year {
  font-family: var(--ce-font-accent);
  font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ce-clay); font-weight: 600; margin-bottom: 8px;
}
.ce-timeline-title { font-size: 1.1rem; margin-bottom: 8px; }
.ce-timeline-text { font-size: 0.9rem; color: var(--ce-muted); }

/* ── Service Card ── */
.ce-service-card {
  padding: 40px; border: 1px solid var(--ce-border);
  background: white; border-radius: var(--ce-radius);
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.ce-service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--ce-clay);
  transition: height 0.3s ease;
}
.ce-service-card:hover { box-shadow: var(--ce-shadow-lg); }
.ce-service-card:hover::before { height: 100%; }
.ce-service-icon {
  width: 52px; height: 52px; background: var(--ce-cream);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; font-size: 1.3rem; color: var(--ce-clay);
}
.ce-service-card h3 { margin-bottom: 12px; font-size: 1.3rem; }
.ce-service-card p { color: var(--ce-muted); font-size: 0.9rem; margin-bottom: 20px; }
.ce-service-deliverables {
  list-style: none; margin-bottom: 24px;
}
.ce-service-deliverables li {
  font-size: 0.85rem; color: var(--ce-muted);
  padding: 6px 0; border-bottom: 1px solid var(--ce-border);
  display: flex; gap: 10px; align-items: center;
}
.ce-service-deliverables li i { color: var(--ce-sage); font-size: 0.7rem; }
.ce-service-disclaimer {
  font-size: 0.78rem; color: var(--ce-muted);
  padding-top: 16px; border-top: 1px solid var(--ce-border);
  font-style: italic;
}

/* ── Team Card ── */
.ce-team-card {
  text-align: center;
  opacity: 0; transform: translateY(20px);
  transition: all 0.5s ease;
}
.ce-team-card.ce-visible { opacity: 1; transform: translateY(0); }
.ce-team-img-wrap {
  width: 140px; height: 140px; border-radius: 50%;
  overflow: hidden; margin: 0 auto 20px;
  border: 3px solid var(--ce-cream);
  box-shadow: 0 4px 20px rgba(28,28,28,0.1);
}
.ce-team-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.ce-team-name { font-size: 1.1rem; margin-bottom: 4px; }
.ce-team-role {
  font-family: var(--ce-font-accent);
  font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ce-clay); margin-bottom: 12px;
}
.ce-team-bio { font-size: 0.85rem; color: var(--ce-muted); line-height: 1.65; }

/* ── Testimonial ── */
.ce-testimonial {
  background: var(--ce-cream); padding: 40px;
  border-radius: var(--ce-radius); position: relative;
}
.ce-testimonial::before {
  content: '\201C';
  font-family: var(--ce-font-display);
  font-size: 5rem; color: var(--ce-clay);
  opacity: 0.3; position: absolute; top: 12px; left: 24px;
  line-height: 1;
}
.ce-testimonial-text {
  font-family: var(--ce-font-display);
  font-size: 1.1rem; font-style: italic; color: var(--ce-charcoal);
  line-height: 1.65; margin-bottom: 24px; padding-top: 24px;
}
.ce-testimonial-author { display: flex; align-items: center; gap: 14px; }
.ce-testimonial-author img {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
}
.ce-testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--ce-charcoal); }
.ce-testimonial-title { font-size: 0.78rem; color: var(--ce-muted); }

/* ── Quiz ── */
.ce-quiz-module {
  background: var(--ce-cream); border: 1px solid var(--ce-border);
  border-radius: var(--ce-radius); padding: 48px;
}
.ce-quiz-question {
  font-family: var(--ce-font-display);
  font-size: 1.4rem; font-weight: 700; color: var(--ce-charcoal);
  margin-bottom: 28px;
}
.ce-quiz-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.ce-quiz-option {
  padding: 16px 24px; border: 1.5px solid var(--ce-border);
  background: white; border-radius: var(--ce-radius);
  cursor: pointer; transition: all 0.2s ease;
  font-size: 0.95rem; text-align: left;
  font-family: var(--ce-font-body);
}
.ce-quiz-option:hover { border-color: var(--ce-clay); background: white; }
.ce-quiz-option.ce-selected { border-color: var(--ce-clay); background: rgba(196,114,74,0.06); }
.ce-quiz-nav { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.ce-quiz-progress { font-size: 0.8rem; color: var(--ce-muted); }
.ce-quiz-result {
  display: none; padding: 32px; background: white;
  border-radius: var(--ce-radius); border: 1.5px solid var(--ce-clay);
}
.ce-quiz-result.ce-active { display: block; }
.ce-quiz-result h4 { color: var(--ce-clay); margin-bottom: 12px; }
.ce-quiz-result p { color: var(--ce-muted); font-size: 0.9rem; }

/* ── Path Selector ── */
.ce-path-selector { margin: 48px 0; }
.ce-path-tabs {
  display: flex; gap: 0; border-bottom: 2px solid var(--ce-border);
  margin-bottom: 40px; flex-wrap: wrap;
}
.ce-path-tab {
  padding: 14px 28px;
  font-family: var(--ce-font-accent);
  font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase;
  font-weight: 600; color: var(--ce-muted); cursor: pointer;
  border: none; background: none; position: relative;
  transition: color 0.3s ease;
}
.ce-path-tab::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--ce-clay); transform: scaleX(0);
  transition: transform 0.3s ease;
}
.ce-path-tab.ce-active { color: var(--ce-charcoal); }
.ce-path-tab.ce-active::after { transform: scaleX(1); }
.ce-path-panel { display: none; }
.ce-path-panel.ce-active { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }

/* ── Quote Carousel ── */
.ce-quote-carousel { text-align: center; padding: 60px 0; }
.ce-quote-carousel-item { display: none; }
.ce-quote-carousel-item.ce-active { display: block; }
.ce-quote-carousel blockquote {
  font-family: var(--ce-font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic; color: #fff;
  line-height: 1.4; margin-bottom: 20px; max-width: 800px; margin-inline: auto;
}
.ce-quote-carousel cite {
  font-family: var(--ce-font-accent); font-size: 0.8rem;
  color: var(--ce-clay); letter-spacing: 1px; text-transform: uppercase;
}
.ce-carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.ce-dot-btn {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ce-border); border: none; cursor: pointer; padding: 0;
  transition: all 0.3s ease;
}
.ce-dot-btn.ce-active { background: var(--ce-clay); width: 24px; border-radius: 4px; }

/* ── Portfolio Grid ── */
.ce-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.ce-portfolio-item { position: relative; overflow: hidden; border-radius: var(--ce-radius); }
.ce-portfolio-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.ce-portfolio-item:hover img { transform: scale(1.05); }
.ce-portfolio-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,28,28,0.85) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s ease;
  display: flex; align-items: flex-end; padding: 24px;
}
.ce-portfolio-item:hover .ce-portfolio-item-overlay { opacity: 1; }
.ce-portfolio-item-meta { color: white; }
.ce-portfolio-item-tag { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--ce-clay-light); margin-bottom: 4px; font-family: var(--ce-font-accent); }
.ce-portfolio-item-title { font-family: var(--ce-font-display); font-size: 1.1rem; }
.ce-pi-1 { grid-column: span 7; height: 400px; }
.ce-pi-2 { grid-column: span 5; height: 400px; }
.ce-pi-3 { grid-column: span 4; height: 300px; }
.ce-pi-4 { grid-column: span 4; height: 300px; }
.ce-pi-5 { grid-column: span 4; height: 300px; }

/* ── Map ── */
.ce-map-wrap {
  border-radius: var(--ce-radius); overflow: hidden;
  box-shadow: var(--ce-shadow);
}
.ce-map-wrap iframe { display: block; }

/* ── Process Steps ── */
.ce-process-steps { counter-reset: steps; }
.ce-process-step {
  display: flex; gap: 32px; margin-bottom: 48px;
  opacity: 0; transform: translateY(20px); transition: all 0.5s ease;
}
.ce-process-step.ce-visible { opacity: 1; transform: translateY(0); }
.ce-step-num {
  counter-increment: steps;
  flex-shrink: 0; width: 48px; height: 48px;
  background: var(--ce-cream); border: 2px solid var(--ce-clay);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--ce-font-display); font-size: 1rem; font-weight: 700; color: var(--ce-clay);
}
.ce-step-content h4 { margin-bottom: 8px; }
.ce-step-content p { font-size: 0.9rem; color: var(--ce-muted); margin: 0; }

/* ── CAPTCHA ── */
.ce-captcha-wrap {
  display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
}
.ce-captcha-question {
  font-size: 0.9rem; color: var(--ce-ink);
}
.ce-captcha-input {
  width: 80px; padding: 10px 12px;
  border: 1.5px solid var(--ce-border);
  border-radius: var(--ce-radius); font-size: 0.9rem;
  text-align: center; outline: none;
}
.ce-captcha-input:focus { border-color: var(--ce-clay); }

/* ── Thank You ── */
.ce-thankyou-hero {
  min-height: 60vh; display: flex; align-items: center;
  justify-content: center; text-align: center;
  padding: 120px 24px 80px;
}
.ce-thankyou-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(122,158,126,0.15); display: flex;
  align-items: center; justify-content: center;
  font-size: 2rem; color: var(--ce-sage); margin: 0 auto 28px;
}

/* ── Legal Pages ── */
.ce-legal-body { margin: 0 auto; padding: 48px 24px; }
.ce-legal-body h2 { font-size: 1.5rem; margin: 40px 0 16px; }
.ce-legal-body h3 { font-size: 1.15rem; margin: 28px 0 12px; }
.ce-legal-body p, .ce-legal-body li { font-size: 0.95rem; color: #4A4A4A; line-height: 1.8; }
.ce-legal-body ul, .ce-legal-body ol { padding-left: 24px; margin-bottom: 1.2rem; }
.ce-legal-body li { margin-bottom: 6px; }
.ce-legal-updated { font-size: 0.8rem; color: var(--ce-muted); margin-bottom: 32px; }

/* ── Scroll Reveal ── */
.ce-reveal {
  opacity: 0; transform: translateY(30px); transition: all 0.6s ease;
}
.ce-reveal.ce-visible { opacity: 1; transform: translateY(0); }
.ce-reveal-left {
  opacity: 0; transform: translateX(-30px); transition: all 0.6s ease;
}
.ce-reveal-left.ce-visible { opacity: 1; transform: translateX(0); }

/* ── Archive / Long-read ── */
.ce-archive-hero {
  background: var(--ce-charcoal); color: white; padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.ce-archive-hero h1 { color: white; font-size: clamp(2.5rem, 5vw, 4.5rem); }
.ce-archive-hero p { color: rgba(255,255,255,0.6); font-size: 1.1rem; }
.ce-archive-hero .ce-page-hero-label { color: var(--ce-clay-light); }
.ce-pull-quote {
  background: var(--ce-charcoal); color: white;
  padding: 48px; border-radius: var(--ce-radius);
  margin: 56px 0; text-align: center;
}
.ce-pull-quote p {
  font-family: var(--ce-font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic; line-height: 1.4; color: white; margin: 0;
}
.ce-pull-quote span {
  display: block; margin-top: 16px;
  font-family: var(--ce-font-accent);
  font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ce-clay-light);
}
.ce-full-img {
  width: 100%; height: 500px; object-fit: cover;
  border-radius: var(--ce-radius); margin: 48px 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ce-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .ce-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .ce-nav-links { display: none; }
  .ce-hamburger { display: flex; }
  .ce-grid-3 { grid-template-columns: 1fr; }
  .ce-grid-2 { grid-template-columns: 1fr; }
  .ce-grid-4 { grid-template-columns: 1fr; }
  .ce-portfolio-grid { grid-template-columns: 1fr 1fr; }
  .ce-pi-1, .ce-pi-2, .ce-pi-3, .ce-pi-4, .ce-pi-5 { grid-column: span 1; height: 220px; }
  .ce-footer-grid { grid-template-columns: 1fr; }
  .ce-path-panel.ce-active { grid-template-columns: 1fr; }
  .ce-stat-row { grid-template-columns: 1fr; }
  .ce-quiz-module { padding: 28px; }
  .ce-footer-bottom { flex-direction: column; text-align: center; }
  .ce-footer-legal { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .ce-hero-title { font-size: clamp(2.5rem, 10vw, 3.5rem); }
}

@media (max-width: 480px) {
  .ce-portfolio-grid { grid-template-columns: 1fr; }
  .ce-pi-1, .ce-pi-2, .ce-pi-3, .ce-pi-4, .ce-pi-5 { height: 260px; }
  .ce-path-tabs { overflow-x: auto; }
}

/* ── Legal Pages ── */
.ce-legal-hero {
  background: linear-gradient(135deg, var(--ce-charcoal) 0%, #2d2d2d 100%);
  padding: 140px 0 60px;
  color: var(--ce-cream);
}
.ce-legal-breadcrumb {
  font-family: var(--ce-font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.ce-legal-breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.ce-legal-breadcrumb a:hover { color: var(--ce-gold); }
.ce-legal-hero-content h1 {
  font-family: var(--ce-font-display);
  font-size: clamp(32px, 5vw, 52px);
  color: var(--ce-cream);
  margin-bottom: 12px;
}
.ce-legal-hero-content p {
  font-family: var(--ce-font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}
.ce-legal-body { padding: 72px 0 100px; background: var(--ce-cream); }
.ce-legal-container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}
.ce-legal-content h2 {
  font-family: var(--ce-font-display);
  font-size: 24px;
  color: var(--ce-charcoal);
  margin: 48px 0 16px;
  border-bottom: 2px solid var(--ce-clay);
  padding-bottom: 10px;
}
.ce-legal-content h2:first-of-type { margin-top: 0; }
.ce-legal-content h3 {
  font-family: var(--ce-font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--ce-charcoal);
  margin: 28px 0 10px;
}
.ce-legal-content p {
  font-family: var(--ce-font-body);
  font-size: 15px;
  line-height: 1.8;
  color: #3a3a3a;
  margin-bottom: 16px;
}
.ce-legal-content ul, .ce-legal-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.ce-legal-content li {
  font-family: var(--ce-font-body);
  font-size: 15px;
  line-height: 1.7;
  color: #3a3a3a;
  margin-bottom: 8px;
}
.ce-legal-content a { color: var(--ce-clay); text-decoration: underline; }
.ce-legal-content a:hover { color: var(--ce-charcoal); }
.ce-legal-intro {
  background: rgba(196,114,74,0.07);
  border-left: 3px solid var(--ce-clay);
  padding: 20px 24px;
  border-radius: 0 6px 6px 0;
  margin-bottom: 40px;
}
.ce-legal-intro p { margin-bottom: 0; }
.ce-legal-contact {
  background: #f0ece4;
  border-radius: 8px;
  padding: 20px 24px;
  margin: 16px 0 24px;
}
.ce-legal-contact p { margin: 0; font-size: 14px; line-height: 1.9; }
.ce-legal-table-wrap { overflow-x: auto; margin: 16px 0 24px; }
.ce-legal-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--ce-font-body);
  font-size: 14px;
}
.ce-legal-table th {
  background: var(--ce-charcoal);
  color: var(--ce-cream);
  padding: 10px 14px;
  text-align: left;
  font-weight: 500;
}
.ce-legal-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #e0d8cc;
  color: #3a3a3a;
}
.ce-legal-table tr:nth-child(even) td { background: #f8f4ee; }

/* Legal sidebar */
.ce-legal-sidebar { position: sticky; top: 100px; }
.ce-legal-toc, .ce-legal-related {
  background: white;
  border: 1px solid #e0d8cc;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 20px;
}
.ce-legal-toc h4, .ce-legal-related h4 {
  font-family: var(--ce-font-display);
  font-size: 16px;
  color: var(--ce-charcoal);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0d8cc;
}
.ce-legal-toc ol {
  padding-left: 20px;
  margin: 0;
}
.ce-legal-toc li {
  font-family: var(--ce-font-body);
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
  line-height: 1.4;
}
.ce-legal-related ul { list-style: none; padding: 0; margin: 0; }
.ce-legal-related li { margin-bottom: 10px; }
.ce-legal-related a {
  font-family: var(--ce-font-body);
  font-size: 13px;
  color: var(--ce-clay);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ce-legal-related a::before { content: '→'; color: var(--ce-clay); font-size: 11px; }
.ce-legal-related a:hover { color: var(--ce-charcoal); }

@media (max-width: 900px) {
  .ce-legal-container { grid-template-columns: 1fr; }
  .ce-legal-sidebar { position: static; }
}

/* ── Article styles (hero, body, sidebar) ── */
.ce-article-hero {
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}
.ce-article-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.ce-article-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,28,28,0.92) 0%, rgba(28,28,28,0.5) 60%, rgba(28,28,28,0.1) 100%);
}
.ce-article-hero-content {
  position: relative; z-index: 2;
  padding: 80px 0 56px;
  max-width: 800px;
}
.ce-article-meta-top {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.ce-article-category {
  background: var(--ce-clay); color: white;
  font-family: var(--ce-font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 4px;
}
.ce-article-read-time {
  font-family: var(--ce-font-body); font-size: 13px;
  color: rgba(245,240,232,0.6);
  display: flex; align-items: center; gap: 6px;
}
.ce-article-title-hero {
  font-family: var(--ce-font-display);
  font-size: clamp(28px, 5vw, 52px);
  color: var(--ce-cream); line-height: 1.1; margin-bottom: 16px;
}
.ce-article-subtitle-hero {
  font-family: var(--ce-font-body); font-size: 17px; line-height: 1.65;
  color: rgba(245,240,232,0.75); margin-bottom: 28px; max-width: 640px;
}
.ce-article-author-bar {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.15); padding-top: 20px;
}
.ce-author-avatar {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(212,168,67,0.5);
}
.ce-article-author-bar > div { display: flex; flex-direction: column; gap: 2px; }
.ce-author-name {
  font-family: var(--ce-font-body); font-size: 14px; font-weight: 600;
  color: var(--ce-cream);
}
.ce-author-role { font-family: var(--ce-font-body); font-size: 12px; color: rgba(245,240,232,0.5); }
.ce-article-date { margin-left: auto; font-family: var(--ce-font-body); font-size: 12px; color: rgba(245,240,232,0.4); }

/* Article body layout */
.ce-article-body { background: var(--ce-cream); padding: 60px 20px; }
.ce-article-container { display: grid; grid-template-columns: 1fr 300px; gap: 64px; align-items: start; }
.ce-article-content { min-width: 0; }
.ce-article-lead {
  font-family: var(--ce-font-body); font-size: 19px; line-height: 1.75;
  color: var(--ce-charcoal); font-weight: 500; margin-bottom: 32px;
}
.ce-article-content h2 {
  font-family: var(--ce-font-display); font-size: clamp(22px, 3vw, 30px);
  color: var(--ce-charcoal); margin: 48px 0 18px; line-height: 1.25;
}
.ce-article-content p {
  font-family: var(--ce-font-body); font-size: 16px; line-height: 1.85;
  color: #3a3a3a; margin-bottom: 24px;
}
.ce-article-figure { margin: 40px 0; }
.ce-article-figure img { width: 100%; border-radius: 8px; display: block; }
.ce-article-figure figcaption {
  font-family: var(--ce-font-body); font-size: 13px; color: #888;
  margin-top: 10px; text-align: center; font-style: italic;
}
.ce-article-blockquote {
  border-left: 3px solid var(--ce-clay); padding: 20px 28px;
  margin: 40px 0; background: rgba(196,114,74,0.05); border-radius: 0 8px 8px 0;
}
.ce-article-blockquote p {
  font-family: var(--ce-font-display); font-style: italic;
  font-size: 19px; line-height: 1.55; color: var(--ce-charcoal); margin: 0;
}
.ce-article-list { padding-left: 24px; margin-bottom: 24px; }
.ce-article-list li {
  font-family: var(--ce-font-body); font-size: 16px; line-height: 1.7;
  color: #3a3a3a; margin-bottom: 12px;
}

/* Author bio */
.ce-article-author-bio {
  display: flex; gap: 20px; align-items: flex-start;
  background: #f0ece4; border-radius: 12px; padding: 28px;
  margin-top: 56px;
}
.ce-author-bio-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.ce-author-bio-text h4 {
  font-family: var(--ce-font-display); font-size: 18px;
  color: var(--ce-charcoal); margin-bottom: 8px;
}
.ce-author-bio-text p { font-family: var(--ce-font-body); font-size: 14px; line-height: 1.7; color: #555; margin: 0; }

/* Related articles */
.ce-article-related { margin-top: 56px; }
.ce-article-related h3 {
  font-family: var(--ce-font-display); font-size: 22px;
  color: var(--ce-charcoal); margin-bottom: 24px;
}
.ce-related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ce-related-card {
  text-decoration: none; background: white;
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.ce-related-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.ce-related-card img { width: 100%; height: 140px; object-fit: cover; display: block; }
.ce-related-card-body { padding: 16px; }
.ce-related-cat {
  font-family: var(--ce-font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; color: var(--ce-clay);
  display: block; margin-bottom: 8px;
}
.ce-related-card-body h4 {
  font-family: var(--ce-font-display); font-size: 15px;
  color: var(--ce-charcoal); line-height: 1.4; margin: 0;
}

/* Article sidebar */
.ce-article-sidebar { position: sticky; top: 100px; }
.ce-sidebar-widget {
  background: white; border: 1px solid #e0d8cc;
  border-radius: 10px; padding: 24px; margin-bottom: 20px;
}
.ce-widget-title {
  font-family: var(--ce-font-display); font-size: 16px;
  color: var(--ce-charcoal); margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 1px solid #e0d8cc;
}
.ce-toc-list { list-style: none; padding: 0; margin: 0; }
.ce-toc-list li { margin-bottom: 10px; }
.ce-toc-list a {
  font-family: var(--ce-font-body); font-size: 13px; color: #666;
  text-decoration: none; line-height: 1.4;
  display: flex; align-items: flex-start; gap: 8px;
}
.ce-toc-list a::before { content: '·'; color: var(--ce-clay); flex-shrink: 0; margin-top: 1px; }
.ce-sticky-widget { position: sticky; top: 100px; }
.ce-sidebar-articles { display: flex; flex-direction: column; gap: 14px; }
.ce-sidebar-article-link {
  display: flex; gap: 12px; align-items: center; text-decoration: none;
}
.ce-sidebar-article-link img {
  width: 52px; height: 52px; border-radius: 6px; object-fit: cover; flex-shrink: 0;
}
.ce-sidebar-article-link span {
  font-family: var(--ce-font-body); font-size: 13px; color: #555; line-height: 1.4;
}
.ce-sidebar-article-link:hover span { color: var(--ce-clay); }
.ce-sidebar-cta { background: var(--ce-charcoal) !important; border-color: var(--ce-charcoal) !important; }
.ce-sidebar-cta h4 { font-family: var(--ce-font-display); font-size: 16px; color: var(--ce-cream); margin-bottom: 10px; }
.ce-sidebar-cta p { font-family: var(--ce-font-body); font-size: 13px; color: rgba(245,240,232,0.65); line-height: 1.6; margin-bottom: 16px; }
.ce-sidebar-cta .ce-btn-primary { width: 100%; text-align: center; }

@media (max-width: 900px) {
  .ce-article-container { grid-template-columns: 1fr; }
  .ce-article-sidebar { position: static; }
  .ce-related-grid { grid-template-columns: 1fr; }
}

.logo{
  width: 150px;
}

html{
  overflow-x: hidden;
}

.advertorial-bar {
    background: #fff;
    border-bottom: 1px solid #d4a017;
    padding: 10px 24px;
    font-family: var(--font-ui);
    font-size: .78rem;
    color: #7a5a00;
    text-align: center;
    line-height: 1.55;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
}