/* PETVITY shared styles · v7 · editorial · Italiana (display) + Inter (body) */
@import url('https://fonts.googleapis.com/css2?family=Italiana&family=Inter:wght@200;300;400;500;600;700&display=swap');

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

:root {
  --ivory: #FAF8F5;
  --warm-white: #FFFDFB;
  --sand: #F3EDE4;
  --linen: #EDE7DD;
  --forest: #2D4A3E;
  --forest-deep: #1B3329;
  --forest-light: #E8EFEB;
  --moss: #5A7A6A;
  --gold: #C9A96E;
  --gold-warm: #B8944F;
  --gold-light: #F5EDD8;
  --charcoal: #1E1E1E;
  --text: #3A3632;
  --text-soft: #7A756E;
  --text-faint: #A9A39B;
  --terracotta: #C4785C;
  --blush: #E8D5CC;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text); background: var(--warm-white);
  line-height: 1.7; font-weight: 300; letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; overflow-x: hidden;
}
/* DISPLAY — large editorial headlines · thin elegant fashion-magazine feel */
h1, h2 {
  font-family: 'Italiana', 'Times New Roman', serif;
  font-weight: 400; line-height: 1.02; letter-spacing: -0.01em;
}
/* SUB-DISPLAY — section headings + smaller titles · clean modern sans */
h3, h4, h5, h6 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400; line-height: 1.2; letter-spacing: -0.025em;
}
h1 em, h2 em { color: var(--gold); font-weight: 400; }
h3 em, h4 em, h5 em { color: var(--gold); font-weight: 500; }
h4, h5 { font-weight: 500; }
p { font-weight: 300; }
strong { font-weight: 500; }
img { display: block; max-width: 100%; }
::selection { background: var(--gold); color: var(--forest-deep); }

/* Utility */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 32px; }
.section-sm { padding: 80px 32px; }
.label { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: inline-block; }
.text-center { text-align: center; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; border: none; border-radius: 0; font-family: 'Inter', sans-serif; font-weight: 500; font-size: 14px; letter-spacing: 0.5px; cursor: pointer; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); text-decoration: none; }
.btn-primary { background: var(--forest); color: #fff; padding: 16px 40px; }
.btn-primary:hover { background: var(--forest-deep); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(45,74,62,0.25); }
.btn-outline { background: transparent; color: var(--forest); border: 1.5px solid var(--forest); padding: 15px 38px; }
.btn-outline:hover { background: var(--forest); color: #fff; }
.btn-light { background: rgba(255,255,255,0.15); color: #fff; border: 1.5px solid rgba(255,255,255,0.3); padding: 15px 38px; backdrop-filter: blur(4px); }
.btn-light:hover { background: rgba(255,255,255,0.25); }
.btn-gold { background: var(--gold); color: #fff; padding: 16px 40px; }
.btn-gold:hover { background: var(--gold-warm); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,169,110,0.3); }
.btn-full { width: 100%; justify-content: center; }

/* Animations */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
@keyframes gentle-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes scale-in { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
@keyframes slide-up { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ken-burns { 0% { transform: scale(1); } 100% { transform: scale(1.12); } }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(201,169,110,0.6); } 50% { box-shadow: 0 0 0 18px rgba(201,169,110,0); } }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-6px); opacity: 1; } }

/* Navigation */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 32px; transition: all 0.5s ease; background: rgba(250,248,245,0.96); backdrop-filter: blur(24px); box-shadow: 0 1px 0 rgba(0,0,0,0.05); }
.navbar.hero-mode { background: transparent; box-shadow: none; backdrop-filter: none; }
.navbar.scrolled { background: rgba(250,248,245,0.96); backdrop-filter: blur(24px); box-shadow: 0 1px 0 rgba(0,0,0,0.05); }
.navbar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo { font-family: 'Inter', sans-serif; font-size: 30px; font-weight: 700; color: var(--forest-deep); letter-spacing: 3.5px; text-decoration: none; }
.navbar.hero-mode .logo { color: #fff; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link { font-size: 13px; font-weight: 400; color: var(--text); letter-spacing: 0.5px; text-decoration: none; transition: color 0.3s; position: relative; }
.navbar.hero-mode .nav-link { color: rgba(255,255,255,0.85); }
.nav-link:hover { color: var(--forest); }
.navbar.hero-mode .nav-link:hover { color: var(--gold); }
.nav-link.active { color: var(--forest); font-weight: 500; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.mobile-toggle { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--text); padding: 8px; }
.navbar.hero-mode .mobile-toggle { color: #fff; }
.mobile-menu { display: none; position: fixed; top: 80px; left: 0; right: 0; bottom: 0; z-index: 999; background: rgba(250,248,245,0.98); backdrop-filter: blur(24px); padding: 40px 32px; flex-direction: column; gap: 0; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 20px 0; font-size: 18px; font-weight: 400; letter-spacing: 0.5px; border-bottom: 1px solid var(--linen); color: var(--text); text-decoration: none; }

@media (max-width: 960px) {
  .nav-links { display: none !important; }
  .mobile-toggle { display: block !important; }
}

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; background: var(--forest-deep); }
.hero-sm { min-height: 60vh; padding-top: 100px; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-media-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media-img { animation: ken-burns 30s ease-in-out infinite alternate; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(170deg, rgba(27,51,41,0.88) 0%, rgba(45,74,62,0.78) 40%, rgba(90,122,106,0.68) 100%), radial-gradient(ellipse at 70% 30%, rgba(201,169,110,0.18) 0%, transparent 50%); }
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; width: 100%; padding: 140px 32px 100px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 80px; align-items: center; }
.hero-sm .hero-content { grid-template-columns: 1fr; padding: 100px 32px 60px; text-align: center; }
.hero-sm .hero-text { max-width: 800px; margin: 0 auto; }
.hero-text { animation: slide-up 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.hero-text .label { color: var(--gold); opacity: 0.95; margin-bottom: 24px; }
.hero h1 { font-size: clamp(40px, 5.5vw, 68px); color: #fff; margin-bottom: 28px; font-weight: 300; }
.hero-sm h1 { font-size: clamp(36px, 4.5vw, 56px); margin-bottom: 20px; }
.hero h1 em { color: var(--gold); }
.hero-desc { font-size: 17px; line-height: 1.8; color: rgba(255,255,255,0.78); margin-bottom: 48px; max-width: 540px; font-weight: 300; }
.hero-sm .hero-desc { margin: 0 auto 32px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-sm .hero-buttons { justify-content: center; }
.hero-image { animation: fade-in 1.5s ease 0.3s both; }
.hero-image-container { width: 100%; aspect-ratio: 4/5; border-radius: 200px 200px 24px 24px; overflow: hidden; position: relative; box-shadow: 0 40px 80px rgba(0,0,0,0.4); border: 1px solid rgba(201,169,110,0.25); }
.hero-image-container img { width: 100%; height: 100%; object-fit: cover; animation: ken-burns 25s ease-in-out infinite alternate; }
.hero-trust { display: flex; gap: 48px; margin-top: 56px; }
.hero-trust-item { color: rgba(255,255,255,0.6); font-size: 13px; }
.hero-trust-item strong { display: block; font-size: 22px; color: #fff; font-family: 'Inter', sans-serif; font-weight: 500; margin-bottom: 2px; }

@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; padding-top: 120px; }
  .hero-desc { margin: 0 auto 48px; }
  .hero-buttons { justify-content: center; }
  .hero-image { display: none; }
  .hero-trust { justify-content: center; flex-wrap: wrap; gap: 24px; }
}

/* Statement */
.statement { padding: 80px 32px; background: var(--ivory); text-align: center; border-bottom: 1px solid var(--linen); }
.statement blockquote { font-family: 'Inter', sans-serif; font-size: clamp(24px, 3.5vw, 40px); font-weight: 400; color: var(--forest); max-width: 800px; margin: 0 auto; line-height: 1.4; }

/* Pillars */
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 64px; }
.pillar { padding: 40px 32px; border-radius: 20px; background: var(--ivory); border: 1px solid var(--linen); transition: all 0.4s ease; position: relative; overflow: hidden; }
.pillar:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.06); border-color: var(--gold); }
.pillar-num { font-family: 'Inter', sans-serif; font-size: 48px; font-weight: 300; color: var(--gold); opacity: 0.4; position: absolute; top: 20px; right: 24px; }
.pillar h4 { font-size: 18px; margin-bottom: 12px; color: var(--forest); }
.pillar p { font-size: 14px; color: var(--text-soft); line-height: 1.7; }
@media (max-width: 800px) { .pillars-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .pillars-grid { grid-template-columns: 1fr; } }

