/* ayusha-pages.css — premium shared components for Ayusha sub-pages.
   Loaded after ayusha-web.css + ayusha-chrome.css; reuses their tokens. */

/* keep the nav transparent like the home hero (chrome supplies the base) */
.topbar .nav-links { display: flex; gap: 30px; }
/* Nav link colour is on-dark-aware: dark over the light/scrolled chrome, light over a dark photo hero.
   Without the on-dark split the links stay light and vanish once the nav flips to cream on scroll. */
.topbar .nav-links a { font-family: var(--serif); font-size: 15px; font-weight: 500; color: var(--ink-soft); text-decoration: none; transition: color .18s; }
.topbar .nav-links a:hover, .topbar .nav-links a.active { color: var(--espresso); }
.topbar.on-dark .nav-links a { color: oklch(0.9 0.02 78); }
.topbar.on-dark .nav-links a:hover, .topbar.on-dark .nav-links a.active { color: #fff; }
@media (max-width: 900px) { .topbar .nav-links { display: none; } .nav-cta-d { display: none; } }
@media (min-width: 901px) { .nav-burger { display: none; } }
/* view-count chip (replaces the author byline on blog cards + article meta) */
.views { display: inline-flex; align-items: center; gap: 5px; }
.views .v-eye { opacity: 0.82; flex-shrink: 0; }

/* ═══ cinematic page hero (matches the home hero) ═══ */
.pg-hero { position: relative; background: var(--cine-bg); color: #fff; overflow: hidden; text-align: center;
  padding: clamp(132px, 20vh, 190px) 0 clamp(84px, 12vh, 128px); }
.pg-hero .stars { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.pg-hero .star { position: absolute; width: 2px; height: 2px; border-radius: 99px; background: #fff; animation: pgtw 3.6s ease-in-out infinite; }
@keyframes pgtw { 0%,100% { opacity: .12; } 50% { opacity: .7; } }
.pg-hero .glow { position: absolute; top: -18%; left: 50%; width: min(760px, 96vw); height: 760px; transform: translateX(-50%);
  pointer-events: none; z-index: 0; opacity: 0.13; background: var(--orange-soft);
  -webkit-mask: url(img/flower-of-life.svg) center/contain no-repeat; mask: url(img/flower-of-life.svg) center/contain no-repeat; }
.pg-hero .wrap { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.pg-hero .seed { width: 60px; height: 60px; background: var(--orange-soft); filter: drop-shadow(0 0 24px oklch(0.86 0.058 62 / 0.4));
  -webkit-mask: url(img/seed-of-life-logo.webp) center/contain no-repeat; mask: url(img/seed-of-life-logo.webp) center/contain no-repeat; }
.pg-hero .eyebrow { color: var(--orange-soft); margin-top: 22px; }
.pg-hero h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(40px, 6.4vw, 74px); line-height: 1.03; letter-spacing: -1.4px;
  margin: 16px 0 0; max-width: 18ch; text-shadow: 0 2px 40px oklch(0 0 0 / 0.25); }
.pg-hero h1 em { font-style: italic; color: var(--orange-soft); }
.pg-hero .lead { font-size: clamp(16px, 2vw, 20px); line-height: 1.62; color: var(--cream); max-width: 58ch; margin: 24px 0 0; }
.pg-hero .orn { display: flex; align-items: center; justify-content: center; gap: 13px; margin: 30px 0 0; }
.pg-hero .orn .ln { width: 60px; height: 1px; background: linear-gradient(to right, transparent, oklch(1 0 0 / 0.4)); }
.pg-hero .orn .ln.r { background: linear-gradient(to left, transparent, oklch(1 0 0 / 0.4)); }
.pg-hero .orn .dia { width: 7px; height: 7px; background: var(--orange-soft); transform: rotate(45deg); }
.pg-hero .crumb { font-size: 12.5px; letter-spacing: .04em; color: oklch(0.8 0.03 74); display: flex; gap: 9px; align-items: center; justify-content: center; }
.pg-hero .crumb a { color: oklch(0.8 0.03 74); text-decoration: none; } .pg-hero .crumb a:hover { color: #fff; }
.pg-hero .crumb .sep { opacity: .5; }
.pg-hero .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 34px; }

/* section scaffolding */
.section-sm { padding: clamp(56px, 9vh, 88px) 0; }
.bg-warm { background: var(--surface-warm); }
.bg-cine { background: var(--cine-bg); color: #fff; }
.sec-head { max-width: 60ch; }
.sec-head .eyebrow { color: var(--orange); }
.sec-head h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 4vw, 44px); line-height: 1.08; letter-spacing: -0.8px; color: var(--espresso); margin: 14px 0 0; }
.sec-head p { font-size: 16.5px; line-height: 1.62; color: var(--ink-soft); margin: 16px 0 0; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.bg-cine .sec-head h2 { color: #fff; } .bg-cine .sec-head p { color: var(--cream); } .bg-cine .sec-head .eyebrow { color: var(--orange-soft); }

/* reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; gap: 32px; } }

/* ═══ ABOUT ═══ */
.about-lead { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .about-lead { grid-template-columns: 1fr; gap: 34px; } }
.about-lead .txt p { font-size: 16.5px; line-height: 1.74; color: var(--ink-soft); margin: 18px 0 0; }
.about-fig { position: relative; }
.about-fig .img { aspect-ratio: 5/6; border-radius: 26px; overflow: hidden; border: 1px solid var(--line-soft); box-shadow: var(--shadow-card); }
.about-fig .img img { width: 100%; height: 100%; object-fit: cover; }
.about-fig .badge { position: absolute; bottom: -22px; left: -22px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: 20px; padding: 18px 22px; box-shadow: 0 20px 40px -18px rgba(60,40,25,0.34); max-width: 230px; }
.about-fig .badge .seed { width: 30px; height: 30px; background: var(--orange); display: inline-block; -webkit-mask: url(img/seed-of-life-logo.webp) center/contain no-repeat; mask: url(img/seed-of-life-logo.webp) center/contain no-repeat; }
.about-fig .badge p { font-size: 13.5px; line-height: 1.5; color: var(--ink); margin: 10px 0 0; font-weight: 500; }
@media (max-width: 900px) { .about-fig .badge { left: 16px; } }

/* pull quote */
.pullquote { text-align: center; max-width: 24ch; margin: 0 auto; }
.pullquote .mark { font-family: var(--serif); font-size: 96px; line-height: .5; color: var(--orange-soft); height: 44px; display: block; }
.pullquote p { font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 3.6vw, 40px); line-height: 1.22; letter-spacing: -0.5px; color: #fff; margin: 0; }
.pullquote em { color: var(--orange-soft); font-style: italic; }
.pullquote .by { font: 700 12.5px var(--sans); letter-spacing: .08em; text-transform: uppercase; color: var(--cream); margin-top: 26px; }

/* stat band */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 760px) { .stat-band { grid-template-columns: 1fr 1fr; gap: 30px 20px; } }
.stat-band .st { text-align: center; }
.stat-band .st .n { font-family: var(--serif); font-weight: 600; font-size: clamp(38px, 5vw, 58px); color: var(--espresso); line-height: 1; letter-spacing: -1px; }
.stat-band .st .l { font-size: 13.5px; color: var(--ink-soft); margin-top: 10px; }
.bg-cine .stat-band .st .n { color: #fff; } .bg-cine .stat-band .st .l { color: var(--cream); }

/* value cards */
.val-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: 22px; padding: 34px 30px; box-shadow: var(--shadow-soft); transition: transform .2s, box-shadow .2s; }
.val-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -22px rgba(60,40,25,0.28); }
.val-card .vg { width: 56px; height: 56px; border-radius: 15px; background: var(--orange-wash); display: grid; place-items: center; margin-bottom: 20px; }
.val-card .vg span { width: 28px; height: 28px; background: var(--orange); display: inline-block; }
.val-card h3 { font-family: var(--serif); font-weight: 600; font-size: 22px; color: var(--espresso); margin: 0; }
.val-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.62; margin: 11px 0 0; }

/* timeline */
.tl { max-width: 720px; margin: 44px auto 0; position: relative; }
.tl::before { content: ""; position: absolute; left: 15px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.tl-item { position: relative; padding: 0 0 34px 52px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: 8px; top: 4px; width: 16px; height: 16px; border-radius: 999px; background: var(--orange); box-shadow: 0 0 0 5px var(--orange-wash); }
.tl-item .yr { font: 700 12px var(--sans); letter-spacing: .08em; text-transform: uppercase; color: var(--orange); }
.tl-item h4 { font-family: var(--serif); font-weight: 600; font-size: 20px; color: var(--espresso); margin: 6px 0 0; }
.tl-item p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.58; margin: 7px 0 0; }

/* team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 820px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { text-align: center; }
.team-card .ph { aspect-ratio: 1/1; border-radius: 22px; overflow: hidden; background: var(--surface-warm); border: 1px solid var(--line-soft); }
.team-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.team-card:hover .ph img { transform: scale(1.04); }
.team-card h4 { font-family: var(--serif); font-weight: 600; font-size: 19px; color: var(--espresso); margin: 16px 0 0; }
.team-card .role { font: 700 12px var(--sans); letter-spacing: .04em; text-transform: uppercase; color: var(--orange); margin-top: 5px; }
.team-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; margin: 9px 0 0; }

/* ═══ SHOP ═══ */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 980px) { .prod-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .prod-grid { grid-template-columns: 1fr; } }
.prod-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line-soft); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-card); text-decoration: none; transition: transform .22s, box-shadow .22s; }
.prod-card:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -22px rgba(60,40,25,0.32); }
.prod-card .pc-img { aspect-ratio: 1/1; position: relative; overflow: hidden; background: var(--surface-warm); }
.prod-card .pc-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s; }
.prod-card:hover .pc-img img { transform: scale(1.05); }
.prod-card .pc-tag { position: absolute; top: 13px; left: 13px; font: 700 10.5px var(--sans); letter-spacing: .05em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; background: var(--orange); color: #fff; box-shadow: 0 4px 14px -4px rgba(0,0,0,0.3); }
.prod-card .pc-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.prod-card .pc-cat { font: 700 10.5px var(--sans); letter-spacing: .07em; text-transform: uppercase; color: var(--orange); }
.prod-card .pc-name { font-family: var(--serif); font-weight: 600; font-size: 21px; color: var(--espresso); margin: 7px 0 0; line-height: 1.15; }
.prod-card .pc-desc { font-size: 13.5px; color: var(--ink-soft); line-height: 1.52; margin: 9px 0 0; flex: 1; }
.prod-card .pc-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.prod-card .pc-price { font-family: var(--serif); font-weight: 600; font-size: 21px; color: var(--espresso); }
.prod-card .pc-price s { color: var(--ink-faint); font-size: 15px; margin-right: 7px; font-weight: 400; }
.prod-card .pc-cta { font: 700 13px var(--sans); color: var(--orange); }

.chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip-f { font: 700 13px var(--sans); padding: 9px 17px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--surface); color: var(--ink-soft); cursor: pointer; transition: all .15s; }
.chip-f:hover { border-color: var(--orange-soft); }
.chip-f.on { border-color: var(--orange); background: var(--orange-wash); color: var(--espresso); }

