@import "tailwindcss";

:root {
  --turquoise: #0f8b8d;
  --turquoise-dark: #08696b;
  --terracotta: #c86d51;
  --gold: #e5b238;
  --forest: #1a2f2b;
  --cream: #f4f9f8;
  --paper: #f8fbfa;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--forest);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}
button, a { font: inherit; }
button { color: inherit; }
button:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.skip-link { position: fixed; z-index: 100; top: 8px; left: 8px; padding: 12px 16px; border-radius: 12px; color: white; background: var(--forest); transform: translateY(-140%); transition: transform .2s; }
.skip-link:focus { transform: none; }
.section { padding: 110px clamp(24px, 6vw, 100px); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  width: min(94%, 1380px);
  height: 74px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px 8px 18px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 24px;
  background: rgba(247,252,251,.82);
  box-shadow: 0 16px 50px rgba(17,55,49,.14), inset 0 1px rgba(255,255,255,.8);
  backdrop-filter: blur(20px) saturate(1.25);
  transition: .3s ease;
}
.site-header.is-scrolled { top: 10px; background: rgba(247,252,251,.95); box-shadow: 0 12px 35px rgba(17,55,49,.2); }
.brand { display: flex; align-items: center; gap: 10px; border: 0; background: none; cursor: pointer; text-align: left; }
.brand img { width: 51px; height: 51px; object-fit: contain; filter: drop-shadow(0 5px 7px rgba(0,0,0,.18)); }
.brand span { display: flex; flex-direction: column; }
.brand strong { letter-spacing: .13em; font-size: .9rem; }
.brand small { color: #61756f; margin-top: 2px; }
.header-socials { display: flex; align-items: center; gap: 6px; margin-left: auto; margin-right: 8px; }
.header-socials a { position: relative; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: none; border: none; box-shadow: none; transition: transform .25s ease, filter .25s ease; text-decoration: none; }
.header-socials a::after { display: none; }
.header-socials a:hover { transform: translateY(-3px) scale(1.1); filter: drop-shadow(0 6px 12px rgba(17,55,49,.3)); }
.brand-social-3d-icon { width: 28px; height: 28px; display: block; filter: drop-shadow(0 3px 6px rgba(0,0,0,.2)); transition: transform .25s ease; }
.header-socials a:hover .brand-social-3d-icon { transform: rotate(-3deg); }
nav { display: flex; align-items: center; gap: 2px; }
nav a { border-radius: 13px; padding: 12px 13px; color: inherit; font-size: .91rem; font-weight: 600; text-decoration: none; }
nav a:hover { color: var(--turquoise-dark); background: rgba(15,139,141,.08); }
nav .nav-cta { margin-left: 8px; padding-inline: 20px; color: white; background: linear-gradient(135deg, var(--turquoise), var(--turquoise-dark)); box-shadow: 0 8px 20px rgba(15,139,141,.22); }
nav .nav-cta:hover { color: white; background: linear-gradient(135deg, #16a5a7, var(--turquoise)); }
.menu-button { display: none; width: 46px; height: 46px; border: 0; border-radius: 14px; background: var(--turquoise); padding: 13px; }
.menu-button span { display: block; height: 2px; margin: 4px 0; background: white; transition: .25s; }
.menu-button.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button.is-open span:nth-child(2) { opacity: 0; }
.menu-button.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("assets/pranapaw-hero.png");
  background-size: cover;
  background-position: 53% center;
  background-attachment: fixed;
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(7,29,26,.64) 0%, rgba(9,35,31,.38) 42%, rgba(9,32,28,.03) 72%),
    linear-gradient(0deg, rgba(10,39,34,.3), transparent 40%);
}
.hero-content { position: relative; z-index: 1; width: min(650px, 90%); margin-left: clamp(24px, 7vw, 120px); padding-top: 60px; color: white; }
.eyebrow, .section-kicker { font-size: .76rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: #fff4c7; text-shadow: 0 2px 12px #193b36; }
.eyebrow span { width: 30px; height: 1px; background: var(--gold); }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; margin: 0; letter-spacing: -.035em; line-height: 1.04; }
h1 { margin-top: 22px; font-size: clamp(3.4rem, 6.4vw, 6.8rem); text-shadow: 0 5px 30px rgba(4,24,21,.4); }
h1 em { color: #fff1b6; font-weight: 400; }
.hero-content > p { max-width: 550px; font-size: clamp(1.05rem, 1.7vw, 1.3rem); line-height: 1.7; text-shadow: 0 2px 14px rgba(4,24,21,.8); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 0 24px; border: 1px solid transparent; border-radius: 16px; font-weight: 750; text-decoration: none; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px) scale(1.015); }
.button.primary { color: #163029; background: linear-gradient(135deg, #ffe08a, var(--gold)); box-shadow: 0 10px 34px rgba(229,178,56,.38); animation: aura 3s ease-in-out infinite; }
.button.glass { color: white; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.15); backdrop-filter: blur(13px); }
.button.glass:hover { background: rgba(255,255,255,.25); }
@keyframes aura { 50% { box-shadow: 0 10px 42px rgba(255,216,110,.58); } }
.trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; font-size: .83rem; font-weight: 600; }
.trust-row b { color: #ffe08a; margin-right: 5px; }
.scroll-cue { position: absolute; z-index: 2; left: 50%; bottom: 20px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: white; border: 0; background: none; cursor: pointer; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.scroll-cue i { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; font-style: normal; animation: bounce 2s infinite; }
@keyframes bounce { 50% { transform: translateY(5px); } }

.section-kicker { display: inline-block; color: var(--turquoise-dark); margin-bottom: 18px; }
.intro { background: #f7fbfa; }
.intro-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 10vw; align-items: start; }
.intro h2, .section-heading h2, .offer-detail h2, .about h2, .pricing h2, .faq h2, .contact h2 { font-size: clamp(2.55rem, 5vw, 5.2rem); }
h2 span, .faq h2 span { color: var(--turquoise); font-style: italic; }
.lead { font-size: 1.18rem; line-height: 1.75; }
.intro-note { margin: 20px 0 4px; padding: 16px 18px; border-left: 3px solid var(--gold); border-radius: 0 14px 14px 0; color: #526861; background: rgba(229,178,56,.09); font-size: .86rem; line-height: 1.65; }
.text-link { display: inline-flex; gap: 12px; align-items: center; border: 0; border-bottom: 1px solid var(--turquoise); background: none; padding: 10px 0; color: var(--turquoise-dark); font-weight: 750; cursor: pointer; }
.text-link:hover { gap: 17px; }

.garden-path { color: white; background: radial-gradient(circle at 12% 4%, #247f75, transparent 30%), linear-gradient(145deg, #123b34, #0b2824); }
.garden-path-heading { max-width: 850px; }
.garden-path .section-kicker { color: #f2d276; }
.garden-path h2 { font-size: clamp(2.7rem, 5vw, 5rem); }
.garden-path h2 span { color: #83d8bf; }
.garden-path-heading > p { max-width: 700px; color: #c9dcd7; font-size: 1.05rem; line-height: 1.75; }
.garden-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 46px 0 30px; }
.garden-steps article { position: relative; min-height: 285px; padding: 31px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 27px; background: rgba(255,255,255,.07); box-shadow: inset 0 1px rgba(255,255,255,.12); backdrop-filter: blur(12px); }
.garden-steps article > b { position: absolute; top: 23px; right: 25px; color: rgba(255,255,255,.36); font-size: .72rem; letter-spacing: .13em; }
.garden-steps article > span { width: 57px; height: 57px; display: grid; place-items: center; border-radius: 18px; color: #173a34; background: linear-gradient(145deg, #ffe49a, var(--gold)); box-shadow: 0 13px 28px rgba(229,178,56,.22); font-size: 1.35rem; }
.garden-steps h3 { margin: 34px 0 12px; font: 400 1.75rem Georgia, serif; }
.garden-steps p { margin: 0; color: #c9dbd7; line-height: 1.7; }
.garden-path .text-link { color: #f2d276; border-color: #f2d276; }

.services { background: linear-gradient(180deg, #edf6f3, #f8fbfa); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 48px; }
.section-heading p { max-width: 440px; line-height: 1.7; color: #526861; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card { position: relative; min-height: 420px; padding: 44px; overflow: hidden; border: 1px solid rgba(255,255,255,.8); border-radius: 32px; box-shadow: 0 22px 55px rgba(22,58,51,.1), inset 0 1px white; transition: transform .35s, box-shadow .35s; }
.service-card:hover { transform: translateY(-7px); box-shadow: 0 30px 65px rgba(22,58,51,.16); }
.prana-card { background: radial-gradient(circle at 90% 10%, rgba(229,178,56,.22), transparent 30%), linear-gradient(145deg, rgba(255,255,255,.93), rgba(219,243,236,.9)); }
.animal-card { color: white; background: radial-gradient(circle at 88% 10%, rgba(229,178,56,.2), transparent 25%), linear-gradient(145deg, #126f71, #074d4f); }
.card-number { position: absolute; top: 32px; right: 34px; opacity: .5; font-size: .8rem; letter-spacing: .1em; }
.service-icon { width: 72px; height: 72px; display: grid; place-items: center; border-radius: 22px; color: #7a5910; background: linear-gradient(145deg, #ffe49a, var(--gold)); box-shadow: 0 13px 30px rgba(229,178,56,.28); font-size: 2rem; }
.animal-card .service-icon { color: var(--turquoise-dark); background: #effaf8; }
.service-card h3 { margin: 62px 0 16px; font-family: Georgia, serif; font-size: 2.35rem; font-weight: 400; }
.service-card p { max-width: 500px; line-height: 1.75; opacity: .8; }
.service-card button { position: absolute; left: 44px; bottom: 40px; display: flex; gap: 14px; border: 0; background: none; border-bottom: 1px solid currentColor; padding: 8px 0; font-weight: 750; cursor: pointer; }
.care-note { margin: 22px auto 0; text-align: center; color: #6a7d77; font-size: .82rem; }

.offer-detail {
  scroll-margin-top: 84px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}
.prana-detail { background: radial-gradient(circle at 8% 8%, rgba(229,178,56,.2), transparent 24%), linear-gradient(145deg, #fffaf0, #eaf7f3); }
.animal-detail { color: white; background: radial-gradient(circle at 90% 10%, rgba(229,178,56,.16), transparent 28%), linear-gradient(145deg, #0f6869, #092f2d); }
.animal-detail.offer-detail { grid-template-columns: 1fr; }
.animal-detail .section-kicker, .animal-detail h2 span { color: #f2d276; }
.detail-intro .lead { max-width: 650px; color: #536a63; }
.garden-explainer { margin: 24px 0 6px; padding: 20px 22px; border: 1px solid rgba(15,139,141,.16); border-radius: 18px; background: rgba(255,255,255,.62); box-shadow: inset 0 1px white; }
.garden-explainer strong { color: var(--turquoise-dark); }
.garden-explainer p { margin: 7px 0 0; color: #536a63; font-size: .84rem; line-height: 1.65; }
.animal-detail .detail-intro .lead { color: #d3e3df; }
.detail-tags { display: flex; flex-wrap: wrap; gap: 9px; margin: 26px 0 30px; }
.detail-tags span { padding: 10px 13px; border: 1px solid rgba(15,139,141,.16); border-radius: 12px; color: #36544d; background: rgba(255,255,255,.68); font-size: .8rem; font-weight: 750; }
.animal-detail .detail-tags span { color: #eff8f6; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.08); }
.detail-process { padding: clamp(28px, 4vw, 50px); border: 1px solid rgba(255,255,255,.8); border-radius: 32px; background: rgba(255,255,255,.72); box-shadow: 0 24px 60px rgba(22,58,51,.12); backdrop-filter: blur(18px); }
.animal-detail .detail-process { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.08); box-shadow: 0 24px 60px rgba(0,0,0,.16); }
.process-label { display: block; margin-bottom: 8px; color: var(--turquoise-dark); font-size: .72rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.animal-detail .process-label { color: #f2d276; }
.detail-process ol { margin: 0; padding: 0; list-style: none; }
.detail-process li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid rgba(26,47,43,.13); }
.animal-detail .detail-process li { border-color: rgba(255,255,255,.15); }
.detail-process li > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: var(--turquoise-dark); background: #def0ec; font-size: .72rem; font-weight: 850; }
.animal-detail .detail-process li > span { color: #173b35; background: #f2d276; }
.detail-process h3 { margin: 2px 0 7px; font: 400 1.35rem Georgia, serif; }
.detail-process p { margin: 0; color: #5a6f68; line-height: 1.65; }
.animal-detail .detail-process p { color: #cee0dc; }
.detail-process .text-link { margin-top: 18px; }
.animal-detail .detail-process .text-link { color: #f2d276; border-color: #f2d276; }
.chakra-map { grid-column: 1 / -1; display: grid; grid-template-columns: .78fr .62fr 1.3fr; gap: clamp(24px, 4vw, 58px); align-items: center; margin-top: 18px; padding: clamp(30px, 5vw, 58px); border: 1px solid rgba(15,139,141,.15); border-radius: 34px; background: rgba(255,255,255,.68); box-shadow: 0 24px 60px rgba(22,58,51,.11), inset 0 1px white; backdrop-filter: blur(18px); }
.chakra-map-heading blockquote { margin: 0 0 22px; color: var(--forest); font: italic 400 clamp(2rem, 3.5vw, 3.2rem)/1.18 Georgia, serif; }
.chakra-map-heading > p { color: #586e67; line-height: 1.72; }
.energy-map-visual { position: relative; min-height: 480px; display: grid; place-items: center; }
.aura-rings { position: absolute; inset: 26px 0 48px; display: grid; place-items: center; }
.aura-rings i { position: absolute; width: 76%; aspect-ratio: .58; border: 1px solid rgba(15,139,141,.27); border-radius: 50%; box-shadow: 0 0 32px rgba(15,139,141,.1), inset 0 0 32px rgba(15,139,141,.08); }
.aura-rings i:nth-child(2) { width: 92%; border-color: rgba(229,178,56,.28); }
.aura-rings i:nth-child(3) { width: 108%; border-color: rgba(113,98,190,.18); }
.chakra-column { position: relative; z-index: 1; display: flex; height: 340px; flex-direction: column; align-items: center; justify-content: space-between; }
.chakra-column::before { content: ""; position: absolute; z-index: -1; top: 13px; bottom: 13px; width: 3px; border-radius: 4px; background: linear-gradient(#8d62c7, #4853a6, #3ca6c4, #55a96b, #e5bd4a, #db7d3d, #b84b44); opacity: .58; }
.chakra { display: inline-block; width: 19px; height: 19px; flex: 0 0 auto; border: 3px solid rgba(255,255,255,.92); border-radius: 50%; box-shadow: 0 0 0 4px currentColor, 0 6px 14px rgba(25,49,44,.15); }
.chakra.crown { color: #8d62c7; background: #8d62c7; }
.chakra.brow { color: #4853a6; background: #4853a6; }
.chakra.throat { color: #3ca6c4; background: #3ca6c4; }
.chakra.heart { color: #55a96b; background: #55a96b; }
.chakra.solar { color: #e5bd4a; background: #e5bd4a; }
.chakra.sacral { color: #db7d3d; background: #db7d3d; }
.chakra.root { color: #b84b44; background: #b84b44; }
.aura-label { position: absolute; bottom: 5px; color: #61756f; font-size: .7rem; font-weight: 750; letter-spacing: .07em; text-align: center; }
.chakra-list { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.chakra-list article { display: grid; grid-template-columns: 30px 1fr; gap: 10px; align-items: start; padding: 14px; border: 1px solid rgba(15,139,141,.1); border-radius: 15px; background: rgba(255,255,255,.65); }
.chakra-list .chakra { width: 13px; height: 13px; margin: 7px 0 0 4px; border-width: 2px; box-shadow: 0 0 0 3px currentColor; }
.chakra-list h3 { margin: 0 0 4px; font: 400 1rem Georgia, serif; }
.chakra-list p { margin: 0; color: #5c716a; font-size: .7rem; line-height: 1.45; }
.chakra-list .aura-card { grid-column: 1 / -1; }
.aura-card > i { width: 24px; height: 24px; display: grid; place-items: center; color: var(--turquoise); font-size: 1.4rem; font-style: normal; }
.chakra-note { grid-column: 1 / -1; padding: 15px 18px; border: 1px solid rgba(200,109,81,.18); border-radius: 15px; color: #687a75; background: rgba(200,109,81,.07); font-size: .75rem; line-height: 1.6; }
.chakra-note strong { color: var(--terracotta); }
.animal-hero-copy { max-width: 950px; }
.animal-hero-copy .detail-subtitle { margin: 20px 0 0; color: #cde0dc; font: italic 1.25rem/1.5 Georgia, serif; }
.detail-subtitle.dark { margin: 16px 0; color: #60756e; font: italic 1.08rem/1.55 Georgia, serif; }
.offer-benefits { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.offer-benefits span { padding: 9px 11px; border-radius: 11px; color: #35534c; background: #e5f2ef; font-size: .73rem; font-weight: 750; }
.animal-content-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(26px, 5vw, 70px); align-items: start; }
.animal-story { display: grid; gap: 22px; }
.animal-copy-block { padding: clamp(24px, 4vw, 38px); border: 1px solid rgba(255,255,255,.15); border-radius: 26px; background: rgba(255,255,255,.06); }
.animal-copy-block h3 { margin: 12px 0 17px; font: 400 1.9rem/1.2 Georgia, serif; }
.animal-copy-block > p { color: #cee0dc; line-height: 1.78; }
.transparency-note { padding: 21px 24px; border: 1px solid rgba(242,210,118,.3); border-radius: 19px; background: rgba(242,210,118,.09); }
.transparency-note strong { display: block; color: #f2d276; margin-bottom: 7px; }
.transparency-note p { margin: 0; color: #d9e6e3; font-size: .84rem; line-height: 1.65; }
.animal-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-top: 18px; }
.animal-benefits article { display: grid; grid-template-columns: 30px 1fr; gap: 8px; padding: 16px; border-radius: 16px; background: rgba(255,255,255,.07); }
.animal-benefits article > b { font-size: 1.05rem; }
.animal-benefits h4 { margin: 0 0 5px; font-size: .92rem; }
.animal-benefits p { margin: 0; color: #c9dcd8; font-size: .78rem; line-height: 1.5; }
.animal-side { display: grid; gap: 18px; }
.animal-summary { padding: 28px; border: 1px solid rgba(255,255,255,.14); border-radius: 24px; background: rgba(255,255,255,.06); }
.animal-summary ul { display: grid; gap: 14px; margin: 17px 0 0; padding: 0; list-style: none; }
.animal-summary li { display: grid; grid-template-columns: 28px 1fr; gap: 8px; color: #d5e4e1; font-size: .83rem; line-height: 1.55; }
.animal-summary strong { color: white; }
.animal-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: clamp(28px, 5vw, 48px); border: 1px solid rgba(242,210,118,.32); border-radius: 30px; background: linear-gradient(135deg, rgba(229,178,56,.16), rgba(255,255,255,.06)); }
.animal-cta .section-kicker { margin-bottom: 8px; }
.animal-cta h3 { margin: 0; font: 400 clamp(2rem, 4vw, 3.4rem)/1.1 Georgia, serif; }
.animal-cta p { margin: 10px 0 0; color: #d1e1de; }
.animal-cta .button { flex: 0 0 auto; max-width: 360px; text-align: center; }
.detail-footer-actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.detail-footer-actions .detail-tags { margin: 0; }

.about { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(30px, 5vw, 80px); align-items: center; background: radial-gradient(circle at 5% 20%, rgba(229,178,56,.12), transparent 24%), #f8fbfa; }
.about-photo { position: relative; align-self: stretch; min-height: 720px; }
.about-photo img { position: sticky; top: 110px; width: 100%; height: min(720px, calc(100vh - 150px)); min-height: 560px; object-fit: cover; border-radius: 38px; box-shadow: 0 28px 65px rgba(19,55,48,.2); }
.photo-badge { position: absolute; left: 24px; bottom: 24px; padding: 13px 18px; border: 1px solid rgba(255,255,255,.7); border-radius: 15px; color: white; background: rgba(10,64,57,.72); backdrop-filter: blur(14px); font-size: .84rem; font-weight: 700; }
.about-copy p { line-height: 1.75; color: #526861; }
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-top: 28px; }
.profile-grid article { display: grid; grid-template-columns: 46px 1fr; gap: 13px; padding: 20px; border: 1px solid rgba(15,139,141,.12); border-radius: 20px; background: rgba(255,255,255,.7); box-shadow: inset 0 1px white; }
.profile-initial { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; color: #614600; background: linear-gradient(145deg, #ffe49a, var(--gold)); font: 700 1.1rem Georgia, serif; }
.profile-initial.kevin { color: white; background: linear-gradient(145deg, #1ca0a2, var(--turquoise-dark)); }
.profile-grid h3 { margin: 2px 0 4px; font: 400 1.2rem Georgia, serif; }
.profile-grid small { color: var(--turquoise-dark); font-size: .72rem; font-weight: 750; }
.profile-grid p { margin: 11px 0 0; font-size: .83rem; line-height: 1.55; }
.values-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0; }
.values-row span { padding: 8px 11px; border-radius: 11px; color: #35534c; background: #e7f3f0; font-size: .76rem; font-weight: 750; }
.about-copy blockquote { margin: 26px 0; padding: 20px 0 20px 23px; border-left: 3px solid var(--gold); font-family: Georgia, serif; font-size: 1.4rem; font-style: italic; line-height: 1.5; }
.about-copy blockquote small { display: block; margin-bottom: 7px; color: var(--turquoise-dark); font: 800 .68rem Arial, sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.about-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 17px; }
.about-actions > span { color: #667a74; font-size: .76rem; }

.podcast { background: radial-gradient(circle at 90% 5%, rgba(229,178,56,.16), transparent 24%), linear-gradient(180deg, #eef7f4, #f8fbfa); }
.podcast-layout { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(26px, 5vw, 70px); align-items: center; }
.video-frame { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border: 10px solid rgba(255,255,255,.8); border-radius: 30px; background: #0d2421; box-shadow: 0 28px 65px rgba(19,55,48,.2); }
.podcast-video-player { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; display: block; background: #000; }
.video-container { position: relative; width: 100%; height: 100%; aspect-ratio: 16 / 9; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-direct-bar { position: absolute; bottom: 10px; right: 10px; z-index: 10; display: flex; align-items: center; gap: 10px; padding: 6px 12px; border-radius: 12px; background: rgba(13,36,33,.88); backdrop-filter: blur(8px); color: #c9dcd7; font-size: .75rem; }
.video-direct-bar a { color: #ffe08a; font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(255,224,138,.5); }
.video-direct-bar a:hover { color: #ffffff; border-color: #ffffff; }
.video-preview-card { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: radial-gradient(circle at 50% 35%, #155e5a, #0d2421 68%); overflow: hidden; }
.video-preview-overlay { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 26px; color: white; }
.yt-badge { padding: 5px 13px; border-radius: 18px; background: linear-gradient(135deg, #ff2a2a, #cc0000); color: white; font-size: .7rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; box-shadow: 0 4px 14px rgba(255,0,0,.4); margin-bottom: 12px; }
.yt-play-icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; color: #163029; background: linear-gradient(135deg, #ffe08a, var(--gold)); box-shadow: 0 10px 30px rgba(229,178,56,.4); font-size: 1.35rem; margin-bottom: 12px; transition: transform .3s ease; }
.video-preview-card:hover .yt-play-icon { transform: scale(1.12); }
.video-preview-overlay h3 { font: 400 clamp(1.4rem, 3vw, 2.15rem) Georgia, serif; margin: 0 0 8px; }
.video-preview-overlay p { max-width: 480px; color: #c9dcd7; font-size: .84rem; line-height: 1.55; margin: 0 0 16px; }
.video-consent { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 32px; color: white; text-align: center; background: radial-gradient(circle at 50% 35%, #155e5a, #0d2421 68%); }
.video-consent > span { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 50%; color: #173a34; background: var(--gold); box-shadow: 0 12px 32px rgba(229,178,56,.28); font-size: 1.35rem; }
.video-consent h3 { margin: 17px 0 7px; font: 400 clamp(1.4rem, 3vw, 2.15rem) Georgia, serif; }
.video-consent p { max-width: 560px; margin: 0 0 17px; color: #c9dcd7; font-size: .8rem; line-height: 1.55; }
.video-consent .button { min-height: 46px; }
.privacy-link { margin-top: 12px; padding: 5px; border: 0; border-bottom: 1px solid #9dcfc7; color: #cfe5e1; background: none; cursor: pointer; font-size: .72rem; }
.podcast-copy { padding: 12px 0; }
.on-air { display: inline-flex; align-items: center; gap: 8px; color: var(--turquoise-dark); font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.on-air i { width: 9px; height: 9px; border-radius: 50%; background: #d74c3f; box-shadow: 0 0 0 5px rgba(215,76,63,.12); animation: aura 2s infinite; }
.podcast-copy h3 { margin: 24px 0 14px; font: 400 clamp(2.1rem, 4vw, 3.7rem)/1.08 Georgia, serif; }
.podcast-copy > p { color: #586d67; line-height: 1.75; }
.podcast-topics { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 24px 0 28px; }
.podcast-topics span { padding: 10px 11px; border-radius: 11px; color: #36534c; background: rgba(255,255,255,.78); font-size: .77rem; font-weight: 700; }
.podcast-copy > small { display: block; margin-top: 14px; color: #71847f; font-size: .7rem; }

.pricing {
  scroll-margin-top: 78px;
  background:
    radial-gradient(circle at 92% 3%, rgba(229,178,56,.18), transparent 22%),
    radial-gradient(circle at 4% 45%, rgba(15,139,141,.12), transparent 25%),
    linear-gradient(180deg, #f8fbfa, #eef7f4);
}
.pricing-hero { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(32px, 8vw, 120px); align-items: end; }
.pricing-hero h2 span, .points-intro h2 span { color: var(--turquoise); font-style: italic; }
.pricing-hero > p { max-width: 470px; margin: 0 0 8px; color: #526861; font-size: 1.08rem; line-height: 1.75; }
.payment-choice { margin: 44px 0 24px; padding: clamp(26px, 5vw, 48px); border: 1px solid rgba(255,255,255,.9); border-radius: 32px; background: rgba(255,255,255,.76); box-shadow: 0 22px 55px rgba(20,59,51,.1), inset 0 1px white; backdrop-filter: blur(18px); }
.payment-choice-heading { display: grid; grid-template-columns: 1fr .75fr; gap: 20px 60px; align-items: end; margin-bottom: 26px; }
.payment-choice-heading .section-kicker { grid-column: 1 / -1; margin-bottom: -8px; }
.payment-choice-heading h3 { margin: 0; font: 400 clamp(1.8rem, 3vw, 2.7rem)/1.14 Georgia, serif; }
.payment-choice-heading p, .payment-note { color: #5a7069; line-height: 1.65; }
.payment-choice-heading p { margin: 0; }
.payment-choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.payment-choice-grid article { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 26px; border: 1px solid rgba(15,139,141,.14); border-radius: 24px; background: #eef8f5; }
.payment-choice-grid .points-choice { color: white; border-color: rgba(255,255,255,.2); background: linear-gradient(145deg, #127779, #073f40); }
.choice-number { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; color: #6c5112; background: #f2d276; font: 700 .85rem/1 sans-serif; }
.payment-choice-grid h4 { margin: 3px 0 9px; font: 400 1.4rem/1.2 Georgia, serif; }
.payment-choice-grid p { margin: 0; color: #557069; line-height: 1.6; }
.payment-choice-grid .points-choice p { color: #d4e6e2; }
.points-choice strong { display: block; margin-top: 14px; color: #f2d276; }
.points-choice a { display: inline-flex; align-items: center; gap: 8px; margin-top: 15px; padding-bottom: 3px; border-bottom: 1px solid rgba(242,210,118,.55); color: white; font-weight: 750; }
.payment-note { margin: 22px 0 0; padding-top: 18px; border-top: 1px solid rgba(15,139,141,.13); font-size: .9rem; }
.first-talk-card { display: grid; grid-template-columns: 120px 1fr auto; gap: 28px; align-items: center; margin: 52px 0 95px; padding: clamp(27px, 4vw, 46px); border: 1px solid rgba(255,255,255,.9); border-radius: 32px; background: rgba(255,255,255,.76); box-shadow: 0 25px 65px rgba(20,59,51,.11), inset 0 1px white; backdrop-filter: blur(18px); }
.talk-number { width: 105px; height: 105px; display: grid; place-items: center; border-radius: 30px; color: #173f38; background: linear-gradient(145deg, #ffe49a, var(--gold)); box-shadow: 0 18px 34px rgba(229,178,56,.28); font: 400 3.2rem Georgia, serif; }
.talk-number::after { content: "MIN"; margin: 48px 0 0 -20px; position: absolute; font: 800 .58rem Arial, sans-serif; letter-spacing: .13em; }
.first-talk-card h3, .price-heading h3, .pricing-cta h3 { margin: 7px 0 11px; font: 400 clamp(1.8rem, 3vw, 2.7rem)/1.14 Georgia, serif; }
.first-talk-card p { max-width: 720px; margin: 0; color: #566c65; line-height: 1.7; }
.first-talk-card ul { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 18px 0 0; padding: 0; list-style: none; }
.first-talk-card li { display: flex; gap: 7px; color: #4e655e; font-size: .78rem; }
.first-talk-card li b { color: var(--turquoise); }
.first-talk-card .button { max-width: 270px; text-align: center; }
.price-heading { display: flex; justify-content: space-between; gap: 35px; align-items: end; margin-bottom: 25px; }
.price-heading p { max-width: 430px; color: #5f736d; line-height: 1.65; }
.price-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.price-cards article { padding: clamp(28px, 4vw, 44px); border: 1px solid rgba(255,255,255,.9); border-radius: 28px; background: rgba(255,255,255,.78); box-shadow: 0 20px 48px rgba(20,59,51,.1), inset 0 1px white; }
.price-cards article > span { color: var(--turquoise-dark); font-size: .75rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.price-cards h3 { margin: 27px 0 16px; }
.price-cards h3 strong { font: 400 clamp(2.7rem, 5vw, 4.7rem)/1 Georgia, serif; }
.price-cards h3 small { color: #6a7e78; font-size: .87rem; }
.price-cards p { max-width: 530px; color: #586e67; line-height: 1.7; }
.price-cards .featured-price { color: white; border-color: rgba(255,255,255,.25); background: radial-gradient(circle at 90% 0, rgba(229,178,56,.25), transparent 30%), linear-gradient(145deg, #127779, #073f40); }
.featured-price > span { color: #f4d884 !important; }
.featured-price h3 small, .featured-price p { color: #cee0dc; }
.payment-methods { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 15px; }
.payment-methods span { padding: 10px 13px; border-radius: 12px; color: #36544d; background: #e1f1ed; font-size: .78rem; font-weight: 750; }
.stripe-panel { margin: 20px 0 100px; padding: clamp(28px, 5vw, 48px); border: 1px solid rgba(99,91,255,.16); border-radius: 30px; background: radial-gradient(circle at 100% 0, rgba(99,91,255,.13), transparent 34%), rgba(255,255,255,.8); box-shadow: 0 24px 58px rgba(34,45,79,.1); }
.stripe-intro { display: grid; grid-template-columns: 70px 1fr; gap: 22px; align-items: start; }
.stripe-mark { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 19px; color: white; background: linear-gradient(145deg, #7a73ff, #5147e8); box-shadow: 0 14px 28px rgba(99,91,255,.25); font: 800 1.7rem/1 Arial, sans-serif; }
.stripe-intro h3 { max-width: 790px; margin: 7px 0 10px; font: 400 clamp(1.7rem, 3vw, 2.5rem)/1.15 Georgia, serif; }
.stripe-intro p { max-width: 920px; margin: 0; color: #586d67; line-height: 1.7; }
.stripe-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 30px 0 14px; padding: 0; list-style: none; }
.stripe-steps li { display: grid; grid-template-columns: 35px 1fr; gap: 11px; align-items: start; padding: 18px; border-radius: 18px; background: #f4f4ff; }
.stripe-steps li > b { width: 33px; height: 33px; display: grid; place-items: center; border-radius: 11px; color: white; background: #635bff; }
.stripe-steps span { display: grid; gap: 4px; }
.stripe-steps small, .stripe-methods small { color: #697a76; line-height: 1.45; }
.stripe-methods { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.stripe-methods article { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: center; padding: 17px 18px; border: 1px solid rgba(15,139,141,.1); border-radius: 18px; background: rgba(238,248,245,.78); }
.stripe-methods article > span { font-size: 1.35rem; }
.stripe-methods article div { display: grid; gap: 3px; }
.stripe-points { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center; margin-top: 14px; padding: 18px 20px; border-radius: 18px; color: white; background: linear-gradient(145deg, #127779, #073f40); }
.stripe-points span { color: #f2d276; font-weight: 850; white-space: nowrap; }
.stripe-points p { margin: 0; color: #d4e6e2; line-height: 1.55; }
.availability-note { margin: 13px 2px 0; color: #72817d; font-size: .72rem; line-height: 1.5; }
.points-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(35px, 7vw, 100px); align-items: start; padding: clamp(32px, 6vw, 72px); border-radius: 38px; color: white; background: radial-gradient(circle at 8% 4%, #187c78, transparent 31%), #102f2d; box-shadow: 0 32px 75px rgba(17,48,43,.2); }
.points-layout .section-kicker, .points-layout .process-label { color: #f2d276; }
.points-intro { position: sticky; top: 110px; }
.points-intro > p { color: #caded9; line-height: 1.75; }
.points-rate { width: fit-content; display: flex; align-items: center; gap: 16px; margin-top: 30px; padding: 14px 20px; border: 1px solid rgba(242,210,118,.35); border-radius: 20px; background: rgba(242,210,118,.1); }
.points-rate strong { color: #f2d276; font: 400 3.2rem Georgia, serif; }
.points-rate span { color: #e4efec; font-size: .78rem; font-weight: 750; line-height: 1.5; }
.points-list { display: grid; gap: 11px; }
.points-list article { display: grid; grid-template-columns: 62px 1fr; gap: 17px; padding: 21px; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; background: rgba(255,255,255,.065); transition: transform .25s, background .25s; }
.points-list article:hover { transform: translateX(5px); background: rgba(255,255,255,.1); }
.points-list article > b { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 17px; color: #173a34; background: #f2d276; font-family: Georgia, serif; }
.points-list h4 { margin: 2px 0 7px; font: 400 1.23rem Georgia, serif; }
.points-list p { margin: 0; color: #c7d9d5; font-size: .82rem; line-height: 1.55; }
.points-list small { display: inline-block; margin-top: 9px; color: #f2d276; font-weight: 750; }
.redeem-panel { display: grid; grid-template-columns: .55fr 1.45fr; gap: 35px; margin: 24px 0 100px; padding: clamp(28px, 4vw, 42px); border-radius: 28px; background: rgba(255,255,255,.86); box-shadow: 0 20px 50px rgba(20,59,51,.1); }
.redeem-panel h3, .price-faq h3 { margin: 7px 0 0; font: 400 clamp(1.8rem, 3vw, 2.6rem) Georgia, serif; }
.redeem-panel ol { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.redeem-panel li { display: grid; grid-template-columns: 35px 1fr; gap: 12px; align-items: center; color: #4f665f; line-height: 1.55; }
.redeem-panel li b { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--turquoise); }
.redeem-panel > p { grid-column: 2; margin: 3px 0 0 47px; color: #72847f; font-size: .74rem; line-height: 1.5; }
.price-faq { display: grid; grid-template-columns: .7fr 1.3fr; gap: 0 60px; align-items: start; }
.price-faq > div { grid-row: 1 / 3; }
.price-faq details { border-bottom: 1px solid #c5d7d2; }
.price-faq summary { list-style: none; display: flex; justify-content: space-between; gap: 18px; padding: 23px 0; cursor: pointer; font-weight: 750; }
.price-faq summary::-webkit-details-marker { display: none; }
.price-faq summary b { transition: transform .25s; }
.price-faq details[open] summary b { transform: rotate(45deg); }
.price-faq details p { margin: -4px 35px 23px 0; color: #60746e; line-height: 1.7; }
.pricing-cta { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 80px; padding: clamp(28px, 5vw, 48px); border: 1px solid rgba(229,178,56,.28); border-radius: 30px; background: linear-gradient(135deg, rgba(229,178,56,.14), rgba(255,255,255,.75)); }
.pricing-cta .section-kicker { margin-bottom: 6px; }

.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 9vw, 130px); background: #f8fbfa; }
.faq-intro > p { max-width: 390px; line-height: 1.7; color: #60736d; }
.faq-item { border-bottom: 1px solid #cbd9d5; }
.faq-item > button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 0; border: 0; background: none; text-align: left; font-size: 1.04rem; font-weight: 750; cursor: pointer; }
.faq-item > button b { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--turquoise); background: #e2f2ef; font-size: 1.25rem; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.faq-answer p { overflow: hidden; margin: 0; color: #60736d; line-height: 1.7; }
.faq-item.active .faq-answer { grid-template-rows: 1fr; }
.faq-item.active .faq-answer p { padding-bottom: 24px; }

.contact { color: white; text-align: center; background-image: linear-gradient(rgba(8,44,39,.72), rgba(8,44,39,.82)), url("assets/pranapaw-hero.png"); background-size: cover; background-position: center; }
.contact-card { max-width: 850px; margin: auto; padding: clamp(35px, 6vw, 70px); border: 1px solid rgba(255,255,255,.3); border-radius: 34px; background: rgba(255,255,255,.12); box-shadow: 0 24px 70px rgba(0,0,0,.18); backdrop-filter: blur(20px); }
.contact .section-kicker { color: #ffe08a; }
.contact-card p { max-width: 650px; margin: 24px auto; line-height: 1.75; }
.contact-actions { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 22px; margin: 28px 0; }
.button.whatsapp { color: white; background: #1e9c64; box-shadow: 0 10px 28px rgba(8,52,34,.35); }
.contact-phone { color: white; font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.contact-card small { opacity: .72; }

.health-notice {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  align-items: start;
  padding: 38px clamp(24px, 7vw, 120px);
  color: #f5fbf9;
  border-top: 1px solid rgba(242,210,118,.32);
  border-bottom: 1px solid rgba(242,210,118,.2);
  background: linear-gradient(135deg, #163b35, #0d2925);
}
.notice-symbol { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 17px; color: #173a34; background: #f2d276; box-shadow: 0 12px 28px rgba(0,0,0,.18); font: 800 1.35rem Georgia, serif; }
.health-notice > div:last-child { max-width: 1120px; }
.health-notice span { color: #f2d276; font-size: .7rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.health-notice h2 { margin: 8px 0 11px; font: 400 clamp(1.5rem, 3vw, 2.4rem)/1.18 Georgia, serif; }
.health-notice p { max-width: 1040px; margin: 0; color: #c8dad6; font-size: .86rem; line-height: 1.7; }

.legal-center { scroll-margin-top: 80px; background: #eef6f3; }
.legal-heading { max-width: 850px; margin-bottom: 34px; }
.legal-heading h2 { font-size: clamp(2.5rem, 5vw, 4.7rem); }
.legal-heading p { color: #60736d; line-height: 1.7; }
.legal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
.legal-grid details { scroll-margin-top: 100px; border: 1px solid rgba(15,139,141,.13); border-radius: 20px; background: rgba(255,255,255,.8); box-shadow: 0 14px 36px rgba(20,59,51,.07); }
.legal-grid summary { list-style: none; display: flex; justify-content: space-between; gap: 15px; padding: 20px 22px; cursor: pointer; font-weight: 800; }
.legal-grid summary::-webkit-details-marker { display: none; }
.legal-grid summary b { transition: transform .25s; }
.legal-grid details[open] summary b { transform: rotate(45deg); }
.legal-grid details > div { padding: 0 22px 24px; color: #586d67; font-size: .82rem; line-height: 1.65; }
.legal-grid h3 { margin: 6px 0 13px; color: var(--forest); font: 400 1.45rem Georgia, serif; }
.legal-grid h4 { margin: 20px 0 6px; color: var(--forest); }
.legal-grid a { color: var(--turquoise-dark); }
.legal-warning { margin-top: 18px; padding: 14px 16px; border: 1px solid rgba(200,109,81,.25); border-radius: 13px; color: #704538; background: rgba(200,109,81,.08); }

footer { padding: 70px clamp(24px, 6vw, 100px) 28px; color: white; background: #102622; }
.footer-brand { display: flex; justify-content: center; align-items: center; gap: 12px; text-align: left; }
.footer-brand img { width: 66px; height: 66px; object-fit: contain; }
.footer-brand div { display: flex; flex-direction: column; gap: 3px; }
.footer-brand strong { letter-spacing: .16em; }
.footer-brand span { color: #a9c0ba; font-size: .8rem; }
footer > p { text-align: center; color: #a9c0ba; }
.footer-contact { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; color: #8fcfc6; font-size: .84rem; }
.footer-contact a { color: #d9ece8; text-underline-offset: 4px; }
.social-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 30px; }
.social-links > a { min-width: 105px; display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; color: #d6e1de; background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.025)); box-shadow: 5px 7px 16px rgba(0,0,0,.18), inset 1px 1px rgba(255,255,255,.12); text-decoration: none; font-size: .75rem; font-weight: 700; transition: transform .25s, border-color .25s, box-shadow .25s, color .25s; }
.social-3d-icon { width: 32px; height: 32px; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3)); transition: transform .25s ease; }
.social-links > a:hover { color: #ffe08a; border-color: rgba(229,178,56,.5); transform: translateY(-5px) scale(1.03); box-shadow: 0 10px 24px rgba(0,0,0,.35); }
.social-links > a:hover .social-3d-icon { transform: scale(1.12) rotate(-3deg); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; margin: 35px 0 55px; }
.footer-links a { padding: 6px 8px; color: #d6e1de; text-decoration: none; }
.footer-links a:hover { color: #ffe08a; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #8ca39d; font-size: .78rem; }
.footer-bottom button { border: 0; color: white; background: none; cursor: pointer; }

@media (max-width: 1280px) {
  .header-socials { display: none; }
}

@media (max-width: 980px) {
  .menu-button { display: block; }
  nav { position: absolute; top: 82px; left: 0; right: 0; display: grid; padding: 13px; border: 1px solid rgba(255,255,255,.65); border-radius: 22px; background: rgba(247,252,251,.97); box-shadow: 0 22px 45px rgba(17,55,49,.2); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .25s; }
  nav.nav-open { opacity: 1; visibility: visible; transform: none; }
  nav a { text-align: left; }
  nav .nav-cta { margin: 4px 0 0; text-align: center; }
  .intro-grid, .offer-detail, .about, .faq, .pricing-hero, .points-layout, .price-faq, .payment-choice-heading { grid-template-columns: 1fr; }
  .animal-content-grid { grid-template-columns: 1fr; }
  .garden-steps { grid-template-columns: 1fr; }
  .garden-steps article { min-height: 240px; }
  .chakra-map { grid-template-columns: .7fr 1.3fr; }
  .chakra-map-heading { grid-column: 1 / -1; }
  .podcast-layout { grid-template-columns: 1fr; }
  .service-card { min-height: 390px; }
  .about-photo { min-height: auto; }
  .about-photo img { position: static; height: auto; min-height: 420px; }
  .first-talk-card { grid-template-columns: 105px 1fr; }
  .first-talk-card .button { grid-column: 2; justify-self: start; }
  .points-intro { position: static; }
  .price-faq > div { grid-row: auto; }
  .legal-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .section { padding: 78px 20px; }
  .site-header { top: 9px; width: calc(100% - 18px); height: 66px; border-radius: 20px; }
  .brand img { width: 43px; height: 43px; }
  .brand small { display: none; }
  .hero { min-height: 820px; align-items: flex-start; background-attachment: scroll; background-position: 57% center; }
  .hero-shade { background: linear-gradient(180deg, rgba(6,28,25,.5), rgba(6,32,28,.2) 42%, rgba(6,32,28,.67)); }
  .hero-content { align-self: flex-end; width: auto; margin: 0 20px 88px; padding: 0; }
  h1 { font-size: clamp(3.05rem, 15vw, 4.7rem); }
  .hero-content > p { font-size: 1rem; line-height: 1.6; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .trust-row { gap: 10px 18px; }
  .scroll-cue { display: none; }
  .intro-grid { gap: 24px; }
  .section-heading { display: block; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 390px; padding: 31px; border-radius: 25px; }
  .service-card h3 { margin-top: 45px; font-size: 2rem; }
  .service-card button { left: 31px; bottom: 32px; }
  .about-photo img { min-height: 340px; border-radius: 28px; }
  .profile-grid { grid-template-columns: 1fr; }
  .animal-benefits { grid-template-columns: 1fr; }
  .chakra-map { grid-template-columns: 1fr; padding: 27px 20px; }
  .energy-map-visual { min-height: 440px; }
  .chakra-list { grid-template-columns: 1fr; }
  .chakra-list .aura-card { grid-column: auto; }
  .animal-cta, .detail-footer-actions { align-items: stretch; flex-direction: column; }
  .animal-cta .button { max-width: none; }
  .pricing-hero, .price-heading, .pricing-cta { display: block; }
  .first-talk-card, .price-cards, .redeem-panel, .payment-choice-grid, .stripe-steps, .stripe-methods, .stripe-points { grid-template-columns: 1fr; }
  .payment-choice { margin-top: 30px; padding: 24px 18px; border-radius: 26px; }
  .payment-choice-grid article { grid-template-columns: 44px 1fr; padding: 20px 17px; }
  .choice-number { width: 42px; height: 42px; }
  .first-talk-card .button, .redeem-panel > p { grid-column: auto; margin-left: 0; }
  .talk-number { width: 86px; height: 86px; font-size: 2.6rem; }
  .points-layout { margin-inline: -6px; padding: 28px 22px; border-radius: 28px; }
  .points-list article { grid-template-columns: 52px 1fr; padding: 17px; }
  .points-list article > b { width: 50px; height: 50px; }
  .stripe-panel, .redeem-panel { margin-bottom: 72px; }
  .stripe-panel { padding: 25px 18px; }
  .stripe-intro { grid-template-columns: 52px 1fr; gap: 14px; }
  .stripe-mark { width: 50px; height: 50px; border-radius: 15px; }
  .stripe-points { gap: 8px; }
  .stripe-points span { white-space: normal; }
  .pricing-cta .button { width: 100%; margin-top: 22px; }
  .video-consent { padding: 20px; }
  .video-consent > span { width: 48px; height: 48px; }
  .video-consent h3 { margin-top: 10px; }
  .video-consent p { font-size: .7rem; }
  .video-consent .button { min-height: 40px; padding-inline: 15px; font-size: .78rem; }
  .privacy-link { margin-top: 7px; }
  .health-notice { grid-template-columns: 1fr; padding: 31px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
