/* ==========================================================
   Juvia — Brand styles
   Palette: warm coral, peach, rosé. Anti-corporate.
   ========================================================== */

:root {
  --coral: #E89187;
  --coral-deep: #D9695E;
  --coral-soft: #F5B5AC;
  --peach: #FFD7AE;
  --pink: #FFCAD4;
  --rose-bg: #FFF7F3;
  --rose-bg-deep: #FCEAE2;
  --cream: #FFFBF7;
  --warm-dark: #2A1A18;
  --warm-text: #4A3835;
  --warm-muted: #8B7370;
  --warm-line: #F1DDD3;
  --shadow-sm: 0 2px 8px rgba(217, 105, 94, 0.08);
  --shadow-md: 0 8px 32px rgba(217, 105, 94, 0.10);
  --shadow-lg: 0 16px 48px rgba(217, 105, 94, 0.14);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --max-w: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--warm-text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--coral-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ----- Typography ----- */
h1, h2, h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--warm-dark);
  letter-spacing: -0.02em;
  margin: 0;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin: 0 0 16px;
}
.eyebrow.centered { text-align: center; }

.section-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  letter-spacing: -0.025em;
}
.section-title.left { text-align: left; }
.section-title em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--coral-deep);
}

.section-sub {
  font-size: 19px;
  color: var(--warm-muted);
  text-align: center;
  max-width: 640px;
  margin: 16px auto 48px;
  line-height: 1.55;
}
.section-sub.left { text-align: left; margin-left: 0; }

.section { padding: 96px 0; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: var(--coral-deep);
  color: white;
  box-shadow: 0 4px 16px rgba(217, 105, 94, 0.32);
}
.btn-primary:hover {
  background: var(--coral);
  box-shadow: 0 8px 24px rgba(217, 105, 94, 0.42);
}
.btn-ghost {
  background: transparent;
  color: var(--warm-dark);
  border: 1.5px solid var(--warm-line);
}
.btn-ghost:hover {
  background: var(--rose-bg);
  border-color: var(--coral-soft);
}
.btn-block { width: 100%; padding: 16px; font-size: 16px; }

/* ===========================================================
   NAV
=========================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: rgba(255, 251, 247, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(241, 221, 211, 0.5);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--warm-dark);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.nav-brand:hover { text-decoration: none; }
.nav-logo { width: 32px; height: 32px; border-radius: 8px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: var(--warm-text);
  font-weight: 500;
  font-size: 15px;
}
.nav-links a:hover { color: var(--coral-deep); text-decoration: none; }
.nav-cta {
  background: var(--warm-dark);
  color: var(--cream) !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--coral-deep); }

@media (max-width: 720px) {
  .nav { padding: 14px 20px; }
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ===========================================================
   HERO
=========================================================== */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px 100px;
  overflow: hidden;
}

.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-title em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--coral-deep);
}

.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--warm-muted);
  max-width: 540px;
  margin: 0 0 32px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.hero-tiny {
  font-size: 14px;
  color: var(--warm-muted);
  margin: 0;
}

/* hero art */
.hero-art {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.85;
  animation: blob-float 8s ease-in-out infinite;
}
.hero-blob-1 {
  width: 280px; height: 280px;
  background: var(--coral-soft);
  top: 20px; left: 30px;
}
.hero-blob-2 {
  width: 240px; height: 240px;
  background: var(--peach);
  bottom: 40px; right: 20px;
  animation-delay: -2s;
}
.hero-blob-3 {
  width: 200px; height: 200px;
  background: var(--pink);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -4s;
}
@keyframes blob-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
.hero-blob-3 {
  animation-name: blob-float-center;
}
@keyframes blob-float-center {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, -65%); }
}

.hero-avatar {
  position: relative;
  z-index: 2;
  width: 380px;
  max-width: 100%;
  filter: drop-shadow(0 24px 48px rgba(217, 105, 94, 0.25));
  animation: avatar-bob 6s ease-in-out infinite;
}
@keyframes avatar-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 48px 24px 64px;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-art { height: 320px; order: -1; }
  .hero-avatar { width: 280px; }
  .hero-blob-1 { width: 200px; height: 200px; }
  .hero-blob-2 { width: 180px; height: 180px; }
  .hero-blob-3 { width: 140px; height: 140px; }
}

/* ===========================================================
   PROBLEM
=========================================================== */
.section-problem { background: var(--rose-bg); }