/* shop feature band (photo + copy) */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 56px; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split .fig { aspect-ratio: 4/3; border-radius: 24px; overflow: hidden; border: 1px solid var(--line-soft); box-shadow: var(--shadow-card); }
.split .fig img { width: 100%; height: 100%; object-fit: cover; }
.split.rev .fig { order: 2; } @media (max-width: 900px) { .split.rev .fig { order: 0; } }

/* trust row */
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 760px) { .trust-row { grid-template-columns: 1fr; } }
.trust-row .t { text-align: center; }
.trust-row .t .tg { width: 46px; height: 46px; margin: 0 auto 14px; border-radius: 13px; background: var(--orange-wash); display: grid; place-items: center; }
.trust-row .t .tg span { width: 24px; height: 24px; background: var(--orange); display: inline-block; }
.trust-row .t h4 { font-family: var(--serif); font-weight: 600; font-size: 18px; color: var(--espresso); margin: 0; }
.trust-row .t p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; margin: 7px 0 0; }

/* ═══ EVENTS ═══ */
.feature-ev { position: relative; border-radius: 28px; overflow: hidden; min-height: 460px; display: block; text-decoration: none; box-shadow: var(--shadow-card); }
.feature-ev img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.feature-ev:hover img.bg { transform: scale(1.04); }
.feature-ev .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, oklch(0.15 0.02 44 / 0.1) 0%, oklch(0.13 0.02 44 / 0.86) 100%); }
.feature-ev .inner { position: relative; z-index: 2; padding: clamp(30px, 4vw, 48px); display: flex; flex-direction: column; justify-content: flex-end; min-height: 460px; color: #fff; }
.feature-ev .fkind { font: 700 11px var(--sans); letter-spacing: .07em; text-transform: uppercase; color: var(--orange-soft); }
.feature-ev h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 4vw, 44px); line-height: 1.06; letter-spacing: -0.6px; margin: 12px 0 0; max-width: 20ch; }
.feature-ev .fmeta { display: flex; gap: 22px; flex-wrap: wrap; margin: 16px 0 0; font-size: 14px; color: oklch(0.92 0.02 78); }

.ev-card { display: grid; grid-template-columns: 320px 1fr; background: var(--surface); border: 1px solid var(--line-soft); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-card); text-decoration: none; transition: transform .2s, box-shadow .2s; }
.ev-card:hover { transform: translateY(-4px); box-shadow: 0 26px 52px -24px rgba(60,40,25,0.32); }
@media (max-width: 760px) { .ev-card { grid-template-columns: 1fr; } }
.ev-card .ev-img { position: relative; overflow: hidden; min-height: 210px; background: var(--surface-warm); }
.ev-card .ev-img img { width: 100%; height: 100%; object-fit: cover; }
.ev-date { position: absolute; top: 14px; left: 14px; background: oklch(1 0 0 / 0.95); border-radius: 14px; text-align: center; padding: 9px 13px; line-height: 1; box-shadow: var(--shadow-soft); }
.ev-date .d { font-family: var(--serif); font-weight: 700; font-size: 25px; color: var(--espresso); }
.ev-date .m { font: 700 10.5px var(--sans); letter-spacing: .08em; text-transform: uppercase; color: var(--orange); margin-top: 3px; }
.ev-body { padding: 26px 30px; display: flex; flex-direction: column; }
.ev-kind { font: 700 10.5px var(--sans); letter-spacing: .07em; text-transform: uppercase; color: var(--orange); }
.ev-body h3 { font-family: var(--serif); font-weight: 600; font-size: 24px; color: var(--espresso); margin: 9px 0 0; line-height: 1.15; }
.ev-meta { display: flex; gap: 18px; flex-wrap: wrap; margin: 12px 0 0; font-size: 13.5px; color: var(--ink-soft); }
.ev-body p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; margin: 14px 0 0; flex: 1; }
.ev-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.ev-foot .price { font-family: var(--serif); font-weight: 600; font-size: 18px; color: var(--espresso); }
.ev-foot .price small { font-size: 12.5px; color: var(--ink-soft); font-weight: 400; font-family: var(--sans); }
.ev-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 720px) { .ev-grid { grid-template-columns: 1fr; } }
.ev-grid .ev-card { grid-template-columns: 1fr; }
.ev-grid .ev-card .ev-img { min-height: 0; aspect-ratio: 16/10; }

