:root {
  --ivory: #f7efe3;
  --ivory-deep: #efe3d2;
  --blush: #dcc6bc;
  --gold: #c8a262;
  --gold-deep: #8d6a32;
  --gold-light: #e8d5a8;
  --burgundy: #5f2234;
  --burgundy-deep: #39131f;
  --burgundy-light: #8a3a52;
  --ink: #2b1c1e;
  --muted: #6e5a5c;
  --white: #fffaf5;
  --border: rgba(95, 34, 52, 0.12);
  --shadow: 0 24px 60px rgba(74, 35, 45, 0.12);
  --shadow-hover: 0 32px 72px rgba(74, 35, 45, 0.18);
  --glow: 0 0 40px rgba(200, 162, 98, 0.35);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1180px;
  --reveal-duration: 820ms;
  --pointer-x: 50%;
  --pointer-y: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
  background:
    radial-gradient(circle at top left, rgba(200, 162, 98, 0.25), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(95, 34, 52, 0.15), transparent 24%),
    radial-gradient(circle at 30% 80%, rgba(220, 198, 188, 0.2), transparent 25%),
    linear-gradient(180deg, #fbf7f1 0%, #f4ece1 52%, #fcf8f3 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.22) 48%, transparent 54%);
  opacity: 0;
  transform: translateX(-35%);
  pointer-events: none;
  z-index: 100;
}

body.is-ready .page-shell::before {
  animation: page-glow 1.35s ease-out 180ms forwards;
}

.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.6;
  z-index: -1;
}

.ambient-one {
  top: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 162, 98, 0.4), transparent 70%);
  animation: ambient-float 18s ease-in-out infinite;
}

.ambient-two {
  top: 40%;
  right: -180px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(95, 34, 52, 0.25), transparent 70%);
  animation: ambient-float 22s ease-in-out infinite reverse;
  animation-delay: -11s;
}

.ambient-three {
  bottom: 10%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(220, 198, 188, 0.3), transparent 70%);
  animation: ambient-float 16s ease-in-out infinite;
  animation-delay: -5s;
}

.site-header,
.section,
.intro-band,
.site-footer {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  background: rgba(255, 250, 245, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(74, 35, 45, 0.1);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease,
    border-color 240ms ease,
    top 240ms ease;
}

.site-header.is-scrolled {
  top: 0;
  transform: translateY(4px);
  background: rgba(255, 250, 245, 0.95);
  border-color: rgba(95, 34, 52, 0.12);
  box-shadow: 0 20px 50px rgba(74, 35, 45, 0.15);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(200, 162, 98, 0.25);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.brand:hover img {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 16px 32px rgba(200, 162, 98, 0.35);
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--burgundy));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--burgundy);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(95, 34, 52, 0.25);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.button:hover::before {
  opacity: 1;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.3) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 420ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(95, 34, 52, 0.35);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(130%);
}

.button-secondary {
  background: rgba(255, 250, 245, 0.85);
  color: var(--burgundy);
  border: 1px solid rgba(95, 34, 52, 0.15);
  box-shadow: 0 8px 20px rgba(74, 35, 45, 0.08);
}

.button-secondary:hover {
  background: var(--white);
  border-color: rgba(95, 34, 52, 0.25);
}

.button-outline {
  background: rgba(255, 250, 245, 0.75);
  color: var(--burgundy);
  border: 1px solid rgba(95, 34, 52, 0.12);
  box-shadow: none;
}

.button-ghost {
  background: transparent;
  color: var(--burgundy);
  border: 2px solid var(--burgundy);
  box-shadow: none;
}

.button-ghost:hover {
  background: var(--burgundy);
  color: var(--white);
}

.button-small {
  min-height: 44px;
  padding: 0 20px;
  font-size: 0.92rem;
}