.contrast {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.contrast-col {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.contrast-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contrast-col li {
  padding: 12px 0;
  border-bottom: 1px solid var(--warm-line);
  font-size: 16px;
  line-height: 1.5;
  color: var(--warm-text);
}
.contrast-col li:last-child { border-bottom: none; }
.contrast-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.contrast-bad .contrast-label { color: var(--warm-muted); }
.contrast-good .contrast-label { color: var(--coral-deep); }
.contrast-bad li::before {
  content: "✕  ";
  color: var(--warm-muted);
  font-weight: 700;
}
.contrast-good li::before {
  content: "✓  ";
  color: var(--coral-deep);
  font-weight: 700;
}
.contrast-good { border: 2px solid var(--coral-soft); }

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

/* ===========================================================
   HOW
=========================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 24px;
}
.step {
  background: var(--rose-bg);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--coral-deep);
  color: white;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
  font-family: 'Fraunces', serif;
}
.step h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.step p {
  margin: 0;
  color: var(--warm-text);
  font-size: 16px;
}

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

/* ===========================================================
   DEMO
=========================================================== */
.section-demo {
  background: linear-gradient(180deg, var(--cream) 0%, var(--rose-bg) 100%);
  padding: 64px 0;
}
.demo-card {
  background: white;
  border: 2px dashed var(--coral-soft);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.demo-text .section-title { margin-bottom: 0; }
.demo-text .section-sub { margin-bottom: 16px; }
.demo-hint {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--coral-deep);
  margin: 0;
}
.demo-bubble-pointer {
  width: 100px;
  height: 100px;
  position: relative;
}
.pointer-arrow {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 3px solid var(--coral-deep);
  border-radius: 50%;
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(135deg);
  animation: pointer-pulse 2s ease-in-out infinite;
}
@keyframes pointer-pulse {
  0%, 100% { transform: rotate(135deg) scale(1); opacity: 0.5; }
  50% { transform: rotate(135deg) scale(1.1); opacity: 1; }
}

@media (max-width: 720px) {
  .demo-card { grid-template-columns: 1fr; padding: 32px; }
  .demo-bubble-pointer { display: none; }
}

/* ===========================================================
   VIDEO (Loom embed)
=========================================================== */
.section-video {
  background: linear-gradient(180deg, var(--rose-bg) 0%, var(--cream) 100%);
}
.video-frame {
  position: relative;
  width: 100%;
  max-width: 880px;
  margin: 16px auto 0;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--warm-dark);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===========================================================
   AVATARS / MARQUEE
=========================================================== */
.section-avatars { padding: 96px 0 80px; }
.marquee {
  margin-top: 48px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 24px;
  animation: marquee 60s linear infinite;
  width: max-content;
}
.marquee-track img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  border-radius: 24px;
  background: var(--rose-bg);
  padding: 12px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.marquee-track img:hover {
  transform: scale(1.08) rotate(-2deg);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===========================================================
   OFFER / PRICING
=========================================================== */
.section-offer {
  background: var(--rose-bg);
}
.section-offer .section-title { margin-bottom: 16px; }
.section-offer .section-title em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--coral-deep);
}

.cost-compare {
  max-width: 760px;
  margin: 32px auto 24px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 8px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--warm-line);
}
.cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--warm-line);
  font-size: 16px;
}
.cost-row:last-child { border-bottom: none; }
.cost-label {
  color: var(--warm-text);
  flex: 1;
}
.cost-value {
  font-weight: 700;
  font-size: 19px;
  color: var(--warm-muted);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.cost-value em {
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  color: var(--warm-muted);
  margin-left: 2px;
}
.cost-row-juvia {
  background: linear-gradient(90deg, rgba(232,145,135,0.08), rgba(255,215,174,0.08));
  margin: 0 -28px;
  padding-left: 28px;
  padding-right: 28px;
  border-radius: 12px;
  position: relative;
}
.cost-row-juvia .cost-label { color: var(--warm-dark); font-weight: 600; }
.cost-row-juvia .cost-value { color: var(--coral-deep); font-size: 24px; }
.cost-row-juvia .cost-value em { color: var(--coral-deep); }

.cost-payoff {
  text-align: center;
  font-size: 19px;
  color: var(--warm-text);
  max-width: 600px;
  margin: 0 auto 56px;
  line-height: 1.5;
}
.cost-payoff strong {
  color: var(--warm-dark);
  font-weight: 700;
}

@media (max-width: 600px) {
  .cost-row { flex-direction: column; align-items: flex-start; gap: 4px; padding: 16px 0; }
  .cost-row-juvia { margin: 0 -20px; padding: 16px 20px; }
  .cost-compare { padding: 8px 20px; }
}

.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto 40px;
}
.price-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--warm-line);
}
.price-card-main {
  background: linear-gradient(160deg, var(--warm-dark) 0%, #3D2522 100%);
  color: var(--cream);
  border: none;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.price-card-main::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: var(--coral-deep);
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(40px);
}
.price-tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--coral-deep);
  position: relative;
}
.price-card-main .price-tag { color: var(--peach); }
.price-amount {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  color: var(--warm-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  position: relative;
}
.price-card-main .price-amount { color: white; }
.price-period {
  font-size: 18px;
  font-weight: 500;
  color: var(--warm-muted);
}
.price-card-main .price-period { color: var(--peach); }
.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.price-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 15.5px;
  line-height: 1.5;
}
.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--coral-deep);
  font-weight: 700;
}
.price-card-main .price-list li::before { color: var(--peach); }

