/** Shopify CDN: Minification failed

Line 2040:1 Unexpected "/"

**/
/* ============================================
   THE CLOVE THEORY — Complete Stylesheet
   ============================================ */

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

:root {
  --clove: #7B2D1E;
  --clove-light: #A83D2A;
  --cream: #F5EFE4;
  --parchment: #EDE4D3;
  --ink: #1C1410;
  --smoke: #8C7B6E;
  --gold: #C4973B;
  --white: #FDFAF5;
  --dark: #0F0B09;
}

/* Hide default cursor everywhere — use custom cursor only */
*, *::before, *::after {
  cursor: none !important;
}

a, button, input, select, textarea, label, [role="button"] {
  cursor: none !important;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--cream);
  color: var(--ink);
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* Grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9000;
  opacity: 0.5;
}

/* CUSTOM CURSOR */
.ct-cursor {
  width: 8px; height: 8px;
  background: var(--clove);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}
.ct-cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(123,45,30,0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}

/* ANNOUNCEMENT BAR */
.ct-announcement {
  background: var(--ink);
  padding: 11px 20px;
  text-align: center;
  font-size: 0.58rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
}

/* HEADER */
.ct-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--cream);
  transition: box-shadow 0.3s ease;
}
.ct-header.scrolled { box-shadow: 0 1px 0 rgba(28,20,16,0.1); }
.ct-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 48px;
  height: 72px;
}
.ct-header-nav {
  display: flex;
  gap: 40px;
  list-style: none;
}
.ct-header-nav a {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.25s;
}
.ct-header-nav a:hover { opacity: 1; }
.ct-logo {
  display: flex;
  justify-content: center;
  text-decoration: none;
}
.ct-logo img {
  height: 52px;
  width: auto;
}
.ct-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--ink);
  text-decoration: none;
}
.ct-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.ct-header-actions a {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.25s;
}
.ct-header-actions a:hover { opacity: 1; }
.ct-cart-link {
  background: var(--clove);
  color: var(--white) !important;
  padding: 8px 20px;
  opacity: 1 !important;
  transition: background 0.25s !important;
}
.ct-cart-link:hover { background: var(--clove-light) !important; }

/* HERO */
.ct-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
  position: relative;
}
.ct-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  position: relative;
  z-index: 2;
}
.ct-eyebrow {
  font-size: 0.58rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  animation: ctFadeUp 0.9s ease 0.2s both;
}
.ct-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ink);
  animation: ctFadeUp 0.9s ease 0.4s both;
}
.ct-hero-title em {
  font-style: italic;
  color: var(--clove);
}
.ct-divider {
  width: 44px; height: 1px;
  background: var(--gold);
  margin: 32px 0;
  animation: ctExpandW 1s ease 0.7s both;
}
.ct-hero-sub {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  line-height: 2.2;
  color: var(--smoke);
  text-transform: uppercase;
  max-width: 360px;
  animation: ctFadeUp 0.9s ease 0.9s both;
}
.ct-hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 48px;
  animation: ctFadeUp 0.9s ease 1.1s both;
}
.ct-hero-image {
  position: relative;
  overflow: hidden;
  background: var(--parchment);
}
.ct-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.ct-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: ctFadeUp 0.9s ease 1.5s both;
}
.ct-hero-scroll-line {
  width: 36px; height: 1px;
  background: var(--smoke);
}
.ct-hero-scroll-text {
  font-size: 0.52rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--smoke);
}

/* BUTTONS */
.ct-btn {
  display: inline-block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ct-btn-dark {
  background: var(--ink);
  color: var(--white);
  padding: 15px 36px;
}
.ct-btn-dark:hover { background: var(--clove); }
.ct-btn-clove {
  background: var(--clove);
  color: var(--white);
  padding: 15px 36px;
}
.ct-btn-clove:hover { background: var(--clove-light); }
.ct-btn-gold {
  background: var(--gold);
  color: var(--ink);
  padding: 15px 36px;
}
.ct-btn-gold:hover { background: #D4A84B; }
.ct-btn-outline {
  background: transparent;
  color: var(--ink);
  padding: 14px 36px;
  border: 1px solid rgba(28,20,16,0.25);
}
.ct-btn-outline:hover { border-color: var(--ink); }
.ct-btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 0;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  opacity: 0.6;
}
.ct-btn-ghost:hover { opacity: 1; }
.ct-btn-ghost-light {
  background: transparent;
  color: var(--cream);
  padding: 0;
  border-bottom: 1px solid rgba(245,239,228,0.4);
  padding-bottom: 3px;
  opacity: 0.7;
}
.ct-btn-ghost-light:hover { opacity: 1; border-color: var(--cream); }

/* PHILOSOPHY */
.ct-philosophy {
  background: var(--white);
  padding: 120px 80px;
}
.ct-section-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.ct-section-label {
  font-size: 0.54rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.ct-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
}
.ct-section-title em { font-style: italic; color: var(--clove); }
.ct-section-body {
  font-size: 0.75rem;
  line-height: 2.1;
  color: var(--smoke);
  letter-spacing: 0.06em;
}
.ct-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--parchment);
}
.ct-pillar {
  background: var(--white);
  padding: 48px 36px;
  transition: background 0.3s ease;
}
.ct-pillar:hover { background: var(--cream); }
.ct-pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--clove);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 20px;
}
.ct-pillar-title {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}
.ct-pillar-desc {
  font-size: 0.73rem;
  line-height: 2;
  color: var(--smoke);
}

/* FEATURED PRODUCT */
.ct-product {
  background: var(--ink);
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.ct-product-bg-text {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22vw;
  font-weight: 300;
  color: rgba(255,255,255,0.018);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.3em;
  user-select: none;
}
.ct-product-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ct-product-visual img {
  width: 340px;
  max-width: 100%;
  position: relative;
  z-index: 2;
  animation: ctFloat 7s ease-in-out infinite;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.5));
}
.ct-orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.ct-orbit-1 {
  width: 340px; height: 340px;
  border: 1px solid rgba(196,151,59,0.15);
  animation: ctRotate 25s linear infinite;
}
.ct-orbit-2 {
  width: 460px; height: 460px;
  border: 1px dashed rgba(196,151,59,0.08);
  animation: ctRotate 30s linear infinite reverse;
}
.ct-orbit-dot {
  position: absolute;
  top: -5px; left: 50%;
  width: 9px; height: 9px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--gold);
}
.ct-product-info { position: relative; z-index: 2; }
.ct-product-eyebrow {
  font-size: 0.54rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.ct-product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 10px;
}
.ct-product-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(245,239,228,0.35);
  margin-bottom: 44px;
}
.ct-ingredients {
  list-style: none;
  margin-bottom: 44px;
}
.ct-ingredients li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ct-ing-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}
.ct-ing-name {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 4px;
}
.ct-ing-desc {
  font-size: 0.68rem;
  line-height: 1.8;
  color: rgba(245,239,228,0.38);
  letter-spacing: 0.04em;
}
.ct-product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 32px;
}
.ct-product-price small {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 300;
  color: rgba(245,239,228,0.35);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-left: 10px;
}