.section {
  padding: 96px 0 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 60px;
  padding-top: 80px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

body.is-ready .hero-copy .eyebrow,
body.is-ready .hero-copy h1,
body.is-ready .hero-copy .hero-text,
body.is-ready .hero-copy .hero-actions,
body.is-ready .hero-copy .hero-stats {
  animation: rise-in 880ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

body.is-ready .hero-copy h1 {
  animation-delay: 100ms;
}

body.is-ready .hero-copy .hero-text {
  animation-delay: 180ms;
}

body.is-ready .hero-copy .hero-actions {
  animation-delay: 260ms;
}

body.is-ready .hero-copy .hero-stats {
  animation-delay: 340ms;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3.2rem, 5vw, 5.8rem);
  max-width: none;
  background: linear-gradient(135deg, var(--ink) 0%, var(--burgundy) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-line {
  display: block;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.6rem;
}

.hero-text,
.section-copy p,
.story-card p,
.company-copy p,
.credential-card p,
.contact-copy p,
.price-note,
.price-card li,
.steps-list li {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.hero-text {
  max-width: 58ch;
  margin: 24px 0 0;
  font-size: 1.1rem;
}

.hero-text-secondary {
  margin: 16px 0 0;
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.7;
}

.hero-quote {
  margin-top: 36px;
  padding: 20px 24px;
  background: rgba(95, 34, 52, 0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
}

.hero-quote .quote-icon {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.hero-quote p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.hero-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 250, 245, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 26px rgba(74, 35, 45, 0.08);
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-highlight i {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(200, 162, 98, 0.2), rgba(220, 198, 188, 0.28));
  color: var(--burgundy);
  font-size: 0.92rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  padding: 24px 28px;
  background: rgba(255, 250, 245, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(74, 35, 45, 0.08);
}

.stat-item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 2px;
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
}

.stat-plus {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  width: 100%;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold-light), transparent);
}

.hero-media {
  position: relative;
  perspective: 1400px;
}

.portrait-card {
  position: relative;
  padding: 32px;
  border-radius: 40px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.6), rgba(255, 246, 236, 0.95)),
    linear-gradient(180deg, rgba(200, 162, 98, 0.3), transparent 45%);
  box-shadow: 0 40px 80px rgba(74, 35, 45, 0.2);
  transform-style: preserve-3d;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateZ(0);
  transition: transform 220ms ease, box-shadow 280ms ease;
}

.portrait-accent {
  position: absolute;
  inset: 16px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top, rgba(200, 162, 98, 0.4), transparent 30%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.1), rgba(95, 34, 52, 0.08));
  pointer-events: none;
}

.portrait-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  height: auto;
  min-height: 520px;
  overflow: hidden;
  border-radius: 28px;
}

.portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.4), transparent 26%);
  opacity: 0.85;
  pointer-events: none;
  mix-blend-mode: screen;
}

.portrait-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(200, 162, 98, 0.4), transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.2); }
}

.hero-media:hover .portrait-card {
  box-shadow: 0 50px 100px rgba(74, 35, 45, 0.28);
}

.portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1);
  transform-origin: center top;
  transition: transform 320ms ease;
}

.hero-media:hover .portrait {
  transform: scale(1.04);
}

.floating-note {
  position: absolute;
  left: -24px;
  bottom: 32px;
  z-index: 2;
  width: min(340px, calc(100% - 32px));
  padding: 24px 24px 22px;
  border-radius: 24px;
  background: rgba(95, 34, 52, 0.95);
  color: var(--white);
  box-shadow: 0 28px 60px rgba(57, 19, 31, 0.4);
  animation: note-float 8s ease-in-out infinite;
  transform: translateZ(50px);
}

.note-icon {
  position: absolute;
  top: -16px;
  left: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(200, 162, 98, 0.4);
}

.floating-note p {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  line-height: 1.35;
  font-style: italic;
}

.note-author {
  display: block;
  font-size: 0.82rem;
  opacity: 0.8;
  letter-spacing: 0.05em;
}

.floating-badge {
  position: absolute;
  top: 24px;
  right: -8px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(74, 35, 45, 0.2);
  animation: badge-bounce 3s ease-in-out infinite;
  animation-delay: 1s;
}

.badge-logo {
  height: 36px;
  width: auto;
}

.floating-badge i {
  color: var(--gold);
  font-size: 1rem;
}

@keyframes badge-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding-top: 48px;
}

.intro-card {
  position: relative;
  padding: 28px 26px;
  border-radius: var(--radius-md);
  background: rgba(255, 250, 245, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    transform 300ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 300ms ease,
    border-color 300ms ease;
}

.intro-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(200, 162, 98, 0.3);
}

.intro-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--burgundy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease;
}

.intro-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(200, 162, 98, 0.15), rgba(200, 162, 98, 0.05));
  border-radius: 16px;
  color: var(--gold-deep);
  font-size: 1.3rem;
}

