/* ==================================================
   ABUNDANCE IN LIFE — HOMEPAGE
   Design tokens
   ================================================== */
:root {
  --ivory: #FFFFFF;
  --blush: #F7F5EF;
  --ink: #161616;
  --ink-soft: #55524A;
  --wine: #C9A227;
  --wine-deep: #171717;
  --gold: #E8C766;
  --gold-soft: #F0E6C8;
  --white: #FFFFFF;
  --black: #0A0A0A;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-width: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --------------------------------------------------
   HEADER
-------------------------------------------------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: 100%;
  margin: 0;
  background: var(--black);
}

.site-header > * {
  max-width: var(--max-width);
}

.site-header {
  padding-left: max(24px, calc((100% - var(--max-width)) / 2));
  padding-right: max(24px, calc((100% - var(--max-width)) / 2));
}

.brand {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--wine);
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav a {
  text-decoration: none;
  color: #E5E0D0;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav a:hover { color: var(--wine); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--wine);
  cursor: pointer;
}

@media (max-width: 640px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
}

/* --------------------------------------------------
   ETIQUETTE — small uppercase labels
-------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 14px;
}

/* --------------------------------------------------
   HERO
-------------------------------------------------- */
/* --------------------------------------------------
   3D BOOK COVER EFFECT
-------------------------------------------------- */
.book-3d-wrap {
  perspective: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
}

.book-3d {
  position: relative;
  max-width: 340px;
  width: 100%;
  transform: rotateY(-22deg) rotateX(3deg) rotate(-1.5deg);
  transform-style: preserve-3d;
  transition: transform 0.4s ease;
}

.book-3d:hover {
  transform: rotateY(-14deg) rotateX(2deg) rotate(-1deg);
}

.book-3d img {
  display: block;
  width: 100%;
  border-radius: 3px 10px 10px 3px;
  box-shadow:
    28px 24px 50px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
  z-index: 2;
}

/* simulated page block on the right edge */
.book-3d::after {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  right: -13px;
  width: 13px;
  background: repeating-linear-gradient(
    to bottom,
    #EDE8D8 0px, #EDE8D8 2px,
    #D8D2BC 2px, #D8D2BC 3px
  );
  transform: rotateY(90deg) translateX(6.5px);
  transform-origin: left center;
  border-radius: 0 3px 3px 0;
  z-index: 1;
}

/* spine shadow beneath the pages, for depth */
.book-3d::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: -6px;
  right: -15px;
  width: 15px;
  background: #050505;
  transform: rotateY(90deg) translateX(7.5px);
  transform-origin: left center;
  filter: blur(4px);
  opacity: 0.6;
  z-index: 0;
}

/* --------------------------------------------------
   HERO SPLIT — desktop side-by-side, mobile stacked
-------------------------------------------------- */
.hero-split {
  display: flex;
  align-items: center;
  gap: 56px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px;
  flex-direction: column;
}

.hero-split-media {
  flex: 1 1 0;
  width: 100%;
}

.hero-split-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 85%;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}

.hero-split-text {
  flex: 1 1 0;
  width: 100%;
}

.hero-split-text h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
}

.hero-split-text .lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 28px;
  line-height: 1.65;
}

@media (min-width: 900px) {
  .hero-split {
    flex-direction: row;
    text-align: left;
  }
  .hero-split-text { text-align: left; }
}

.gold-banner {
  background: linear-gradient(90deg, var(--wine), var(--gold));
  color: var(--black);
  text-align: center;
  padding: 16px 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.hero {
  padding: 64px 24px 80px;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-portrait {
  position: relative;
  width: 176px;
  height: 176px;
  border-radius: 50%;
  margin-bottom: 32px;
}

.hero-botanical {
  position: absolute;
  width: 90px;
  height: 90px;
  opacity: 0.9;
  z-index: 0;
}

.hero-botanical.left { top: -30px; left: -60px; transform: rotate(-15deg); }
.hero-botanical.right { bottom: -20px; right: -65px; transform: rotate(20deg) scaleX(-1); }

.hero-portrait::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px solid var(--wine-deep);
}

.hero-portrait::after {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid var(--wine-deep);
  opacity: 0.6;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  line-height: 1.08;
  color: var(--wine-deep);
  max-width: 780px;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--wine);
}