/* THEORY CARDS */
.ct-theory {
  background: var(--parchment);
  padding: 120px 80px;
}
.ct-theory-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}
.ct-theory-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
}
.ct-theory-header h2 em { font-style: italic; color: var(--clove); }
.ct-theory-header p {
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  line-height: 2;
  color: var(--smoke);
}
.ct-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.ct-card {
  background: var(--white);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
  cursor: default;
}
.ct-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 64px; height: 64px;
  background: var(--parchment);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transition: background 0.4s ease;
}
.ct-card:hover { background: var(--clove); }
.ct-card:hover::after { background: rgba(255,255,255,0.08); }
.ct-card:hover .ct-card-num,
.ct-card:hover .ct-card-title,
.ct-card:hover .ct-card-desc { color: var(--cream); }
.ct-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: var(--parchment);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.4s ease;
}
.ct-card-title {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
  transition: color 0.4s ease;
}
.ct-card-desc {
  font-size: 0.73rem;
  line-height: 2;
  color: var(--smoke);
  transition: color 0.4s ease;
}

/* SPLIT IMAGE + TEXT */
.ct-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.ct-split-image { overflow: hidden; }
.ct-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.ct-split-image:hover img { transform: scale(1.03); }
.ct-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}
.ct-split-content.dark { background: var(--ink); }
.ct-split-content.light { background: var(--white); }
.ct-split-content.cream { background: var(--cream); }
.ct-split-content.parchment { background: var(--parchment); }
.ct-split-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
}
.ct-split-content.dark h2 { color: var(--cream); }
.ct-split-content h2 em { font-style: italic; color: var(--clove); }
.ct-split-content.dark h2 em { color: var(--gold); }
.ct-split-checklist {
  list-style: none;
  margin: 24px 0 36px;
}
.ct-split-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  padding: 8px 0;
  color: var(--smoke);
}
.ct-split-checklist li::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.7rem;
}
.ct-split-content.dark .ct-split-checklist li { color: rgba(245,239,228,0.5); }

/* TESTIMONIALS */
.ct-testimonials {
  background: var(--ink);
  padding: 120px 80px;
}
.ct-testimonials-header {
  text-align: center;
  margin-bottom: 72px;
}
.ct-testimonials-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
}
.ct-testimonials-header h2 em { font-style: italic; color: var(--gold); }
.ct-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.ct-review {
  padding: 44px 36px;
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  transition: border-color 0.3s ease;
}
.ct-review:hover { border-color: rgba(196,151,59,0.3); }
.ct-review::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 16px; left: 28px;
  line-height: 1;
}
.ct-stars {
  font-size: 0.65rem;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 10px;
}
.ct-review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.8;
  color: var(--cream);
  margin-bottom: 28px;
  padding-top: 28px;
}
.ct-review-author {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,239,228,0.35);
}

/* FAQ */
.ct-faq {
  background: var(--cream);
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}
.ct-faq-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  position: sticky;
  top: 100px;
  height: fit-content;
}
.ct-faq-heading em { font-style: italic; color: var(--clove); }
.ct-faq-list { display: flex; flex-direction: column; }
.ct-faq-item {
  border-bottom: 1px solid rgba(28,20,16,0.1);
  padding: 28px 0;
}
.ct-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.25s;
  user-select: none;
}
.ct-faq-item:hover .ct-faq-q { color: var(--clove); }
.ct-faq-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}
.ct-faq-a {
  font-size: 0.73rem;
  line-height: 2.1;
  color: var(--smoke);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.ct-faq-item.open .ct-faq-a { max-height: 300px; padding-top: 18px; }
.ct-faq-item.open .ct-faq-icon { transform: rotate(45deg); }

/* FOOTER */
.ct-footer {
  background: var(--dark);
  padding: 96px 80px 52px;
}
.ct-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ct-footer-brand img {
  height: 60px;
  width: auto;
  margin-bottom: 24px;
  opacity: 0.85;
}
.ct-footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.ct-footer-tagline {
  font-size: 0.67rem;
  line-height: 2.1;
  color: rgba(245,239,228,0.35);
  letter-spacing: 0.07em;
  max-width: 250px;
  margin-bottom: 28px;
}
.ct-footer-social {
  display: flex;
  gap: 16px;
}
.ct-footer-social a {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,239,228,0.35);
  text-decoration: none;
  transition: color 0.25s;
}
.ct-footer-social a:hover { color: var(--gold); }
.ct-footer-col-title {
  font-size: 0.54rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.ct-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ct-footer-links a {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(245,239,228,0.42);
  text-decoration: none;
  transition: color 0.25s;
}
.ct-footer-links a:hover { color: var(--cream); }
.ct-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 36px;
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,239,228,0.2);
}
.ct-footer-bottom a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}
.ct-footer-bottom a:hover { color: rgba(245,239,228,0.5); }

/* OUR STORY PAGE */
.ct-story-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
}
.ct-story-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  background: var(--cream);
}
.ct-story-hero-image {
  position: relative;
  overflow: hidden;
}
.ct-story-hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.ct-story-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 12px;
}
.ct-story-hero h1 em { font-style: italic; color: var(--clove); }

.ct-ritual {
  background: var(--white);
  padding: 80px 80px;
  text-align: center;
  border-bottom: 1px solid var(--parchment);
}
.ct-ritual h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 12px;
}
.ct-ritual p {
  font-size: 0.73rem;
  letter-spacing: 0.15em;
  color: var(--smoke);
}

.ct-nervous {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.ct-nervous-image { overflow: hidden; }
.ct-nervous-image img { width: 100%; height: 100%; object-fit: cover; }
.ct-nervous-content {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}
.ct-nervous-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 24px;
}
.ct-nervous-content p {
  font-size: 0.73rem;
  line-height: 2.1;
  color: rgba(245,239,228,0.45);
  margin-bottom: 32px;
}

