/* =========================================================
   styles.css v1.2.0 — Cosecha Espiritual Smart Landing
   Mobile-first • Tablet • Desktop
   Theme: White + Sky Blue + Navy + Soft Gold
   Notes:
   - Includes styles for JS-injected MiniBlog (no inline styles needed in JS)
   - Improves mobile/tablet spacing, typography, and card rhythm
========================================================= */

:root{
  --bg:#ffffff;

  --navy:#072043;
  --navy2:#0a356e;
  --ink:#0b1b33;
  --ink2: rgba(11, 27, 51, .72);

  --sky:#6fd6ff;
  --sky2:#bceeff;

  --gold:#d9b45b;
  --gold2:#f3e2b6;

  --surface: rgba(255,255,255,.78);
  --surface2: rgba(255,255,255,.92);

  --stroke: rgba(7,32,67,.14);
  --stroke2: rgba(7,32,67,.08);

  --shadow: 0 18px 45px rgba(4, 20, 45, .12);
  --shadow2: 0 10px 28px rgba(4, 20, 45, .10);

  --radius: 18px;
  --radius2: 26px;

  --max: 1160px;

  --container-pad: 16px;

  --fs-xxs: 11px;
  --fs-xs: 12px;
  --fs-sm: 13px;
  --fs-base: 15px;
  --fs-md: 16px;
  --fs-lg: 18px;
  --fs-xl: 22px;
  --fs-2xl: 28px;
  --fs-3xl: 36px;
  --fs-4xl: 46px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--ink);
  background: var(--bg);
  overflow-x:hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; }

.container{
  width: min(var(--max), calc(100% - (var(--container-pad) * 2)));
  margin: 0 auto;
}

/* --------- bg principal -------------*/
/* ---------- Background (CSS only) ---------- */
html, body{
  width: 100%;
}

.bg{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
  background: #fff;
}

/* White base + warm creamy gradient */
.bg__base{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 700px at 15% 10%, rgba(243, 226, 182, .55), transparent 60%),
    radial-gradient(900px 520px at 82% 16%, rgba(217, 180, 91, .22), transparent 60%),
    radial-gradient(1100px 720px at 55% 85%, rgba(111, 214, 255, .18), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, #fffaf0 42%, #ffffff 100%);
}

/* Soft glow accents (gold + sky) */
.bg__glow{
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(900px 520px at 18% 22%, rgba(111,214,255,.20), transparent 62%),
    radial-gradient(820px 480px at 78% 24%, rgba(217,180,91,.20), transparent 62%),
    radial-gradient(1000px 720px at 50% 80%, rgba(217,180,91,.12), transparent 65%);
  filter: blur(10px);
  opacity: .95;
}

/* Elegant grain (very subtle) */
.bg__grain{
  position: absolute;
  inset: 0;
  opacity: .10;
  background-image:
    repeating-linear-gradient(0deg, rgba(7,32,67,.06) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(7,32,67,.04) 0 1px, transparent 1px 4px);
  mix-blend-mode: multiply;
}

/* Soft sparkles */
.bg__stars{
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image:
    radial-gradient(circle at 12% 24%, rgba(255,255,255,.85) 0 1px, transparent 2px),
    radial-gradient(circle at 30% 12%, rgba(255,255,255,.55) 0 1px, transparent 2px),
    radial-gradient(circle at 64% 18%, rgba(255,255,255,.65) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 34%, rgba(255,255,255,.45) 0 1px, transparent 2px),
    radial-gradient(circle at 22% 72%, rgba(255,255,255,.55) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 78%, rgba(255,255,255,.40) 0 1px, transparent 2px);
  filter: blur(.15px);
}

/* ---------- Topbar ---------- */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(255,255,255,.84), rgba(255,255,255,.55));
  border-bottom: 1px solid var(--stroke2);
}
.topbar__inner{
  padding: 12px 0 10px;
  display:flex;
  flex-direction: column;
  gap: 10px;
}