.hero p.lede {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 36px;
}

/* --------------------------------------------------
   BUTTONS
-------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 34px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--wine);
  color: #0A0A0A;
  border: 1.5px solid var(--wine);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
  background: var(--white);
  color: #0A0A0A;
  border-color: #0A0A0A;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.btn-ghost {
  background: #0A0A0A;
  color: var(--white);
  border: 1.5px solid #0A0A0A;
}

.btn-ghost:hover {
  background: var(--white);
  color: #0A0A0A;
  border-color: #0A0A0A;
}

.btn-small {
  font-size: 0.85rem;
  padding: 11px 24px;
}

/* --------------------------------------------------
   SECTION — FREE GIFT (Soul Frequency)
-------------------------------------------------- */
.section-blush {
  background: var(--blush);
  padding: 72px 24px;
}

.split {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split.reverse .split-media { order: 2; }
.split.reverse .split-text { order: 1; }

.split-media {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--gold-soft), var(--blush) 55%, var(--white) 130%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed var(--gold-soft);
}

.split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-radial-gradient(circle at 30% 40%, rgba(212,175,55,0.05) 0, rgba(212,175,55,0.05) 1px, transparent 1px, transparent 46px);
}

.split-media .media-label {
  position: relative;
  color: var(--wine-deep);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.split-text h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--wine-deep);
  margin-bottom: 16px;
  line-height: 1.25;
}

.split-text p {
  color: var(--ink-soft);
  margin-bottom: 24px;
  max-width: 460px;
}

.tag-free {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold-soft);
  color: var(--wine-deep);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

@media (max-width: 800px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 1; }
  .split.reverse .split-text { order: 2; }
  .split-text p { max-width: 100%; }
}

/* --------------------------------------------------
   THE CHALLENGE — feature card
-------------------------------------------------- */
.section-challenge {
  padding: 88px 24px;
}

.challenge-card {
  max-width: 880px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--white), var(--blush) 130%);
  color: var(--ink);
  border-radius: 28px;
  border: 1.5px solid var(--gold-soft);
  box-shadow: 0 24px 60px rgba(212, 175, 55, 0.15);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.challenge-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,216,121,0.20), transparent 70%);
}

.challenge-card .eyebrow {
  color: var(--wine);
}

.challenge-card h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.7rem);
  color: var(--wine-deep);
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.challenge-card p {
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 2;
}

.challenge-days {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.challenge-days span {
  min-width: 62px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--gold-soft);
  background: var(--white);
  color: var(--wine);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}

.challenge-card .btn-primary {
  background: var(--wine);
  color: #0A0A0A;
  border: 1.5px solid var(--wine);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
  position: relative;
  z-index: 2;
}

.challenge-card .btn-primary:hover {
  background: var(--white);
  color: #0A0A0A;
  border-color: #0A0A0A;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.challenge-price-note {
  display: block;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  position: relative;
  z-index: 2;
}

/* --------------------------------------------------
   ABOUT COACH PAT
-------------------------------------------------- */
.section-about {
  padding: 88px 24px;
  background: var(--white);
}

.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about-portrait {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.about-text h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--wine-deep);
  margin-bottom: 20px;
  line-height: 1.25;
}

.about-text p {
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.about-text p:last-of-type { margin-bottom: 28px; }

@media (max-width: 800px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-portrait { max-width: 280px; margin: 0 auto; }
}

/* --------------------------------------------------
   SOCIAL PROOF
-------------------------------------------------- */
.section-proof {
  background: var(--blush);
  padding: 72px 24px;
  text-align: center;
}

.proof-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.proof-inner .eyebrow { display: block; }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.proof-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: left;
}

.proof-card p.quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 16px;
}

.proof-card .who {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 600;
}

@media (max-width: 800px) {
  .proof-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------
   EMAIL CAPTURE
-------------------------------------------------- */
.section-capture {
  padding: 88px 24px;
  text-align: center;
}

.capture-inner {
  max-width: 560px;
  margin: 0 auto;
}

.capture-inner h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--wine-deep);
  margin-bottom: 12px;
}

.capture-inner p {
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.capture-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}

.capture-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--gold-soft);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
}

.capture-form input[type="email"]:focus {
  outline: none;
  border-color: var(--wine);
}