.ct-philosophy-story {
  padding: 120px 80px;
  background: var(--cream);
}
.ct-philosophy-story-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.ct-philosophy-story-sticky {
  position: sticky;
  top: 100px;
}
.ct-philosophy-story-sticky h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
}
.ct-philosophy-story-sticky h2 em { font-style: italic; color: var(--clove); }
.ct-philosophy-story-sticky p {
  font-size: 0.68rem;
  line-height: 2;
  color: var(--smoke);
  margin-top: 16px;
  letter-spacing: 0.06em;
}
.ct-pillars-right { display: flex; flex-direction: column; gap: 0; }
.ct-story-pillar {
  padding: 40px 0;
  border-bottom: 1px solid rgba(28,20,16,0.08);
}
.ct-story-pillar:first-child { border-top: 1px solid rgba(28,20,16,0.08); }
.ct-story-pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}
.ct-story-pillar p {
  font-size: 0.73rem;
  line-height: 2.1;
  color: var(--smoke);
}

.ct-ingredients-story {
  background: var(--ink);
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ct-ingredients-story h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 40px;
}
.ct-ing-rows { display: flex; flex-direction: column; gap: 0; }
.ct-ing-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: start;
}
.ct-ing-row-name {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.ct-ing-row-desc {
  font-size: 0.72rem;
  line-height: 1.9;
  color: rgba(245,239,228,0.4);
}
.ct-ing-row-desc em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(245,239,228,0.65);
}
.ct-ingredients-story-image { overflow: hidden; border-radius: 2px; }
.ct-ingredients-story-image img { width: 100%; height: 500px; object-fit: cover; }

.ct-formulation {
  background: var(--white);
  padding: 120px 80px;
  text-align: center;
}
.ct-formulation-center {
  max-width: 720px;
  margin: 0 auto;
}
.ct-formulation h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 24px;
}
.ct-formulation h2 em { font-style: italic; color: var(--clove); }
.ct-formulation-intro {
  font-size: 0.75rem;
  line-height: 2.1;
  color: var(--smoke);
  margin-bottom: 72px;
}
.ct-formulation-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: left;
  margin-bottom: 72px;
}
.ct-principle h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
}
.ct-principle p {
  font-size: 0.72rem;
  line-height: 2;
  color: var(--smoke);
}
.ct-formulation-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  color: var(--smoke);
  margin-bottom: 48px;
  padding: 40px;
  border-top: 1px solid var(--parchment);
  border-bottom: 1px solid var(--parchment);
}

/* FADE IN */
.ct-fade { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.ct-fade.visible { opacity: 1; transform: translateY(0); }

/* ANIMATIONS */
@keyframes ctFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ctExpandW {
  from { width: 0; opacity: 0; }
  to { width: 44px; opacity: 1; }
}
@keyframes ctFloat {
  0%,  100% { transform: translateY(0)    rotate(0deg); }
  50%        { transform: translateY(-20px) rotate(0deg); }
}
@keyframes ctRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* MOBILE */
@media (max-width: 900px) {
  .ct-hero, .ct-product, .ct-split, .ct-story-hero,
  .ct-nervous, .ct-ingredients-story, .ct-faq,
  .ct-philosophy-story-grid { grid-template-columns: 1fr; }
  .ct-header-inner { padding: 0 24px; }
  .ct-header-nav { display: none; }
  .ct-hero-content, .ct-story-hero-content { padding: 60px 24px; }
  .ct-hero-image { min-height: 400px; }
  .ct-philosophy, .ct-product, .ct-theory, .ct-testimonials,
  .ct-faq, .ct-footer { padding: 72px 24px; }
  .ct-pillars, .ct-cards, .ct-reviews,
  .ct-formulation-principles { grid-template-columns: 1fr; }
  .ct-section-top, .ct-theory-header { grid-template-columns: 1fr; gap: 32px; }
  .ct-footer-grid { grid-template-columns: 1fr 1fr; }
  .ct-split-content { padding: 60px 32px; }
  .ct-faq-heading { position: static; }
  .ct-product-visual img { width: 240px; }
  body { cursor: auto; }
  .ct-cursor, .ct-cursor-ring { display: none; }
}

/* ============================================
   HEADER FIX v3 — Persistent sticky nav
   ============================================ */

/* Reset any section-group wrapper issues */
.shopify-section { display: block; }

.ct-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--cream);
  border-bottom: 1px solid rgba(28,20,16,0.07);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.ct-header.scrolled {
  box-shadow: 0 2px 20px rgba(28,20,16,0.08);
  background: rgba(245,239,228,0.97);
  backdrop-filter: blur(8px);
}

.ct-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 56px;
  height: 76px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.ct-nav-left { display: flex; align-items: center; }

.ct-header-nav {
  display: flex;
  gap: 44px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ct-header-nav li { position: relative; }

.ct-header-nav a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.25s ease;
  padding: 4px 0;
  display: block;
  position: relative;
}
.ct-header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s ease;
}
.ct-header-nav a:hover { opacity: 1; }
.ct-header-nav a:hover::after,
.ct-header-nav a[aria-current="page"]::after { right: 0; }
.ct-header-nav a[aria-current="page"] { opacity: 1; }

.ct-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.ct-logo img { height: 52px; width: auto; display: block; }
.ct-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--ink);
  text-transform: none;
  white-space: nowrap;
}

.ct-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}
.ct-header-actions > a {
  display: flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.25s ease;
  position: relative;
}
.ct-header-actions > a:hover { opacity: 1; }

.ct-cart-icon { position: relative; }
.ct-cart-count {
  position: absolute;
  top: -7px; right: -9px;
  width: 16px; height: 16px;
  background: var(--clove);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.48rem;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
}

/* Hamburger */
.ct-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.ct-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: all 0.3s ease;
}

/* Mobile nav */
.ct-mobile-nav {
  display: none;
  background: var(--ink);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.ct-mobile-nav.open { max-height: 400px; }
.ct-mobile-nav ul { list-style: none; padding: 16px 0; margin: 0; }
.ct-mobile-nav li { border-bottom: 1px solid rgba(255,255,255,0.05); }
.ct-mobile-nav a {
  display: block;
  padding: 16px 32px;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,239,228,0.7);
  text-decoration: none;
  transition: color 0.25s;
}
.ct-mobile-nav a:hover { color: var(--gold); }

/* ============================================
   BIGGER TEXT v3
   ============================================ */

/* Hero title */
.ct-hero-title {
  font-size: clamp(3.2rem, 6vw, 5.8rem) !important;
}

/* Section titles */
.ct-section-title {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem) !important;
}