/* ═══ EVENT DETAIL (grid-pattern top, no watermark) ═══ */
.detail-top { position: relative; background: var(--cine-bg); color: #fff; overflow: hidden; padding: 126px 0 60px; }
.detail-top .grid-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.7;
  background-image: linear-gradient(oklch(1 0 0 / 0.055) 1px, transparent 1px), linear-gradient(90deg, oklch(1 0 0 / 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 42%, transparent 94%); mask-image: linear-gradient(to bottom, #000 0%, #000 42%, transparent 94%); }
.detail-top .wrap { position: relative; z-index: 2; }
.detail-top .crumb { font-size: 12.5px; color: oklch(0.8 0.03 74); display: flex; gap: 9px; align-items: center; }
.detail-top .crumb a { color: oklch(0.8 0.03 74); text-decoration: none; } .detail-top .crumb a:hover { color: #fff; }
.detail-top .crumb .sep { opacity: 0.5; }
.detail-top .kind { font: 700 11px var(--sans); letter-spacing: .07em; text-transform: uppercase; color: var(--orange-soft); margin-top: 22px; display: block; }
.detail-top h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(34px, 5vw, 58px); line-height: 1.04; letter-spacing: -1px; margin: 12px 0 0; max-width: 20ch; }
.detail-facts { display: flex; gap: 34px; flex-wrap: wrap; margin-top: 28px; }
.detail-facts .f .k { font: 700 10.5px var(--sans); letter-spacing: .06em; text-transform: uppercase; color: var(--orange-soft); }
.detail-facts .f .v { font-family: var(--serif); font-weight: 500; font-size: 19px; margin-top: 5px; }
.rt-layout { display: grid; grid-template-columns: 1fr 350px; gap: 50px; align-items: start; }
@media (max-width: 940px) { .rt-layout { grid-template-columns: 1fr; gap: 34px; } }
.rt-book { position: sticky; top: 96px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: 22px; padding: 28px; box-shadow: var(--shadow-card); }
.rt-book .price { font-family: var(--serif); font-weight: 600; font-size: 30px; color: var(--espresso); }
.rt-book .price small { font-size: 14px; color: var(--ink-soft); font-family: var(--sans); font-weight: 500; }
.rt-book ul { list-style: none; padding: 20px 0 0; margin: 20px 0 0; border-top: 1px solid var(--line-soft); display: flex; flex-direction: column; gap: 12px; }
.rt-book ul li { font-size: 13.5px; color: var(--ink); display: flex; gap: 10px; }
.rt-book ul li .dot { color: var(--orange); font-weight: 800; }
.rt-sec + .rt-sec { margin-top: 40px; }
.rt-sec h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(24px, 3.2vw, 34px); line-height: 1.1; letter-spacing: -0.5px; color: var(--espresso); margin: 12px 0 0; }
.rt-sec p.lede { font-size: 16.5px; line-height: 1.72; color: var(--ink-soft); margin: 16px 0 0; }
.itin { list-style: none; padding: 0; margin: 22px 0 0; }
.itin li { display: grid; grid-template-columns: 92px 1fr; gap: 20px; padding: 22px 0; border-top: 1px solid var(--line-soft); }
.itin li .day { font: 700 12px var(--sans); letter-spacing: .06em; text-transform: uppercase; color: var(--orange); }
.itin li .day b { display: block; font-family: var(--serif); font-size: 30px; color: var(--espresso); font-weight: 600; letter-spacing: -0.5px; }
.itin li h4 { font-family: var(--serif); font-weight: 600; font-size: 19px; color: var(--espresso); margin: 0 0 6px; }
.itin li p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; margin: 0; }
.gal-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 700px) { .gal-3 { grid-template-columns: 1fr; } }
.gal-3 .g { aspect-ratio: 1/1; border-radius: 18px; overflow: hidden; }
.gal-3 .g img { width: 100%; height: 100%; object-fit: cover; }

