/* ============================================================
   JASMINITY CLEANING — main.css
   Prefix: jc-
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --jc-sage:        #7a9e7e;
  --jc-sage-light:  #a8c5aa;
  --jc-sage-dark:   #4d7352;
  --jc-cream:       #faf8f4;
  --jc-warm-white:  #f5f2ec;
  --jc-charcoal:    #2c2c2c;
  --jc-mid:         #5a5a5a;
  --jc-light:       #9a9a9a;
  --jc-border:      #e4e0d8;
  --jc-gold:        #c9a84c;
  --jc-font-display: 'Cormorant Garamond', Georgia, serif;
  --jc-font-body:    'DM Sans', system-ui, sans-serif;
  --jc-radius:      12px;
  --jc-shadow:      0 4px 24px rgba(44,44,44,.08);
  --jc-shadow-lg:   0 12px 48px rgba(44,44,44,.14);
  --jc-transition:  .3s cubic-bezier(.4,0,.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--jc-font-body);
  color: var(--jc-charcoal);
  background: var(--jc-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--jc-sage-dark); text-decoration: none; transition: color var(--jc-transition); }
a:hover { color: var(--jc-sage); }
ul { list-style: none; }

/* ---- Typography ---- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--jc-font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--jc-charcoal);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; color: var(--jc-mid); }
.jc-lead { font-size: 1.15rem; font-weight: 300; color: var(--jc-mid); line-height: 1.8; }

/* ---- Layout Utilities ---- */
.jc-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.jc-section { padding: 96px 0; }
.jc-section-sm { padding: 60px 0; }
.jc-text-center { text-align: center; }
.jc-mt-1 { margin-top: .5rem; }
.jc-mt-2 { margin-top: 1rem; }
.jc-mt-3 { margin-top: 1.5rem; }
.jc-mt-4 { margin-top: 2rem; }
.jc-mb-2 { margin-bottom: 1rem; }
.jc-mb-3 { margin-bottom: 1.5rem; }
.jc-mb-4 { margin-bottom: 2rem; }
.jc-mb-5 { margin-bottom: 3rem; }

/* ---- Section Labels ---- */
.jc-section-label {
  display: inline-block;
  font-family: var(--jc-font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--jc-sage);
  margin-bottom: 1rem;
}
.jc-section-heading { margin-bottom: 1rem; }
.jc-section-sub { max-width: 540px; }
.jc-section-sub.jc-text-center { margin: 0 auto; }

/* ---- Divider ---- */
.jc-divider-wave {
  width: 100%; overflow: hidden; line-height: 0;
  background: transparent;
}
.jc-divider-wave svg { display: block; width: 100%; }

/* ---- Buttons ---- */
.jc-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 2rem; border-radius: 60px;
  font-family: var(--jc-font-body); font-size: .875rem;
  font-weight: 500; letter-spacing: .04em;
  border: none; cursor: pointer;
  transition: all var(--jc-transition);
  text-decoration: none;
}
.jc-btn-primary {
  background: var(--jc-sage); color: #fff;
}
.jc-btn-primary:hover {
  background: var(--jc-sage-dark); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(77,115,82,.3);
}
.jc-btn-outline {
  background: transparent; color: var(--jc-sage-dark);
  border: 1.5px solid var(--jc-sage);
}
.jc-btn-outline:hover {
  background: var(--jc-sage); color: #fff;
  transform: translateY(-2px);
}
.jc-btn-white {
  background: #fff; color: var(--jc-sage-dark);
}
.jc-btn-white:hover {
  background: var(--jc-cream); color: var(--jc-sage-dark);
  transform: translateY(-2px);
}
.jc-btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ---- Navigation ---- */
.jc-navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: background var(--jc-transition), box-shadow var(--jc-transition);
  padding: 20px 0;
}
.jc-navbar.jc-scrolled {
  background: rgba(250,248,244,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(44,44,44,.08);
  padding: 12px 0;
}
.jc-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.jc-nav-logo {
  font-family: var(--jc-font-display); font-size: 1.5rem;
  font-weight: 500; color: var(--jc-charcoal); text-decoration: none;
}
.jc-nav-logo span { color: var(--jc-sage); }
.jc-nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.jc-nav-links a {
  font-size: .875rem; font-weight: 400; color: var(--jc-charcoal);
  letter-spacing: .03em; position: relative; padding-bottom: 2px;
}
.jc-nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--jc-sage);
  transition: width var(--jc-transition);
}
.jc-nav-links a:hover::after, .jc-nav-links a.jc-active::after { width: 100%; }
.jc-nav-links a:hover { color: var(--jc-sage-dark); }
.jc-nav-cta { margin-left: 1rem; }
.jc-nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.jc-nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--jc-charcoal); border-radius: 2px;
  transition: all var(--jc-transition);
}
.jc-mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--jc-cream); padding: 100px 24px 40px;
  flex-direction: column; gap: 2rem;
}
.jc-mobile-menu.jc-open { display: flex; }
.jc-mobile-menu a {
  font-family: var(--jc-font-display); font-size: 2rem;
  color: var(--jc-charcoal); font-weight: 400;
}
.jc-mobile-menu a:hover { color: var(--jc-sage); }