.guarantee {
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--coral-deep);
}
.guarantee-icon {
  font-size: 32px;
  color: var(--coral-deep);
  flex-shrink: 0;
}
.guarantee-title {
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--warm-dark);
  font-size: 17px;
}
.guarantee-text {
  margin: 0;
  color: var(--warm-text);
  font-size: 15.5px;
  line-height: 1.5;
}

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

/* ===========================================================
   TRUST
=========================================================== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.trust-item h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--warm-dark);
}
.trust-item p {
  margin: 0;
  font-size: 16px;
  color: var(--warm-muted);
}

@media (max-width: 720px) {
  .trust-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ===========================================================
   FAQ
=========================================================== */
.section-faq { background: var(--rose-bg); }
.section-faq .container { max-width: 760px; }
.section-faq .section-title { margin-bottom: 40px; }

details {
  background: white;
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--warm-line);
  transition: box-shadow 0.2s ease;
}
details[open] { box-shadow: var(--shadow-md); }
details summary {
  font-weight: 600;
  font-size: 17px;
  color: var(--warm-dark);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 32px;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--coral-deep);
  font-weight: 400;
  transition: transform 0.2s ease;
}
details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
details p {
  margin: 14px 0 0;
  color: var(--warm-text);
  font-size: 15.5px;
  line-height: 1.6;
}

/* ===========================================================
   CONTACT FORM
=========================================================== */
.contact-card {
  max-width: 760px;
}
.contact-card .section-title { margin-bottom: 16px; }
.contact-card .section-title em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--coral-deep);
}

.two-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 16px 0 0;
}
.path-card {
  display: block;
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  text-decoration: none;
  color: inherit;
  border: 2px solid var(--warm-line);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-align: left;
}
.path-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  border-color: var(--coral-soft);
}
.path-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.path-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--warm-dark);
}
.path-card p {
  margin: 0 0 14px;
  font-size: 15px;
  color: var(--warm-muted);
  line-height: 1.5;
}
.path-cta {
  font-weight: 600;
  font-size: 15px;
  color: var(--coral-deep);
}
.path-primary {
  background: linear-gradient(160deg, var(--warm-dark) 0%, #3D2522 100%);
  color: var(--cream);
  border-color: var(--warm-dark);
  position: relative;
  overflow: hidden;
}
.path-primary::before {
  content: "";
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: var(--coral-deep);
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(36px);
}
.path-primary h3 { color: white; position: relative; }
.path-primary p { color: rgba(255, 251, 247, 0.8); position: relative; }
.path-primary .path-icon { position: relative; }
.path-primary .path-cta { color: var(--peach); position: relative; }
.path-primary:hover { border-color: var(--coral-deep); }

.form-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0 16px;
  color: var(--warm-muted);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.form-divider::before,
.form-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--warm-line);
}
.form-divider span {
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 640px) {
  .two-paths { grid-template-columns: 1fr; }
}

.contact-form {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  margin-top: 16px;
  border: 1px solid var(--warm-line);
}
.hp-field { display: none; }

.contact-form label {
  display: block;
  margin-bottom: 18px;
}
.contact-form label span {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--warm-dark);
  margin-bottom: 6px;
}
.contact-form label span em {
  font-style: normal;
  color: var(--warm-muted);
  font-weight: 400;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--warm-line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15.5px;
  color: var(--warm-dark);
  background: var(--rose-bg);
  transition: border-color 0.18s ease, background 0.18s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--coral-deep);
  background: white;
}
.contact-form textarea { resize: vertical; min-height: 96px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-row label { margin-bottom: 18px; }
.form-foot {
  margin: 14px 0 0;
  text-align: center;
  font-size: 13.5px;
  color: var(--warm-muted);
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
}

/* ===========================================================
   FOOTER
=========================================================== */
.footer {
  background: var(--warm-dark);
  color: rgba(255, 251, 247, 0.7);
  padding: 56px 0 40px;
}
.footer-inner { text-align: center; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 19px;
  color: var(--cream);
  margin-bottom: 12px;
}
.footer-logo { width: 28px; height: 28px; border-radius: 6px; }
.footer-tag {
  margin: 0 0 8px;
  font-style: italic;
  font-family: 'Fraunces', serif;
  color: var(--peach);
  font-size: 16px;
}
.footer-meta {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 251, 247, 0.5);
}

/* ===========================================================
   THANKS PAGE
=========================================================== */
.thanks-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}
.thanks-card {
  text-align: center;
  max-width: 520px;
}
.thanks-card img {
  width: 180px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 16px 32px rgba(217, 105, 94, 0.2));
}
.thanks-card h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.thanks-card h1 em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--coral-deep);
}
.thanks-card p {
  font-size: 18px;
  color: var(--warm-muted);
  margin-bottom: 32px;
  line-height: 1.55;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