/* Mobile: 2 rows */
.topbar__row{
  display:flex;
  align-items:center;
  gap: 10px;
}
.topbar__row--1{
  justify-content: space-between;
}
.topbar__row--2{
  justify-content: space-between;
  gap: 10px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 190px;
  max-width: 70%;
}
.brand__logo{
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
}
.brand__text{ min-width: 0; }
.brand__name{
  font-weight: 950;
  letter-spacing: .2px;
  line-height: 1.1;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand__tag{
  color: var(--ink2);
  font-size: 12px;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar__right{
  display:flex;
  align-items:center;
  gap: 10px;
}

/* Desktop nav */
.nav{
  display:none;
  align-items:center;
  gap: 10px;
  padding-top: 4px;
}
.nav a{
  font-weight: 850;
  font-size: var(--fs-sm);
  color: rgba(7,32,67,.78);
  padding: 10px 10px;
  border-radius: 12px;
  transition: .18s ease;
}
.nav a:hover{
  background: rgba(111,214,255,.14);
  color: var(--navy);
}

.hamburger{
  width:44px;
  height:44px;
  border-radius: 14px;
  border:1px solid var(--stroke2);
  background: rgba(255,255,255,.70);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  box-shadow: var(--shadow2);
  cursor:pointer;
}
.hamburger span{
  width:18px;
  height:2px;
  background: rgba(7,32,67,.72);
  border-radius: 10px;
}

/* Mobile nav drawer */
.mobileNav{
  display:none;
  flex-direction:column;
  gap:10px;
  padding: 10px 16px 16px;
  border-top: 1px solid var(--stroke2);
}
.mobileNav a{
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--stroke2);
  font-weight: 900;
}
.mobileNav__cta{ margin-top: 6px; }

/* Points widget */
.pointsWidget{
  flex: 0 0 auto;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(217,180,91,.25);
  box-shadow: var(--shadow2);
  cursor:pointer;
  user-select:none;
}
.pointsWidget:hover{
  border-color: rgba(217,180,91,.38);
}
.pointsWidget:active{ transform: translateY(1px); }
.pointsWidget__star{
  width: 30px;
  height: 30px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, rgba(217,180,91,.22), rgba(255,255,255,.82));
  border: 1px solid rgba(217,180,91,.22);
}
.pointsWidget__label{
  font-size: 11px;
  font-weight: 950;
  color: rgba(7,32,67,.65);
}
.pointsWidget__value{
  font-size: 14px;
  font-weight: 1000;
  color: rgba(7,32,67,.90);
  line-height: 1.1;
}

/* ---------- Buttons ---------- */
.btn{
  position: relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 11px 14px;
  border-radius: 16px;
  border: 1px solid var(--stroke2);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow2);
  font-weight: 950;
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: transform .14s ease, background .14s ease, border-color .14s ease;
  user-select:none;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0px); }
.btn--block{ width: 100%; }
.btn--sm{ padding: 10px 12px; border-radius: 14px; font-size: var(--fs-xs); }
.btn--lg{ padding: 14px 16px; border-radius: 18px; font-size: 14px; }
.btn__icon{ font-size: 16px; }

.btn--primary{
  color:#fff;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  border-color: rgba(7,32,67,.2);
}
.btn--primary:hover{
  background: linear-gradient(135deg, #061a39, #0a3c82);
}
.btn--soft{
  color: var(--navy);
  background: linear-gradient(135deg, rgba(111,214,255,.26), rgba(255,255,255,.86));
  border-color: rgba(111,214,255,.25);
}
.btn--soft:hover{
  border-color: rgba(111,214,255,.45);
}
.btn--ghost{
  background: rgba(255,255,255,.60);
}
.btn--ghost:hover{
  border-color: rgba(7,32,67,.16);
}

/* Row2 CTA button should flex */
.btn--block-sm{
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- Page ---------- */
.page{
  opacity: 1;
  transform: translateY(0);
  transition: opacity .22s ease, transform .22s ease;
}

/* ---------- Hero ---------- */
.hero{ padding: 26px 0 10px; }
.hero__grid{ display:grid; gap: 18px; }

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(111,214,255,.20);
  box-shadow: var(--shadow2);
  font-weight: 950;
  font-size: var(--fs-xs);
}
.pill__dot{
  width:10px;
  height:10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--sky));
  box-shadow: 0 0 0 4px rgba(217,180,91,.15);
}

.microLine{
  margin: 10px 0 6px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(217,180,91,.16);
  box-shadow: var(--shadow2);
  color: rgba(7,32,67,.84);
  font-weight: 900;
  line-height: 1.35;
  font-size: var(--fs-sm);
}

.h1{
  font-size: var(--fs-3xl);
  line-height: 1.06;
  margin: 10px 0 8px;
  letter-spacing: -.6px;
}
.lead{
  margin: 0 0 14px;
  color: var(--ink2);
  font-size: var(--fs-base);
  line-height: 1.6;
  max-width: 56ch;
}
.hero__ctaRow{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.hero__meta{
  display:grid;
  gap:10px;
  margin-top: 10px;
}
.metaCard{
  display:flex;
  gap:12px;
  align-items:center;
  padding: 12px 12px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.76);
  border: 1px solid var(--stroke2);
  box-shadow: var(--shadow2);
}
.metaCard__icon{
  width:42px;
  height:42px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, rgba(111,214,255,.22), rgba(217,180,91,.12));
  border: 1px solid rgba(111,214,255,.18);
  flex: 0 0 auto;
}
.metaCard__label{
  font-weight: 950;
  font-size: var(--fs-xs);
  color: rgba(7,32,67,.78);
}
.metaCard__value{
  font-weight: 950;
  font-size: var(--fs-sm);
}