.intro-card p {
  margin: 0 0 8px;
  color: var(--gold-deep);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.intro-card strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  line-height: 1.35;
  font-weight: 600;
  color: var(--ink);
}

.section-divider {
  width: 100%;
  height: 80px;
  margin-top: 60px;
  overflow: hidden;
}

.section-divider svg {
  width: 100%;
  height: 100%;
}

.section-divider.reverse {
  margin-top: 0;
  margin-bottom: 60px;
  transform: scaleY(-1);
}

.lotus-section {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(200, 162, 98, 0.05) 50%, transparent 100%);
}

.lotus-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.lotus-text h2 {
  margin-bottom: 20px;
}

.lotus-text > p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.focus-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.focus-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 250, 245, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.focus-item:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(74, 35, 45, 0.1);
}

.focus-item i {
  color: var(--gold);
  font-size: 1.1rem;
}

.focus-item span {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}

.lotus-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--burgundy);
  padding: 20px 24px;
  background: rgba(95, 34, 52, 0.05);
  border-left: 3px solid var(--burgundy);
  border-radius: 0 12px 12px 0;
}

.lotus-mission {
  margin-top: 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--burgundy);
  padding: 16px 20px;
  background: rgba(200, 162, 98, 0.1);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
}

.lotus-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lotus-image img {
  width: 280px;
  height: auto;
}

.challenge-section {
  padding: 80px 0;
}

.challenge-content {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  text-align: center;
}

.challenge-content h2 {
  margin-bottom: 40px;
}

.challenge-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.challenge-card {
  padding: 28px 24px;
  background: rgba(255, 250, 245, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.challenge-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.challenge-card i {
  font-size: 2rem;
  color: var(--burgundy);
  margin-bottom: 16px;
}

.challenge-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.challenge-message {
  max-width: 700px;
  margin: 0 auto;
  padding: 36px;
  background: linear-gradient(135deg, rgba(95, 34, 52, 0.06), rgba(200, 162, 98, 0.08));
  border-radius: 24px;
}

.challenge-final {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--burgundy);
  margin-bottom: 20px;
}

.challenge-insight {
  font-size: 1.02rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.challenge-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  margin-bottom: 24px;
}

.challenge-cta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta-highlight {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-deep);
}

.cta-text {
  font-size: 1.1rem;
  color: var(--muted);
}

.help-section {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(200, 162, 98, 0.06) 50%, transparent 100%);
}

.help-content {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  text-align: center;
}

.help-content h2 {
  margin-bottom: 16px;
}

.help-intro {
  max-width: 700px;
  margin: 0 auto 48px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  text-align: left;
}

.help-card {
  padding: 32px 28px;
  background: rgba(255, 250, 245, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.help-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.help-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(95, 34, 52, 0.1), rgba(95, 34, 52, 0.05));
  border-radius: 16px;
  margin-bottom: 20px;
}

.help-icon i {
  font-size: 1.5rem;
  color: var(--burgundy);
}

.help-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.help-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.help-note {
  margin-top: 40px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--burgundy);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.price-card {
  padding: 28px 24px;
  background: rgba(255, 250, 245, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: transform 300ms ease, box-shadow 300ms ease;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.price-card-featured {
  border: 2px solid var(--gold);
  position: relative;
  background: linear-gradient(135deg, rgba(200, 162, 98, 0.08) 0%, rgba(255, 250, 245, 0.95) 100%);
}

.featured-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 22px;
  z-index: -1;
  opacity: 0.5;
  filter: blur(20px);
}

.card-tag {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--blush) 100%);
  color: var(--burgundy);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 16px;
  width: fit-content;
}

.card-icon-small {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--blush) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card-icon-small i {
  font-size: 1.3rem;
  color: var(--burgundy);
}

.price-card h3 {
  margin-bottom: 8px;
}

.price {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--burgundy);
  margin: 12px 0;
}

.price-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.price-card ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  flex-grow: 1;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--burgundy) 100%);
}

.card-button {
  display: inline-block;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
  color: white;
  font-weight: 600;
  border-radius: 30px;
  text-align: center;
  transition: transform 200ms ease, box-shadow 200ms ease;
  margin-top: auto;
}

.card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(95, 34, 52, 0.35);
}

.card-button-featured {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: white;
}