.capture-form .btn-primary {
  white-space: nowrap;
  padding: 14px 26px;
}

@media (max-width: 480px) {
  .capture-form { flex-direction: column; }
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
.site-footer {
  background: var(--wine-deep);
  color: var(--gold-soft);
  padding: 48px 24px 32px;
  text-align: center;
  font-size: 0.85rem;
}

.site-footer .brand {
  color: var(--ivory);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 12px;
}

.site-footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  list-style: none;
  margin: 16px 0;
  flex-wrap: wrap;
}

.site-footer .footer-links a {
  color: #D9C4A9;
  text-decoration: none;
}

.site-footer .footer-links a:hover { color: var(--white); }

.site-footer .copyright {
  color: #A9876B;
  margin-top: 16px;
}

/* --------------------------------------------------
   ACCESSIBILITY
-------------------------------------------------- */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}

/* ==================================================
   NEW 'HYBRID' DESIGN SYSTEM (Sable-inspired)
   Used by: index.html, about.html, contact.html,
   courses-new.html, course-full.html, soulfrequency
   Old system above still powers day pages until
   they're converted in the next batch.
   ================================================== */
/* ==================================================
   ABUNDANCE IN LIFE — "SABLE-INSPIRED" CONCEPT
   Standalone design exploration — not linked from live site
   ================================================== */

body.sable-page {
  --cream: #FAF6EC;
  --cream-deep: #F1E9D8;
  --ink: #1A1610;
  --ink-soft: #6B5D4E;
  --bronze: #B8763E;
  --bronze-deep: #8C5426;
  --umber: #6B4226;
  --gold-pale: #E8C99B;
  --white: #FFFFFF;

  --font-display: "Archivo", "Helvetica Neue", sans-serif;
  --font-body: "Inter", -apple-system, sans-serif;

  --max-width: 1180px;
}


body.sable-page {
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 1400px 900px at 50% -10%, rgba(255, 250, 238, 0.95) 0%, rgba(250, 246, 236, 0) 60%),
    var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.sable-page img { max-width: 100%; display: block; }
body.sable-page a { text-decoration: none; }

.sable-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* --------------------------------------------------
   HEADER
-------------------------------------------------- */
.sable-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.sable-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.sable-nav {
  display: flex;
  gap: 36px;
  list-style: none;
}

.sable-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.sable-nav a:hover { color: var(--ink); }

.sable-timer {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  background: var(--bronze);
  border: 1.5px solid var(--bronze);
  border-radius: 999px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 780px) {
  .sable-nav { display: none; }
}

/* --------------------------------------------------
   HERO
-------------------------------------------------- */
.sable-hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 32px 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: start;
}

@media (min-width: 900px) {
  .sable-hero {
    grid-template-columns: 1fr 0.9fr;
  }
}

.sable-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 560px;
}

.sable-hero p.lede {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 460px;
  margin-bottom: 36px;
}

.sable-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.sable-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 30px;
  border-radius: 999px;
  transition: transform 0.15s ease;
  display: inline-block;
}

.sable-btn:hover { transform: translateY(-1px); }

.sable-btn-primary {
  background: var(--ink);
  color: var(--cream);
}

.sable-btn-outline {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}

.sable-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--cream-deep);
  border-radius: 999px;
  padding: 10px 20px 10px 10px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.sable-pill .dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bronze);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
}