/* Mood chip */
.moodChip{
  margin-top: 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(111,214,255,.20);
  box-shadow: var(--shadow2);
  cursor:pointer;
}
.moodChip:hover{ border-color: rgba(111,214,255,.45); }
.moodChip__left{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}
.moodChip__emoji{
  width: 32px;
  height: 32px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, rgba(111,214,255,.18), rgba(217,180,91,.10));
  border: 1px solid rgba(7,32,67,.08);
}
.moodChip__text{
  font-weight: 950;
  color: rgba(7,32,67,.86);
  font-size: var(--fs-sm);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.moodChip__cta{
  font-weight: 950;
  font-size: var(--fs-xs);
  color: rgba(7,32,67,.60);
}
/* social btns */
/* Social section (smart bg) */
.socialWrap{
  margin-top: 14px;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.28);
  background:
    radial-gradient(900px 240px at 15% 0%, rgba(43,196,227,.22), transparent 55%),
    radial-gradient(700px 240px at 90% 15%, rgba(255,58,183,.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.62), rgba(255,255,255,.40));
  box-shadow: 0 12px 32px rgba(7,32,67,.10);
  backdrop-filter: blur(10px);
}

/* Social row layout */
.socialRow{
  display: grid;
  grid-template-columns: 1fr; /* mobile: 1 column */
  gap: 12px;
}

/* Buttons (base) */
.socialBtn{
  position: relative;
  display:flex;
  align-items:center;
  gap: 12px;

  width: 100%;
  padding: 14px 14px;

  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.22);

  color: #fff;
  text-decoration: none;

  font-weight: 1000;
  letter-spacing: .2px;

  box-shadow:
    0 14px 28px rgba(7,32,67,.18),
    inset 0 1px 0 rgba(255,255,255,.18);

  transform: translateY(0);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

/* glossy highlight */
.socialBtn::before{
  content:"";
  position:absolute;
  inset:-40% -30%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.22), transparent 55%);
  transform: rotate(10deg);
  pointer-events:none;
}

/* bottom depth */
.socialBtn::after{
  content:"";
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: -10px;
  height: 18px;
  background: radial-gradient(closest-side, rgba(0,0,0,.22), transparent);
  filter: blur(10px);
  opacity: .55;
  pointer-events:none;
}

.socialBtn:hover,
.socialBtn:focus-visible{
  transform: translateY(-2px);
  filter: saturate(1.08) brightness(1.03);
  box-shadow:
    0 18px 36px rgba(7,32,67,.22),
    inset 0 1px 0 rgba(255,255,255,.22);
  outline: none;
}

.socialBtn:active{
  transform: translateY(0px) scale(.99);
}

/* Icon pill */
.socialBtn__icon{
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 14px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}

/* label grows */
.socialBtn__label{
  flex: 1;
  font-size: 15px;
}

/* chevron */
.socialBtn__chev{
  font-size: 20px;
  opacity: .9;
  transform: translateX(0);
  transition: transform .18s ease, opacity .18s ease;
}
.socialBtn:hover .socialBtn__chev,
.socialBtn:focus-visible .socialBtn__chev{
  transform: translateX(2px);
  opacity: 1;
}