/* ---- Hero ---- */
.jc-hero-cleaning {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #f0ede6 0%, #e8f0e9 100%);
}
.jc-hero-bg-pattern {
  position: absolute; inset: 0; opacity: .04;
  background-image: radial-gradient(circle, var(--jc-sage-dark) 1px, transparent 1px);
  background-size: 32px 32px;
}
.jc-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; width: 100%;
}
.jc-hero-content { z-index: 2; }
.jc-hero-eyebrow {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1.5rem;
}
.jc-hero-eyebrow-line {
  width: 32px; height: 1px; background: var(--jc-sage);
}
.jc-hero-eyebrow-text {
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 600; color: var(--jc-sage);
}
.jc-hero-title { margin-bottom: 1.5rem; }
.jc-hero-title em {
  font-style: italic; color: var(--jc-sage-dark);
}
.jc-hero-desc { font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 440px; }
.jc-hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.jc-hero-trust {
  display: flex; align-items: center; gap: .5rem;
  margin-top: 2.5rem; font-size: .8rem; color: var(--jc-light);
}
.jc-hero-trust i { color: var(--jc-gold); font-size: .8rem; }
.jc-hero-images { position: relative; z-index: 2; }
.jc-hero-img-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.jc-hero-img-main {
  grid-column: 1 / -1; border-radius: 20px; overflow: hidden;
  height: 280px;
}
.jc-hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.jc-hero-img-sm { border-radius: 16px; overflow: hidden; height: 180px; }
.jc-hero-img-sm img { width: 100%; height: 100%; object-fit: cover; }
.jc-hero-badge {
  position: absolute; bottom: -16px; left: 16px;
  background: #fff; border-radius: 16px; padding: 14px 20px;
  box-shadow: var(--jc-shadow-lg); display: flex; align-items: center; gap: 12px;
  z-index: 3;
}
.jc-hero-badge-icon {
  width: 44px; height: 44px; background: var(--jc-sage-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.jc-hero-badge-icon i { color: var(--jc-sage-dark); font-size: 1.1rem; }
.jc-hero-badge-text { font-size: .75rem; font-weight: 600; color: var(--jc-charcoal); }
.jc-hero-badge-text span { display: block; font-weight: 400; color: var(--jc-light); font-size: .7rem; }

/* ---- Trust Bar ---- */
.jc-trust-bar {
  background: var(--jc-charcoal); padding: 28px 0;
}
.jc-trust-bar-inner {
  display: flex; align-items: center; justify-content: space-around;
  gap: 24px; flex-wrap: wrap;
}
.jc-trust-item {
  display: flex; align-items: center; gap: 12px;
  color: #fff; font-size: .875rem;
}
.jc-trust-item i { color: var(--jc-sage-light); font-size: 1.2rem; }

/* ---- Services Grid ---- */
.jc-services-section { background: var(--jc-warm-white); }
.jc-services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; margin-top: 3rem;
}
.jc-service-card {
  background: #fff; border-radius: var(--jc-radius);
  padding: 36px 28px; border: 1px solid var(--jc-border);
  transition: all var(--jc-transition); position: relative; overflow: hidden;
}
.jc-service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--jc-sage); transform: scaleX(0);
  transform-origin: left; transition: transform var(--jc-transition);
}
.jc-service-card:hover { box-shadow: var(--jc-shadow-lg); transform: translateY(-4px); }
.jc-service-card:hover::before { transform: scaleX(1); }
.jc-service-card-icon {
  width: 56px; height: 56px; background: var(--jc-warm-white);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.jc-service-card-icon i { font-size: 1.4rem; color: var(--jc-sage-dark); }
.jc-service-card h3 { font-size: 1.3rem; margin-bottom: .75rem; }
.jc-service-card p { font-size: .9rem; margin-bottom: 1.5rem; }
.jc-service-card-link {
  font-size: .8rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--jc-sage-dark);
  display: flex; align-items: center; gap: .4rem;
}
.jc-service-card-link i { transition: transform var(--jc-transition); }
.jc-service-card:hover .jc-service-card-link i { transform: translateX(4px); }

/* ---- About Preview ---- */
.jc-about-preview {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.jc-about-img-stack { position: relative; height: 480px; }
.jc-about-img-1 {
  position: absolute; top: 0; left: 0; width: 72%; height: 340px;
  border-radius: 20px; overflow: hidden;
}
.jc-about-img-1 img { width: 100%; height: 100%; object-fit: cover; }
.jc-about-img-2 {
  position: absolute; bottom: 0; right: 0; width: 52%; height: 240px;
  border-radius: 16px; overflow: hidden; border: 6px solid var(--jc-cream);
}
.jc-about-img-2 img { width: 100%; height: 100%; object-fit: cover; }
.jc-about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 2rem;
}
.jc-stat-box {
  background: var(--jc-warm-white); border-radius: var(--jc-radius);
  padding: 20px; border: 1px solid var(--jc-border);
}
.jc-stat-number {
  font-family: var(--jc-font-display); font-size: 2.2rem;
  font-weight: 500; color: var(--jc-sage-dark); line-height: 1;
  margin-bottom: .25rem;
}
.jc-stat-label { font-size: .8rem; color: var(--jc-light); }

