/* ================================================
   Pietas Quest — Plain Global CSS
   Aesthetic source: pietasquest.app screenshots
   vercelCacheBust: 20260328-1700
   ================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ========== CSS Custom Properties ========== */
:root {
  /* Page & card backgrounds */
  --parchment:         #F5F2EC;   /* very light warm cream — body bg  */
  --parchment-card:    #EDE8DC;   /* warm taupe — all card backgrounds */
  --parchment-deep:    #E6DFD0;   /* slightly darker taupe — alternate sections */

  /* Navy scale */
  --navy-50:   #EEF2F6;
  --navy-100:  #D4DCE6;
  --navy-200:  #AEBCCE;
  --navy-300:  #8799B0;
  --navy-400:  #607892;
  --navy-500:  #3F5C78;
  --navy-600:  #2D4560;
  --navy-700:  #1F3048;
  --navy-800:  #162338;
  --navy-900:  #1C2F4A;   /* primary text */
  --navy-950:  #0F1F33;   /* darkest — used for CTA / footer */

  /* Antique brass / warm gold scale */
  --gold-100:  #F5EDD6;
  --gold-200:  #EDD9A0;
  --gold-300:  #DEC06A;
  --gold-400:  #CFA84E;
  --gold-500:  #B8902A;   /* primary brand gold */
  --gold-600:  #9A7620;
  --gold-700:  #7D5E18;
  --gold-800:  #604810;
  --gold-900:  #453408;

  /* Taupe scale */
  --taupe-50:  #FDFCFB;
  --taupe-100: #F5F2EC;
  --taupe-200: #EDE8DC;
  --taupe-300: #E0D8C8;
  --taupe-400: #D0C6B0;
  --taupe-500: #BDB09A;
  --taupe-600: #A89882;
  --taupe-700: #8C7E6A;
  --taupe-800: #706456;
  --taupe-900: #564C42;

  /* Burgundy — primary CTA button (as seen in pietasquest.app) */
  --burgundy:        #7B2020;
  --burgundy-dark:   #5F1818;
  --burgundy-light:  #9A2828;

  /* Semantic shadows */
  --shadow-card:       0 1px 3px rgba(28,47,74,0.07), 0 2px 8px rgba(28,47,74,0.05);
  --shadow-card-hover: 0 4px 16px rgba(28,47,74,0.11), 0 2px 8px rgba(28,47,74,0.07);
  --shadow-gold-sm:    0 2px 8px rgba(184,144,42,0.22);
  --shadow-gold-lg:    0 8px 24px rgba(184,144,42,0.28);
  --shadow-gold-xl:    0 16px 40px rgba(184,144,42,0.22);
  --shadow-column:     4px 0 16px -4px rgba(15,31,51,0.12),
                      -4px 0 16px -4px rgba(15,31,51,0.06);
}

/* ---------- Dark Theme ---------- */
.dark {
  --parchment:      var(--navy-950);
  --parchment-card: #1A2C45;
  --navy-900:       #EDE8DC;
  --taupe-700:      #BDB09A;
}

/* ========== Reset & Base ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--parchment);
  color: var(--navy-900);
  font-family: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'EB Garamond', Georgia, 'Times New Roman', serif;
  line-height: 1.15;
}

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

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

/* ========== Animations ========== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

@keyframes gold-pulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(184,144,42,0); }
  50%       { box-shadow: 0 0 0 6px rgba(184,144,42,0.18); }
}

.animate-float {
  animation: float 7s ease-in-out infinite;
}

/* ========== Ornamental Divider ========== */
.ornamental-divider {
  display: block;
  text-align: center;
  color: var(--gold-500);
  font-size: 0.75rem;
  letter-spacing: 0.6em;
  opacity: 0.55;
  margin: 0 auto;
  user-select: none;
}

/* ========== HERO ========== */
.hero {
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem 3rem;
  background-color: var(--parchment);
  position: relative;
  overflow: hidden;
}