/* Brand backgrounds (full button color) */
.socialBtn--yt{
  background: linear-gradient(135deg, #ff0033 0%, #b0001f 55%, #7a0016 100%);
}
.socialBtn--fb{
  background: linear-gradient(135deg, #1877F2 0%, #0b4bb3 60%, #08337a 100%);
}
.socialBtn--ig{
  background: linear-gradient(135deg, #ff3aa7 0%, #9b2cff 55%, #ff8a00 120%);
}

/* Smart hint */
.smartHint{
  margin-top: 12px;
  font-weight: 900;
  color: rgba(7,32,67,.78);
  font-size: var(--fs-xs);
  background: rgba(255,255,255,.64);
  border: 1px solid rgba(111,214,255,.20);
  padding: 10px 12px;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(7,32,67,.10);
}

/* Tablet / Desktop layout */
@media (min-width: 560px){
  .socialRow{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 920px){
  .socialRow{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}


/* Hero Visual */
.hero__visual{ position: relative; }
.cardVisual{
  border-radius: var(--radius2);
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(7,32,67,.10);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.cardVisual__top{ padding: 14px 14px 0; }
.goldBadge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(217,180,91,.20), rgba(255,255,255,.78));
  border: 1px solid rgba(217,180,91,.22);
  font-weight: 1000;
  font-size: var(--fs-xs);
}
.goldBadge__ring{
  width:10px;
  height:10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(217,180,91,.14);
}

.cardVisual__imageWrap{ padding: 12px 14px 0; }
.cardVisual__image{
  width:100%;
  height: 240px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(7,32,67,.10);
  box-shadow: 0 14px 35px rgba(4,20,45,.14);
}

.cardVisual__bottom{ padding: 16px 14px 16px; }

.quote{
  position: relative;
  padding: 14px 14px 12px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(111,214,255,.18), rgba(255,255,255,.82));
  border: 1px solid rgba(111,214,255,.20);
}
.quote__mark{
  position:absolute;
  left: 12px;
  top: -10px;
  font-size: 40px;
  color: rgba(217,180,91,.65);
  font-weight: 1000;
}
.quote p{
  margin: 0;
  color: rgba(7,32,67,.86);
  font-weight: 950;
  line-height: 1.45;
}
.quote__ref{
  margin-top: 8px;
  color: rgba(7,32,67,.62);
  font-weight: 950;
  font-size: var(--fs-xs);
}

.miniStats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.miniStats__item{
  padding: 10px 10px;
  border-radius: 16px;
  background: rgba(255,255,255,.74);
  border: 1px solid var(--stroke2);
}
.miniStats__num{ font-weight: 1000; color: rgba(7,32,67,.86); }
.miniStats__txt{
  margin-top: 4px;
  font-size: var(--fs-xs);
  font-weight: 950;
  color: rgba(7,32,67,.62);
}

.coachCard{
  margin-top: 12px;
  padding: 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(7,32,67,.06), rgba(255,255,255,.78));
  border: 1px solid rgba(7,32,67,.10);
}
.coachCard__title{
  font-weight: 1000;
  color: rgba(7,32,67,.88);
}
.coachCard__text{
  margin-top: 8px;
  color: var(--ink2);
  font-weight: 850;
  line-height: 1.55;
  font-size: var(--fs-sm);
}
.coachCard__actions{
  margin-top: 12px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

/* ---------- Sections ---------- */
.section{ padding: 40px 0; }
.section--soft{
  background: linear-gradient(180deg, rgba(255,255,255,.44), rgba(111,214,255,.06));
  border-top: 1px solid rgba(7,32,67,.06);
  border-bottom: 1px solid rgba(7,32,67,.06);
}
.sectionHead{ margin-bottom: 18px; }

.h2{
  margin: 0 0 8px;
  font-size: var(--fs-2xl);
  letter-spacing: -.35px;
}
.sub{
  margin: 0;
  color: var(--ink2);
  line-height: 1.55;
  max-width: 72ch;
  font-size: var(--fs-base);
}
.h3{ margin: 8px 0; font-size: var(--fs-lg); }

.sectionIntro{
  margin-top: 14px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(111,214,255,.20);
  box-shadow: var(--shadow2);
}
.sectionIntro__kicker{
  font-weight: 1000;
  color: rgba(7,32,67,.78);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: .35px;
}
.sectionIntro__text{
  margin-top: 6px;
  color: var(--ink2);
  font-weight: 850;
  line-height: 1.55;
}

.storyGrid{
  display:grid;
  gap: 12px;
  margin-top: 16px;
}
.storyCard{
  position:relative;
  padding: 18px 16px;
  border-radius: var(--radius2);
  background: rgba(255,255,255,.76);
  border: 1px solid var(--stroke2);
  box-shadow: var(--shadow2);
}
.storyCard__n{
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 1000;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(217,180,91,.22), rgba(111,214,255,.18));
  border: 1px solid rgba(217,180,91,.18);
}
.storyCard h3{ margin: 10px 0 8px; font-size: var(--fs-lg); }
.storyCard p{ margin: 0; color: var(--ink2); line-height: 1.55; font-weight: 780; }

/* Checkin strip */
.checkinStrip{
  margin-top: 14px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(7,32,67,.10);
  box-shadow: var(--shadow2);
  display:flex;
  flex-direction: column;
  gap: 12px;
}
.checkinStrip__title{
  font-weight: 1000;
  color: rgba(7,32,67,.88);
}
.checkinStrip__text{
  margin-top: 6px;
  color: var(--ink2);
  font-weight: 850;
  line-height: 1.5;
}
.checkinStrip__actions{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

/* Banner CTA */
.bannerCTA{
  margin-top: 16px;
  padding: 16px;
  border-radius: var(--radius2);
  background: linear-gradient(135deg, rgba(7,32,67,.92), rgba(10,53,110,.90));
  color:#fff;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow);
  display:grid;
  gap: 12px;
}
.bannerCTA__copy h3{ margin:0 0 6px; }
.bannerCTA__copy p{
  margin:0;
  color: rgba(255,255,255,.86);
  font-weight: 820;
  line-height: 1.45;
}
.bannerCTA__actions{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

/* Visit grid */
.visitGrid{
  display:grid;
  gap: 12px;
  margin-top: 16px;
}
.visitCard, .mapCard{
  border-radius: var(--radius2);
  background: rgba(255,255,255,.76);
  border: 1px solid var(--stroke2);
  box-shadow: var(--shadow2);
  padding: 16px;
}
.checkList{
  list-style:none;
  padding:0;
  margin: 12px 0 16px;
  display:grid;
  gap: 10px;
}
.check{
  display:inline-flex;
  width:26px; height:26px;
  border-radius: 12px;
  align-items:center;
  justify-content:center;
  background: rgba(111,214,255,.18);
  border: 1px solid rgba(111,214,255,.20);
  font-weight: 1000;
}
.addressBox{
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(217,180,91,.16), rgba(111,214,255,.10));
  border: 1px solid rgba(217,180,91,.18);
}
.addressBox__label{
  font-weight: 1000;
  color: rgba(7,32,67,.70);
  font-size: var(--fs-xs);
}
.addressBox__value{
  margin: 6px 0 12px;
  font-weight: 1000;
}
.visitExtras{
  margin-top: 12px;
  display:grid;
  gap: 10px;
}

.mapCard__top{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.mapCard__title{ font-weight: 1000; }
.mapCard__note{
  color: var(--ink2);
  font-weight: 850;
  font-size: var(--fs-xs);
}
.mapEmbed{
  overflow:hidden;
  border-radius: 18px;
  border: 1px solid rgba(7,32,67,.10);
  background: rgba(255,255,255,.6);
  box-shadow: var(--shadow2);
}
.mapEmbed iframe{
  width:100%;
  height: 280px;
  border:0;
  display:block;
}
.mapCard__bottom{
  margin-top: 12px;
  display:grid;
  gap: 12px;
}
.miniNote{
  color: var(--ink2);
  font-weight: 850;
  line-height: 1.5;
}

/* Times grid */
.timesGrid{
  display:grid;
  gap: 12px;
  margin-top: 16px;
}
.timeCard{
  padding: 16px;
  border-radius: var(--radius2);
  background: rgba(255,255,255,.76);
  border: 1px solid var(--stroke2);
  box-shadow: var(--shadow2);
}
.timeCard__icon{
  width:44px; height:44px;
  border-radius: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(111,214,255,.16);
  border: 1px solid rgba(111,214,255,.18);
}
.timeCard__title{ margin-top: 10px; font-weight: 1000; }
.timeCard__value{ margin-top: 6px; font-weight: 1000; color: rgba(7,32,67,.88); }
.timeCard__desc{ margin-top: 6px; color: var(--ink2); font-weight: 850; line-height: 1.45; }
.timeCard--gold{
  background: linear-gradient(135deg, rgba(217,180,91,.18), rgba(255,255,255,.78));
  border-color: rgba(217,180,91,.20);
}

/* Spotlight */
.spotlight{
  margin-top: 16px;
  padding: 16px;
  border-radius: 30px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(7,32,67,.10);
  box-shadow: var(--shadow2);
  position: relative;
  overflow:hidden;
}
.spotlight::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 32px;
  background:
    radial-gradient(240px 90px at 12% 20%, rgba(217,180,91,.20), transparent 60%),
    radial-gradient(280px 120px at 88% 80%, rgba(111,214,255,.20), transparent 60%);
  filter: blur(12px);
  z-index: 0;
}
.spotlight > *{ position: relative; z-index: 1; }
.spotlight__badge{
  display:inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(7,32,67,.08);
  border: 1px solid rgba(7,32,67,.10);
  font-weight: 950;
  font-size: var(--fs-xs);
}
.spotlight__title{
  margin-top: 10px;
  font-size: var(--fs-lg);
  font-weight: 1000;
}
.spotlight__meta{
  margin-top: 6px;
  color: var(--ink2);
  font-weight: 850;
}
.spotlight__verse{
  margin-top: 10px;
  padding: 12px 12px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(111,214,255,.14), rgba(255,255,255,.82));
  border: 1px solid rgba(111,214,255,.18);
  color: rgba(7,32,67,.84);
  font-weight: 900;
  line-height: 1.45;
}
.spotlight__actions{
  margin-top: 12px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

/* Note card */
.noteCard{
  margin-top: 14px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(7,32,67,.10);
  box-shadow: var(--shadow2);
}
.noteCard__title{
  font-weight: 1000;
  color: rgba(7,32,67,.88);
}
.noteCard__text{
  margin-top: 8px;
  color: var(--ink2);
  font-weight: 850;
  line-height: 1.55;
}

/* Watch */
.watchGrid{
  display:grid;
  gap: 12px;
  margin-top: 16px;
}
.videoCard{
  overflow:hidden;
  border-radius: var(--radius2);
  background: rgba(255,255,255,.76);
  border: 1px solid var(--stroke2);
  box-shadow: var(--shadow2);
}
.videoCard__frame{
  position: relative;
  aspect-ratio: 16/9;
  background: rgba(7,32,67,.06);
}
.videoCard__frame iframe{
  position:absolute; inset:0;
  width:100%; height:100%;
  border:0;
}
.videoCard__meta{ padding: 16px; }
.videoCard__title{ font-weight: 1000; }
.videoCard__desc{
  margin: 8px 0 12px;
  color: var(--ink2);
  font-weight: 850;
  line-height: 1.45;
}
.watchBtns{ display:grid; gap: 10px; }

.watchSide{ display:grid; gap: 12px; }
.watchTile{
  padding: 16px;
  border-radius: var(--radius2);
  background: rgba(255,255,255,.76);
  border: 1px solid var(--stroke2);
  box-shadow: var(--shadow2);
}
.watchTile__icon{
  width:44px; height:44px;
  border-radius: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, rgba(111,214,255,.18), rgba(217,180,91,.16));
  border: 1px solid rgba(217,180,91,.16);
}
.imageTile{
  position: relative;
  overflow:hidden;
  border-radius: var(--radius2);
  border: 1px solid var(--stroke2);
  box-shadow: var(--shadow2);
  background: rgba(255,255,255,.70);
}
.imageTile img{ width:100%; height: 240px; object-fit: cover; }
.imageTile__overlay{
  position:absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 12px 12px;
  border-radius: 18px;
  background: rgba(7,32,67,.66);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  backdrop-filter: blur(10px);
}
.imageTile__title{ font-weight: 1000; }
.imageTile__sub{
  color: rgba(255,255,255,.78);
  font-weight: 850;
  margin-top: 4px;
  font-size: var(--fs-xs);
}

/* Talk card */
.talkCard{
  padding: 16px;
  border-radius: var(--radius2);
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(7,32,67,.10);
  box-shadow: var(--shadow2);
}
.talkCard__title{
  font-weight: 1000;
  color: rgba(7,32,67,.90);
}
.talkCard__text{
  margin-top: 8px;
  color: var(--ink2);
  font-weight: 850;
  line-height: 1.55;
}

/* Updates */
.reminderCard{
  margin-top: 14px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(217,180,91,.16);
  box-shadow: var(--shadow2);
}
.reminderCard__title{
  font-weight: 1000;
  color: rgba(7,32,67,.88);
}
.reminderCard__text{
  margin-top: 8px;
  color: var(--ink2);
  font-weight: 850;
  line-height: 1.55;
}

.updatesGrid{
  display:grid;
  gap: 12px;
  margin-top: 16px;
}
.formCard, .updatesCard{
  border-radius: var(--radius2);
  background: rgba(255,255,255,.76);
  border: 1px solid var(--stroke2);
  box-shadow: var(--shadow2);
  padding: 16px;
}
.kicker{
  font-weight: 1000;
  color: rgba(7,32,67,.65);
  font-size: var(--fs-xs);
  letter-spacing: .4px;
  text-transform: uppercase;
}
.field{ display:grid; gap: 8px; margin-bottom: 12px; }
.field__label{ font-weight: 1000; font-size: var(--fs-xs); color: rgba(7,32,67,.70); }
.field__input{
  width:100%;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(7,32,67,.14);
  outline: none;
  background: rgba(255,255,255,.90);
  box-shadow: inset 0 2px 0 rgba(7,32,67,.04);
  font-weight: 850;
}
.field__input:focus{
  border-color: rgba(111,214,255,.55);
  box-shadow: 0 0 0 4px rgba(111,214,255,.18);
}
.finePrint{
  margin-top: 10px;
  font-size: var(--fs-xs);
  color: rgba(7,32,67,.58);
  font-weight: 850;
  line-height: 1.45;
}
.updatesCard__actions{ display:grid; gap:10px; margin-top: 12px; }
.updatesCard__img{
  margin-top: 14px;
  display:flex;
  justify-content:center;
}
.updatesCard__img img{
  width: 140px;
  opacity: .92;
  filter: drop-shadow(0 18px 30px rgba(4,20,45,.12));
}

/* Final CTA */
.finalCta{ padding: 42px 0 54px; }
.finalCta__inner{
  border-radius: 30px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(7,32,67,.92), rgba(10,53,110,.90));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  color:#fff;
  display:grid;
  gap: 14px;
}
.finalCta__inner .sub{ color: rgba(255,255,255,.85); }
.finalCta__actions{ display:flex; flex-wrap:wrap; gap: 10px; }

/* Anchor */
.anchor{ height: 1px; }

/* Footer */
.footer{
  padding: 26px 0 22px;
  background: rgba(255,255,255,.58);
  border-top: 1px solid rgba(7,32,67,.08);
  backdrop-filter: blur(10px);
}
.footer__grid{ display:grid; gap: 14px; }
.footer__logo{ width: 44px; height: 44px; }
.footer__name{ font-weight: 1000; margin-top: 8px; }
.footer__addr{ color: var(--ink2); font-weight: 850; margin-top: 6px; }
.footerTalk{
  margin-top: 12px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(111,214,255,.18);
  box-shadow: var(--shadow2);
}
.footerTalk__title{
  font-weight: 1000;
  color: rgba(7,32,67,.88);
}
.footerTalk__text{
  margin-top: 8px;
  color: var(--ink2);
  font-weight: 850;
  line-height: 1.55;
  font-size: var(--fs-sm);
}
.footer__btn{ margin-top: 10px; }
.footer__links{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}
.footer__links a{
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(7,32,67,.08);
  font-weight: 900;
  color: rgba(7,32,67,.80);
}
.footer__social{
  display:flex;
  gap:10px;
  justify-content:flex-start;
  margin-top: 10px;
}
.footer__social a{
  width:42px; height:42px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(7,32,67,.10);
  box-shadow: var(--shadow2);
  font-weight: 1000;
}
.footer__bottom{ margin-top: 16px; }
.footer__line{
  height:1px;
  background: rgba(7,32,67,.10);
  margin-bottom: 12px;
}
.footer__bottomRow{
  display:flex;
  flex-direction:column;
  gap: 10px;
  color: rgba(7,32,67,.70);
  font-weight: 900;
  font-size: var(--fs-xs);
}
.footer__powered strong{ color: rgba(7,32,67,.88); }

/* ---------- Modal ---------- */
.modal{
  position: fixed;
  inset: 0;
  z-index: 200;
  display:none;
}
.modal[aria-hidden="false"]{ display:block; }
.modal__overlay{
  position:absolute;
  inset:0;
  background: rgba(6, 18, 38, .46);
  backdrop-filter: blur(6px);
}
.modal__panel{
  position: relative;
  width: min(560px, calc(100% - 28px));
  margin: 68px auto 24px;
  border-radius: 26px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(7,32,67,.12);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.modal__panel--wide{
  width: min(900px, calc(100% - 28px));
}
.modal__header{
  padding: 14px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(7,32,67,.08);
}
.modal__title{
  font-weight: 1000;
  color: rgba(7,32,67,.92);
}
.modal__close{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(7,32,67,.10);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow2);
  cursor:pointer;
  font-weight: 1000;
}
.modal__body{ padding: 16px; }
.modal__footer{
  padding: 14px 16px;
  border-top: 1px solid rgba(7,32,67,.08);
  display:flex;
  justify-content:flex-end;
  gap: 10px;
}

/* Modal content helpers */
.modalCard{
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(7,32,67,.10);
  box-shadow: var(--shadow2);
}
.modalText{
  margin: 0 0 12px;
  color: var(--ink2);
  font-weight: 850;
  line-height: 1.55;
}
.modalField{ display:grid; gap: 8px; }
.modalField input{
  width:100%;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(7,32,67,.14);
  outline:none;
  font-weight: 850;
  background: rgba(255,255,255,.92);
}
.modalField input:focus{
  border-color: rgba(111,214,255,.55);
  box-shadow: 0 0 0 4px rgba(111,214,255,.18);
}

/* Choice buttons */
.choices{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
.choiceBtn{
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(7,32,67,.12);
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow2);
  font-weight: 1000;
  cursor:pointer;
  transition: transform .12s ease, border-color .12s ease;
}
.choiceBtn:hover{ transform: translateY(-1px); }
.choiceBtn.is-selected{
  border-color: rgba(111,214,255,.55);
  box-shadow: 0 0 0 4px rgba(111,214,255,.16);
}

/* Mood grid */
.moodGrid{ display:grid; gap: 10px; margin-top: 10px; }
.moodBtn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(7,32,67,.12);
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow2);
  cursor:pointer;
  font-weight: 950;
}
.moodBtn:hover{ border-color: rgba(111,214,255,.45); }