/* Theory header */
.ct-theory-header h2 {
  font-size: clamp(2.8rem, 5vw, 4.5rem) !important;
}

/* Product name */
.ct-product-name {
  font-size: clamp(3rem, 5vw, 5rem) !important;
}

/* Testimonials header */
.ct-testimonials-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem) !important;
}

/* FAQ heading */
.ct-faq-heading {
  font-size: clamp(2.2rem, 3.2vw, 3.2rem) !important;
}

/* Body text */
.ct-section-body,
.ct-pillar-desc,
.ct-card-desc,
.ct-review-text,
.ct-ing-desc,
.ct-faq-a {
  font-size: 0.82rem !important;
  line-height: 2.1 !important;
}

/* Pillar title, card title, eyebrow */
.ct-pillar-title,
.ct-card-title,
.ct-faq-q span:first-child {
  font-size: 0.72rem !important;
  letter-spacing: 0.22em !important;
}

.ct-eyebrow,
.ct-product-eyebrow,
.ct-section-label {
  font-size: 0.65rem !important;
  letter-spacing: 0.42em !important;
}

/* Hero sub */
.ct-hero-sub {
  font-size: 0.78rem !important;
  letter-spacing: 0.15em !important;
  line-height: 2.2 !important;
}

/* Buttons bigger */
.ct-btn {
  font-size: 0.68rem !important;
  padding: 17px 40px !important;
  letter-spacing: 0.3em !important;
}
.ct-btn-ghost,
.ct-btn-ghost-light {
  padding: 0 0 3px 0 !important;
}

/* Split section body */
.ct-split-content p,
.ct-split-checklist li {
  font-size: 0.8rem !important;
  line-height: 2.1 !important;
}

/* Product price */
.ct-product-price {
  font-size: 2.6rem !important;
}
.ct-product-price small {
  font-size: 0.75rem !important;
}

/* Ingredient name */
.ct-ing-name {
  font-size: 0.72rem !important;
  letter-spacing: 0.18em !important;
}

/* Split content headings */
.ct-split-content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem) !important;
}

/* Philosophy number */
.ct-pillar-num {
  font-size: 4rem !important;
}

/* Footer */
.ct-footer-tagline { font-size: 0.75rem !important; }
.ct-footer-links a { font-size: 0.75rem !important; }
.ct-footer-col-title { font-size: 0.6rem !important; }

/* ============================================
   MOBILE HEADER v3
   ============================================ */

@media (max-width: 900px) {
  .ct-header-inner {
    padding: 0 24px;
    height: 64px;
    grid-template-columns: 1fr auto 1fr;
  }
  .ct-header-nav { display: none !important; }
  .ct-hamburger { display: flex !important; }
  .ct-mobile-nav { display: block; }
  .ct-logo img { height: 40px; }
}

/* ============================================
   COLLECTION PAGE v4
   ============================================ */

.ct-collection {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 56px 120px;
}

.ct-collection-header {
  text-align: center;
  margin-bottom: 16px;
}

.ct-collection-header .ct-section-label {
  margin-bottom: 14px;
  display: block;
}

.ct-collection-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 20px;
}

.ct-collection-desc {
  font-size: 0.88rem;
  line-height: 2.1;
  color: var(--smoke);
  max-width: 600px;
  margin: 0 auto 8px;
  letter-spacing: 0.05em;
}

.ct-collection-meta {
  text-align: center;
  margin-bottom: 56px;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--smoke);
  opacity: 0.6;
}

/* Product Grid — equal columns, aligned */
.ct-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  align-items: start;
}

/* Product Card */
.ct-product-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}


.ct-product-card-image {
  position: relative;
  overflow: hidden;
  background: var(--parchment);
  aspect-ratio: 3 / 4;
  margin-bottom: 24px;
}

.ct-product-card:hover .ct-product-card-image {
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.44), 0 12px 32px rgba(0, 0, 0, 0.62);
}

.ct-product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s ease;
}

.ct-product-card:hover .ct-product-card-img {
  transform: scale(1.04);
}

.ct-product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,20,16,0.35);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 32px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.ct-product-card:hover .ct-product-card-overlay {
  opacity: 1;
}

.ct-card-cta {
  font-size: 0.62rem !important;
  padding: 13px 28px !important;
  letter-spacing: 0.28em !important;
}

.ct-product-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct-product-card-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 4px;
}

.ct-product-card-type {
  font-size: 0.6rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.ct-product-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.25;
  margin: 0;
}

.ct-product-card-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--smoke);
  margin: 0;
}

.ct-product-card-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.ct-product-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--ink);
}

.ct-product-card-compare {
  font-size: 0.85rem;
  color: var(--smoke);
  text-decoration: line-through;
  opacity: 0.5;
}

.ct-collection-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 0;
  font-size: 0.88rem;
  color: var(--smoke);
}

/* ============================================
   GLOBAL TEXT SIZE BOOST v4
   ============================================ */

/* Navigation */
.ct-header-nav a {
  font-size: 0.75rem !important;
  letter-spacing: 0.26em !important;
}

/* Announcement */
.ct-announcement {
  font-size: 0.65rem !important;
  letter-spacing: 0.38em !important;
}

/* Hero */
.ct-hero-title {
  font-size: clamp(3.4rem, 6.5vw, 6rem) !important;
}
.ct-hero-sub {
  font-size: 0.82rem !important;
  letter-spacing: 0.14em !important;
  line-height: 2.3 !important;
}
.ct-eyebrow,
.ct-product-eyebrow,
.ct-section-label {
  font-size: 0.67rem !important;
  letter-spacing: 0.44em !important;
}

/* Section titles */
.ct-section-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem) !important;
}
.ct-section-body {
  font-size: 0.88rem !important;
  line-height: 2.2 !important;
  letter-spacing: 0.05em !important;
}

/* Pillars */
.ct-pillar-title {
  font-size: 0.75rem !important;
  letter-spacing: 0.22em !important;
}
.ct-pillar-desc {
  font-size: 0.84rem !important;
  line-height: 2.1 !important;
}
.ct-pillar-num {
  font-size: 4.2rem !important;
}

/* Split section */
.ct-split-content h2 {
  font-size: clamp(2.1rem, 3.6vw, 3.2rem) !important;
}
.ct-split-content p {
  font-size: 0.84rem !important;
  line-height: 2.2 !important;
}
.ct-split-checklist li {
  font-size: 0.82rem !important;
  line-height: 2 !important;
  letter-spacing: 0.08em !important;
}