/* ---- Before/After Slider ---- */
.jc-before-after-section { background: var(--jc-warm-white); }
.jc-ba-container {
  position: relative; max-width: 800px; margin: 3rem auto 0;
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--jc-shadow-lg); cursor: ew-resize; user-select: none;
}
.jc-ba-img-before, .jc-ba-img-after {
  width: 100%; height: 460px; object-fit: cover;
}
.jc-ba-img-after {
  position: absolute; top: 0; left: 0;
  clip-path: inset(0 50% 0 0);
  transition: none;
}
.jc-ba-divider {
  position: absolute; top: 0; left: 50%;
  width: 3px; height: 100%;
  background: #fff;
  transform: translateX(-50%);
  z-index: 3;
}
.jc-ba-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
  display: flex; align-items: center; justify-content: center;
  z-index: 4;
}
.jc-ba-handle i { color: var(--jc-sage-dark); font-size: 1rem; }
.jc-ba-labels {
  display: flex; justify-content: space-between;
  margin-top: 1rem; font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--jc-light);
}

/* ---- Process Steps ---- */
.jc-process-section { background: var(--jc-cream); }
.jc-process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; margin-top: 3rem; position: relative;
}
.jc-process-grid::before {
  content: ''; position: absolute; top: 28px; left: 8%;
  width: 84%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--jc-border), transparent);
  z-index: 0;
}
.jc-process-step { text-align: center; position: relative; z-index: 1; }
.jc-process-number {
  width: 56px; height: 56px; background: var(--jc-sage);
  color: #fff; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 1.25rem;
  font-family: var(--jc-font-display); font-size: 1.2rem; font-weight: 500;
}
.jc-process-step h4 { margin-bottom: .5rem; }
.jc-process-step p { font-size: .875rem; }

/* ---- Testimonials ---- */
.jc-testimonials-section { background: var(--jc-charcoal); padding: 96px 0; }
.jc-testimonials-section .jc-section-label { color: var(--jc-sage-light); }
.jc-testimonials-section h2 { color: #fff; }
.jc-testimonials-track-wrap { overflow: hidden; margin-top: 3rem; }
.jc-testimonials-track {
  display: flex; gap: 24px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.jc-testimonial-slide {
  min-width: calc(33.33% - 16px); background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; padding: 36px; flex-shrink: 0;
}
.jc-testimonial-stars { display: flex; gap: 4px; margin-bottom: 1rem; }
.jc-testimonial-stars i { color: var(--jc-gold); font-size: .9rem; }
.jc-testimonial-text {
  font-family: var(--jc-font-display); font-size: 1.1rem;
  font-weight: 300; color: rgba(255,255,255,.85);
  line-height: 1.7; margin-bottom: 1.5rem; font-style: italic;
}
.jc-testimonial-author { display: flex; align-items: center; gap: 12px; }
.jc-testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: var(--jc-sage);
  display: flex; align-items: center; justify-content: center;
}
.jc-testimonial-avatar i { color: #fff; }
.jc-testimonial-name { font-weight: 600; color: #fff; font-size: .9rem; }
.jc-testimonial-meta { font-size: .775rem; color: rgba(255,255,255,.45); }
.jc-carousel-controls {
  display: flex; align-items: center; gap: 12px; margin-top: 2.5rem;
}
.jc-carousel-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2); background: transparent;
  color: #fff; cursor: pointer; display: flex; align-items: center;
  justify-content: center; transition: all var(--jc-transition);
}
.jc-carousel-btn:hover { background: var(--jc-sage); border-color: var(--jc-sage); }
.jc-carousel-dots { display: flex; gap: 8px; margin-left: 1rem; }
.jc-carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.2); cursor: pointer;
  transition: all var(--jc-transition);
}
.jc-carousel-dot.jc-active { background: var(--jc-sage); width: 24px; border-radius: 4px; }

/* ---- Team ---- */
.jc-team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px; margin-top: 3rem;
}
.jc-team-card { position: relative; overflow: hidden; border-radius: 20px; }
.jc-team-card-img { height: 280px; overflow: hidden; }
.jc-team-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.jc-team-card:hover .jc-team-card-img img { transform: scale(1.05); }
.jc-team-card-info {
  padding: 20px;
  background: #fff;
}
.jc-team-card-info h4 { margin-bottom: .25rem; }
.jc-team-card-info span { font-size: .8rem; color: var(--jc-sage); font-weight: 500; }
.jc-team-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,44,44,.85) 0%, transparent 50%);
  opacity: 0; transition: opacity var(--jc-transition);
  display: flex; align-items: flex-end; padding: 24px;
}
.jc-team-card:hover .jc-team-card-overlay { opacity: 1; }
.jc-team-card-overlay p {
  color: rgba(255,255,255,.9); font-size: .85rem; margin: 0; line-height: 1.5;
}