/* ---------- Calendar ---------- */
.calendarHeader{
  display:flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
.calendarHeader__name{
  font-weight: 1000;
  font-size: var(--fs-md);
}
.calendarHeader__sub{
  color: var(--ink2);
  font-weight: 850;
  line-height: 1.45;
  font-size: var(--fs-xs);
}
.legend{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  align-items:center;
}
.legend__item{
  display:flex;
  align-items:center;
  gap: 8px;
  font-weight: 900;
  font-size: var(--fs-xs);
  color: rgba(7,32,67,.72);
}
.dot{
  width:10px; height:10px;
  border-radius: 999px;
  border: 1px solid rgba(7,32,67,.10);
  background: transparent;
}
.dot--yes{ background: #16a34a; border-color: rgba(22,163,74,.35); }
.dot--no{ background: #dc2626; border-color: rgba(220,38,38,.35); }
.dot--unknown{ background: rgba(7,32,67,.12); border-color: rgba(7,32,67,.10); opacity:.45; }

.calendarControls{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  align-items:center;
  justify-content: space-between;
  margin: 12px 0 12px;
}
.calendarControls__label{
  font-weight: 1000;
  color: rgba(7,32,67,.86);
  flex: 1 1 auto;
  text-align:center;
}

.calendarGridWrap{
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(7,32,67,.10);
  box-shadow: var(--shadow2);
  padding: 10px;
}
.calendarGrid{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.calDow{
  text-align:center;
  font-size: var(--fs-xxs);
  font-weight: 1000;
  color: rgba(7,32,67,.60);
  padding: 6px 0 4px;
}
.calCell{
  position: relative;
  padding: 10px 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(7,32,67,.08);
  background: rgba(255,255,255,.84);
  min-height: 46px;
}
.calCell.is-muted{ opacity:.48; }
.calDate{
  font-weight: 1000;
  font-size: var(--fs-xs);
  color: rgba(7,32,67,.78);
}
.calMark{
  position:absolute;
  right: 10px;
  bottom: 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(7,32,67,.10);
}
.calMark--yes{ background:#16a34a; border-color: rgba(22,163,74,.35); }
.calMark--no{ background:#dc2626; border-color: rgba(220,38,38,.35); }
.calMark--unknown{ background: transparent; border-color: rgba(7,32,67,.10); opacity:.35; }

.calendarFooter{
  margin-top: 12px;
  display:flex;
  flex-direction: column;
  gap: 12px;
}
.calendarFooter__note{
  color: var(--ink2);
  font-weight: 850;
  line-height: 1.5;
}

/* ---------- JS-injected MiniBlog ---------- */
.miniBlog{
  margin-top: 14px;
}
.miniBlog__card{
  padding: 16px;
  border-radius: 26px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(111,214,255,.20);
  box-shadow: var(--shadow2);
  position: relative;
  overflow: hidden;
}
.miniBlog__card::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 28px;
  background:
    radial-gradient(260px 120px at 12% 18%, rgba(217,180,91,.18), transparent 60%),
    radial-gradient(280px 140px at 90% 88%, rgba(111,214,255,.18), transparent 60%);
  filter: blur(12px);
  z-index: 0;
}
.miniBlog__card > *{ position: relative; z-index: 1; }

.miniBlog__title{
  font-weight: 1000;
  font-size: var(--fs-lg);
  color: rgba(7,32,67,.92);
}
.miniBlog__sub{
  margin-top: 6px;
  color: var(--ink2);
  font-weight: 850;
  line-height: 1.45;
}
.miniBlog__body{
  margin-top: 10px;
  display:grid;
  gap: 10px;
}
.miniBlog__p{
  margin: 0;
  color: rgba(7,32,67,.78);
  font-weight: 850;
  line-height: 1.55;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(7,32,67,.08);
  border-radius: 16px;
  padding: 10px 12px;
}
.miniBlog__actions{
  margin-top: 12px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

/* ---------- Toast ---------- */
.toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 300;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(7,32,67,.92);
  color:#fff;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
  max-width: calc(100% - 32px);
  text-align:center;
  font-weight: 900;
}
.toast.is-on{
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

/* ---------- Responsive ---------- */
@media (min-width: 600px){
  :root{ --container-pad: 22px; }
  .h1{ font-size: 40px; }
  .hero{ padding-top: 34px; }
  .hero__meta{ grid-template-columns: 1fr 1fr; }
  .moodGrid{ grid-template-columns: 1fr 1fr; }
  .checkinStrip{ flex-direction: row; align-items:flex-start; justify-content: space-between; }
  .checkinStrip__actions{ justify-content:flex-end; }
  .updatesCard__actions{ grid-template-columns: 1fr 1fr; }
  .calendarHeader{ flex-direction: row; align-items:flex-end; justify-content: space-between; gap: 16px; }
  .calendarFooter{ flex-direction: row; align-items:center; justify-content: space-between; }
}

@media (min-width: 860px){
  /* Topbar becomes single-row with desktop nav */
  .topbar__inner{
    flex-direction: row;
    align-items:center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
  }
  .topbar__row--1, .topbar__row--2{ display:none; }
  .nav{ display:flex; margin-left:auto; }
  .hamburger{ display:none; }
  .mobileNav{ display:none !important; }

  .hero__grid{
    grid-template-columns: 1.05fr .95fr;
    align-items: start;
    gap: 26px;
    padding-top: 8px;
  }
  .h1{ font-size: var(--fs-4xl); }
  .storyGrid{ grid-template-columns: repeat(3, 1fr); }
  .visitGrid{ grid-template-columns: 1fr 1fr; }
  .timesGrid{ grid-template-columns: repeat(3, 1fr); }
  .watchGrid{ grid-template-columns: 1.2fr .8fr; align-items: start; }
  .updatesGrid{ grid-template-columns: 1fr 1fr; align-items: start; }
  .footer__grid{ grid-template-columns: 1.2fr .9fr .9fr; align-items: start; }
  .footer__bottomRow{ flex-direction: row; justify-content: space-between; align-items: center; }
  .miniBlog__actions{ justify-content:flex-start; }
}

@media (min-width: 1100px){
  .cardVisual__image{ height: 280px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce){
  .btn, .toast{ transition:none !important; }
  .btn:hover{ transform:none; }
}