/* ═══ shared grid splash on dark heroes + CTA bands ═══ */
.pg-hero::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.6;
  background-image: linear-gradient(oklch(1 0 0 / 0.05) 1px, transparent 1px), linear-gradient(90deg, oklch(1 0 0 / 0.05) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: radial-gradient(118% 92% at 50% 6%, #000 32%, transparent 82%); mask-image: radial-gradient(118% 92% at 50% 6%, #000 32%, transparent 82%); }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.55;
  background-image: linear-gradient(oklch(1 0 0 / 0.045) 1px, transparent 1px), linear-gradient(90deg, oklch(1 0 0 / 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(125% 125% at 50% 0%, #000 28%, transparent 78%); mask-image: radial-gradient(125% 125% at 50% 0%, #000 28%, transparent 78%); }

/* ═══ ABOUT v2 · photo hero + founder note + beliefs ═══ */
.photo-hero { position: relative; min-height: 52vh; display: flex; align-items: flex-end; overflow: hidden; color: #fff; }
.photo-hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.photo-hero .scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, oklch(0.15 0.02 44 / 0.36) 0%, oklch(0.13 0.02 44 / 0.5) 44%, oklch(0.11 0.02 44 / 0.92) 100%); }
.photo-hero .wrap { position: relative; z-index: 2; padding-bottom: clamp(48px, 7vh, 86px); padding-top: 140px; }
.photo-hero .crumb { font-size: 12.5px; color: oklch(0.86 0.03 74); display: flex; gap: 9px; align-items: center; }
.photo-hero .crumb a { color: oklch(0.86 0.03 74); text-decoration: none; } .photo-hero .crumb a:hover { color: #fff; }
.photo-hero .crumb .sep { opacity: 0.5; }
.photo-hero .eyebrow { color: var(--orange-soft); display: block; margin-top: 18px; }
.photo-hero h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(40px, 6.4vw, 78px); line-height: 1.01; letter-spacing: -1.5px; margin: 16px 0 0; max-width: 18ch; }
.photo-hero h1 em { font-style: italic; color: var(--orange-soft); }
.photo-hero .lead { font-size: clamp(16px, 2vw, 20px); line-height: 1.6; color: var(--cream); max-width: 56ch; margin: 20px 0 0; }

.founder-note { max-width: 880px; margin: 0 auto; text-align: center; }
.founder-note .seed { width: 44px; height: 44px; margin: 0 auto 24px; background: var(--orange); -webkit-mask: url(img/seed-of-life-logo.webp) center/contain no-repeat; mask: url(img/seed-of-life-logo.webp) center/contain no-repeat; display: block; }
.founder-note p { font-family: var(--serif); font-weight: 500; font-size: clamp(21px, 2.7vw, 28px); line-height: 1.46; letter-spacing: -0.2px; color: var(--espresso); margin: 0 0 22px; }
.founder-note p em { font-style: italic; color: var(--orange); }
.founder-note .sig { font: 700 12.5px var(--sans); letter-spacing: .06em; text-transform: uppercase; color: var(--orange); margin-top: 18px; }
.founder-note .fn-ph { width: 116px; height: 116px; border-radius: 999px; margin: 0 auto 26px; display: grid; place-items: center; background: var(--orange-wash); border: 1px solid var(--line-soft); overflow: hidden; }
.founder-note .fn-ph span { font-family: var(--serif); font-weight: 600; font-size: 40px; color: var(--orange); letter-spacing: 0.5px; }
.founder-note .fn-ph img { width: 100%; height: 100%; object-fit: cover; }
.founder-note .fn-by { margin-top: 24px; }
.founder-note .fn-by b { display: block; font-family: var(--serif); font-weight: 600; font-size: 20px; color: var(--espresso); }
.founder-note .fn-by span { display: block; font: 700 12px var(--sans); letter-spacing: .06em; text-transform: uppercase; color: var(--orange); margin-top: 5px; }
.founder-note .fn-by .fn-cred { display: block; font: 600 11px var(--sans); letter-spacing: .03em; color: var(--ink-faint); text-transform: none; margin-top: 6px; }

.beliefs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
@media (max-width: 820px) { .beliefs { grid-template-columns: 1fr; gap: 30px; } }
.belief { border-top: 2px solid var(--orange); padding-top: 22px; }
.belief .bn { font-family: var(--serif); font-weight: 600; font-size: 19px; color: var(--orange); }
.belief h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(22px, 2.6vw, 27px); line-height: 1.12; letter-spacing: -0.4px; color: var(--espresso); margin: 9px 0 0; }
.belief p { font-size: 15px; line-height: 1.66; color: var(--ink-soft); margin: 12px 0 0; }
.bseed { display: block; width: 36px; height: 36px; margin: 0 0 18px; background: var(--orange); -webkit-mask: url(img/seed-of-life-logo.webp) center/contain no-repeat; mask: url(img/seed-of-life-logo.webp) center/contain no-repeat; }

/* ═══ CART + CHECKOUT ═══ */
.nav-cart-icon { position: relative; display: inline-flex; align-items: center; color: oklch(0.9 0.02 78); }
.nav-cart-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.nav-cart-icon:hover { color: #fff; }
.nav-cart-icon .cart-count { position: absolute; top: -7px; right: -9px; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 99px; background: var(--orange); color: #fff; font: 800 10.5px var(--sans); display: flex; align-items: center; justify-content: center; }
.pc-add { margin-top: 14px; width: 100%; border: none; border-radius: 12px; padding: 12px; background: var(--espresso); color: #fff; font: 700 13px var(--sans); cursor: pointer; transition: filter .15s, background .15s; }
.pc-add:hover { filter: brightness(1.14); }
.pc-add.added { background: var(--kapha); }
.co-grid { display: grid; grid-template-columns: 1fr 380px; gap: 44px; align-items: start; }
@media (max-width: 900px) { .co-grid { grid-template-columns: 1fr; gap: 30px; } }
.cart-row { display: grid; grid-template-columns: 76px 1fr auto auto auto; gap: 16px; align-items: center; padding: 18px 0; border-top: 1px solid var(--line-soft); }
.cart-row:first-child { border-top: none; }
.cr-img { width: 76px; height: 76px; border-radius: 14px; overflow: hidden; background: var(--surface-warm); }
.cr-img img { width: 100%; height: 100%; object-fit: cover; }
.cr-name { font-family: var(--serif); font-weight: 600; font-size: 16px; color: var(--espresso); }
.cr-unit { font-size: 12.5px; color: var(--ink-faint); margin-top: 2px; }
.cr-qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.cr-qty button { width: 32px; height: 32px; border: none; background: var(--surface); color: var(--espresso); font-size: 16px; cursor: pointer; }
.cr-qty button:hover { background: var(--orange-wash); }
.cr-qty span { min-width: 30px; text-align: center; font-weight: 700; font-size: 14px; color: var(--espresso); }
.cr-sub { font-family: var(--serif); font-weight: 600; font-size: 16px; color: var(--espresso); min-width: 62px; text-align: right; }
.cr-del { border: none; background: none; color: var(--ink-faint); font-size: 20px; cursor: pointer; line-height: 1; }
.cr-del:hover { color: oklch(0.63 0.115 18); }
.cart-empty { text-align: center; padding: 56px 20px; }
.cart-empty p { font-family: var(--serif); font-size: 20px; color: var(--ink-soft); margin: 0; }
.co-summary { background: var(--surface); border: 1px solid var(--line-soft); border-radius: 20px; padding: 26px; box-shadow: var(--shadow-card); position: sticky; top: 96px; }

/* ═══ ACADEMY · catalog ═══ */
.lc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 980px) { .lc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .lc-grid { grid-template-columns: 1fr; } }
.lc-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line-soft); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-card); cursor: pointer; transition: transform .22s, box-shadow .22s; }
.lc-card:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -22px rgba(60,40,25,0.32); }
.lc-card.locked { cursor: default; opacity: 0.92; }
.lc-card.locked:hover { transform: none; box-shadow: var(--shadow-card); }
.lc-img { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--surface-warm); }
.lc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.lc-card:hover .lc-img img { transform: scale(1.05); }
.lc-level { position: absolute; top: 13px; left: 13px; font: 700 10.5px var(--sans); letter-spacing: .05em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; background: oklch(1 0 0 / 0.92); color: var(--espresso); }
.lc-tag { position: absolute; top: 13px; right: 13px; font: 700 10.5px var(--sans); letter-spacing: .05em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; background: var(--orange); color: #fff; }
.lc-done { position: absolute; bottom: 13px; left: 13px; font: 700 11px var(--sans); padding: 6px 12px; border-radius: 999px; background: var(--kapha); color: #fff; }
.lc-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.lc-body h3 { font-family: var(--serif); font-weight: 600; font-size: 21px; line-height: 1.14; color: var(--espresso); margin: 0; }
.lc-body p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; margin: 9px 0 0; flex: 1; }
.lc-meta { display: flex; align-items: center; gap: 9px; margin-top: 15px; font-size: 12.5px; font-weight: 600; color: var(--ink-faint); }
.lc-meta .mi { width: 15px; height: 15px; vertical-align: -3px; margin-right: 5px; }
.lc-meta span { display: inline-flex; align-items: center; }
.lc-prog { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.lc-bar { flex: 1; height: 7px; border-radius: 99px; background: var(--line-soft); overflow: hidden; }
.lc-bar i { display: block; height: 100%; border-radius: 99px; background: var(--orange); }
.lc-prog span { font: 700 12px var(--sans); color: var(--espresso); }
.lc-btn { margin-top: 16px; width: 100%; border: none; border-radius: 12px; padding: 12px; background: var(--espresso); color: #fff; font: 700 13.5px var(--sans); cursor: pointer; transition: filter .15s; }
.lc-btn:hover { filter: brightness(1.14); }
.lc-btn.ghost { background: transparent; border: 1.5px solid var(--line); color: var(--espresso); }
.lc-lock { display: flex; align-items: center; gap: 9px; margin-top: 16px; padding: 11px 13px; border-radius: 11px; background: var(--surface-warm); font-size: 12.5px; color: var(--ink-soft); }
.lc-lock svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--ink-faint); }
.lc-lock b { color: var(--espresso); }

/* ═══ ACADEMY · classroom ═══ */
#classroom { display: none; }
body.in-class #classroom { display: block; }
body.in-class .academy-hero, body.in-class #catalogSection, body.in-class .academy-extra { display: none; }
.cl-top { display: flex; align-items: center; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line-soft); }
.cl-back { border: none; background: none; font: 700 13.5px var(--sans); color: var(--ink-soft); cursor: pointer; flex-shrink: 0; }
.cl-back:hover { color: var(--orange); }
.cl-title { font-family: var(--serif); font-weight: 600; font-size: 20px; color: var(--espresso); flex: 1; min-width: 0; }
.cl-prog { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.cl-prog span { font: 700 13px var(--sans); color: var(--ink-soft); }
.cl-prog .ring circle { transition: stroke-dashoffset .5s ease; }
.cl-grid { display: grid; grid-template-columns: 1fr 372px; gap: 34px; align-items: start; padding-top: 30px; }
@media (max-width: 940px) { .cl-grid { grid-template-columns: 1fr; gap: 26px; } }
.cl-stage { min-width: 0; }
.st-head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.st-badge { display: inline-flex; align-items: center; gap: 7px; font: 700 11px var(--sans); letter-spacing: .04em; text-transform: uppercase; color: var(--orange); background: var(--orange-wash); padding: 6px 12px; border-radius: 999px; }
.st-badge .tb { width: 14px; height: 14px; }
.st-mod { font-size: 12.5px; color: var(--ink-faint); font-weight: 600; }
.st-title { font-family: var(--serif); font-weight: 600; font-size: clamp(26px, 3.4vw, 36px); line-height: 1.08; letter-spacing: -0.6px; color: var(--espresso); margin: 14px 0 0; }
.st-media { position: relative; aspect-ratio: 16/9; border-radius: 18px; overflow: hidden; margin: 22px 0 0; background: var(--espresso); }
.st-media img { width: 100%; height: 100%; object-fit: cover; }
.st-scrim { position: absolute; inset: 0; background: oklch(0.2 0.02 50 / 0.34); }
.st-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 74px; height: 74px; border-radius: 999px; border: none; background: oklch(1 0 0 / 0.92); color: var(--espresso); cursor: pointer; display: grid; place-items: center; box-shadow: 0 10px 30px -8px rgba(0,0,0,0.4); transition: transform .18s; }
.st-play:hover { transform: translate(-50%,-50%) scale(1.08); }
.st-play svg { width: 30px; height: 30px; margin-left: 3px; }
.st-medialabel { position: absolute; bottom: 14px; left: 16px; font: 700 11.5px var(--sans); color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.st-body { font-size: 15.5px; line-height: 1.72; color: var(--ink); margin: 24px 0 0; }
.st-body p { margin: 0 0 14px; } .st-body p:last-child { margin-bottom: 0; }
.st-body h4 { font-family: var(--serif); font-weight: 600; font-size: 18px; color: var(--espresso); margin: 22px 0 10px; }
.st-body ul { margin: 0 0 14px; padding-left: 0; list-style: none; }
.st-body li { position: relative; padding-left: 24px; margin-bottom: 9px; }
.st-body li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 6px; height: 6px; border-radius: 99px; background: var(--orange); }
.st-actions { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line-soft); }
.st-complete { border: none; border-radius: 12px; padding: 14px 26px; background: var(--orange); color: #fff; font: 700 14px var(--sans); cursor: pointer; transition: filter .15s; }
.st-complete:hover { filter: brightness(1.08); }

/* curriculum rail */
.cl-rail { background: var(--surface); border: 1px solid var(--line-soft); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-soft); position: sticky; top: 90px; }
.cl-rail-h { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; font-family: var(--serif); font-weight: 600; font-size: 15px; color: var(--espresso); border-bottom: 1px solid var(--line-soft); }
.cl-rail-h span { font: 700 11.5px var(--sans); color: var(--orange); }
.cur-mod { border-bottom: 1px solid var(--line-soft); }
.cur-mod:last-child { border-bottom: none; }
.cur-mh { display: flex; align-items: center; gap: 8px; padding: 14px 20px 6px; }
.cur-mn { font: 700 10px var(--sans); letter-spacing: .06em; text-transform: uppercase; color: var(--orange); }
.cur-mt { font-weight: 700; font-size: 13px; color: var(--espresso); flex: 1; }
.cur-mdone { color: var(--kapha); font-weight: 800; font-size: 13px; }
.cur-row { display: flex; align-items: center; gap: 11px; width: 100%; text-align: left; border: none; background: none; padding: 10px 20px; cursor: pointer; transition: background .14s; }
.cur-row:hover:not(.locked) { background: var(--surface-warm); }
.cur-row.active { background: var(--orange-wash); }
.cur-row.locked { cursor: not-allowed; opacity: 0.5; }
.cur-ic { width: 24px; height: 24px; border-radius: 999px; display: grid; place-items: center; flex-shrink: 0; border: 1.5px solid var(--line); color: var(--ink-soft); }
.cur-ic svg { width: 13px; height: 13px; }
.cur-ic.done { background: var(--kapha); border-color: var(--kapha); color: #fff; font-weight: 800; font-size: 12px; }
.cur-ic.now { border-color: var(--orange); color: var(--orange); }
.cur-ic.lock svg { width: 12px; height: 12px; }
.cur-t { flex: 1; font-size: 13px; color: var(--ink); line-height: 1.35; }
.cur-row.active .cur-t { font-weight: 700; color: var(--espresso); }
.cur-d { font-size: 11px; color: var(--ink-faint); flex-shrink: 0; }

/* completion (course) */
.done-card { text-align: center; padding: 40px 24px; max-width: 560px; margin: 0 auto; }
.done-seed { width: 58px; height: 58px; margin: 0 auto 20px; display: block; background: var(--orange); -webkit-mask: url(img/seed-of-life-logo.webp) center/contain no-repeat; mask: url(img/seed-of-life-logo.webp) center/contain no-repeat; }
.done-eyebrow { font: 700 11.5px var(--sans); letter-spacing: .1em; text-transform: uppercase; color: var(--orange); }
.done-card h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(28px,4vw,40px); line-height: 1.08; letter-spacing: -0.6px; color: var(--espresso); margin: 12px 0 0; }
.done-card p { font-size: 16px; line-height: 1.65; color: var(--ink-soft); margin: 16px 0 0; }
.done-actions { margin-top: 26px; }