.program-title {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.programs-quote {
  text-align: center;
  margin-top: 48px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--burgundy);
}

.programs-tagline {
  text-align: center;
  margin-top: 24px;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--burgundy);
  line-height: 1.4;
}

.story-section {
  padding: 80px 0;
}

.story-content {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.story-content h2 {
  margin-bottom: 32px;
}

.story-text {
  max-width: 800px;
}

.story-text p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.02rem;
}

.story-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--burgundy);
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(95, 34, 52, 0.06), rgba(200, 162, 98, 0.08));
  border-left: 3px solid var(--gold);
  border-radius: 0 16px 16px 0;
  margin-top: 32px;
}

.certifications {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(95, 34, 52, 0.1);
}

.cert-logo {
  height: 60px;
  width: auto;
  opacity: 0.85;
  transition: opacity 220ms ease, transform 220ms ease;
}

.cert-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

.story-mission {
  margin-top: 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--burgundy);
  padding: 18px 22px;
  background: rgba(95, 34, 52, 0.04);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
}

.story-mission-final {
  margin-top: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink);
  padding: 14px 18px;
  background: rgba(200, 162, 98, 0.08);
  border-left: 3px solid var(--burgundy);
  border-radius: 0 10px 10px 0;
}

.personal-section {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(200, 162, 98, 0.06) 50%, transparent 100%);
}

.personal-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.personal-text h2 {
  margin-bottom: 24px;
}

.personal-text p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
  font-size: 1.02rem;
}

.personal-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--burgundy);
  margin-top: 24px;
}

.personal-image {
  display: grid;
  gap: 20px;
}

.personal-card {
  padding: 28px;
  background: rgba(255, 250, 245, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.personal-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.personal-card .card-icon {
  margin: 0 auto 16px;
}

.personal-card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.personal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(95, 34, 52, 0.08), rgba(200, 162, 98, 0.1));
}

.final-cta-content {
  width: min(calc(100% - 32px), 800px);
  margin: 0 auto;
  text-align: center;
}

.cta-decoration {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  border-radius: 50%;
  box-shadow: 0 16px 40px rgba(200, 162, 98, 0.35);
}

.cta-decoration i {
  font-size: 2rem;
  color: white;
}

.final-cta-content h2 {
  margin-bottom: 20px;
}

.final-cta-content > p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.button-large {
  min-height: 60px;
  padding: 0 36px;
  font-size: 1.1rem;
}

.two-column,
.company-section,
.contact-section {
  display: grid;
  align-items: start;
}

.contact-section {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 32px;
}