/* Featured product */
.ct-product-name {
  font-size: clamp(3.2rem, 5.5vw, 5.5rem) !important;
}
.ct-product-tagline {
  font-size: 1.15rem !important;
}
.ct-ing-name {
  font-size: 0.74rem !important;
  letter-spacing: 0.2em !important;
}
.ct-ing-desc {
  font-size: 0.82rem !important;
  line-height: 1.9 !important;
}
.ct-product-price {
  font-size: 2.8rem !important;
}
.ct-product-price small {
  font-size: 0.78rem !important;
}

/* Theory cards */
.ct-theory-header h2 {
  font-size: clamp(2.8rem, 5.2vw, 4.8rem) !important;
}
.ct-theory-header p {
  font-size: 0.84rem !important;
  line-height: 2.1 !important;
}
.ct-card-title {
  font-size: 0.74rem !important;
  letter-spacing: 0.26em !important;
}
.ct-card-desc {
  font-size: 0.84rem !important;
  line-height: 2.1 !important;
}
.ct-card-num {
  font-size: 5.5rem !important;
}

/* Testimonials */
.ct-testimonials-header h2 {
  font-size: clamp(2.4rem, 4.2vw, 4rem) !important;
}
.ct-review-text {
  font-size: 1.18rem !important;
  line-height: 1.85 !important;
}
.ct-review-author {
  font-size: 0.66rem !important;
  letter-spacing: 0.28em !important;
}

/* FAQ */
.ct-faq-heading {
  font-size: clamp(2.4rem, 3.4vw, 3.4rem) !important;
}
.ct-faq-q span:first-child {
  font-size: 0.75rem !important;
  letter-spacing: 0.18em !important;
}
.ct-faq-a {
  font-size: 0.84rem !important;
  line-height: 2.2 !important;
}

/* Footer */
.ct-footer-brand-name {
  font-size: 1.7rem !important;
}
.ct-footer-tagline {
  font-size: 0.78rem !important;
  line-height: 2.1 !important;
}
.ct-footer-col-title {
  font-size: 0.63rem !important;
  letter-spacing: 0.38em !important;
}
.ct-footer-links a {
  font-size: 0.78rem !important;
  letter-spacing: 0.08em !important;
}
.ct-footer-bottom {
  font-size: 0.63rem !important;
}
.ct-footer-social a {
  font-size: 0.65rem !important;
}

/* Buttons global */
.ct-btn {
  font-size: 0.7rem !important;
  letter-spacing: 0.3em !important;
  padding: 17px 42px !important;
}
.ct-btn-ghost,
.ct-btn-ghost-light {
  padding: 0 0 3px 0 !important;
}

/* Collection page responsive */
@media (max-width: 1024px) {
  .ct-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
  .ct-collection {
    padding: 60px 32px 80px;
  }
}

@media (max-width: 600px) {
  .ct-product-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ct-collection {
    padding: 48px 20px 64px;
  }
}

/* ============================================
   V5 — Variable font sizes & line heights
   ============================================ */

/* Line heights that scale with body font size */
.ct-section-body,
.ct-pillar-desc,
.ct-card-desc,
.ct-ing-desc,
.ct-faq-a,
.ct-split-content p,
.ct-collection-desc,
.ct-footer-tagline,
.ct-nervous-content p,
.ct-theory-header p,
.ct-formulation-intro,
.ct-principle p,
.ct-story-pillar p { line-height: 2.1 !important; }

.ct-review-text { line-height: 1.85 !important; }

/* Hero sub text */
.ct-hero-sub { font-size: calc(var(--fs-body) * 0.95) !important; line-height: 2.2 !important; }

/* Product tagline */
.ct-product-tagline { font-size: calc(var(--fs-body) * 1.15) !important; }
.ct-product-price { font-size: calc(var(--fs-section) * 0.75) !important; }
.ct-product-price small { font-size: calc(var(--fs-body) * 0.9) !important; }

/* Card numbers */
.ct-pillar-num { font-size: calc(var(--fs-section) * 1.1) !important; }
.ct-card-num { font-size: calc(var(--fs-section) * 1.4) !important; }

/* Collection card title */
.ct-product-card-title { font-size: calc(var(--fs-body) * 1.4) !important; }
.ct-product-card-price { font-size: calc(var(--fs-body) * 1.2) !important; }
.ct-product-card-tagline { font-size: calc(var(--fs-body) * 0.95) !important; }

/* Footer links */
.ct-footer-links a { font-size: calc(var(--fs-body) * 0.9) !important; }
.ct-footer-bottom { font-size: calc(var(--fs-label) * 0.95) !important; }
.ct-footer-social a { font-size: var(--fs-label) !important; }
.ct-footer-brand-name { font-size: calc(var(--fs-section) * 0.55) !important; }

/* FAQ question */
.ct-faq-q span:first-child { font-size: calc(var(--fs-body) * 0.88) !important; }

/* Announcement */
.ct-announcement { font-size: calc(var(--fs-label) * 1.05) !important; }

/* Review author */
.ct-review-author { font-size: calc(var(--fs-label) * 1.0) !important; }

/* Ingredient name */
.ct-ing-name { font-size: calc(var(--fs-body) * 0.88) !important; }

/* Split checklist */
.ct-split-checklist li { font-size: calc(var(--fs-body) * 0.96) !important; }

/* Button ghost overrides */
.ct-btn-ghost, .ct-btn-ghost-light { padding: 0 0 3px 0 !important; }

/* ---- SCROLL INDICATOR ---- */
.ct-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.ct-hero-scroll.ct-scroll-visible {
  opacity: 1;
  transform: translateY(0);
  animation: ctScrollBreath 1.2s ease-in-out 2s infinite alternate;
}
.ct-hero-scroll-line {
  position: relative;
  height: 1px;
  background: var(--smoke);
  width: 0;
  transition: width 1.2s ease 0.3s;
}
.ct-hero-scroll.ct-scroll-visible .ct-hero-scroll-line {
  width: 36px;
}
.ct-hero-scroll-line::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -3px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: ctScrollPulse 1.2s ease-in-out infinite;
}
.ct-hero-scroll-text {
  font-size: 0.52rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--smoke);
}

@keyframes ctScrollBreath {
  0%   { transform: translateX(0);    opacity: 0.5; }
  100% { transform: translateX(18px); opacity: 1;   }
}

@keyframes ctScrollPulse {
  0%, 100% { opacity: 1;   transform: scale(1);   }
  50%       { opacity: 0.3; transform: scale(0.5); }
}