/* certificate (cert) */
.cert-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 32px; align-items: start; }
@media (max-width: 900px) { .cert-wrap { grid-template-columns: 1fr; } }
.cert { background: var(--cine-bg); border-radius: 18px; padding: 12px; box-shadow: 0 40px 80px -30px rgba(30,18,10,0.72); }
.cert-inner { position: relative; border: 1px solid oklch(1 0 0 / 0.26); border-radius: 12px; padding: 44px 46px 38px; text-align: center; color: #fff; overflow: hidden; }
.cert-inner::before { content: ""; position: absolute; inset: 9px; border: 1px solid oklch(1 0 0 / 0.15); border-radius: 8px; pointer-events: none; z-index: 1; }
.cert-fol { position: absolute; inset: 0; z-index: 0; pointer-events: none; background: var(--orange-soft); opacity: 0.14; -webkit-mask-image: url(img/flower-field.svg), linear-gradient(to bottom, #000 0%, rgba(0,0,0,0.55) 34%, rgba(0,0,0,0.12) 60%, transparent 82%); mask-image: url(img/flower-field.svg), linear-gradient(to bottom, #000 0%, rgba(0,0,0,0.55) 34%, rgba(0,0,0,0.12) 60%, transparent 82%); -webkit-mask-size: cover, 100% 100%; mask-size: cover, 100% 100%; -webkit-mask-repeat: no-repeat, no-repeat; mask-repeat: no-repeat, no-repeat; -webkit-mask-position: center, center; mask-position: center, center; -webkit-mask-composite: source-in; mask-composite: intersect; }
.cert-inner > *:not(.cert-fol):not(.cert-seal) { position: relative; z-index: 2; }
.cert-logo { display: block; width: 66px; height: 66px; margin: 16px auto 2px; background: var(--orange-soft); -webkit-mask: url(img/seed-of-life-logo.webp) center/contain no-repeat; mask: url(img/seed-of-life-logo.webp) center/contain no-repeat; filter: drop-shadow(0 0 16px oklch(0.86 0.058 62 / 0.4)); }
.cert-kicker { font: 700 10.5px var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--orange-soft); }
.cert-seal { position: absolute; right: 30px; bottom: 26px; width: 94px; height: 94px; margin: 0; z-index: 3; }
.cert-seal .cseal { width: 94px; height: 94px; display: block; }
.cert-seal .sl-seed { transform: scale(0.92); transform-origin: center; transform-box: fill-box; }
.cert-seal .sl-dot { fill: var(--orange-soft); }
.cert-seal .sl-o { fill: none; stroke: var(--orange-soft); stroke-width: 2; }
.cert-seal .sl-i { fill: none; stroke: oklch(1 0 0 / 0.34); stroke-width: 1; }
.cert-seal .sl-t { fill: var(--orange-soft); font-family: var(--sans); font-weight: 700; font-size: 9px; letter-spacing: 2px; }
.cert-seal .sl-seed circle { fill: none; stroke: var(--orange-soft); stroke-width: 1.3; opacity: 0.92; }
.cert-pre { font-size: 11.5px; color: var(--cream); letter-spacing: .07em; text-transform: uppercase; margin-top: 14px; }
.cert-name { font-family: var(--serif); font-weight: 600; font-size: clamp(32px, 5vw, 44px); color: #fff; display: inline-block; min-width: 240px; padding: 4px 18px; margin: 2px 0 4px; outline: none; letter-spacing: .5px; }
.cert-name[contenteditable] { border-bottom: 1px dashed oklch(1 0 0 / 0.3); margin-bottom: 10px; }
.cert-name:focus { border-bottom-color: var(--orange-soft); }
.cert-rule { display: flex; align-items: center; justify-content: center; gap: 13px; margin: 8px auto 14px; color: var(--orange-soft); font-size: 12px; line-height: 1; }
.cert-rule::before, .cert-rule::after { content: ""; height: 1px; width: 56px; }
.cert-rule::before { background: linear-gradient(to right, transparent, oklch(1 0 0 / 0.42)); }
.cert-rule::after { background: linear-gradient(to left, transparent, oklch(1 0 0 / 0.42)); }
.cert-rule i { width: 6px; height: 6px; background: var(--orange-soft); transform: rotate(45deg); display: block; flex-shrink: 0; }
.cert-role { font-size: 13px; color: var(--cream); } .cert-role b { color: var(--orange-soft); font-weight: 700; }
.cert-title2 { font-family: var(--serif); font-weight: 600; font-style: italic; font-size: 24px; color: var(--orange-soft); margin-top: 6px; }
.cert-course { font-size: 12px; color: oklch(1 0 0 / 0.7); margin-top: 8px; }
.cert-foot { display: flex; justify-content: flex-start; gap: 44px; margin-top: 34px; padding-right: 120px; }
.cert-foot > div { flex: 1; }
.cf-line { height: 1px; background: oklch(1 0 0 / 0.34); margin-bottom: 8px; }
.cert-foot span { font-size: 10.5px; color: var(--cream); letter-spacing: .02em; }
.cert-side { background: var(--surface); border: 1px solid var(--line-soft); border-radius: 18px; padding: 26px; box-shadow: var(--shadow-soft); }
.cert-side-badge { width: 46px; height: 46px; border-radius: 999px; background: var(--kapha); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 22px; margin-bottom: 14px; }
.cert-side h2 { font-family: var(--serif); font-weight: 600; font-size: 24px; color: var(--espresso); margin: 0; }
.cert-side p { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); margin: 12px 0 20px; }
.cert-side .st-complete { width: 100%; margin-bottom: 10px; }
.cert-side .lc-btn.ghost { width: 100%; }
/* image / gallery lesson */
.st-figure { margin: 22px 0 0; background: var(--surface-warm); }
.st-figure img { width: 100%; height: auto; display: block; object-fit: contain; }
.st-cap { display: block; font-size: 13px; color: var(--ink-faint); font-style: italic; margin: 12px 0 0; text-align: center; }
@media print { body > *:not(#classroom) { display: none !important; } .cl-top, .cl-rail, .cert-side { display: none !important; } .cl-grid { display: block !important; } .cert { box-shadow: none; } }

/* ═══ BLOG ═══ */
.blog-feat { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(24px,3.5vw,48px); align-items: center; background: var(--surface); border: 1px solid var(--line-soft); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-card); }
@media (max-width: 860px) { .blog-feat { grid-template-columns: 1fr; } }
.blog-feat .bf-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--surface-warm); }
.blog-feat .bf-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-feat:hover .bf-img img { transform: scale(1.04); }
.blog-feat .bf-flag { position: absolute; top: 16px; left: 16px; font: 700 10.5px var(--sans); letter-spacing: .05em; text-transform: uppercase; padding: 7px 13px; border-radius: 999px; background: var(--orange); color: #fff; }
.blog-feat .bf-body { padding: clamp(24px,3vw,44px) clamp(24px,3vw,44px) clamp(24px,3vw,44px) 0; }
@media (max-width: 860px) { .blog-feat .bf-body { padding: 0 26px 30px; } }
.blog-feat .bf-cat { font: 700 11px var(--sans); letter-spacing: .07em; text-transform: uppercase; color: var(--orange); }
.blog-feat .bf-body h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(26px,3.4vw,40px); line-height: 1.1; letter-spacing: -0.6px; color: var(--espresso); margin: 12px 0 0; }
.blog-feat .bf-body p { font-size: 15.5px; line-height: 1.68; color: var(--ink-soft); margin: 14px 0 0; }
.blog-feat .bf-meta { display: flex; align-items: center; gap: 12px; margin-top: 20px; font-size: 12.5px; color: var(--ink-faint); }
.blog-feat .bf-meta .dot { width: 3px; height: 3px; border-radius: 99px; background: var(--ink-faint); }
.blog-feat .bf-cta { display: inline-block; margin-top: 22px; font: 700 13.5px var(--sans); color: var(--orange); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 960px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.bcard { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line-soft); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-soft); text-decoration: none; transition: transform .2s, box-shadow .2s; }
.bcard:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -22px rgba(60,40,25,0.3); }
.bcard .bc-img { aspect-ratio: 3/2; overflow: hidden; background: var(--surface-warm); }
.bcard .bc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.bcard:hover .bc-img img { transform: scale(1.05); }
.bcard .bc-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.bcard .bc-cat { font: 700 10.5px var(--sans); letter-spacing: .07em; text-transform: uppercase; color: var(--orange); }
.bcard .bc-body h3 { font-family: var(--serif); font-weight: 600; font-size: 20px; line-height: 1.16; color: var(--espresso); margin: 9px 0 0; }
.bcard .bc-body p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; margin: 9px 0 0; flex: 1; }
.bcard .bc-meta { margin-top: 16px; font-size: 12px; color: var(--ink-faint); }