/* ---- Interactive Tools ---- */
.jc-tools-section { background: var(--jc-warm-white); }
.jc-tools-tabs {
  display: flex; gap: 0; margin-bottom: 2rem;
  border: 1px solid var(--jc-border); border-radius: 60px;
  overflow: hidden; width: fit-content;
}
.jc-tool-tab-btn {
  padding: .75rem 1.75rem; background: transparent;
  border: none; cursor: pointer; font-family: var(--jc-font-body);
  font-size: .875rem; font-weight: 500; color: var(--jc-mid);
  transition: all var(--jc-transition);
}
.jc-tool-tab-btn.jc-active { background: var(--jc-sage); color: #fff; }
.jc-tool-panel { display: none; }
.jc-tool-panel.jc-active { display: block; }

/* Calculator */
.jc-calc-wrapper {
  background: #fff; border-radius: 20px; border: 1px solid var(--jc-border);
  padding: 40px; max-width: 700px;
}
.jc-calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 1.5rem; }
.jc-form-group label {
  display: block; font-size: .8rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--jc-charcoal); margin-bottom: .5rem;
}
.jc-form-control {
  width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--jc-border);
  border-radius: var(--jc-radius); background: var(--jc-cream);
  font-family: var(--jc-font-body); font-size: .9rem; color: var(--jc-charcoal);
  transition: border-color var(--jc-transition);
  -webkit-appearance: none;
}
.jc-form-control:focus {
  outline: none; border-color: var(--jc-sage);
  background: #fff;
}
.jc-calc-result {
  background: var(--jc-warm-white); border-radius: var(--jc-radius);
  padding: 24px; border-left: 3px solid var(--jc-sage);
  margin-top: 1.5rem; display: none;
}
.jc-calc-result.jc-show { display: block; }
.jc-calc-result h4 { font-size: 1rem; margin-bottom: .5rem; color: var(--jc-charcoal); }
.jc-calc-price {
  font-family: var(--jc-font-display); font-size: 2.4rem;
  color: var(--jc-sage-dark); font-weight: 500;
}
.jc-calc-note { font-size: .8rem; color: var(--jc-light); margin-top: .5rem; margin-bottom: 0; }