/* ---- FAQ BOTANICAL DECORATION ---- */
.ct-faq {
  overflow: hidden;
  position: relative;
}

.ct-faq-heading {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ct-faq-botanical {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  width: 240px;
  height: auto;
  opacity: 0.60;
  pointer-events: none;
  animation: ctFaqGrow 2.8s ease-in-out infinite alternate;
}

@keyframes ctFaqGrow {
  0%   { opacity: 0.10; transform: translate(-50%, -30%) scale(1);    }
  100% { opacity: 0.22; transform: translate(-50%, -30%) scale(1.05); }
}


/* ---- PHILOSOPHY BACKGROUND ANIMATION ---- */
.ct-philosophy {
  position: relative;
  overflow: hidden;
}

.ct-philosophy-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ct-philosophy > *:not(.ct-philosophy-bg) {
  position: relative;
  z-index: 1;
}

/* Floating orbs */
.ct-phil-orb {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(196,151,59,0.45);
}
.ct-phil-orb-1 {
  width: 400px; height: 400px;
  top: -100px; left: -80px;
  animation: ctPhilOrb1 12s ease-in-out infinite alternate;
}
.ct-phil-orb-2 {
  width: 280px; height: 280px;
  top: 40px; left: 40px;
  border-color: rgba(196,151,59,0.3);
  animation: ctPhilOrb1 16s ease-in-out infinite alternate-reverse;
}
.ct-phil-orb-3 {
  width: 500px; height: 500px;
  bottom: -200px; right: -100px;
  border-color: rgba(196,151,59,0.45);
  animation: ctPhilOrb2 14s ease-in-out infinite alternate;
}
.ct-phil-orb-4 {
  width: 200px; height: 200px;
  bottom: 20px; right: 100px;
  border-color: rgba(196,151,59,0.35);
  animation: ctPhilOrb2 10s ease-in-out infinite alternate-reverse;
}

/* Floating dots */
.ct-phil-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
}
.ct-phil-dot-1 {
  width: 7px; height: 7px;
  top: 30%; left: 25%;
  opacity: 0.7;
  animation: ctPhilDot 5s ease-in-out infinite alternate;
}
.ct-phil-dot-2 {
  width: 5px; height: 5px;
  top: 60%; left: 70%;
  opacity: 0.6;
  animation: ctPhilDot 8s ease-in-out 1s infinite alternate-reverse;
}
.ct-phil-dot-3 {
  width: 8px; height: 8px;
  top: 20%; right: 20%;
  opacity: 0.65;
  animation: ctPhilDot 5s ease-in-out 2s infinite alternate;
}
.ct-phil-dot-4 {
  width: 5px; height: 5px;
  bottom: 30%; left: 45%;
  opacity: 0.6;
  animation: ctPhilDot 7s ease-in-out 0.5s infinite alternate-reverse;
}

/* Drifting rules */
.ct-phil-rule {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,151,59,0.4), transparent);
  width: 60%;
  left: 20%;
}
.ct-phil-rule-1 {
  top: 40%;
  animation: ctPhilRule 3s linear infinite;
}
.ct-phil-rule-2 {
  bottom: 40%;
  width: 40%;
  left: 30%;
  animation: ctPhilRule 3s linear infinite reverse;
}

@keyframes ctPhilOrb1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 20px) scale(1.06); }
}
@keyframes ctPhilOrb2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-25px, -15px) scale(1.04); }
}
@keyframes ctPhilDot {
  0%   { transform: translate(0, 0);       opacity: 0.4; }
  100% { transform: translate(12px, -8px); opacity: 0.8; }
}
@keyframes ctPhilRule {
  0%   { transform: translateX(-10%); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateX(10%);  opacity: 0; }
}/

/* ---- INGREDIENTS PAGE ---- */
.ct-ing-page {
  position: relative;
  overflow: hidden;
}

/* Background animation */
.ct-ing-page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ct-ing-page > *:not(.ct-ing-page-bg) {
  position: relative;
  z-index: 1;
}

.ct-ing-orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(196,151,59,0.15);
}
.ct-ing-orb-1 {
  width: 500px; height: 500px;
  top: -100px; right: -150px;
  animation: ctIngOrb 16s ease-in-out infinite alternate;
}
.ct-ing-orb-2 {
  width: 350px; height: 350px;
  top: 40%; left: -100px;
  border-color: rgba(196,151,59,0.1);
  animation: ctIngOrb 20s ease-in-out 2s infinite alternate-reverse;
}
.ct-ing-orb-3 {
  width: 250px; height: 250px;
  bottom: 10%; right: 5%;
  border-color: rgba(196,151,59,0.12);
  animation: ctIngOrb 14s ease-in-out 1s infinite alternate;
}
.ct-ing-botanical {
  position: absolute;
  right: 60px;
  top: 100px;
  width: 200px;
  height: auto;
  opacity: 0.7;
  animation: ctIngBotanical 12s ease-in-out infinite alternate;
}

@keyframes ctIngOrb {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(20px,30px) scale(1.05); }
}
@keyframes ctIngBotanical {
  0%   { opacity: 0.5; transform: translateY(0); }
  100% { opacity: 0.8; transform: translateY(-20px); }
}

/* Hero */
.ct-ing-hero {
  max-width: 860px;
  margin: 0 auto;
  padding: 100px 48px 60px;
  text-align: center;
}
.ct-ing-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.1;
  margin: 16px 0 28px;
}
.ct-ing-title-divider {
  width: 48px; height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
}
.ct-ing-intro {
  font-size: 0.88rem;
  line-height: 2.2;
  color: var(--smoke);
  max-width: 640px;
  margin: 0 auto;
}

/* Hero image */
.ct-ing-hero-image {
  position: relative;
  height: 480px;
  overflow: hidden;
  margin-bottom: 0;
}
.ct-ing-hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--cream) 100%);
}

/* Product group header */
.ct-ing-product-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 300px;
  margin: 60px 0 0;
  background: var(--ink);
}
.ct-ing-product-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 72px;
}
.ct-ing-product-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.ct-ing-product-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.ct-ing-product-desc {
  font-size: 0.82rem;
  line-height: 2.1;
  color: rgba(245,239,228,0.45);
}
.ct-ing-product-image {
  overflow: hidden;
  min-height: 300px;
}