/* article */
.art-hero { position: relative; min-height: 56vh; display: flex; align-items: flex-end; overflow: hidden; color: #fff; }
.art-hero .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.art-hero .scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, oklch(0.15 0.02 44 / 0.28) 0%, oklch(0.12 0.02 44 / 0.9) 100%); }
.art-hero .hwrap { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; width: 100%; padding: 128px clamp(20px,4vw,44px) 40px; }
.art-hero .crumb { font-size: 12.5px; color: oklch(0.86 0.03 74); display: flex; gap: 9px; align-items: center; }
.art-hero .crumb a { color: oklch(0.86 0.03 74); text-decoration: none; } .art-hero .crumb a:hover { color: #fff; }
.art-hero .crumb .sep { opacity: .5; }
.art-hero .a-cat { display: inline-block; font: 700 11px var(--sans); letter-spacing: .07em; text-transform: uppercase; color: var(--orange-soft); margin-top: 18px; }
.art-hero h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(30px,4.6vw,52px); line-height: 1.06; letter-spacing: -0.8px; margin: 10px 0 0; color: #fff; }
.art-hero .a-meta { display: flex; align-items: center; gap: 12px; margin-top: 18px; font-size: 13px; color: var(--cream); }
.art-hero .a-meta .av { width: 34px; height: 34px; border-radius: 999px; background: var(--orange); color: #fff; display: grid; place-items: center; font: 800 13px var(--sans); }
.art-hero .a-meta .dot { width: 3px; height: 3px; border-radius: 99px; background: oklch(1 0 0 / 0.5); }
.article { max-width: 720px; margin: 0 auto; padding: clamp(36px,5vw,56px) clamp(20px,4vw,44px) 40px; }
.article > p { font-size: 17px; line-height: 1.8; color: var(--ink); margin: 0 0 22px; }
.article > p:first-of-type::first-letter { font-family: var(--serif); font-weight: 600; font-size: 58px; line-height: 0.8; float: left; margin: 6px 12px 0 0; color: var(--orange); }
.article h2 { font-family: var(--serif); font-weight: 600; font-size: 27px; letter-spacing: -0.4px; color: var(--espresso); margin: 38px 0 14px; }
.article blockquote { margin: 30px 0; padding: 6px 0 6px 26px; border-left: 3px solid var(--orange); font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1.4; color: var(--espresso); }
.article ul { margin: 0 0 22px; padding: 0; list-style: none; }
.article .art-table { width: 100%; border-collapse: separate; border-spacing: 0; margin: 28px 0 32px; font-family: var(--sans); border: 1px solid var(--line-soft); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-soft); }
.article .art-table thead th { background: var(--espresso); color: #fff; font-family: var(--serif); font-weight: 600; font-size: 16px; text-align: left; padding: 14px 18px; }
.article .art-table thead th:not(:first-child) { border-left: 1px solid oklch(1 0 0 / 0.12); }
.article .art-table tbody td { padding: 13px 18px; border-top: 1px solid var(--line-soft); font-size: 15px; line-height: 1.55; color: var(--ink-soft); vertical-align: top; }
.article .art-table tbody td:not(:first-child) { border-left: 1px solid var(--line-soft); }
.article .art-table tbody td:first-child { font-weight: 700; color: var(--espresso); background: var(--surface-warm); white-space: nowrap; }
.article .art-table tbody tr:nth-child(even) td:not(:first-child) { background: color-mix(in oklab, var(--surface-warm) 42%, transparent); }
@media (max-width: 560px) { .article .art-table { font-size: 13px; } .article .art-table thead th, .article .art-table tbody td { padding: 10px 11px; } .article .art-table thead th { font-size: 13.5px; } .article .art-table tbody td { font-size: 12.5px; } }
.article .art-faq { margin: 10px 0 30px; border-top: 1px solid var(--line-soft); }
.article .art-faq .faq-item { border-bottom: 1px solid var(--line-soft); }
.article .art-faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 17px 2px; font-family: var(--serif); font-weight: 600; font-size: 18px; color: var(--espresso); }
.article .art-faq summary::-webkit-details-marker { display: none; }
.article .art-faq .faq-chev { color: var(--orange); font-size: 22px; line-height: 1; transition: transform .2s; flex-shrink: 0; }
.article .art-faq details[open] summary .faq-chev { transform: rotate(90deg); }
.article .art-faq .faq-a { padding: 0 2px 18px; font-size: 16px; line-height: 1.7; color: var(--ink-soft); }
.article .art-faq .faq-a b { color: var(--espresso); }
.article li { position: relative; padding-left: 26px; margin-bottom: 11px; font-size: 16.5px; line-height: 1.7; color: var(--ink); }
.article li::before { content: ""; position: absolute; left: 3px; top: 11px; width: 7px; height: 7px; border-radius: 99px; background: var(--orange); }
.article ol { margin: 0 0 22px; padding-left: 0; list-style: none; counter-reset: art; }
.article ol li { position: relative; padding-left: 40px; margin-bottom: 12px; font-size: 16.5px; line-height: 1.7; color: var(--ink); counter-increment: art; }
.article ol li::before { content: counter(art,decimal-leading-zero); position: absolute; left: 0; top: 1px; font-family: var(--serif); font-weight: 600; font-size: 17px; color: var(--orange); }
.article img { max-width: 100%; border-radius: 16px; margin: 10px 0 26px; display: block; }
.art-share { max-width: 720px; margin: 0 auto; padding: 0 clamp(20px,4vw,44px); display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--line-soft); padding-top: 26px; }
.art-share span { font: 700 12px var(--sans); letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }
.art-share a { width: 38px; height: 38px; border-radius: 999px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink-soft); }
.art-share a:hover { border-color: var(--orange); color: var(--orange); }
.art-share svg { width: 17px; height: 17px; }
.co-summary h3 { font-family: var(--serif); font-weight: 600; font-size: 20px; color: var(--espresso); margin: 0 0 12px; }
.sl { display: flex; justify-content: space-between; font-size: 14.5px; color: var(--ink-soft); padding: 9px 0; }
.sl.total { border-top: 1px solid var(--line-soft); margin-top: 8px; padding-top: 16px; font-family: var(--serif); font-weight: 600; font-size: 20px; color: var(--espresso); }
.co-form .fld { margin-bottom: 14px; }
.co-form label { display: block; font: 700 11px var(--sans); letter-spacing: .04em; text-transform: uppercase; color: var(--espresso); margin-bottom: 6px; }
.co-form input { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 11px; font-family: var(--sans); font-size: 14.5px; color: var(--ink); background: var(--surface); box-sizing: border-box; }
.co-form input:focus { outline: none; border-color: var(--orange); }
.co-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* what-to-expect steps on dark */
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 820px) { .exp-grid { grid-template-columns: 1fr; } }
.exp-card .eg { width: 52px; height: 52px; border-radius: 14px; background: oklch(1 0 0 / 0.08); border: 1px solid oklch(1 0 0 / 0.14); display: grid; place-items: center; margin-bottom: 18px; }
.exp-card .eg span { width: 26px; height: 26px; background: var(--orange-soft); display: inline-block; }
.exp-card h4 { font-family: var(--serif); font-weight: 600; font-size: 20px; color: #fff; margin: 0; }
.exp-card p { font-size: 14px; color: var(--cream); line-height: 1.6; margin: 10px 0 0; }

/* ═══ shared CTA band ═══ */
.cta-band { position: relative; background: var(--cine-bg); color: #fff; border-radius: 30px; padding: clamp(48px, 7vw, 72px) 40px; text-align: center; overflow: hidden; }
.cta-band .cglow { position: absolute; top: -40%; left: 50%; width: 620px; height: 620px; transform: translateX(-50%); opacity: 0.1; background: var(--orange-soft); -webkit-mask: url(img/flower-of-life.svg) center/contain no-repeat; mask: url(img/flower-of-life.svg) center/contain no-repeat; }
.cta-band .wrap-c { position: relative; z-index: 2; }
.cta-band .seed { width: 46px; height: 46px; margin: 0 auto 18px; background: var(--orange-soft); -webkit-mask: url(img/seed-of-life-logo.webp) center/contain no-repeat; mask: url(img/seed-of-life-logo.webp) center/contain no-repeat; }
.cta-band h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(30px, 4.4vw, 46px); line-height: 1.08; letter-spacing: -0.8px; margin: 0; }
.cta-band p { color: var(--cream); font-size: 16.5px; margin: 16px auto 0; max-width: 52ch; line-height: 1.6; }
.cta-band .row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* ═══ SHOP · featured product ═══ */
.shop-feat { display: grid; grid-template-columns: 1.1fr 1fr; border-radius: 28px; overflow: hidden; border: 1px solid var(--line-soft); box-shadow: var(--shadow-card); background: var(--surface); }
@media (max-width: 900px) { .shop-feat { grid-template-columns: 1fr; } }
.shop-feat .sf-img { position: relative; min-height: 460px; overflow: hidden; background: var(--surface-warm); }
.shop-feat .sf-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.shop-feat:hover .sf-img img { transform: scale(1.04); }
.shop-feat .sf-tag { position: absolute; top: 18px; left: 18px; font: 700 11px var(--sans); letter-spacing: .06em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; background: var(--orange); color: #fff; box-shadow: 0 4px 14px -4px rgba(0,0,0,0.3); }
.shop-feat .sf-body { padding: clamp(30px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; }
.shop-feat .sf-cat { font: 700 11px var(--sans); letter-spacing: .07em; text-transform: uppercase; color: var(--orange); }
.shop-feat .sf-body h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 3.6vw, 42px); line-height: 1.06; letter-spacing: -0.7px; color: var(--espresso); margin: 12px 0 0; }
.shop-feat .sf-body p { font-size: 15.5px; line-height: 1.68; color: var(--ink-soft); margin: 16px 0 0; }
.shop-feat .sf-price { display: flex; align-items: baseline; gap: 12px; margin: 24px 0 26px; }
.shop-feat .sf-price .now { font-family: var(--serif); font-weight: 600; font-size: 30px; color: var(--espresso); }
.shop-feat .sf-price .was { font-size: 17px; color: var(--ink-faint); text-decoration: line-through; }

/* ═══ SHOP · shop by dosha ═══ */
.dosha-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 820px) { .dosha-tiles { grid-template-columns: 1fr; } }
.dosha-tile { text-align: left; border-radius: 24px; padding: 34px 30px; border: 1px solid var(--line-soft); cursor: pointer; text-decoration: none; display: block; transition: transform .2s, box-shadow .2s; }
.dosha-tile:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -22px rgba(60,40,25,0.3); }
.dosha-tile .dg { width: 62px; height: 62px; display: block; margin-bottom: 20px; }
.dosha-tile h3 { font-family: var(--serif); font-weight: 600; font-size: 27px; margin: 0; line-height: 1; }
.dosha-tile .el { font: 700 11px var(--sans); letter-spacing: .07em; text-transform: uppercase; margin-top: 6px; }
.dosha-tile p { font-size: 14px; line-height: 1.55; color: var(--ink-soft); margin: 13px 0 0; }
.dosha-tile .go { display: inline-block; margin-top: 18px; font: 700 13px var(--sans); }
.dosha-tile.vata { background: var(--vata-wash); border-color: color-mix(in oklab, var(--vata) 22%, transparent); }
.dosha-tile.vata h3, .dosha-tile.vata .el, .dosha-tile.vata .go { color: var(--vata); }
.dosha-tile.pitta { background: var(--pitta-wash); border-color: color-mix(in oklab, var(--pitta) 22%, transparent); }
.dosha-tile.pitta h3, .dosha-tile.pitta .el, .dosha-tile.pitta .go { color: var(--pitta); }
.dosha-tile.kapha { background: var(--kapha-wash); border-color: color-mix(in oklab, var(--kapha) 22%, transparent); }
.dosha-tile.kapha h3, .dosha-tile.kapha .el, .dosha-tile.kapha .go { color: var(--kapha); }
.shelf-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 22px; flex-wrap: wrap; max-width: none; }