/* Subtle warm glow at the top */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 50% at 50% 0%,
    rgba(184,144,42,0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.hero-logo {
  width: 7.5rem;
  height: 7.5rem;
  margin: 0 auto 2.5rem;
  animation: float 7s ease-in-out infinite;
  filter: drop-shadow(0 6px 14px rgba(28,47,74,0.14));
  position: relative;
  z-index: 1;
}

@media (min-width: 768px)  { .hero-logo { width: 9rem;   height: 9rem;   margin-bottom: 3rem; } }
@media (min-width: 1024px) { .hero-logo { width: 10.5rem; height: 10.5rem; } }

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

/* Thin gold rule beneath the title */
.hero-title::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--gold-500);
  margin: 1rem auto 0;
  opacity: 0.55;
}

.hero-title .accent {
  display: block;
  color: var(--navy-700);
}

@media (min-width: 768px) {
  .hero-title .accent { display: inline; }
}

.hero-subtitle {
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  color: var(--gold-500);
  letter-spacing: 0.1em;
  text-transform: none;
  font-weight: 400;
  margin: 1.75rem auto 3rem;
  max-width: 34rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.trust-signal {
  font-size: 0.8rem;
  color: var(--gold-500);
  letter-spacing: 0.05em;
  margin-top: 1.5rem;
  opacity: 0.8;
  font-weight: 500;
}

.tower-intro {
  text-align: center;
  font-size: 0.95rem;
  color: var(--navy-700);
  max-width: 32rem;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
  font-style: italic;
}

/* ========== Primary Button — Burgundy ========== */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.5rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: var(--burgundy);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 14px rgba(123,32,32,0.32);
  z-index: 1;
}

@media (min-width: 768px) {
  .btn-primary { padding: 1rem 3rem; font-size: 1rem; }
}

.btn-primary:hover {
  background-color: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123,32,32,0.42);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(123,32,32,0.3);
}

/* ========== Section Heading ========== */
.section-heading {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  text-align: center;
}

/* Thin gold accent beneath heading */
.section-heading::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 2px;
  background: var(--gold-500);
  margin: 0.75rem auto 0;
  opacity: 0.6;
}

@media (min-width: 768px) { .section-heading { margin-bottom: 3rem; } }

/* ========== Section label — ALL CAPS gold ========== */
.section-label {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.6rem;
}

/* ========== Inner container ========== */
.inner {
  max-width: 72rem;
  margin: 0 auto;
}

/* ========== WHAT IS PIETAS QUEST ========== */
.section-what {
  padding: 4.5rem 1.5rem;
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}

.section-what p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--navy-700);
  line-height: 1.85;
  font-weight: 400;
}

/* ========== TOWER OF SOULCRAFT ========== */
.section-tower {
  padding: 4.5rem 1.5rem;
  background-color: var(--parchment-deep);
  border-top:    1px solid rgba(184,144,42,0.18);
  border-bottom: 1px solid rgba(184,144,42,0.18);
  position: relative;
}

.section-tower .inner,
.section-why .inner {
  max-width: 72rem;
  margin: 0 auto;
}

.branch-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

@media (min-width: 640px)  { .branch-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .branch-grid { grid-template-columns: repeat(5, 1fr); gap: 1.25rem; } }

.branch-card {
  background-color: var(--parchment-card);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(184,144,42,0.13);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  text-align: center;
  overflow: hidden;
}

@media (min-width: 768px) { .branch-card { padding: 1.75rem 1.5rem; } }

.branch-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(184,144,42,0.28);
  transform: translateY(-4px);
}

.branch-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  background-color: rgba(184,144,42,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

@media (min-width: 768px) { .branch-icon { width: 3.5rem; height: 3.5rem; } }

.branch-card:hover .branch-icon {
  background-color: rgba(184,144,42,0.18);
}

.branch-icon svg {
  color: var(--gold-500);
  width: 26px;
  height: 26px;
}

.branch-card h3 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 0.5rem;
}

.branch-card p {
  font-size: 0.875rem;
  color: var(--taupe-700);
  line-height: 1.6;
}

/* ========== DAILY PRACTICE ========== */
.section-practice {
  padding: 4.5rem 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

.practice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) { .practice-grid { grid-template-columns: 1fr 1fr; } }