.sable-caption {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* --------------------------------------------------
   HERO GRAPHIC — hand-built glossy spheres
-------------------------------------------------- */
.sable-orbs {
  position: relative;
  width: 100%;
  aspect-ratio: 1.1 / 1;
  max-width: 480px;
  margin: 0 auto;
}

.orb {
  position: absolute;
  border-radius: 50%;
}

.orb-1 {
  width: 62%;
  height: 62%;
  top: 6%;
  left: 4%;
  background: radial-gradient(circle at 32% 28%, #E8C99B 0%, #B8763E 42%, #8C5426 78%, #5C3419 100%);
  box-shadow: 18px 26px 50px rgba(90, 55, 20, 0.35);
}

.orb-2 {
  width: 40%;
  height: 40%;
  bottom: 4%;
  left: 30%;
  background: radial-gradient(circle at 30% 26%, #FBF6EC 0%, #E8C99B 45%, #B8763E 80%, #8C5426 100%);
  box-shadow: 10px 16px 34px rgba(90, 55, 20, 0.30);
}

.orb-3 {
  width: 30%;
  height: 30%;
  top: 2%;
  right: 4%;
  background: radial-gradient(circle at 34% 30%, #FBF6EC 0%, #D9C4A0 55%, #6B4226 100%);
  box-shadow: 8px 12px 26px rgba(90, 55, 20, 0.28);
}

.orb-4 {
  width: 22%;
  height: 22%;
  bottom: 14%;
  right: 8%;
  background: radial-gradient(circle at 32% 28%, #E8C99B 0%, #8C5426 60%, #4A2A14 100%);
  box-shadow: 6px 10px 20px rgba(90, 55, 20, 0.25);
}

.orb-5 {
  width: 16%;
  height: 16%;
  top: 42%;
  left: -2%;
  background: radial-gradient(circle at 30% 25%, #FBF6EC 0%, #B8763E 70%, #6B4226 100%);
  box-shadow: 5px 8px 16px rgba(90, 55, 20, 0.22);
}

/* --------------------------------------------------
   PHOTO WITH BACKDROP — replaces orb-dominant hero
-------------------------------------------------- */
.photo-frame {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
}


.photo-frame img {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(45, 28, 12, 0.28);
}

.photo-frame.small {
  max-width: 320px;
}

.accent-orb {
  position: absolute;
  border-radius: 50%;
  z-index: 3;
}

.accent-orb-1 {
  width: 64px;
  height: 64px;
  bottom: -20px;
  left: -20px;
  background: radial-gradient(circle at 32% 28%, #FBF6EC 0%, #B8763E 65%, #6B4226 100%);
  box-shadow: 6px 10px 20px rgba(90, 55, 20, 0.3);
}

/* --------------------------------------------------
   MID-BAND SECTIONS
-------------------------------------------------- */

.sable-band {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 32px;
  text-align: center;
}

.sable-band h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  max-width: 680px;
  margin: 0 auto 20px;
  line-height: 1.15;
}

.sable-band p {
  color: #C9BBA4;
  max-width: 520px;
  margin: 0 auto 32px;
}

/* --------------------------------------------------
   SPLIT / CARD SECTIONS
-------------------------------------------------- */
.sable-split {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 90px 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .sable-split { grid-template-columns: 1fr 1fr; }
  .sable-split.reverse > *:first-child { order: 2; }
}

.sable-split h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin-bottom: 18px;
  line-height: 1.15;
}

.sable-split p {
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.sable-days {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}

.sable-day-card {
  background: var(--white);
  border: 1px solid var(--cream-deep);
  border-radius: 18px;
  padding: 20px;
}

.sable-day-card .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--bronze);
  margin-bottom: 6px;
}

.sable-day-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.sable-day-card p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
.sable-footer {
  padding: 48px 32px;
  text-align: center;
  border-top: 1px solid var(--cream-deep);
}

.sable-footer p {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

/* --------------------------------------------------
   ACCESSIBILITY
-------------------------------------------------- */
body.sable-page a:focus-visible, body.sable-page button:focus-visible {
  outline: 2px solid var(--bronze-deep);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

/* --------------------------------------------------
   DAY PAGES — shared components (preview + full)
-------------------------------------------------- */
.sable-day-hero {
  text-align: center;
  padding: 56px 32px 32px;
  max-width: 720px;
  margin: 0 auto;
}

.sable-day-badge {
  display: inline-block;
  background: var(--bronze);
  color: var(--white);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.sable-day-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 14px;
  line-height: 1.1;
}

.sable-day-hero p.lede {
  max-width: 520px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.sable-lesson {
  max-width: 680px;
  margin: 0 auto;
  padding: 8px 32px;
}

.sable-lesson h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  margin: 36px 0 14px;
}

.sable-lesson p {
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.75;
}

.sable-lesson p.lead-in {
  color: var(--ink-soft);
  font-style: italic;
}

.sable-lesson strong { color: var(--bronze-deep); }

.sable-quote-box {
  max-width: 680px;
  margin: 32px auto;
  background: var(--white);
  border: 1.5px solid var(--cream-deep);
  border-radius: 18px;
  padding: 28px 32px;
}

.sable-quote-box .label {
  color: var(--bronze-deep);
  font-weight: 600;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 10px;
}

.sable-quote-box p { color: var(--ink); margin: 0; }
.sable-quote-box p + p { margin-top: 12px; }

.sable-journal-box {
  max-width: 680px;
  margin: 32px auto;
  background: var(--cream-deep);
  border-radius: 18px;
  padding: 28px 32px;
}

.sable-journal-box .label {
  color: var(--bronze-deep);
  font-weight: 600;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 6px;
}

.sable-journal-box h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.sable-journal-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sable-journal-box li {
  padding-left: 22px;
  position: relative;
  color: var(--ink);
  line-height: 1.6;
}

.sable-journal-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bronze);
}

.sable-video-placeholder {
  max-width: 720px;
  margin: 32px auto;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--ink), var(--umber) 70%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.sable-video-placeholder .play-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.sable-video-placeholder .play-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--cream);
  margin-left: 3px;
}

.sable-video-placeholder .vlabel {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.sable-video-placeholder .vsublabel {
  font-size: 0.85rem;
  color: var(--gold-pale);
  margin-top: 6px;
}

.sable-lesson-note {
  max-width: 680px;
  margin: 24px auto;
  padding: 18px 22px;
  border: 1.5px dashed var(--cream-deep);
  border-radius: 14px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  text-align: center;
}

.sable-day-cta {
  text-align: center;
  padding: 8px 32px 56px;
}

.sable-day-cta p.note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.sable-day-nav {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 32px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.sable-day-nav a { color: var(--bronze-deep); font-weight: 600; }
.sable-day-nav a:hover { text-decoration: underline; }
.sable-day-nav .disabled { color: var(--ink-soft); opacity: 0.4; pointer-events: none; }

.sable-full-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--bronze);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.sable-audio-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 1.5px solid var(--cream-deep);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
}

.sable-triangle-diagram {
  max-width: 420px;
  margin: 36px auto;
  text-align: center;
}

.sable-triangle-diagram svg { width: 100%; height: auto; }

.sable-triangle-diagram .caption {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 10px;
  font-style: italic;
}

/* --------------------------------------------------
   THAI LANGUAGE VERSION — font override + lang switcher
-------------------------------------------------- */
body.sable-page.lang-th {
  font-family: "Noto Sans Thai", var(--font-body);
}

body.sable-page.lang-th h1,
body.sable-page.lang-th h2,
body.sable-page.lang-th h3,
body.sable-page.lang-th .sable-logo {
  font-family: "Noto Sans Thai", var(--font-display);
}

.sable-lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
}

.sable-lang-switch a {
  display: block;
  line-height: 0;
  opacity: 0.45;
  transition: opacity 0.15s ease;
}

.sable-lang-switch img {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}

.sable-lang-switch a:hover { opacity: 0.75; }

.sable-lang-switch a.active { opacity: 1; }

/* --------------------------------------------------
   3D BOOK COVER EFFECT (restored)
-------------------------------------------------- */
.book-3d-wrap {
  perspective: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
}

.book-3d {
  position: relative;
  max-width: 320px;
  width: 100%;
  transform: rotateY(-22deg) rotateX(3deg) rotate(-1.5deg);
  transform-style: preserve-3d;
  transition: transform 0.4s ease;
}

.book-3d:hover {
  transform: rotateY(-14deg) rotateX(2deg) rotate(-1deg);
}

.book-3d img {
  display: block;
  width: 100%;
  border-radius: 3px 10px 10px 3px;
  box-shadow:
    28px 24px 50px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
  z-index: 2;
}

.book-3d::after {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  right: -13px;
  width: 13px;
  background: repeating-linear-gradient(
    to bottom,
    #EDE8D8 0px, #EDE8D8 2px,
    #D8D2BC 2px, #D8D2BC 3px
  );
  transform: rotateY(90deg) translateX(6.5px);
  transform-origin: left center;
  border-radius: 0 3px 3px 0;
  z-index: 1;
}

.book-3d::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: -6px;
  right: -15px;
  width: 15px;
  background: #050505;
  transform: rotateY(90deg) translateX(7.5px);
  transform-origin: left center;
  filter: blur(4px);
  opacity: 0.6;
  z-index: 0;
}