.contact-copy,
.form-shell {
  width: 100%;
  padding: 34px;
  border-radius: 30px;
  background: rgba(255, 250, 245, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
}

.contact-copy {
  display: grid;
  gap: 24px;
}

.contact-lead,
.form-header p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.contact-cards {
  display: grid;
  gap: 14px;
}

.contact-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(95, 34, 52, 0.08);
  box-shadow: 0 14px 34px rgba(74, 35, 45, 0.08);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(74, 35, 45, 0.12);
  border-color: rgba(141, 106, 50, 0.22);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(200, 162, 98, 0.18), rgba(220, 198, 188, 0.28));
  color: var(--burgundy);
  font-size: 1.05rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.contact-card-text {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.contact-card span {
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: 1rem;
  line-height: 1.45;
}

.contact-socials {
  display: grid;
  gap: 14px;
}

.social-title {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-link {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(200, 162, 98, 0.16), rgba(220, 198, 188, 0.24));
  color: var(--burgundy);
  border: 1px solid rgba(95, 34, 52, 0.08);
  box-shadow: 0 10px 24px rgba(74, 35, 45, 0.08);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(74, 35, 45, 0.12);
  border-color: rgba(141, 106, 50, 0.22);
}

.form-shell {
  position: relative;
}

.form-header {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.form-header h3 {
  font-size: 2rem;
}

.honey-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.interest-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.interest-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
}

.interest-form input,
.interest-form select,
.interest-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(95, 34, 52, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.interest-form input:focus,
.interest-form select:focus,
.interest-form textarea:focus {
  outline: none;
  border-color: rgba(95, 34, 52, 0.3);
  box-shadow: 0 0 0 4px rgba(95, 34, 52, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

.consent-check {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(95, 34, 52, 0.08);
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.consent-check span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.65;
}

.consent-check a,
.privacy-details-body a,
.legal-list a,
.legal-card a {
  color: var(--burgundy);
  font-weight: 600;
}

.form-actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-top: 6px;
}

.form-actions .button {
  flex: 0 0 auto;
}

.form-status {
  margin: 0;
  min-height: 52px;
  max-width: 320px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(95, 34, 52, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-status::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(141, 106, 50, 0.5);
  box-shadow: 0 0 0 6px rgba(200, 162, 98, 0.12);
}

.form-legal-note {
  margin: -2px 0 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(95, 34, 52, 0.04);
  border: 1px solid rgba(95, 34, 52, 0.08);
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.65;
}

.privacy-panel {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.privacy-details {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(95, 34, 52, 0.08);
  overflow: hidden;
}

.privacy-details summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  font-weight: 700;
  color: var(--burgundy);
  position: relative;
}

.privacy-details summary::-webkit-details-marker {
  display: none;
}

.privacy-details summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--gold-deep);
}

.privacy-details[open] summary::after {
  content: "-";
}

.privacy-details-body {
  padding: 0 18px 18px;
  color: var(--muted);
}

.privacy-details-body p {
  margin: 0 0 12px;
  line-height: 1.7;
}

.privacy-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.privacy-list li {
  line-height: 1.65;
}

.privacy-details-body a {
  color: var(--burgundy);
  font-weight: 600;
}

.section-actions {
  margin-top: 28px;
}

.logo-panel {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 245, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  text-align: center;
}

.logo-panel img {
  width: min(100%, 280px);
  margin: 0 auto 28px;
  filter: drop-shadow(0 20px 32px rgba(200, 162, 98, 0.35));
  transition: transform 300ms ease;
}

.logo-panel:hover img {
  transform: scale(1.05) rotate(3deg);
}

.pulse-logo {
  animation: logo-pulse 3s ease-in-out infinite;
}

@keyframes logo-pulse {
  0%, 100% { filter: drop-shadow(0 20px 32px rgba(200, 162, 98, 0.35)); }
  50% { filter: drop-shadow(0 20px 40px rgba(200, 162, 98, 0.5)); }
}

.value-list,
.check-list,
.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.value-list {
  display: grid;
  gap: 14px;
  text-align: left;
}

.value-list li,
.check-list li,
.price-card li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 0.96rem;
}

.value-list li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--gold);
  font-size: 0.9rem;
}

.check-list li::before,
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--burgundy) 100%);
}

.about-intro {
  text-align: center;
  padding-bottom: 0;
}

.about-intro h2 {
  font-size: 2.2rem;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-bio {
  padding-top: 32px;
}

.bio-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.bio-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.7;
}

@media (max-width: 820px) {
  .about-cards {
    grid-template-columns: 1fr;
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .credential-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.credential-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.credential-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 245, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  transition:
    transform 300ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 300ms ease;
}

.credential-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.credential-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--blush) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.credential-card .card-icon i {
  font-size: 1.4rem;
  color: var(--burgundy);
}

.credential-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.credential-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 245, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  transition:
    transform 300ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 300ms ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-text {
  flex: 1 1 auto;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  min-width: 0;
}

.testimonial-author > div:last-child {
  min-width: 0;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--blush) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--burgundy);
  font-size: 1.1rem;
}