.practice-text { order: 2; }
.practice-icon-wrap { order: 1; text-align: center; }

@media (min-width: 768px) {
  .practice-text     { order: 1; }
  .practice-icon-wrap { order: 2; }
}

.practice-text h3 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 1.25rem;
}

.practice-text p {
  font-size: 1.05rem;
  color: var(--navy-700);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Blockquote style — left gold border (matches app) */
.practice-quote {
  border-left: 3px solid var(--gold-500);
  padding: 0.85rem 1.25rem;
  background-color: var(--parchment-card);
  border-radius: 0 8px 8px 0;
}

.practice-quote p {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy-700);
  margin: 0;
  line-height: 1.6;
}

.examination-icon {
  width: 8rem;
  height: 8rem;
  margin: 0 auto;
  background-color: var(--parchment-card);
  border-radius: 50%;
  border: 1.5px solid rgba(184,144,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold-sm);
}

@media (min-width: 768px)  { .examination-icon { width: 10rem; height: 10rem; } }
@media (min-width: 1024px) { .examination-icon { width: 12rem; height: 12rem; } }

.examination-icon span {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-500);
}

.practice-full {
  grid-column: 1 / -1;
  padding-top: 3rem;
  border-top: 1px solid rgba(184,144,42,0.18);
  text-align: center;
}

.practice-full h3 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 1rem;
}

.practice-full p {
  font-size: 1.05rem;
  color: var(--navy-700);
  line-height: 1.8;
  max-width: 44rem;
  margin: 0 auto;
}

/* ========== WHY IT WORKS ========== */
.section-why {
  padding: 4.5rem 1.5rem;
  background-color: var(--parchment-deep);
  border-top:    1px solid rgba(184,144,42,0.18);
  border-bottom: 1px solid rgba(184,144,42,0.18);
}

.lever-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

@media (min-width: 768px) { .lever-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }

.lever-card {
  background-color: var(--parchment-card);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(184,144,42,0.13);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  text-align: center;
}

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

.lever-number {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-500);
  margin-bottom: 1rem;
}

.lever-card h3 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 0.75rem;
}

.lever-card p {
  font-size: 0.9rem;
  color: var(--taupe-700);
  line-height: 1.65;
}