/* Ingredient rows */
.ct-ing-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  padding: 44px 80px;
  border-bottom: 1px solid rgba(28,20,16,0.07);
  align-items: start;
  background: var(--white);
  transition: background 0.3s ease;
}
.ct-ing-row:hover { background: var(--cream); }
.ct-ing-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
}
.ct-ing-benefit {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.ct-ing-body {
  font-size: 0.82rem;
  line-height: 2.1;
  color: var(--smoke);
  margin-bottom: 12px;
}
.ct-ing-why {
  font-size: 0.75rem;
  line-height: 1.9;
  color: var(--smoke);
  opacity: 0.7;
  font-style: italic;
}
.ct-ing-why em {
  font-style: normal;
  color: var(--gold);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Section divider */
.ct-ing-section-divider {
  text-align: center;
  padding: 64px 48px 32px;
  position: relative;
}
.ct-ing-section-divider::before,
.ct-ing-section-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 28%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,151,59,0.3));
}
.ct-ing-section-divider::before { left: 8%; }
.ct-ing-section-divider::after {
  right: 8%;
  background: linear-gradient(90deg, rgba(196,151,59,0.3), transparent);
}
.ct-ing-section-divider span {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--ink);
  position: relative;
  z-index: 1;
}

/* Bottom CTA */
.ct-ing-cta {
  text-align: center;
  padding: 100px 48px;
  background: var(--parchment);
}
.ct-ing-cta-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  color: var(--smoke);
  margin-bottom: 36px;
}

/* Mobile */
@media (max-width: 900px) {
  .ct-ing-product-group { grid-template-columns: 1fr; }
  .ct-ing-product-header { padding: 40px 32px; }
  .ct-ing-row { grid-template-columns: 1fr; gap: 16px; padding: 32px 24px; }
  .ct-ing-hero { padding: 60px 24px 40px; }
}

/* ---- OUR STORY INGREDIENTS — override fix ---- */
.ct-ingredients-story .ct-ing-rows {
  display: flex;
  flex-direction: column;
}

.ct-ingredients-story .ct-ing-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: start;
  background: transparent !important;
  transition: none !important;
}

.ct-ingredients-story .ct-ing-row:hover {
  background: transparent !important;
}

.ct-ingredients-story .ct-ing-row-name {
  font-size: 0.62rem !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
}

.ct-ingredients-story .ct-ing-row-desc {
  font-size: 0.72rem !important;
  line-height: 1.9 !important;
  color: rgba(245,239,228,0.4) !important;
}

.ct-ingredients-story .ct-ing-row-desc em {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-size: 0.9rem !important;
  color: rgba(245,239,228,0.65) !important;
}


/* ---- INGREDIENTS PAGE RICH BLOCK ---- */
.ct-ing-rich-block {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 80px;
  background: var(--white);
  border-bottom: 1px solid rgba(28,20,16,0.07);
}

.ct-ing-rich-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
}

.ct-ing-rich-subheading {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.ct-ing-rich-body {
  font-size: 0.82rem;
  line-height: 2.2;
  color: var(--smoke);
}

.ct-ing-rich-body p {
  margin-bottom: 16px;
}

.ct-ing-rich-body ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}

.ct-ing-rich-body ul li {
  font-size: 0.78rem;
  color: var(--smoke);
  padding-left: 20px;
  position: relative;
  line-height: 1.8;
}

.ct-ing-rich-body ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.5rem;
  top: 5px;
}

.ct-ing-rich-body strong {
  color: var(--ink);
  font-weight: 400;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .ct-ing-rich-block { padding: 40px 24px; }
  .ct-ing-rich-body ul { grid-template-columns: 1fr; }
}

/* ---- THE RITUAL PAGE ---- */
.ct-ritual-page {
  position: relative;
  overflow: hidden;
}
.ct-ritual-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.ct-ritual-page > *:not(.ct-ritual-bg) {
  position: relative;
  z-index: 1;
}
.ct-ritual-orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(196,151,59,0.15);
}
.ct-ritual-orb-1 { width:600px;height:600px;top:-150px;right:-150px;animation:ctRitualOrb 18s ease-in-out infinite alternate; }
.ct-ritual-orb-2 { width:400px;height:400px;top:35%;left:-120px;border-color:rgba(196,151,59,0.1);animation:ctRitualOrb 22s ease-in-out 3s infinite alternate-reverse; }
.ct-ritual-orb-3 { width:300px;height:300px;bottom:15%;right:8%;border-color:rgba(196,151,59,0.12);animation:ctRitualOrb 16s ease-in-out 1s infinite alternate; }
.ct-ritual-dot { position:absolute;border-radius:50%;background:var(--gold); }
.ct-ritual-dot-1 { width:5px;height:5px;top:20%;left:10%;opacity:0.4;animation:ctRitualDot 9s ease-in-out infinite alternate; }
.ct-ritual-dot-2 { width:4px;height:4px;top:55%;right:15%;opacity:0.3;animation:ctRitualDot 13s ease-in-out 2s infinite alternate-reverse; }
.ct-ritual-dot-3 { width:6px;height:6px;bottom:25%;left:40%;opacity:0.35;animation:ctRitualDot 11s ease-in-out 1s infinite alternate; }
@keyframes ctRitualOrb { 0%{transform:translate(0,0) scale(1);}100%{transform:translate(24px,32px) scale(1.06);} }
@keyframes ctRitualDot { 0%{transform:translate(0,0);opacity:0.25;}100%{transform:translate(14px,-10px);opacity:0.55;} }

/* Hero */
.ct-ritual-hero { max-width:900px;margin:0 auto;padding:100px 48px 56px;text-align:center; }
.ct-ritual-title { font-family:'Cormorant Garamond',serif;font-size:clamp(3.5rem,7vw,6.5rem);font-weight:300;color:var(--ink);line-height:1.05;margin:16px 0 32px; }
.ct-ritual-divider { width:48px;height:1px;background:var(--gold);margin:0 auto 28px; }
.ct-ritual-hero-sub { font-family:'Cormorant Garamond',serif;font-size:1.2rem;font-style:italic;font-weight:300;color:var(--smoke); }

/* Pull quote banners */
.ct-ritual-banner { padding:80px 48px;text-align:center; }
.ct-ritual-banner-dark { background:var(--ink); }
.ct-ritual-banner-parchment { background:var(--parchment); }
.ct-ritual-pull {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2rem,4vw,3.5rem);
  font-weight:300;
  color:var(--cream);
  line-height:1.3;
  max-width:800px;
  margin:0 auto;
}
.ct-ritual-pull-sm {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(1.3rem,2.5vw,2rem);
  font-style:italic;
  font-weight:300;
  color:var(--ink);
  line-height:1.7;
  max-width:700px;
  margin:0 auto;
}