/* Path */
.path-section { background: var(--warm-white); }
.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.path-card { position: relative; height: 420px; border-radius: 24px; overflow: hidden; cursor: pointer; transition: all 0.5s cubic-bezier(.2,.8,.2,1); border: 1px solid var(--linen); display: block; text-decoration: none; }
.path-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.path-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(27,51,41,0.85) 100%); }
.path-card-content { position: absolute; inset: auto 0 0 0; padding: 36px 32px; z-index: 1; color: #fff; }
.path-card-content h3 { font-family: 'Inter', sans-serif; font-size: 32px; margin-bottom: 8px; color: #fff; }
.path-card-content p { font-size: 14px; opacity: 0.92; margin-bottom: 16px; line-height: 1.6; }
.path-card-cta { color: var(--gold); font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; }
.path-card:hover { transform: translateY(-6px); box-shadow: 0 28px 70px rgba(0,0,0,0.18); }
.path-card:hover img { transform: scale(1.06); }
@media (max-width: 800px) { .path-grid { grid-template-columns: 1fr; } }

/* Harmony */
.harmony-section { background: var(--forest-deep); color: #fff; position: relative; overflow: hidden; }
.harmony-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(201,169,110,0.08) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 40%); }
.harmony-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.harmony-visual { aspect-ratio: 1; border-radius: 50%; position: relative; background: conic-gradient(from 0deg, rgba(201,169,110,0.15), rgba(90,122,106,0.2), rgba(201,169,110,0.15)); display: flex; align-items: center; justify-content: center; max-width: 420px; margin: 0 auto; animation: gentle-float 6s ease-in-out infinite; }
.harmony-inner { width: 75%; height: 75%; border-radius: 50%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; flex-direction: column; backdrop-filter: blur(8px); }
.harmony-inner .h-label { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.harmony-inner .h-title { font-family: 'Inter', sans-serif; font-size: 36px; font-weight: 400; }
.harmony-inner .h-score { font-family: 'Inter', sans-serif; font-size: 64px; font-weight: 500; color: var(--gold); line-height: 1; margin-top: 4px; }
.harmony-inner .h-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 8px; text-align: center; padding: 0 12px; }
.harmony-text h2 { font-size: clamp(30px, 4vw, 46px); color: #fff; margin-bottom: 24px; }
.harmony-text p { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.harmony-aspects { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.harmony-aspect { padding: 20px; border-radius: 12px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); }
.harmony-aspect h5 { font-size: 14px; color: var(--gold); margin-bottom: 4px; }
.harmony-aspect p { font-size: 13px; color: rgba(255,255,255,0.5); margin: 0; }
@media (max-width: 800px) { .harmony-grid { grid-template-columns: 1fr; text-align: center; } .harmony-aspects { max-width: 400px; margin: 32px auto 0; } }

/* Two col content */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col-image { aspect-ratio: 4/5; border-radius: 24px; overflow: hidden; }
.two-col-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.two-col-image:hover img { transform: scale(1.04); }
.two-col-text h2 { font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 24px; }
.two-col-text h2 em { color: var(--gold); }
.two-col-text p { font-size: 16px; line-height: 1.85; color: var(--text-soft); margin-bottom: 18px; }
.two-col-text p strong { color: var(--forest); font-weight: 500; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; gap: 40px; } .two-col-image { max-height: 480px; } }

/* Products */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.product-card { border-radius: 20px; overflow: hidden; background: #fff; border: 1px solid var(--linen); transition: all 0.4s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.product-img { aspect-ratio: 4/3; position: relative; overflow: hidden; background: var(--linen); }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-category-tag { position: absolute; top: 16px; left: 16px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--forest); background: rgba(255,255,255,0.92); padding: 6px 14px; border-radius: 6px; font-weight: 500; backdrop-filter: blur(4px); z-index: 1; }
.product-body { padding: 24px; }
.product-brand { font-size: 11px; color: var(--text-faint); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.product-title { font-size: 17px; font-weight: 500; margin-bottom: 8px; color: var(--forest); }
.product-desc { font-size: 13px; color: var(--text-soft); line-height: 1.6; margin-bottom: 16px; }
.product-footer { display: flex; justify-content: space-between; align-items: center; }
.product-price { font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 600; color: var(--forest); }
.product-btn { font-size: 13px; color: var(--forest); font-weight: 500; cursor: pointer; transition: color 0.3s; text-decoration: none; background: none; border: none; font-family: inherit; }
.product-btn:hover { color: var(--gold); }
@media (max-width: 800px) { .products-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .products-grid { grid-template-columns: 1fr; } }
.shopify-notice { margin-top: 48px; padding: 20px 28px; background: var(--forest-light); border-left: 3px solid var(--forest); border-radius: 8px; font-size: 13px; color: var(--text); line-height: 1.7; }
.shopify-notice code { background: rgba(0,0,0,0.06); padding: 2px 6px; border-radius: 4px; color: var(--forest); font-size: 0.92em; }
.shopify-notice strong { color: var(--forest); }

/* Knowledge */
.knowledge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.knowledge-card { border-radius: 20px; overflow: hidden; background: #fff; border: 1px solid var(--linen); transition: all 0.4s ease; cursor: pointer; text-decoration: none; color: inherit; display: block; }
.knowledge-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.knowledge-img { aspect-ratio: 16/10; position: relative; overflow: hidden; background: var(--linen); }
.knowledge-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.knowledge-card:hover .knowledge-img img { transform: scale(1.06); }
.knowledge-type { position: absolute; top: 16px; left: 16px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; padding: 6px 14px; border-radius: 6px; backdrop-filter: blur(4px); z-index: 1; }
.knowledge-type.course { color: var(--forest); background: rgba(232,239,235,0.9); }
.knowledge-type.article { color: var(--gold-warm); background: rgba(245,237,216,0.9); }
.knowledge-body { padding: 24px; }
.knowledge-topic { font-size: 11px; color: var(--text-faint); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.knowledge-title { font-family: 'Inter', sans-serif; font-size: 22px; margin-bottom: 10px; line-height: 1.3; color: var(--forest); }
.knowledge-meta { font-size: 13px; color: var(--text-soft); }
.knowledge-price { font-size: 12px; color: var(--gold); font-weight: 500; margin-top: 6px; letter-spacing: 0.5px; }
@media (max-width: 800px) { .knowledge-grid { grid-template-columns: 1fr; } }

/* Experts (placeholder) */
.experts-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.expert-card { padding: 32px 24px; border-radius: 20px; text-align: center; border: 1.5px dashed var(--linen); background: #fff; transition: all 0.4s ease; }
.expert-card:hover { border-color: var(--gold); border-style: solid; transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.06); }
.expert-avatar { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 20px; background: linear-gradient(135deg, var(--blush), var(--sand)); display: flex; align-items: center; justify-content: center; font-family: 'Inter', sans-serif; font-size: 32px; color: var(--forest); opacity: 0.5; }
.expert-name { font-size: 16px; font-weight: 500; margin-bottom: 4px; color: var(--forest); }
.expert-role { font-size: 12px; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.expert-bio { font-size: 13px; color: var(--text-soft); line-height: 1.6; }
.expert-cta-card { padding: 32px 24px; border-radius: 20px; text-align: center; border: 1.5px solid var(--gold); background: var(--gold-light); }
.expert-cta-card h4 { color: var(--forest); margin-bottom: 8px; font-size: 16px; }
.expert-cta-card p { font-size: 13px; color: var(--text-soft); line-height: 1.6; margin-bottom: 14px; }
@media (max-width: 800px) { .experts-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .experts-row { grid-template-columns: 1fr; } }

/* Membership */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; align-items: stretch; }
.plan-card { padding: 40px 32px; border-radius: 20px; background: #fff; border: 1px solid var(--linen); transition: all 0.4s ease; position: relative; }
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.plan-card.featured { border-color: var(--forest); }
.plan-featured-tag { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--forest); color: #fff; padding: 6px 24px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; border-radius: 0 0 10px 10px; }
.plan-name { font-family: 'Inter', sans-serif; font-size: 28px; margin-bottom: 8px; color: var(--forest); }
.plan-price { font-family: 'Inter', sans-serif; font-size: 44px; font-weight: 600; color: var(--charcoal); }
.plan-period { font-size: 14px; color: var(--text-soft); }
.plan-desc { font-size: 14px; color: var(--text-soft); margin: 16px 0 24px; line-height: 1.6; }
.plan-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.plan-feature { font-size: 14px; color: var(--text); display: flex; align-items: flex-start; gap: 10px; }
.plan-check { width: 18px; height: 18px; border-radius: 50%; background: var(--forest-light); color: var(--forest); display: flex; align-items: center; justify-content: center; font-size: 10px; flex-shrink: 0; margin-top: 2px; }
@media (max-width: 800px) { .plans-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; } }

/* Sitter / Forest sections */
.sitter-section { background: var(--forest-deep); color: #fff; position: relative; overflow: hidden; }
.sitter-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 30%, rgba(201,169,110,0.1) 0%, transparent 55%); }
.sitter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.sitter-image { aspect-ratio: 4/5; border-radius: 24px; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,0.4); }
.sitter-image img { width: 100%; height: 100%; object-fit: cover; }
.sitter-text h2 { color: #fff; font-size: clamp(30px, 4vw, 46px); margin-bottom: 24px; }
.sitter-text h2 em { color: var(--gold); }
.sitter-text p { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.7); margin-bottom: 18px; }
.sitter-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }
.sitter-perk { padding: 18px; border-radius: 12px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
.sitter-perk h5 { color: var(--gold); font-size: 13px; margin-bottom: 4px; }
.sitter-perk p { font-size: 13px; color: rgba(255,255,255,0.6); margin: 0; line-height: 1.5; }
.sitter-price { display: inline-flex; align-items: baseline; gap: 8px; margin-bottom: 24px; padding: 12px 20px; background: rgba(201,169,110,0.12); border: 1px solid rgba(201,169,110,0.3); border-radius: 12px; }
.sitter-price strong { font-family: 'Inter', sans-serif; font-size: 28px; color: var(--gold); font-weight: 600; }
.sitter-price span { font-size: 13px; color: rgba(255,255,255,0.6); }
@media (max-width: 800px) { .sitter-grid { grid-template-columns: 1fr; } .sitter-image { max-height: 460px; } }

/* Summit */
.summit-section { background: linear-gradient(135deg, var(--ivory) 0%, var(--sand) 100%); position: relative; overflow: hidden; }
.summit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.summit-image { aspect-ratio: 4/3; border-radius: 24px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
.summit-image img { width: 100%; height: 100%; object-fit: cover; }
.summit-text h2 { font-size: clamp(28px, 4vw, 46px); margin-bottom: 16px; }
.summit-text h2 em { color: var(--gold); }
.summit-meta { display: flex; gap: 24px; margin: 24px 0 32px; flex-wrap: wrap; }
.summit-meta-item { font-size: 13px; }
.summit-meta-item strong { display: block; font-family: 'Inter', sans-serif; font-size: 22px; color: var(--gold); font-weight: 500; margin-bottom: 2px; }
.summit-meta-item span { color: var(--text-soft); }
@media (max-width: 800px) { .summit-grid { grid-template-columns: 1fr; } }

/* Impact */
.impact-section { background: var(--forest-deep); color: #fff; position: relative; overflow: hidden; }
.impact-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(201,169,110,0.06) 0%, transparent 50%); }
.impact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.impact-image { aspect-ratio: 4/3; border-radius: 24px; overflow: hidden; }
.impact-image img { width: 100%; height: 100%; object-fit: cover; }
.impact-text h2 { color: #fff; font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 20px; }
.impact-text p { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.impact-stat { display: flex; gap: 32px; margin-top: 32px; flex-wrap: wrap; }
.impact-stat-item strong { display: block; font-family: 'Inter', sans-serif; font-size: 32px; font-weight: 400; color: var(--gold); }
.impact-stat-item span { font-size: 13px; color: rgba(255,255,255,0.55); }
@media (max-width: 800px) { .impact-grid { grid-template-columns: 1fr; } .impact-image { max-height: 320px; } }

/* Pro */
.pro-section { background: var(--sand); }
.pro-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.pro-text h3 { font-size: 28px; margin-bottom: 8px; color: var(--forest); }
.pro-text p { font-size: 15px; color: var(--text-soft); max-width: 540px; }

/* Newsletter */
.newsletter-section { background: var(--warm-white); border-top: 1px solid var(--linen); }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 32px auto 0; }
.newsletter-form input { flex: 1; padding: 16px 24px; border: 1.5px solid var(--linen); border-radius: 0; font-family: 'Inter', sans-serif; font-size: 14px; outline: none; transition: border-color 0.3s; background: #fff; color: var(--text); }
.newsletter-form input:focus { border-color: var(--forest); }

/* Form (Tally / generic) */
.form-wrap { max-width: 720px; margin: 0 auto; padding: 48px; background: #fff; border-radius: 20px; border: 1px solid var(--linen); box-shadow: 0 20px 60px rgba(0,0,0,0.04); }
.form-wrap iframe { width: 100%; min-height: 540px; border: 0; }

/* FAQ */
.faq-list { max-width: 800px; margin: 56px auto 0; }
.faq-item { border-bottom: 1px solid var(--linen); padding: 24px 0; }
.faq-q { font-family: 'Inter', sans-serif; font-size: 22px; color: var(--forest); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q::after { content: '+'; font-size: 28px; color: var(--gold); transition: transform 0.3s; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; color: var(--text-soft); font-size: 15px; line-height: 1.8; }
.faq-item.open .faq-a { max-height: 400px; padding-top: 14px; }

/* Article (blog) */
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { font-size: 32px; margin: 48px 0 16px; color: var(--forest); }
.article-body h3 { font-size: 24px; margin: 32px 0 12px; color: var(--forest); }
.article-body p { font-size: 17px; line-height: 1.85; color: var(--text); margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 16px 0 20px 24px; }
.article-body li { font-size: 17px; line-height: 1.8; color: var(--text); margin-bottom: 8px; }
.article-body blockquote { border-left: 3px solid var(--gold); padding: 16px 24px; margin: 32px 0; font-family: 'Inter', sans-serif; font-size: 22px; color: var(--forest); background: var(--ivory); }
.article-meta { display: flex; gap: 24px; align-items: center; margin: 32px 0; padding: 24px 0; border-top: 1px solid var(--linen); border-bottom: 1px solid var(--linen); font-size: 13px; color: var(--text-soft); flex-wrap: wrap; }
.article-author-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--sand), var(--linen)); display: flex; align-items: center; justify-content: center; font-family: 'Inter', sans-serif; color: var(--forest); }

/* Footer */
.footer { background: var(--charcoal); color: #fff; padding: 80px 32px 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand { font-family: 'Inter', sans-serif; font-size: 26px; font-weight: 600; letter-spacing: 3px; margin-bottom: 16px; }
.footer-tagline { color: var(--gold); font-size: 13px; margin-bottom: 16px; font-family: 'Inter', sans-serif; }
.footer-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.4); max-width: 320px; }
.footer h5 { font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; color: var(--gold); }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.4); transition: color 0.2s; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom span { font-size: 13px; color: rgba(255,255,255,0.25); }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* Chatbot — hidden (keep code, just hide from view) */
.chatbot-toggle,
.chatbot-panel,
.chatbot-peek { display: none !important; visibility: hidden !important; }

.chatbot-toggle { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 64px; height: 64px; border-radius: 50%; background: var(--forest); border: none; cursor: pointer; box-shadow: 0 12px 36px rgba(45,74,62,0.45); display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; animation: pulse 2.5s infinite; }
.chatbot-toggle:hover { transform: scale(1.08); background: var(--forest-deep); }
.chatbot-toggle svg { width: 28px; height: 28px; fill: #fff; }
.chatbot-toggle.active { animation: none; background: var(--charcoal); }
.chatbot-badge { position: absolute; top: -2px; right: -2px; background: var(--gold); color: var(--forest-deep); font-size: 11px; font-weight: 700; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid var(--warm-white); }
.chatbot-panel { position: fixed; bottom: 100px; right: 24px; z-index: 998; width: 380px; max-width: calc(100vw - 48px); height: 580px; max-height: calc(100vh - 140px); background: #fff; border-radius: 24px; border: 1px solid var(--linen); box-shadow: 0 25px 70px rgba(0,0,0,0.18); display: none; flex-direction: column; overflow: hidden; transform: translateY(20px) scale(0.96); opacity: 0; transition: transform 0.3s ease, opacity 0.3s ease; }
.chatbot-panel.open { display: flex; transform: translateY(0) scale(1); opacity: 1; }
.chatbot-header { padding: 22px; background: linear-gradient(135deg, var(--forest-deep), var(--forest)); color: #fff; display: flex; align-items: center; gap: 14px; }
.chatbot-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-warm)); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.chatbot-title h4 { font-family: 'Inter', sans-serif; font-size: 18px; color: #fff; }
.chatbot-title p { font-size: 11px; color: var(--gold); display: flex; align-items: center; gap: 6px; letter-spacing: 0.5px; }
.chatbot-title p::before { content: ''; width: 6px; height: 6px; background: #4ade80; border-radius: 50%; box-shadow: 0 0 8px #4ade80; }
.chatbot-close { margin-left: auto; background: transparent; border: none; color: rgba(255,255,255,0.7); cursor: pointer; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.chatbot-close:hover { background: rgba(255,255,255,0.12); color: #fff; }
.chatbot-messages { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 12px; background: var(--ivory); scrollbar-width: thin; scrollbar-color: rgba(0,0,0,0.1) transparent; }
.chatbot-messages::-webkit-scrollbar { width: 5px; }
.chatbot-messages::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.08); border-radius: 3px; }
.msg { max-width: 85%; padding: 12px 16px; border-radius: 16px; font-size: 14px; line-height: 1.5; animation: slide-up 0.4s ease; }
.msg.bot { background: #fff; color: var(--text); border: 1px solid var(--linen); align-self: flex-start; border-bottom-left-radius: 4px; }
.msg.user { background: var(--forest); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; font-weight: 400; }
.msg-typing { display: flex; gap: 5px; align-self: flex-start; padding: 14px 18px; background: #fff; border: 1px solid var(--linen); border-radius: 16px; border-bottom-left-radius: 4px; }
.msg-typing span { width: 7px; height: 7px; background: var(--text-faint); border-radius: 50%; animation: typing 1.4s infinite; }
.msg-typing span:nth-child(2) { animation-delay: 0.2s; }
.msg-typing span:nth-child(3) { animation-delay: 0.4s; }
.chatbot-options { padding: 12px 18px 16px; display: flex; flex-direction: column; gap: 8px; border-top: 1px solid var(--linen); background: #fff; }
.chatbot-options.with-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.chat-btn { background: var(--ivory); border: 1.5px solid var(--linen); color: var(--forest); padding: 12px 16px; border-radius: 12px; font-size: 13px; cursor: pointer; transition: all 0.25s ease; text-align: left; font-family: inherit; font-weight: 400; }
.chat-btn:hover { background: var(--forest-light); border-color: var(--forest); }
.chat-btn.primary { background: var(--forest); color: #fff; border-color: var(--forest); font-weight: 500; }
.chat-btn.primary:hover { background: var(--forest-deep); }
.chat-input-wrap { display: flex; gap: 8px; padding: 14px 18px; border-top: 1px solid var(--linen); background: #fff; }
.chat-input { flex: 1; background: var(--ivory); border: 1.5px solid var(--linen); border-radius: 12px; padding: 12px 16px; color: var(--text); font-size: 14px; font-family: inherit; outline: none; }
.chat-input:focus { border-color: var(--forest); }
.chat-send { background: var(--forest); color: #fff; border: none; border-radius: 12px; padding: 0 18px; font-weight: 600; cursor: pointer; font-size: 16px; }
.chat-send:hover { background: var(--forest-deep); }

/* Misc helpers */
.text-soft { color: var(--text-soft); }
.text-gold { color: var(--gold); }
.spacer-sm { height: 32px; }
.spacer-md { height: 64px; }
.center-cta { text-align: center; margin-top: 48px; }

/* ========== LANGUAGE SWITCHER ========== */
.lang-switcher { display: inline-flex; gap: 2px; margin-left: 12px; padding: 4px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; }
.navbar:not(.hero-mode) .lang-switcher { background: var(--ivory); border-color: var(--linen); }
.lang-switcher button { background: transparent; border: 0; padding: 4px 10px; font-size: 11px; font-weight: 600; letter-spacing: 0.5px; color: rgba(255,255,255,0.6); cursor: pointer; border-radius: 100px; transition: all 0.25s; font-family: 'Inter', sans-serif; }
.navbar:not(.hero-mode) .lang-switcher button { color: var(--text-soft); }
.lang-switcher button:hover { color: var(--gold); }
.lang-switcher button.active { background: var(--gold); color: var(--forest-deep); }
.navbar:not(.hero-mode) .lang-switcher button.active { background: var(--forest); color: #fff; }
@media (max-width: 960px) { .lang-switcher { display: none; } }
.mobile-menu .lang-switcher { display: inline-flex !important; margin: 24px 0 0; background: var(--ivory); border-color: var(--linen); }
.mobile-menu .lang-switcher button { color: var(--text-soft); }

/* ========== READ MORE accordion ========== */
.expandable { position: relative; }
.expandable-summary { color: var(--text-soft); font-size: 16px; line-height: 1.85; }
.expandable-detail { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.5s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.4s ease, margin 0.4s ease; color: var(--text); font-size: 15.5px; line-height: 1.85; }
.expandable.open .expandable-detail { max-height: 1500px; opacity: 1; margin-top: 16px; }
.expandable-detail p { margin-bottom: 14px; }
.expandable-toggle { display: inline-flex; align-items: center; gap: 8px; background: transparent; border: 0; color: var(--gold-warm); font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0.5px; cursor: pointer; margin-top: 14px; padding: 0; transition: gap 0.3s; }
.expandable-toggle::after { content: '↓'; transition: transform 0.4s; }
.expandable.open .expandable-toggle::after { transform: rotate(180deg); }
.expandable-toggle:hover { gap: 12px; color: var(--forest); }
.expandable.open .expandable-toggle .label-more { display: none; }
.expandable:not(.open) .expandable-toggle .label-less { display: none; }

/* ========== EMOTION HERO (cooler) ========== */
.hero-emotion h1 { font-size: clamp(48px, 7vw, 96px); line-height: 1.05; font-weight: 300; letter-spacing: -0.01em; }
.hero-emotion h1 em { display: inline-block; }
.hero-emotion .hero-desc { font-size: 18px; max-width: 520px; }

/* ========== SHOP PAGE ========== */
.shop-filters { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin: 0 0 56px; }
.shop-filter { padding: 10px 22px; border: 1.5px solid var(--linen); background: #fff; border-radius: 100px; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0.5px; color: var(--text); cursor: pointer; transition: all 0.3s; }
.shop-filter:hover { border-color: var(--forest); color: var(--forest); }
.shop-filter.active { background: var(--forest); color: #fff; border-color: var(--forest); }
.product-card.hidden { display: none; }
.product-card.featured { grid-column: span 2; }
.product-card.featured .product-img { aspect-ratio: 16/9; }
@media (max-width: 800px) { .product-card.featured { grid-column: span 1; } }

/* ========== APP PREVIEW (interactive) ========== */
.app-preview-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 60px 0; }
.app-tabs { display: flex; flex-direction: column; gap: 12px; }
.app-tab { display: flex; gap: 18px; padding: 20px 24px; border-radius: 16px; border: 1.5px solid var(--linen); background: #fff; cursor: pointer; transition: all 0.4s ease; align-items: center; }
.app-tab:hover { border-color: var(--gold); transform: translateX(4px); }
.app-tab.active { border-color: var(--forest); background: var(--forest-light); }
.app-tab-icon { width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg, var(--gold), var(--gold-warm)); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; color: #fff; }
.app-tab.active .app-tab-icon { background: var(--forest); }
.app-tab-text h5 { font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 500; color: var(--forest); margin-bottom: 2px; }
.app-tab-text p { font-size: 13px; color: var(--text-soft); margin: 0; line-height: 1.5; }
.app-screen-wrap { display: flex; align-items: center; justify-content: center; }
.app-phone { width: 320px; height: 640px; background: var(--charcoal); border-radius: 48px; padding: 14px; box-shadow: 0 30px 80px rgba(0,0,0,0.25); position: relative; }
.app-phone::before { content: ''; position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 100px; height: 24px; background: var(--charcoal); border-radius: 0 0 14px 14px; z-index: 10; }
.app-screen { width: 100%; height: 100%; border-radius: 36px; overflow: hidden; background: var(--ivory); position: relative; }
.app-screen-inner { position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s ease; pointer-events: none; padding: 48px 20px 20px; }
.app-screen-inner.active { opacity: 1; pointer-events: auto; }
.app-screen-inner h6 { font-family: 'Inter', sans-serif; font-size: 22px; color: var(--forest); margin-bottom: 4px; }
.app-screen-inner .sub { font-size: 11px; color: var(--text-soft); margin-bottom: 18px; }
.app-pet-card { padding: 14px; background: linear-gradient(135deg, var(--gold-light), #fff); border: 1px solid var(--linen); border-radius: 16px; display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.app-pet-avatar { width: 48px; height: 48px; border-radius: 50%; background-size: cover; background-position: center; border: 2px solid var(--gold); flex-shrink: 0; }
.app-pet-info h6 { font-size: 15px; margin: 0; color: var(--forest); }
.app-pet-info p { font-size: 11px; color: var(--text-soft); margin: 2px 0 0; }
.app-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.app-stat { padding: 12px; background: #fff; border: 1px solid var(--linen); border-radius: 12px; text-align: center; }
.app-stat .v { font-family: 'Inter', sans-serif; font-size: 24px; font-weight: 600; color: var(--forest); line-height: 1; }
.app-stat .l { font-size: 9px; color: var(--text-soft); margin-top: 4px; letter-spacing: 1.5px; text-transform: uppercase; }
.app-ring { width: 140px; height: 140px; margin: 8px auto 16px; position: relative; display: flex; align-items: center; justify-content: center; }
.app-ring svg { transform: rotate(-90deg); position: absolute; }
.app-ring-text { font-family: 'Inter', sans-serif; font-size: 42px; font-weight: 600; color: var(--forest); }
.app-ring-label { position: absolute; bottom: -20px; left: 0; right: 0; text-align: center; font-size: 10px; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; }
.app-action { padding: 12px; background: var(--forest); color: #fff; border-radius: 12px; font-size: 12px; text-align: center; font-weight: 500; margin-bottom: 8px; }
.app-action.gold { background: var(--gold); color: var(--forest-deep); }
.app-list { display: flex; flex-direction: column; gap: 8px; }
.app-list-item { padding: 10px 12px; background: #fff; border: 1px solid var(--linen); border-radius: 10px; font-size: 12px; display: flex; justify-content: space-between; align-items: center; }
.app-list-item .check { width: 18px; height: 18px; border-radius: 50%; background: var(--forest-light); display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--forest); }
.app-list-item.done .check { background: var(--forest); color: #fff; }
@media (max-width: 800px) { .app-preview-wrap { grid-template-columns: 1fr; gap: 40px; } .app-phone { transform: scale(0.85); } }

/* ========== EMOTION TYPE refinements ========== */
.eyebrow { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: inline-block; }
.huge { font-family: 'Inter', sans-serif; font-size: clamp(56px, 9vw, 120px); line-height: 0.95; font-weight: 300; letter-spacing: -0.02em; }
.huge em { color: var(--gold); }
.lead { font-size: 19px; line-height: 1.7; color: var(--text-soft); max-width: 580px; }

/* ========== COURSE PAGE ========== */
.course-hero { background: linear-gradient(135deg, var(--forest-deep), var(--forest)); color: #fff; padding: 140px 32px 80px; }
.course-hero .label { color: var(--gold); }
.course-hero h1 { color: #fff; font-size: clamp(40px, 5.5vw, 68px); margin-bottom: 20px; }
.course-hero h1 em { color: var(--gold); }
.course-meta { display: flex; gap: 40px; margin: 32px 0; flex-wrap: wrap; }
.course-meta-item strong { display: block; font-family: 'Inter', sans-serif; font-size: 26px; color: var(--gold); }
.course-meta-item span { font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 1px; text-transform: uppercase; }
.course-modules { max-width: 900px; margin: 0 auto; }
.module { padding: 32px; border: 1px solid var(--linen); border-radius: 20px; margin-bottom: 16px; transition: all 0.4s; cursor: pointer; background: #fff; }
.module:hover { border-color: var(--gold); transform: translateX(4px); }
.module-head { display: flex; gap: 24px; align-items: center; }
.module-num { font-family: 'Inter', sans-serif; font-size: 56px; font-weight: 300; color: var(--gold); line-height: 1; flex-shrink: 0; min-width: 60px; }
.module-title { flex: 1; }
.module-title h3 { font-size: 24px; color: var(--forest); margin-bottom: 4px; }
.module-title p { font-size: 14px; color: var(--text-soft); margin: 0; }
.module-toggle { color: var(--gold); font-size: 22px; transition: transform 0.4s; flex-shrink: 0; }
.module.open .module-toggle { transform: rotate(45deg); }
.module-body { max-height: 0; overflow: hidden; transition: max-height 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.module.open .module-body { max-height: 1500px; }
.module-body-inner { padding: 24px 0 0; }
.module-body-inner h4 { font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin: 16px 0 8px; }
.module-body-inner h4:first-child { margin-top: 0; }
.module-body-inner ul { margin: 0 0 8px 20px; }
.module-body-inner li { font-size: 14.5px; line-height: 1.8; color: var(--text); margin-bottom: 4px; }
.module-body-inner p { font-size: 14.5px; line-height: 1.85; color: var(--text); margin-bottom: 12px; }
.handout-card { padding: 14px 18px; background: var(--forest-light); border-radius: 10px; display: flex; gap: 12px; align-items: center; font-size: 14px; color: var(--forest); margin-top: 8px; }
.handout-card a { margin-left: auto; color: var(--gold-warm); font-weight: 500; text-decoration: none; }

/* ========== BLOG cooler ========== */
.blog-feature { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
.blog-feature-img { aspect-ratio: 4/3; border-radius: 24px; overflow: hidden; }
.blog-feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s; }
.blog-feature:hover .blog-feature-img img { transform: scale(1.04); }
.blog-feature-text .label { color: var(--gold); }
.blog-feature-text h2 { font-size: clamp(34px, 4vw, 54px); line-height: 1.1; margin-bottom: 18px; color: var(--forest); }
.blog-feature-text .lead { font-size: 17px; line-height: 1.85; margin-bottom: 24px; }
@media (max-width: 800px) { .blog-feature { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════════ */
/* ════ PREMIUM POLISH · v5 · smoother, more vivant, elegant   ════ */
/* ════════════════════════════════════════════════════════════════ */

/* — Refined easing curves used everywhere — */
:root {
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
}

/* — Smoother global transitions — */
a, button, .btn, .card, .pillar, .product-card, .knowledge-card, .plan-card,
.path-card, .agent, .team-card, .work-card, .cat-card {
  transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s var(--ease-out-expo),
              border-color 0.4s ease, background 0.4s ease, color 0.3s ease, opacity 0.4s ease;
}

/* — Refined buttons — */
.btn { letter-spacing: 0.02em; font-weight: 500; position: relative; overflow: hidden; }
.btn::before {
  content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.15);
  transform: translateX(-100%) skewX(-15deg); transition: transform 0.6s var(--ease-out-quint); pointer-events: none;
}
.btn:hover::before { transform: translateX(100%) skewX(-15deg); }
.btn-primary:hover { box-shadow: 0 24px 60px -12px rgba(45,74,62,0.4); transform: translateY(-3px); }
.btn-gold:hover { box-shadow: 0 24px 60px -12px rgba(201,169,110,0.45); transform: translateY(-3px); }

/* — Premium card hover with subtle 3D tilt — */
.path-card, .pillar, .product-card, .knowledge-card, .plan-card, .cat-card, .agent {
  transform-style: preserve-3d; will-change: transform;
}
.path-card:hover, .pillar:hover, .product-card:hover, .knowledge-card:hover,
.cat-card:hover, .agent:hover {
  transform: translateY(-8px) scale(1.005);
  box-shadow: 0 32px 80px -16px rgba(0,0,0,0.12);
}

/* — Cinematic image hover — */
.path-card img, .product-img img, .knowledge-img img, .summit-image img,
.two-col-image img, .impact-image img, .blog-feature-img img, .featured-event-image,
.sitter-image img, .journey-image img {
  transition: transform 1.2s var(--ease-out-expo), filter 0.8s ease;
}
.path-card:hover img, .product-card:hover .product-img img,
.knowledge-card:hover .knowledge-img img,
.summit-image:hover img, .two-col-image:hover img,
.blog-feature:hover .blog-feature-img img {
  transform: scale(1.08); filter: brightness(1.05) saturate(1.1);
}

/* — Smoother reveal-on-scroll — */
.reveal {
  opacity: 0; transform: translateY(60px);
  transition: opacity 1.4s var(--ease-out-expo), transform 1.4s var(--ease-out-expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* — Letter-by-letter hero reveal — */
.hero-letters { display: inline-block; }
.hero-letters .letter {
  display: inline-block; opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.hero-letters.visible .letter { opacity: 1; transform: translateY(0); }
.hero-letters .letter.space { width: 0.25em; }

/* — Subtle parallax for hero images — */
.hero-image-container img { will-change: transform; }
.hero-media-img { will-change: transform; }

/* — Floating animation for hero ornaments — */
@keyframes premium-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-12px) rotate(0.5deg); }
  66% { transform: translateY(-6px) rotate(-0.3deg); }
}
.float-anim { animation: premium-float 8s ease-in-out infinite; }

/* — Smooth section breathing — */
.section { padding: 140px 32px; }
@media (max-width: 800px) { .section { padding: 96px 24px; } }

/* — Refined typography on hero — */
.hero h1, .hero-emotion h1 {
  font-family: 'Inter', sans-serif; letter-spacing: -0.03em; line-height: 1; font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.hero h1 em { font-weight: 400; }
.huge { letter-spacing: -0.035em; line-height: 0.92; font-weight: 300; }

/* — More elegant labels (eyebrows) — */
.label, .eyebrow, .slide-eyebrow {
  letter-spacing: 4.5px; font-weight: 600; font-size: 10.5px;
}

/* — Subtle gradient text option — */
.text-gradient {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-warm) 50%, var(--terracotta) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* — Premium glassmorphism card — */
.glass {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.5);
}
.glass-dark {
  background: rgba(27,51,41,0.55);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.08);
}

/* — Subtle grain overlay (optional, adds film texture) — */
.grain { position: relative; }
.grain::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.04;
  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.95' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* — Custom cursor on interactive elements — */
.btn, .path-card, .agent, .product-card, .knowledge-card,
.app-tab, .opt, .chip { cursor: pointer; }

/* — Number counter (animated) — */
.count-up { font-variant-numeric: tabular-nums; }

/* — Magazine-style pulled quote — */
.pull-quote {
  font-family: 'Inter', sans-serif; font-weight: 300;
  font-size: clamp(28px, 3.5vw, 48px); line-height: 1.25; color: var(--forest);
  border-left: 2px solid var(--gold); padding: 24px 0 24px 40px; max-width: 720px;
  letter-spacing: -0.015em;
}

/* — Scroll progress bar (top) — */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; background: var(--gold);
  z-index: 9999; transition: width 0.1s linear; width: 0;
}

/* — Smoother nav — */
.navbar { transition: background 0.6s var(--ease-out-expo), backdrop-filter 0.6s ease; }
.nav-link { font-weight: 400; letter-spacing: 0.04em; transition: color 0.3s ease; }

/* — Refined Hero overlay for cinematic feel — */
.hero-overlay {
  background: linear-gradient(170deg,
    rgba(27,51,41,0.78) 0%,
    rgba(45,74,62,0.62) 40%,
    rgba(90,122,106,0.5) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(201,169,110,0.22) 0%, transparent 55%);
}

/* — Hero kenburns more elegant — */
@keyframes ken-burns-elegant {
  0% { transform: scale(1.05) translate(0, 0); }
  50% { transform: scale(1.18) translate(-2%, -1.5%); }
  100% { transform: scale(1.05) translate(0, 0); }
}
.hero-media-img { animation: ken-burns-elegant 40s var(--ease-in-out-quart) infinite; }

/* — Image lazy-load shimmer — */
@keyframes shimmer-load {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}
.img-loading {
  background: linear-gradient(90deg, var(--linen) 0%, var(--ivory) 50%, var(--linen) 100%);
  background-size: 1000px 100%; animation: shimmer-load 2s linear infinite;
}

/* — Smoother chatbot toggle — */
.chatbot-toggle { transition: transform 0.5s var(--ease-out-expo), background 0.4s ease; }

/* — Subtle dot pattern for backgrounds — */
.dot-pattern {
  background-image: radial-gradient(circle, rgba(201,169,110,0.15) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* — Better mobile letter spacing — */
@media (max-width: 600px) {
  h1, .huge { letter-spacing: -0.025em; }
  .label, .eyebrow { letter-spacing: 3.5px; font-size: 10px; }
}

/* — Smoother hero-buttons — */
.hero-buttons .btn { padding: 18px 36px; font-size: 14px; }
.hero-buttons .btn-gold { box-shadow: 0 12px 30px -8px rgba(201,169,110,0.4); }

/* — Plan-card refinements — */
.plan-card { transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s var(--ease-out-expo), border-color 0.4s ease; }
.plan-card.featured { box-shadow: 0 24px 60px -16px rgba(201,169,110,0.25); }
.plan-card:hover { transform: translateY(-6px); box-shadow: 0 32px 70px -16px rgba(0,0,0,0.1); }

/* — Subtle border-glow on focus — */
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(45,74,62,0.08);
}

/* — Footer refinement — */
.footer { font-family: 'Inter', sans-serif; }
.footer-brand { font-family: 'Inter', sans-serif; letter-spacing: 0.18em; font-weight: 400; }

/* — Accessibility · reduced motion — */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important; scroll-behavior: auto !important;
  }
}

/* ============= PROFILE NUDGE · v8 ============= */
.profile-nudge-bar {
  position: fixed; left: 50%; bottom: 22px; z-index: 1900;
  transform: translate(-50%, 140%); opacity: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
  width: min(720px, calc(100vw - 32px)); pointer-events: none;
}
.profile-nudge-bar.visible { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
.profile-nudge-bar .nudge-inner {
  display: flex; align-items: center; gap: 16px;
  background: linear-gradient(135deg, #1a3a2a 0%, #0f2419 100%);
  color: #fefdfb;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 18px;
  padding: 14px 18px 14px 20px;
  box-shadow: 0 24px 60px rgba(15, 36, 25, 0.45), 0 4px 16px rgba(0,0,0,0.18);
  backdrop-filter: blur(18px);
}
.profile-nudge-bar .nudge-icon {
  font-size: 26px; flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(212, 175, 55, 0.18); border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.35);
}
.profile-nudge-bar .nudge-text { flex: 1; min-width: 0; line-height: 1.35; }
.profile-nudge-bar .nudge-text strong {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 600; letter-spacing: 0.2px; color: #fefdfb;
}
.profile-nudge-bar .nudge-text span {
  display: block; font-size: 12px; color: rgba(254, 253, 251, 0.72); margin-top: 3px;
}
.profile-nudge-bar .nudge-cta {
  flex-shrink: 0;
  background: linear-gradient(135deg, #d4af37, #b8941f); color: #1a3a2a;
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.3px;
  padding: 11px 18px; border-radius: 999px; text-decoration: none;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}
.profile-nudge-bar .nudge-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(212, 175, 55, 0.5); }
.profile-nudge-bar .nudge-close {
  flex-shrink: 0;
  background: transparent; border: none; cursor: pointer;
  width: 28px; height: 28px; border-radius: 50%;
  color: rgba(254, 253, 251, 0.55); font-size: 22px; line-height: 1;
  transition: background 0.2s ease, color 0.2s ease;
}
.profile-nudge-bar .nudge-close:hover { background: rgba(255,255,255,0.08); color: #fefdfb; }
@media (max-width: 640px) {
  .profile-nudge-bar { bottom: 12px; }
  .profile-nudge-bar .nudge-inner { padding: 12px; gap: 10px; border-radius: 16px; }
  .profile-nudge-bar .nudge-icon { width: 38px; height: 38px; font-size: 22px; }
  .profile-nudge-bar .nudge-text strong { font-size: 13px; }
  .profile-nudge-bar .nudge-text span { font-size: 11px; }
  .profile-nudge-bar .nudge-cta { padding: 9px 14px; font-size: 12px; }
}

/* Inline Profile CTA card — drop-in replacement for generic pro-section */
.profile-cta-section { padding: 64px 0; background: linear-gradient(135deg, #f5f1e8 0%, #ede4d3 100%); }
.profile-cta-card {
  max-width: 980px; margin: 0 auto;
  background: linear-gradient(135deg, #1a3a2a 0%, #0f2419 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 24px;
  padding: 48px clamp(28px, 4vw, 56px);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
  color: #fefdfb;
  box-shadow: 0 30px 80px rgba(15, 36, 25, 0.35);
  position: relative; overflow: hidden;
}
.profile-cta-card::before {
  content: ''; position: absolute; top: -40%; right: -20%;
  width: 60%; height: 180%;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.profile-cta-card .cta-eyebrow {
  font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 4px;
  text-transform: uppercase; color: #d4af37; margin-bottom: 14px;
}
.profile-cta-card h3 {
  font-family: 'Italiana', serif; font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1; margin-bottom: 14px; color: #fefdfb; font-weight: 400;
}
.profile-cta-card h3 em { color: #d4af37; font-style: italic; }
.profile-cta-card p { color: rgba(254,253,251,0.78); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.profile-cta-card .cta-bullets {
  list-style: none; padding: 0; margin: 0 0 28px 0; display: grid; gap: 10px;
}
.profile-cta-card .cta-bullets li {
  font-size: 13px; color: rgba(254,253,251,0.86); padding-left: 24px; position: relative;
}
.profile-cta-card .cta-bullets li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: #d4af37; font-weight: 700;
}
.profile-cta-card .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.profile-cta-card .cta-primary {
  background: linear-gradient(135deg, #d4af37, #b8941f); color: #1a3a2a;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.4px;
  padding: 14px 28px; border-radius: 999px; text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.32);
}
.profile-cta-card .cta-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(212, 175, 55, 0.5); }
.profile-cta-card .cta-secondary {
  color: #fefdfb; border: 1px solid rgba(254,253,251,0.3);
  font-family: 'Inter', sans-serif; font-size: 14px; letter-spacing: 0.4px;
  padding: 14px 24px; border-radius: 999px; text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.profile-cta-card .cta-secondary:hover { background: rgba(254,253,251,0.08); border-color: rgba(254,253,251,0.5); }
.profile-cta-card .cta-visual {
  background: rgba(254,253,251,0.04);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 18px; padding: 32px 24px; text-align: center;
  position: relative; z-index: 1;
}
.profile-cta-card .cta-visual .vis-num {
  font-family: 'Italiana', serif; font-size: 64px; line-height: 1;
  color: #d4af37; margin-bottom: 8px;
}
.profile-cta-card .cta-visual .vis-label {
  font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(254,253,251,0.7);
}
.profile-cta-card .cta-visual .vis-meta {
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid rgba(254,253,251,0.1);
  font-size: 12px; color: rgba(254,253,251,0.7); line-height: 1.6;
}
@media (max-width: 760px) {
  .profile-cta-card { grid-template-columns: 1fr; padding: 36px 24px; gap: 28px; }
  .profile-cta-card .cta-visual { padding: 22px; }
  .profile-cta-card .cta-visual .vis-num { font-size: 48px; }
}

/* ============= CHATBOT · v8 · smaller + funny ============= */
/* Override earlier sizes — toggle smaller, lifted above the nudge bar */
.chatbot-toggle {
  width: 54px; height: 54px;
  bottom: 100px; /* clears the global profile-nudge-bar */
  box-shadow: 0 10px 28px rgba(45,74,62,0.4);
  overflow: visible;
}
.chatbot-toggle svg { display: none; }
.chatbot-toggle::before {
  content: '🐶';
  font-size: 30px; line-height: 1;
  display: inline-block;
  transform-origin: 50% 60%;
  animation: petv-head-tilt 5s ease-in-out infinite;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}
.chatbot-toggle:hover::before { animation: petv-wiggle 0.55s ease-in-out infinite; }
.chatbot-toggle.active::before { content: '×'; font-size: 26px; color: #fff; animation: none; }

/* Wagging tail behind the dog */
.chatbot-toggle::after {
  content: '';
  position: absolute;
  right: 4px; top: 6px;
  width: 10px; height: 14px;
  background: var(--gold);
  border-radius: 50% 50% 0 50%;
  transform-origin: 0% 100%;
  animation: petv-tail-wag 0.6s ease-in-out infinite;
  z-index: -1;
  opacity: 0.9;
}
.chatbot-toggle.active::after { display: none; }

@keyframes petv-head-tilt {
  0%, 65%, 100% { transform: rotate(0deg); }
  72% { transform: rotate(-14deg); }
  80% { transform: rotate(10deg); }
  88% { transform: rotate(-5deg); }
  94% { transform: rotate(3deg); }
}
@keyframes petv-wiggle {
  0%, 100% { transform: rotate(-10deg) scale(1.12); }
  50% { transform: rotate(10deg) scale(1.12); }
}
@keyframes petv-tail-wag {
  0%, 100% { transform: rotate(-30deg); }
  50% { transform: rotate(35deg); }
}

/* Cute badge */
.chatbot-badge {
  width: 18px; height: 18px; font-size: 10px;
  top: -3px; right: -3px;
  border-width: 2px;
  animation: petv-bounce 1.6s ease-in-out infinite;
}
@keyframes petv-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Smaller panel */
.chatbot-panel {
  width: 340px;
  height: 500px;
  bottom: 165px;  /* sits above the lifted toggle */
  border-radius: 20px;
}
.chatbot-header { padding: 14px 16px; gap: 10px; }
.chatbot-avatar { width: 36px; height: 36px; font-size: 18px; }
.chatbot-title h4 { font-size: 14px; }
.chatbot-title p { font-size: 10px; }
.chatbot-close { width: 28px; height: 28px; }
.chatbot-close svg { width: 14px; height: 14px; }
.chatbot-messages { padding: 14px; gap: 9px; }
.msg { font-size: 13px; padding: 10px 13px; border-radius: 14px; }
.msg-typing { padding: 11px 14px; }
.chatbot-options { padding: 10px 12px 12px; gap: 6px; }
.chatbot-options.with-grid { gap: 6px; }
.chat-btn { padding: 9px 13px; font-size: 12.5px; border-radius: 10px; }

@media (max-width: 480px) {
  .chatbot-toggle { width: 48px; height: 48px; right: 16px; bottom: 92px; }
  .chatbot-toggle::before { font-size: 26px; }
  .chatbot-panel { width: calc(100vw - 24px); right: 12px; bottom: 152px; height: 460px; }
}

/* Speech-bubble peek-a-boo from the dog */
.chatbot-peek {
  position: fixed;
  right: 70px; bottom: 110px; z-index: 998;
  background: #fff; color: var(--forest-deep);
  padding: 10px 14px;
  border-radius: 16px;
  border-bottom-right-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.1px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.16);
  border: 1px solid var(--linen);
  white-space: nowrap;
  opacity: 0; transform: translateX(8px) scale(0.92);
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  cursor: pointer;
  max-width: calc(100vw - 100px);
}
.chatbot-peek.show { opacity: 1; transform: translateX(0) scale(1); pointer-events: auto; }
.chatbot-peek::after {
  content: ''; position: absolute;
  right: -7px; bottom: 8px;
  width: 0; height: 0;
  border-left: 8px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
@media (max-width: 480px) {
  .chatbot-peek { right: 60px; bottom: 102px; font-size: 12px; padding: 8px 12px; }
}

/* ============= COOKIE BANNER · v8 ============= */
.cookie-banner {
  position: fixed; left: 50%; bottom: 22px; z-index: 1950;
  transform: translate(-50%, 140%); opacity: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
  width: min(820px, calc(100vw - 32px)); pointer-events: none;
}
.cookie-banner.visible { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
.cookie-banner .cookie-inner {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  background: rgba(254, 253, 251, 0.98);
  border: 1px solid var(--linen);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 24px 60px rgba(15, 36, 25, 0.18);
  backdrop-filter: blur(18px);
}
.cookie-banner p {
  flex: 1; min-width: 240px;
  font-family: 'Inter', sans-serif; font-size: 13px; line-height: 1.6;
  color: var(--text-soft); margin: 0;
}
.cookie-banner p a { color: var(--forest); text-decoration: underline; }
.cookie-banner .cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn {
  font-family: 'Inter', sans-serif; font-size: 12.5px; font-weight: 500;
  padding: 10px 18px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--linen); background: transparent; color: var(--text-soft);
  transition: all 0.25s ease;
}
.cookie-btn:hover { border-color: var(--forest); color: var(--forest); }
.cookie-btn-accept {
  background: var(--forest); color: #fff; border-color: var(--forest);
}
.cookie-btn-accept:hover { background: var(--forest-deep); color: #fff; }

/* ============= HARMONY DROPS · TOAST ============= */
.harmony-toast {
  position: fixed; top: 28px; right: 28px; z-index: 2050;
  min-width: 280px; max-width: 380px;
  background: linear-gradient(135deg, #1a3a2a, #0f2419);
  color: #fefdfb;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 24px 60px rgba(15, 36, 25, 0.45);
  transform: translateX(120%); opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}
.harmony-toast.show { transform: translateX(0); opacity: 1; }
.harmony-toast .harmony-toast-main { display: flex; gap: 14px; align-items: center; }
.harmony-toast .harmony-toast-drop {
  font-family: 'Italiana', serif; font-size: 36px; line-height: 1;
  color: var(--gold);
  width: 64px; height: 64px;
  background: rgba(212, 175, 55, 0.12); border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%; display: grid; place-items: center;
  flex-shrink: 0;
}
.harmony-toast .harmony-toast-title { font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.harmony-toast .harmony-toast-label { font-size: 14px; color: rgba(254, 253, 251, 0.85); line-height: 1.45; }
.harmony-toast .harmony-toast-ach-wrap { margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(254,253,251,0.1); display: grid; gap: 8px; }
.harmony-toast .harmony-toast-ach { display: flex; gap: 10px; align-items: center; padding: 10px; background: rgba(212, 175, 55, 0.08); border-radius: 10px; }
.harmony-toast .harmony-toast-ach span:first-child { font-size: 22px; }
.harmony-toast .harmony-toast-ach strong { display: block; font-family: 'Inter', sans-serif; font-size: 12.5px; color: #fefdfb; font-weight: 600; }
.harmony-toast .harmony-toast-ach > div > span { font-size: 11px; color: rgba(254,253,251,0.7); }
@media (max-width: 480px) {
  .harmony-toast { right: 12px; left: 12px; min-width: auto; max-width: none; }
}

/* ============= TIER GATE LOCKED VISUAL ============= */
.tier-locked {
  position: relative;
  opacity: 0.55;
  filter: grayscale(0.4);
  pointer-events: none;
}
.tier-locked::after {
  content: '🔒 Member only';
  position: absolute; top: 12px; right: 12px;
  background: rgba(45, 74, 62, 0.95); color: #fff;
  font-family: 'Inter', sans-serif; font-size: 10px; letter-spacing: 1.5px;
  padding: 5px 10px; border-radius: 999px;
  pointer-events: none;
}


/* ============================================================
   RESPONSIVE FALLBACK FOR INLINE GRIDS  (added 2026-05)
   Inline style="grid-template-columns:..." declarations have no
   breakpoints, so on phones they stay multi-column and overflow.
   These rules let any inline grid collapse gracefully on small
   screens. Scoped to inline grids only — class-based grids keep
   their own existing media queries untouched.
   ============================================================ */
@media (max-width: 900px) {
  [style*="grid-template-columns"][style*="repeat(6"],
  [style*="grid-template-columns"][style*="repeat(5"],
  [style*="grid-template-columns"][style*="repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 768px) {
  [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  /* buttons that were forced inline next to text now go full width */
  [style*="grid-template-columns"] .btn { width: 100%; text-align: center; }
}