/* ========== TIMELESS SOURCES ========== */
.section-sources {
  padding: 4.5rem 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.source-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

@media (min-width: 640px)  { .source-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .source-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }

/* All source cards: warm taupe, consistent with the rest of the app */
.source-card {
  background-color: var(--parchment-card);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(184,144,42,0.13);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

/* Featured card — Project Pietas — gold top accent */
.source-card--light {
  border-top: 3px solid var(--gold-500);
}

.source-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.25rem;
  background-color: rgba(184,144,42,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.source-card:hover .source-icon {
  background-color: rgba(184,144,42,0.18);
}

.source-icon-letter {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-500);
}

.source-card h3 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 0.6rem;
}

.source-card p {
  font-size: 0.875rem;
  color: var(--taupe-700);
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.source-link {
  color: var(--gold-500);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(184,144,42,0.3);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.source-link:hover {
  color: var(--gold-400);
  border-color: var(--gold-400);
}

/* ========== CTA ========== */
.section-cta {
  padding: 4.5rem 1.5rem;
  background-color: var(--navy-950);
  text-align: center;
  border-top: 2px solid var(--gold-500);
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at 50% 0%,
    rgba(184,144,42,0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.section-cta h2 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  position: relative;
}

.section-cta h2::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--gold-500);
  margin: 0.75rem auto 0;
  opacity: 0.5;
}

.section-cta p {
  font-size: 1rem;
  color: rgba(245,242,236,0.65);
  margin: 0 auto 2.5rem;
  max-width: 30rem;
  line-height: 1.7;
  position: relative;
}

/* ========== FOOTER ========== */
.site-footer {
  background-color: var(--navy-950);
  padding: 3rem 2rem 2.5rem;
  border-top: 1px solid rgba(184,144,42,0.25);
  text-align: center;
}

.site-footer .inner {
  max-width: 64rem;
  margin: 0 auto;
}

.footer-logo {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.5rem;
  opacity: 0.45;
  filter: brightness(0) invert(1);
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand { margin-bottom: 1.5rem; }

.footer-brand-name {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: 0.35rem;
  letter-spacing: 0.04em;
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(245,242,236,0.4);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  font-size: 0.82rem;
}

.footer-links a {
  color: rgba(184,144,42,0.65);
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--gold-400); }

/* ================================================
   Utility Classes — Project Pietas Brand
   ================================================ */

/* ---------- Gold Trim ---------- */
.gold-trim {
  border: 1px solid rgba(184,144,42,0.35);
  border-radius: 8px;
}

/* ---------- Classical Card ---------- */
.classical-card {
  background-color: var(--parchment-card);
  border: 1px solid rgba(184,144,42,0.13);
  border-top: 3px solid var(--gold-500);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 1.75rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

/* ---------- Gold Glow ---------- */
.gold-glow    { box-shadow: var(--shadow-gold-lg); }
.gold-glow--xl { box-shadow: var(--shadow-gold-xl); }

/* ---------- Column Shadow ---------- */
.column-shadow { box-shadow: var(--shadow-column); }

/* ---------- Tower Container ---------- */
.tower-container {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.tower-container::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(184,144,42,0.25), transparent);
  transform: translateX(-50%);
  pointer-events: none;
}

/* ---------- Tower Branch Card States ---------- */

/* Complete */
.branch-card--complete {
  border-color: rgba(184,144,42,0.32);
}
.branch-card--complete .branch-icon {
  background-color: rgba(184,144,42,0.15);
  border: 1.5px solid rgba(184,144,42,0.35);
}
.branch-card--complete::after {
  content: '✓';
  position: absolute; top: 0.6rem; right: 0.6rem;
  font-size: 0.65rem; font-weight: 700;
  color: var(--gold-500);
  background: var(--gold-100);
  border: 1px solid rgba(184,144,42,0.3);
  border-radius: 50%;
  width: 1.2rem; height: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* Active */
.branch-card--active {
  border-color: rgba(184,144,42,0.45);
  box-shadow: var(--shadow-gold-sm);
  transform: translateY(-3px);
}
.branch-card--active .branch-icon {
  background-color: rgba(184,144,42,0.18);
  border: 1.5px solid var(--gold-500);
  animation: gold-pulse 3s ease-in-out infinite;
}
.branch-card--active::after {
  content: '▲';
  position: absolute; top: 0.6rem; right: 0.6rem;
  font-size: 0.55rem;
  color: var(--gold-500);
  background: var(--gold-100);
  border: 1px solid rgba(184,144,42,0.3);
  border-radius: 50%;
  width: 1.2rem; height: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* Locked */
.branch-card--locked {
  opacity: 0.5;
  filter: grayscale(0.45);
  cursor: not-allowed;
}
.branch-card--locked:hover {
  transform: none;
  box-shadow: var(--shadow-card);
  border-color: rgba(184,144,42,0.13);
}
.branch-card--locked::after {
  content: '🔒';
  position: absolute; top: 0.6rem; right: 0.6rem;
  font-size: 0.75rem;
  line-height: 1.2rem;
  width: 1.2rem; height: 1.2rem;
  text-align: center;
}

/* ---------- Gold Pulse Animation ---------- */
@keyframes gold-pulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(184,144,42,0); }
  50%       { box-shadow: 0 0 0 6px rgba(184,144,42,0.18); }
}

/* ---------- Parchment Texture (CSS-only fallback) ---------- */
.parchment-texture {
  position: relative;
}
.parchment-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg, transparent, transparent 3px,
      rgba(184,144,42,0.02) 3px, rgba(184,144,42,0.02) 4px
    ),
    repeating-linear-gradient(
      90deg, transparent, transparent 5px,
      rgba(184,144,42,0.015) 5px, rgba(184,144,42,0.015) 6px
    );
  pointer-events: none;
  opacity: 0.7;
}

/* ---------- Laurel Wreath Container ---------- */
.laurel-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: float 7s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(28,47,74,0.1));
}