.testimonial-author strong {
  display: block;
  font-size: 1rem;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.8fr) minmax(220px, 0.85fr);
  gap: 24px 32px;
  padding: 30px 32px 26px;
  margin: 28px auto 18px;
  background:
    radial-gradient(circle at top left, rgba(200, 162, 98, 0.14), transparent 34%),
    rgba(255, 250, 245, 0.82);
  border: 1px solid rgba(95, 34, 52, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(74, 35, 45, 0.08);
  color: var(--muted);
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.footer-brand strong {
  font-family: "Playfair Display", serif;
  font-size: 1.32rem;
  color: var(--burgundy);
}

.footer-brand p,
.footer-copy,
.footer-cta p {
  margin: 0;
}

.footer-tagline {
  color: var(--gold-deep);
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--blush) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  font-size: 1.1rem;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(200, 162, 98, 0.35);
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-label {
  color: var(--gold-deep);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.footer-contact a {
  color: var(--ink);
  font-weight: 600;
}

.footer-cta {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(95, 34, 52, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.footer-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(95, 34, 52, 0.28);
}

.footer-secondary-link {
  color: var(--burgundy);
  font-weight: 600;
  font-size: 0.94rem;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(95, 34, 52, 0.08);
}

.footer-copy {
  font-size: 0.92rem;
}

.admin-link {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(95, 34, 52, 0.08);
  color: var(--burgundy);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.admin-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(74, 35, 45, 0.12);
  border-color: rgba(141, 106, 50, 0.18);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px 20px;
  align-items: center;
  padding: 18px 20px;
  background: rgba(43, 28, 30, 0.94);
  color: var(--white);
  border-radius: 22px;
  box-shadow: 0 24px 54px rgba(43, 28, 30, 0.3);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner-copy strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
}

.cookie-banner-copy p {
  margin: 0;
  color: rgba(255, 250, 245, 0.82);
  line-height: 1.6;
  font-size: 0.94rem;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-link {
  color: var(--gold-light);
  font-weight: 600;
  white-space: nowrap;
}

.legal-body {
  min-height: 100vh;
}

.legal-shell {
  padding-bottom: 48px;
}

.legal-header {
  width: min(calc(100% - 32px), var(--container));
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: rgba(255, 250, 245, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  box-shadow: 0 14px 36px rgba(74, 35, 45, 0.08);
}

.legal-page {
  width: min(calc(100% - 32px), 980px);
  margin: 0 auto;
  padding-top: 48px;
  display: grid;
  gap: 22px;
}

.legal-hero {
  padding: 24px 0 8px;
}

.legal-intro,
.legal-meta,
.legal-card p,
.legal-list li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-meta {
  margin-top: 14px;
  font-size: 0.92rem;
}

.legal-card {
  padding: 28px 30px;
  border-radius: 24px;
  background: rgba(255, 250, 245, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 38px rgba(74, 35, 45, 0.08);
}

.legal-card h2 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.legal-card p {
  margin: 0 0 12px;
}

.legal-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

@media (max-width: 560px) {
  :root {
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
  }

  html {
    scroll-padding-top: 100px;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 12px;
    border-radius: 0;
    margin: 0;
    width: 100%;
    padding: 12px 14px 16px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .site-nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    font-size: 0.82rem;
    gap: 8px;
    padding: 2px 2px 6px;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(95, 34, 52, 0.08);
    white-space: nowrap;
  }

  .site-header > .button-small {
    width: 100%;
  }

  .button-small {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.88rem;
  }

  .section {
    padding-top: 48px;
  }

  .section-divider {
    height: 50px;
    margin-top: 40px;
  }

  h1 {
    font-size: 2.1rem;
    max-width: none;
  }

  h2 {
    font-size: 1.7rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    margin-bottom: 10px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 24px;
    gap: 24px;
  }

  .hero-media,
  .hero-copy {
    width: 100%;
  }

  .hero-text {
    font-size: 0.98rem;
    margin: 16px 0 0;
  }

  .hero-text-secondary {
    font-size: 0.95rem;
  }

  .hero-actions {
    margin-top: 24px;
    gap: 12px;
  }

  .hero-actions .button {
    min-height: 48px;
    font-size: 0.92rem;
  }

  .hero-quote {
    padding: 16px 18px;
    margin-top: 20px;
  }

  .hero-quote p {
    font-size: 1rem;
  }

  .portrait-card {
    padding: 12px;
    border-radius: 24px;
  }

  .portrait-frame {
    min-height: 350px;
    border-radius: 18px;
  }

  .portrait {
    min-height: 350px;
  }

  .floating-badge {
    top: 8px;
    right: 8px;
    padding: 5px 8px;
    font-size: 0.65rem;
    gap: 4px;
  }

  .floating-badge i {
    font-size: 0.75rem;
  }

  .story-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .card-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    margin-bottom: 14px;
  }

  .lotus-section,
  .challenge-section,
  .help-section {
    padding: 48px 0;
  }

  .lotus-content,
  .personal-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .focus-areas,
  .programs-grid,
  .credential-cards,
  .help-grid {
    grid-template-columns: 1fr;
  }

  .challenge-message {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .lotus-quote {
    font-size: 1.1rem;
    padding: 16px 18px;
  }

  .challenge-final {
    font-size: 1.15rem;
  }

  .challenge-insight {
    font-size: 0.95rem;
  }

  .challenge-quote {
    font-size: 1.05rem;
    padding: 14px 16px;
  }

  .cta-highlight {
    font-size: 1.4rem;
  }

  .cta-text {
    font-size: 1rem;
  }

  .help-note {
    font-size: 1rem;
    margin-top: 28px;
  }

  .help-card h3 {
    font-size: 1.15rem;
  }

  .help-card p {
    font-size: 0.9rem;
  }

  .price-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .price-card-featured {
    transform: none;
  }

  .price {
    font-size: 2.2rem;
  }

  .price-card ul {
    gap: 10px;
  }

  .price-card li {
    font-size: 0.9rem;
  }

  .card-button {
    padding: 12px 20px;
    font-size: 0.88rem;
  }

  .programs-quote {
    font-size: 1.15rem;
    margin-top: 32px;
  }

  .certifications {
    gap: 14px;
  }

  .cert-logo {
    height: 48px;
  }

  .credential-card {
    padding: 22px 18px;
  }

  .story-section {
    padding: 48px 0;
  }

  .story-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .story-quote {
    font-size: 1.15rem;
    padding: 18px 20px;
  }

  .personal-section {
    padding: 48px 0;
  }

  .personal-text p {
    font-size: 0.95rem;
    margin-bottom: 14px;
  }

  .personal-quote {
    font-size: 1.1rem;
  }

  .personal-card {
    padding: 22px 18px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .testimonial-text {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 16px;
  }

  .author-avatar {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .testimonial-author {
    align-items: flex-start;
  }

  .testimonial-author strong {
    line-height: 1.3;
  }

  .testimonial-author span {
    display: block;
    line-height: 1.4;
  }

  .final-cta {
    padding: 48px 0;
  }

  .final-cta-content h2 {
    font-size: 1.6rem;
  }

  .final-cta-content > p {
    font-size: 1rem;
  }

  .button-large {
    min-height: 52px;
    padding: 0 28px;
    font-size: 1rem;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    gap: 12px;
  }

  .contact-card {
    padding: 16px 18px;
  }

  .contact-icon {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .form-shell {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .form-header {
    margin-bottom: 18px;
    padding-bottom: 16px;
  }

  .form-header h3 {
    font-size: 1.2rem;
  }

  .form-header p {
    font-size: 0.88rem;
  }

  .interest-form {
    gap: 14px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .interest-form label {
    font-size: 0.88rem;
  }

  .interest-form input,
  .interest-form select,
  .interest-form textarea {
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  .form-actions {
    margin-top: 8px;
  }

  .form-actions .button {
    min-height: 48px;
  }

  .form-status {
    font-size: 0.82rem;
    padding: 10px 14px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 20px 16px 24px;
    border-radius: 20px;
    gap: 14px;
  }

  .footer-brand strong {
    font-size: 1.1rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .cookie-banner-actions {
    flex-wrap: wrap;
  }

  .footer-social {
    flex-wrap: wrap;
  }

  .legal-header,
  .legal-page {
    width: min(calc(100% - 24px), var(--container));
  }

  .legal-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 18px;
  }

  .legal-card {
    padding: 22px 18px;
  }

  .footer-social a {
    width: 32px;
    height: 32px;
  }

  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
  }

  .admin-bar {
    padding: 8px 12px;
  }

  .admin-bar-left,
  .admin-bar-right {
    gap: 8px;
  }

  .admin-badge {
    display: none;
  }

  .admin-toggle,
  .admin-btn {
    padding: 6px 10px;
    font-size: 0.8rem;
  }

  .admin-btn span {
    display: none;
  }

  .social-links {
    gap: 10px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .social-hint {
    font-size: 0.72rem;
    text-align: center;
  }
}

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

  .hero,
  .lotus-content,
  .personal-content {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 36px;
  }

  .hero-copy,
  .hero-media,
  .lotus-text,
  .lotus-image,
  .personal-text,
  .personal-image {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-copy,
  .form-shell {
    padding: 28px 24px;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .form-status {
    max-width: none;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .legal-header {
    width: min(calc(100% - 32px), var(--container));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal-item {
    opacity: 1;
    transform: none;
  }

  .portrait-card {
    transform: none !important;
  }

  .floating-note,
  .floating-badge,
  .ambient {
    animation: none !important;
  }

  .back-to-top {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}