/* Quiz */
.jc-quiz-wrapper { max-width: 640px; }
.jc-quiz-progress {
  height: 4px; background: var(--jc-border); border-radius: 2px; margin-bottom: 2rem;
}
.jc-quiz-progress-bar {
  height: 100%; background: var(--jc-sage); border-radius: 2px;
  transition: width .4s ease;
}
.jc-quiz-step { display: none; }
.jc-quiz-step.jc-active { display: block; }
.jc-quiz-q { font-family: var(--jc-font-display); font-size: 1.5rem; margin-bottom: 1.5rem; }
.jc-quiz-options { display: flex; flex-direction: column; gap: 12px; }
.jc-quiz-option {
  padding: 1rem 1.25rem; border: 1.5px solid var(--jc-border);
  border-radius: var(--jc-radius); cursor: pointer;
  transition: all var(--jc-transition); background: #fff;
  font-size: .9rem; color: var(--jc-charcoal);
  display: flex; align-items: center; gap: 12px;
}
.jc-quiz-option:hover { border-color: var(--jc-sage); background: #f5fbf5; }
.jc-quiz-option.jc-selected { border-color: var(--jc-sage); background: #f5fbf5; color: var(--jc-sage-dark); }
.jc-quiz-option-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--jc-warm-white);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.jc-quiz-option-icon i { color: var(--jc-sage); }
.jc-quiz-nav { display: flex; gap: 12px; margin-top: 1.5rem; }
.jc-quiz-result {
  background: var(--jc-warm-white); border-radius: 20px; padding: 40px;
  border: 1px solid var(--jc-border); display: none;
}
.jc-quiz-result.jc-show { display: block; }
.jc-quiz-result-title { font-family: var(--jc-font-display); font-size: 1.8rem; margin-bottom: 1rem; }

/* Score Test */
.jc-score-wrapper { max-width: 640px; }
.jc-score-questions { display: flex; flex-direction: column; gap: 16px; margin-bottom: 1.5rem; }
.jc-score-q {
  background: #fff; border: 1px solid var(--jc-border);
  border-radius: var(--jc-radius); padding: 20px 24px;
}
.jc-score-q-text { font-size: .9rem; font-weight: 500; margin-bottom: .75rem; color: var(--jc-charcoal); }
.jc-score-q p { margin-bottom: 0; }
.jc-score-radios { display: flex; gap: 12px; flex-wrap: wrap; }
.jc-score-radio { display: none; }
.jc-score-label {
  padding: .4rem .9rem; border: 1.5px solid var(--jc-border);
  border-radius: 60px; font-size: .8rem; cursor: pointer;
  transition: all var(--jc-transition);
}
.jc-score-radio:checked + .jc-score-label {
  border-color: var(--jc-sage); background: var(--jc-sage); color: #fff;
}
.jc-score-result {
  background: var(--jc-warm-white); border-radius: 20px; padding: 32px;
  border: 1px solid var(--jc-border); display: none; margin-top: 1rem;
}
.jc-score-result.jc-show { display: block; }
.jc-score-meter {
  height: 12px; background: var(--jc-border); border-radius: 6px;
  margin: 1rem 0; overflow: hidden;
}
.jc-score-meter-fill {
  height: 100%; border-radius: 6px;
  background: linear-gradient(90deg, var(--jc-sage), var(--jc-sage-dark));
  transition: width 1s ease;
}
.jc-score-value {
  font-family: var(--jc-font-display); font-size: 3rem;
  font-weight: 500; color: var(--jc-sage-dark);
}

/* ---- FAQ ---- */
.jc-faq-section { background: var(--jc-cream); }
.jc-faq-list { max-width: 720px; margin: 3rem auto 0; }
.jc-faq-item {
  border-bottom: 1px solid var(--jc-border); overflow: hidden;
}
.jc-faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.25rem 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  font-family: var(--jc-font-body); font-size: .95rem;
  font-weight: 500; color: var(--jc-charcoal);
  transition: color var(--jc-transition);
}
.jc-faq-question:hover { color: var(--jc-sage-dark); }
.jc-faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--jc-border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all var(--jc-transition);
}
.jc-faq-icon i { font-size: .75rem; color: var(--jc-sage); transition: transform var(--jc-transition); }
.jc-faq-item.jc-open .jc-faq-icon { background: var(--jc-sage); border-color: var(--jc-sage); }
.jc-faq-item.jc-open .jc-faq-icon i { color: #fff; transform: rotate(45deg); }
.jc-faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.jc-faq-answer-inner { padding: 0 0 1.25rem; font-size: .9rem; color: var(--jc-mid); }

/* ---- CTA Banner ---- */
.jc-cta-banner {
  background: linear-gradient(135deg, var(--jc-sage-dark) 0%, var(--jc-sage) 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.jc-cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.jc-cta-banner h2 { color: #fff; margin-bottom: .75rem; }
.jc-cta-banner p { color: rgba(255,255,255,.75); margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.jc-cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ---- Sticky CTA ---- */
.jc-sticky-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 998;
  opacity: 0; transform: translateY(12px);
  transition: all var(--jc-transition); pointer-events: none;
}
.jc-sticky-cta.jc-visible { opacity: 1; transform: translateY(0); pointer-events: all; }

/* ---- Contact Form ---- */
.jc-contact-form-wrapper {
  background: #fff; border-radius: 20px; padding: 48px;
  border: 1px solid var(--jc-border); box-shadow: var(--jc-shadow);
}
.jc-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.jc-form-group { margin-bottom: 1.25rem; }
.jc-form-group label { font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--jc-charcoal); display: block; margin-bottom: .5rem; }
.jc-form-group label .jc-required { color: var(--jc-sage); margin-left: 2px; }
.jc-form-error { font-size: .75rem; color: #e05252; margin-top: .25rem; display: none; }
.jc-form-group.jc-has-error .jc-form-control { border-color: #e05252; }
.jc-form-group.jc-has-error .jc-form-error { display: block; }
textarea.jc-form-control { min-height: 140px; resize: vertical; }
.jc-captcha-row { display: flex; align-items: center; gap: 16px; margin-bottom: 1.25rem; }
.jc-captcha-challenge {
  background: var(--jc-warm-white); border: 1px solid var(--jc-border);
  border-radius: var(--jc-radius); padding: .5rem 1rem;
  font-family: monospace; font-size: 1.1rem; letter-spacing: .15em;
  font-weight: 700; color: var(--jc-charcoal); user-select: none;
}
.jc-captcha-input { width: 100px; }

/* ---- Footer ---- */
.jc-footer { background: var(--jc-charcoal); color: rgba(255,255,255,.65); padding: 80px 0 40px; }
.jc-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px;
}
.jc-footer-brand p { font-size: .875rem; line-height: 1.7; margin-top: 1rem; margin-bottom: 1.5rem; }
.jc-footer-logo {
  font-family: var(--jc-font-display); font-size: 1.5rem;
  color: #fff; font-weight: 500;
}
.jc-footer-logo span { color: var(--jc-sage-light); }
.jc-footer-col h5 {
  font-family: var(--jc-font-body); font-size: .75rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 1.25rem;
}
.jc-footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.jc-footer-col a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color var(--jc-transition); }
.jc-footer-col a:hover { color: var(--jc-sage-light); }
.jc-footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: .75rem;
}
.jc-footer-contact-item i { color: var(--jc-sage-light); font-size: .9rem; margin-top: 3px; }
.jc-footer-contact-item span { font-size: .875rem; }
.jc-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.jc-footer-bottom p { margin: 0; font-size: .8rem; }
.jc-footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.jc-footer-legal a { font-size: .8rem; color: rgba(255,255,255,.4); }
.jc-footer-legal a:hover { color: var(--jc-sage-light); }

/* ---- Cookie Banner ---- */
.jc-cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--jc-charcoal); color: rgba(255,255,255,.8);
  padding: 20px 24px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
  transform: translateY(100%); transition: transform .4s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,.2);
}
.jc-cookie-banner.jc-show { transform: translateY(0); }
.jc-cookie-text { font-size: .875rem; flex: 1; min-width: 280px; }
.jc-cookie-text a { color: var(--jc-sage-light); }
.jc-cookie-actions { display: flex; gap: 12px; }