/* Sections */
.ct-ritual-section { padding:100px 80px;background:var(--white); }
.ct-ritual-section-alt { background:var(--cream); }
.ct-ritual-section-dark { background:var(--ink);padding:100px 80px; }
.ct-ritual-section-closing { background:var(--cream); }

.ct-ritual-section-label {
  font-size:0.6rem;
  letter-spacing:0.5em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:20px;
}
.ct-ritual-section-title {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.2rem,4vw,3.8rem);
  font-weight:300;
  color:var(--ink);
  line-height:1.1;
  margin-bottom:48px;
}
.ct-ritual-closing-title em { font-style:italic;color:var(--clove); }

/* Two column */
.ct-ritual-two-col { display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:start; }
.ct-ritual-two-col p { font-size:0.88rem;line-height:2.2;color:var(--smoke);margin-bottom:20px; }

/* Stats */
.ct-ritual-stat-block { display:flex;flex-direction:column;gap:40px; }
.ct-ritual-stat { border-left:2px solid var(--gold);padding-left:24px; }
.ct-ritual-stat-num { display:block;font-family:'Cormorant Garamond',serif;font-size:3.5rem;font-weight:300;color:var(--ink);line-height:1; }
.ct-ritual-stat-label { display:block;font-size:0.65rem;letter-spacing:0.25em;text-transform:uppercase;color:var(--smoke);margin-top:8px; }

/* Cards row */
.ct-ritual-cards-row { display:grid;grid-template-columns:repeat(3,1fr);gap:2px; }
.ct-ritual-card { background:var(--white);padding:48px 36px;transition:background 0.3s ease; }
.ct-ritual-section-alt .ct-ritual-card { background:var(--parchment); }
.ct-ritual-card:hover { background:var(--clove); }
.ct-ritual-card:hover h3,
.ct-ritual-card:hover p { color:var(--cream); }
.ct-ritual-card-icon { font-size:1.5rem;color:var(--gold);margin-bottom:20px;opacity:0.6; }
.ct-ritual-card h3 { font-family:'Cormorant Garamond',serif;font-size:1.3rem;font-weight:400;color:var(--ink);margin-bottom:14px;transition:color 0.3s; }
.ct-ritual-card p { font-size:0.82rem;line-height:2;color:var(--smoke);transition:color 0.3s; }

/* Promise row */
.ct-ritual-promise-row { display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-top:48px; }
.ct-ritual-promise { display:flex;flex-direction:column;align-items:center;text-align:center;gap:12px;padding:32px 24px;border:1px solid var(--parchment); }
.ct-ritual-promise-x { font-size:1.2rem;color:var(--clove);opacity:0.6; }
.ct-ritual-promise-check { font-size:0.7rem;color:var(--gold); }
.ct-ritual-promise span:last-child { font-size:0.75rem;letter-spacing:0.1em;color:var(--smoke);line-height:1.7; }

/* Beliefs */
.ct-ritual-beliefs { display:grid;grid-template-columns:1fr 1fr;gap:2px; }
.ct-ritual-belief { background:rgba(255,255,255,0.04);padding:56px 48px;border-bottom:1px solid rgba(255,255,255,0.05);transition:background 0.3s; }
.ct-ritual-belief:hover { background:rgba(196,151,59,0.08); }
.ct-ritual-belief-num { font-family:'Cormorant Garamond',serif;font-size:4rem;font-weight:300;color:rgba(196,151,59,0.2);line-height:1;margin-bottom:16px; }
.ct-ritual-belief h3 { font-family:'Cormorant Garamond',serif;font-size:1.5rem;font-weight:300;color:var(--cream);margin-bottom:14px; }
.ct-ritual-belief p { font-size:0.82rem;line-height:2.1;color:rgba(245,239,228,0.45); }

/* List */
.ct-ritual-list { list-style:none;padding:0;margin:24px 0; }
.ct-ritual-list li { font-size:0.82rem;line-height:2;color:var(--smoke);padding:8px 0 8px 24px;position:relative;border-bottom:1px solid rgba(28,20,16,0.05); }
.ct-ritual-list li::before { content:'✦';position:absolute;left:0;color:var(--gold);font-size:0.5rem;top:12px; }

/* Closing */
.ct-ritual-body-wide { max-width:720px;margin-bottom:56px; }
.ct-ritual-body-wide p { font-size:0.88rem;line-height:2.2;color:var(--smoke);margin-bottom:20px; }
.ct-ritual-closing-row { display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:start; }
.ct-ritual-closing-text p { font-size:0.88rem;line-height:2.3;color:var(--smoke);margin-bottom:20px; }
.ct-ritual-closing-steps { display:flex;flex-direction:column;gap:0; }
.ct-ritual-step { display:flex;gap:24px;align-items:flex-start;padding:28px 0;border-bottom:1px solid rgba(28,20,16,0.08); }
.ct-ritual-step-num { font-family:'Cormorant Garamond',serif;font-size:2rem;font-weight:300;color:var(--clove);opacity:0.5;flex-shrink:0;line-height:1;width:36px; }
.ct-ritual-step strong { display:block;font-size:0.7rem;letter-spacing:0.2em;text-transform:uppercase;color:var(--ink);margin-bottom:8px;font-weight:400; }
.ct-ritual-step p { font-size:0.78rem;line-height:1.9;color:var(--smoke);margin:0; }

/* CTA */
.ct-ritual-cta { text-align:center;padding:100px 48px;background:var(--ink); }
.ct-ritual-cta-eyebrow { font-size:0.62rem;letter-spacing:0.45em;text-transform:uppercase;color:var(--gold);margin-bottom:24px; }
.ct-ritual-cta-quote { font-family:'Cormorant Garamond',serif;font-size:clamp(1.5rem,3vw,2.5rem);font-weight:300;color:var(--cream);margin-bottom:48px;line-height:1.4; }
.ct-ritual-cta-quote em { font-style:italic;color:var(--gold); }

/* Mobile */
@media (max-width:900px) {
  .ct-ritual-hero { padding:60px 24px 40px; }
  .ct-ritual-section,.ct-ritual-section-dark { padding:72px 24px; }
  .ct-ritual-banner { padding:60px 24px; }
  .ct-ritual-two-col,.ct-ritual-closing-row,.ct-ritual-beliefs { grid-template-columns:1fr; }
  .ct-ritual-cards-row,.ct-ritual-promise-row { grid-template-columns:1fr; }
  .ct-ritual-cta { padding:72px 24px; }
}