/* ═══ EVENTS · two ways to practice ═══ */
.ways { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 820px) { .ways { grid-template-columns: 1fr; } }
.way-card { position: relative; border-radius: 26px; overflow: hidden; min-height: 360px; display: flex; flex-direction: column; justify-content: flex-end; padding: 36px; color: #fff; text-decoration: none; box-shadow: var(--shadow-card); }
.way-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.way-card:hover img { transform: scale(1.05); }
.way-card .sc { position: absolute; inset: 0; background: linear-gradient(180deg, oklch(0.15 0.02 44 / 0.12) 0%, oklch(0.13 0.02 44 / 0.86) 100%); }
.way-card .inr { position: relative; z-index: 2; }
.way-card .wk { font: 700 11px var(--sans); letter-spacing: .07em; text-transform: uppercase; color: var(--orange-soft); }
.way-card h3 { font-family: var(--serif); font-weight: 600; font-size: 30px; margin: 10px 0 0; line-height: 1.05; }
.way-card p { font-size: 14.5px; line-height: 1.6; color: oklch(0.92 0.02 78); margin: 12px 0 0; max-width: 40ch; }
.way-card .go { display: inline-block; margin-top: 18px; font: 700 13px var(--sans); color: #fff; }

/* guest quote */
.guest-q { display: grid; grid-template-columns: 200px 1fr; gap: 40px; align-items: center; max-width: 900px; margin: 0 auto; }
@media (max-width: 700px) { .guest-q { grid-template-columns: 1fr; gap: 24px; text-align: center; } }
.guest-q .gph { aspect-ratio: 1/1; border-radius: 22px; overflow: hidden; border: 1px solid oklch(1 0 0 / 0.14); }
@media (max-width: 700px) { .guest-q .gph { width: 130px; margin: 0 auto; } }
.guest-q .gph img { width: 100%; height: 100%; object-fit: cover; }
.guest-q blockquote { margin: 0; font-family: var(--serif); font-weight: 500; font-size: clamp(21px, 2.6vw, 28px); line-height: 1.34; letter-spacing: -0.3px; color: #fff; }
.guest-q .who { font: 700 12.5px var(--sans); letter-spacing: .06em; text-transform: uppercase; color: var(--orange-soft); margin-top: 20px; }