/* ---- Page Hero ---- */
.jc-page-hero {
  background: linear-gradient(135deg, #f0ede6 0%, #e8f0e9 100%);
  padding: 160px 0 80px; text-align: center; position: relative; overflow: hidden;
}
.jc-page-hero::before {
  content: ''; position: absolute; inset: 0; opacity: .03;
  background-image: radial-gradient(circle, var(--jc-sage-dark) 1px, transparent 1px);
  background-size: 28px 28px;
}
.jc-page-hero .jc-section-label { display: block; margin: 0 auto 1rem; }
.jc-page-hero h1 { margin-bottom: 1rem; }
.jc-page-hero p { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.jc-breadcrumb {
  display: flex; justify-content: center; gap: .5rem; align-items: center;
  font-size: .8rem; color: var(--jc-light); margin-bottom: 1.5rem;
}
.jc-breadcrumb a { color: var(--jc-light); }
.jc-breadcrumb a:hover { color: var(--jc-sage); }
.jc-breadcrumb i { font-size: .6rem; }

/* ---- Service Detail ---- */
.jc-service-detail {
  display: grid; grid-template-columns: 1fr 400px; gap: 64px; align-items: start;
}
.jc-service-img { border-radius: 20px; overflow: hidden; height: 360px; margin-bottom: 2rem; }
.jc-service-img img { width: 100%; height: 100%; object-fit: cover; }
.jc-service-includes {
  background: var(--jc-warm-white); border-radius: var(--jc-radius);
  padding: 28px; border: 1px solid var(--jc-border); margin-bottom: 1.5rem;
}
.jc-service-includes h4 { margin-bottom: 1rem; font-size: 1rem; }
.jc-include-item {
  display: flex; align-items: center; gap: 10px;
  padding: .5rem 0; border-bottom: 1px solid var(--jc-border); font-size: .875rem;
}
.jc-include-item:last-child { border-bottom: none; }
.jc-include-item i { color: var(--jc-sage); font-size: .85rem; }
.jc-sidebar-cta {
  background: var(--jc-charcoal); border-radius: 20px; padding: 32px;
  text-align: center; position: sticky; top: 100px;
}
.jc-sidebar-cta h3 { color: #fff; font-size: 1.4rem; margin-bottom: .75rem; }
.jc-sidebar-cta p { color: rgba(255,255,255,.65); font-size: .875rem; margin-bottom: 1.5rem; }

/* ---- Article ---- */
.jc-article-content { max-width: 760px; margin: 0 auto; }
.jc-article-meta {
  display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid var(--jc-border);
  flex-wrap: wrap;
}
.jc-article-meta span { font-size: .8rem; color: var(--jc-light); display: flex; align-items: center; gap: .4rem; }
.jc-article-meta i { color: var(--jc-sage); }
.jc-article-img { border-radius: 20px; overflow: hidden; margin-bottom: 2rem; }
.jc-article-img img { width: 100%; height: 400px; object-fit: cover; }
.jc-article-content h2 { margin: 2rem 0 1rem; }
.jc-article-content h3 { margin: 1.5rem 0 .75rem; }
.jc-article-content p { font-size: .95rem; margin-bottom: 1.25rem; }
.jc-article-content ul { margin: 1rem 0 1.5rem 1.5rem; list-style: disc; }
.jc-article-content ul li { margin-bottom: .5rem; font-size: .95rem; color: var(--jc-mid); }
.jc-article-card {
  background: #fff; border: 1px solid var(--jc-border); border-radius: 20px;
  overflow: hidden; transition: all var(--jc-transition);
}
.jc-article-card:hover { box-shadow: var(--jc-shadow-lg); transform: translateY(-4px); }
.jc-article-card-img { height: 200px; overflow: hidden; }
.jc-article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.jc-article-card:hover .jc-article-card-img img { transform: scale(1.05); }
.jc-article-card-body { padding: 24px; }
.jc-article-card-body .jc-section-label { margin-bottom: .75rem; }
.jc-article-card-body h3 { font-size: 1.2rem; margin-bottom: .75rem; }
.jc-article-card-body p { font-size: .875rem; margin-bottom: 1rem; }
.jc-articles-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 3rem;
}

/* ---- Map ---- */
.jc-map-wrapper {
  border-radius: 20px; overflow: hidden; height: 400px;
  box-shadow: var(--jc-shadow);
}
.jc-map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* ---- Info Cards ---- */
.jc-info-card {
  background: #fff; border: 1px solid var(--jc-border);
  border-radius: var(--jc-radius); padding: 24px; display: flex; align-items: flex-start; gap: 16px;
}
.jc-info-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--jc-warm-white); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.jc-info-card-icon i { color: var(--jc-sage-dark); font-size: 1.1rem; }
.jc-info-card h4 { font-size: 1rem; margin-bottom: .25rem; }
.jc-info-card p { font-size: .875rem; margin: 0; }

/* ---- Timeline ---- */
.jc-timeline { max-width: 680px; margin: 0 auto; position: relative; }
.jc-timeline::before {
  content: ''; position: absolute; left: 20px; top: 8px; bottom: 8px;
  width: 2px; background: var(--jc-border);
}
.jc-timeline-item { display: flex; gap: 32px; margin-bottom: 2rem; position: relative; }
.jc-timeline-dot {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--jc-sage); border-radius: 50%; border: 4px solid var(--jc-cream);
  display: flex; align-items: center; justify-content: center; z-index: 1;
}
.jc-timeline-dot i { color: #fff; font-size: .85rem; }
.jc-timeline-content { padding-top: .5rem; }
.jc-timeline-year { font-size: .75rem; font-weight: 600; color: var(--jc-sage); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .25rem; }
.jc-timeline-content h4 { margin-bottom: .4rem; }
.jc-timeline-content p { font-size: .875rem; margin: 0; }

/* ---- Legal Page ---- */
.jc-legal-content { max-width: 800px; margin: 0 auto; }
.jc-legal-content h2 { margin: 2.5rem 0 1rem; font-size: 1.6rem; }
.jc-legal-content h3 { margin: 1.75rem 0 .75rem; font-size: 1.2rem; }
.jc-legal-content p { font-size: .95rem; margin-bottom: 1rem; }
.jc-legal-content ul { margin: 1rem 0 1.5rem 1.5rem; list-style: disc; }
.jc-legal-content ul li { margin-bottom: .4rem; font-size: .95rem; color: var(--jc-mid); }

/* ---- Scroll Animations ---- */
.jc-reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.jc-reveal.jc-visible { opacity: 1; transform: translateY(0); }
.jc-reveal-delay-1 { transition-delay: .1s; }
.jc-reveal-delay-2 { transition-delay: .2s; }
.jc-reveal-delay-3 { transition-delay: .3s; }
.jc-reveal-delay-4 { transition-delay: .4s; }

/* ---- Thank You ---- */
.jc-thankyou-wrap {
  min-height: 80vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 160px 24px 80px;
}
.jc-thankyou-icon {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--jc-sage); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 2rem;
}
.jc-thankyou-icon i { font-size: 2rem; color: #fff; }

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .jc-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .jc-hero-images { display: none; }
  .jc-about-preview { grid-template-columns: 1fr; gap: 40px; }
  .jc-about-img-stack { height: 340px; }
  .jc-process-grid { grid-template-columns: repeat(2, 1fr); }
  .jc-process-grid::before { display: none; }
  .jc-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .jc-service-detail { grid-template-columns: 1fr; }
  .jc-testimonial-slide { min-width: calc(50% - 12px); }
  .jc-calc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .jc-section { padding: 64px 0; }
  .jc-nav-links { display: none; }
  .jc-nav-hamburger { display: flex; }
  .jc-form-row { grid-template-columns: 1fr; }
  .jc-testimonial-slide { min-width: 100%; }
  .jc-about-stats { grid-template-columns: 1fr 1fr; }
  .jc-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .jc-footer-bottom { flex-direction: column; text-align: center; }
  .jc-tools-tabs { flex-direction: column; border-radius: 12px; }
  .jc-contact-form-wrapper { padding: 28px; }
}
@media (max-width: 480px) {
  .jc-process-grid { grid-template-columns: 1fr; }
  .jc-about-stats { grid-template-columns: 1fr; }
  .jc-hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ========== ARTICLE PAGES ========== */
.jc-article-hero { min-height: 60vh; }
.jc-article-meta-top {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap;
}
.jc-breadcrumb-link {
  color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.9rem;
  display: flex; align-items: center; gap: 0.4rem; transition: color 0.2s;
}
.jc-breadcrumb-link:hover { color: #fff; }
.jc-article-category-badge {
  background: var(--jc-gold); color: #fff; padding: 0.25rem 0.85rem;
  border-radius: 20px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
}
.jc-article-subtitle {
  font-size: 1.25rem; color: rgba(255,255,255,0.8); margin-top: 0.75rem; max-width: 600px;
}
.jc-article-byline {
  display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.25rem;
  font-size: 0.87rem; color: rgba(255,255,255,0.65);
}
.jc-article-byline span { display: flex; align-items: center; gap: 0.4rem; }

.jc-article-layout { padding: 5rem 0 6rem; background: var(--jc-cream); }
.jc-article-grid {
  display: grid; grid-template-columns: 1fr 320px; gap: 4rem; align-items: start;
}
.jc-article-body {
  background: #fff; border-radius: 12px; padding: 3rem 3.5rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}
.jc-article-body h2 {
  font-family: var(--jc-font-display); font-size: 1.9rem; color: var(--jc-charcoal);
  margin: 2.5rem 0 1rem;
}
.jc-article-body h3 {
  font-family: var(--jc-font-body); font-size: 1.1rem; font-weight: 600;
  color: var(--jc-charcoal); margin: 1.75rem 0 0.75rem;
}
.jc-article-body p { color: #555; line-height: 1.85; margin-bottom: 1.25rem; }
.jc-article-intro {
  font-size: 1.1rem; color: #444; line-height: 1.9; border-left: 3px solid var(--jc-sage);
  padding-left: 1.25rem; margin-bottom: 1.75rem;
}
.jc-article-list { margin: 0.5rem 0 1.25rem 1.5rem; color: #555; line-height: 1.85; }
.jc-article-list li { margin-bottom: 0.5rem; }
.jc-article-figure { margin: 2rem 0; }
.jc-article-figure img {
  width: 100%; border-radius: 10px; display: block;
}
.jc-article-figure figcaption {
  font-size: 0.85rem; color: #888; margin-top: 0.6rem; font-style: italic; text-align: center;
}
.jc-article-cta-box {
  background: var(--jc-cream); border-radius: 10px; padding: 2.25rem;
  margin-top: 3rem; border: 1px solid #e8e3da;
}
.jc-article-cta-box h3 {
  font-family: var(--jc-font-display); font-size: 1.6rem; margin-bottom: 0.6rem;
}
.jc-article-cta-box p { margin-bottom: 1.25rem; }
.jc-article-cta-box .jc-btn { margin-right: 0.75rem; margin-top: 0.5rem; }

/* Sidebar */
.jc-article-sidebar { position: sticky; top: 100px; }
.jc-sidebar-widget {
  background: #fff; border-radius: 10px; padding: 1.5rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04); margin-bottom: 1.5rem;
}
.jc-sidebar-widget h4 {
  font-family: var(--jc-font-display); font-size: 1.2rem;
  color: var(--jc-charcoal); margin-bottom: 1rem;
}
.jc-toc-list { list-style: none; padding: 0; margin: 0; }
.jc-toc-list li { border-bottom: 1px solid #f0ede8; }
.jc-toc-list li:last-child { border-bottom: none; }
.jc-toc-list a {
  display: block; padding: 0.6rem 0; color: #666; text-decoration: none;
  font-size: 0.88rem; transition: color 0.2s;
}
.jc-toc-list a:hover { color: var(--jc-sage); }
.jc-related-list { list-style: none; padding: 0; margin: 0; }
.jc-related-list li { margin-bottom: 0.9rem; border-bottom: 1px solid #f0ede8; padding-bottom: 0.9rem; }
.jc-related-list li:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.jc-related-list a { text-decoration: none; }
.jc-related-title { font-size: 0.88rem; color: #555; line-height: 1.5; transition: color 0.2s; display: block; }
.jc-related-list a:hover .jc-related-title { color: var(--jc-sage); }
.jc-sidebar-contact { background: var(--jc-charcoal) !important; }
.jc-sidebar-contact h4 { color: #fff !important; }
.jc-sidebar-contact p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-bottom: 1rem; }
.jc-btn-full { width: 100%; text-align: center; display: block; }
.jc-sidebar-phone {
  display: flex; align-items: center; gap: 0.5rem; justify-content: center;
  color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem;
  margin-top: 0.75rem; transition: color 0.2s;
}
.jc-sidebar-phone:hover { color: #fff; }

/* ========== LEGAL PAGES ========== */
.jc-legal-hero {
  background: var(--jc-charcoal); padding: 9rem 0 3.5rem; text-align: center;
}
.jc-legal-hero h1 {
  font-family: var(--jc-font-display); font-size: 2.8rem; color: #fff;
}
.jc-legal-hero p { color: rgba(255,255,255,0.55); margin-top: 0.5rem; font-size: 0.9rem; }

.jc-legal-layout { padding: 4rem 0 6rem; background: var(--jc-cream); }
.jc-legal-grid { display: grid; grid-template-columns: 1fr 280px; gap: 3.5rem; align-items: start; }

.jc-legal-body {
  background: #fff; border-radius: 12px; padding: 3rem 3.5rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}
.jc-legal-body h2 {
  font-family: var(--jc-font-display); font-size: 1.65rem;
  color: var(--jc-charcoal); margin: 2.25rem 0 0.75rem;
  padding-bottom: 0.5rem; border-bottom: 1px solid #eee;
}
.jc-legal-body h3 {
  font-family: var(--jc-font-body); font-size: 1rem; font-weight: 600;
  color: var(--jc-charcoal); margin: 1.5rem 0 0.5rem;
}
.jc-legal-body p { color: #555; line-height: 1.85; margin-bottom: 1.1rem; }
.jc-legal-intro {
  font-size: 1rem; color: #444; line-height: 1.9;
  background: var(--jc-cream); border-radius: 8px; padding: 1.25rem 1.5rem; margin-bottom: 2rem;
  border-left: 3px solid var(--jc-sage);
}
.jc-legal-list { margin: 0.5rem 0 1.25rem 1.5rem; color: #555; line-height: 1.85; }
.jc-legal-list li { margin-bottom: 0.5rem; }
.jc-legal-address {
  background: var(--jc-cream); border-radius: 8px; padding: 1.25rem 1.5rem;
  font-style: normal; line-height: 1.9; color: #555; margin: 1rem 0;
}
.jc-legal-nav-list { list-style: none; padding: 0; margin: 0; }
.jc-legal-nav-list li { border-bottom: 1px solid #f0ede8; }
.jc-legal-nav-list li:last-child { border-bottom: none; }
.jc-legal-nav-list a {
  display: block; padding: 0.65rem 0; color: #666; text-decoration: none;
  font-size: 0.88rem; transition: color 0.2s;
}
.jc-legal-nav-list a:hover,
.jc-legal-nav-list a.active { color: var(--jc-sage); font-weight: 500; }

.jc-cookie-table {
  width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; font-size: 0.875rem;
}
.jc-cookie-table th {
  background: var(--jc-cream); padding: 0.65rem 0.85rem; text-align: left;
  font-weight: 600; color: var(--jc-charcoal); border-bottom: 2px solid #ddd;
}
.jc-cookie-table td {
  padding: 0.65rem 0.85rem; border-bottom: 1px solid #eee; color: #555; vertical-align: top;
}
.jc-cookie-table tr:last-child td { border-bottom: none; }

/* Responsive adjustments */
@media (max-width: 1024px) {
  .jc-article-grid { grid-template-columns: 1fr; }
  .jc-article-sidebar { position: static; }
  .jc-legal-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .jc-article-body { padding: 2rem 1.5rem; }
  .jc-legal-body { padding: 2rem 1.5rem; }
}



.logo{
  max-width: 80px;
  object-fit: contain;
}

html{
  overflow-x: hidden;
}

.jc-page-hero-bg{
  width: 100%;
  height: 100%;
  background-size: cover;
}


.jc-article-hero > *, .jc-article-subtitle, .jc-article-byline{
  color: #000;
}