/* ============================================
   Angel Will Agents — Styles
   Calm, trustworthy, angelic. Cream + deep navy.
   ============================================ */

:root {
  /* AngelAi brand palette — orange family */
  --bg: #FFF8F1;             /* warm cream */
  --bg-card: #FFFFFF;
  --ink: #1A1208;            /* deep warm black */
  --ink-soft: #5C4A36;       /* warm grey-brown */
  --accent: #FF6A13;         /* AngelAi primary orange */
  --accent-deep: #FF541C;    /* deeper orange for CTAs */
  --accent-soft: #FFE9D6;    /* peach tint */
  --gold: #FFB347;           /* warm gold accent */
  --peach: #FBC99C;
  --border: #F4E2CE;
  --shadow: 0 10px 40px rgba(255, 106, 19, 0.08);
  --shadow-lift: 0 20px 60px rgba(255, 84, 28, 0.15);
  --radius: 16px;
  --radius-lg: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.5em; }
h3 { font-size: 1.5rem; margin-bottom: 0.6em; }
h4 { font-size: 1.25rem; }

p { color: var(--ink-soft); }
a { color: var(--accent); text-decoration: none; }
a:hover { opacity: 0.8; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.kicker {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--accent-deep);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ====== NAV ====== */
.nav {
  position: sticky;
  top: 0;
  background: rgba(251, 248, 243, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}
.brand-mark {
  color: var(--accent);
  font-size: 1.4rem;
  filter: drop-shadow(0 2px 4px rgba(255, 106, 19, 0.3));
}
.brand-accent { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--ink-soft); font-size: 0.95rem; font-weight: 500; }
.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: white !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(255, 106, 19, 0.3);
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); opacity: 1 !important; box-shadow: 0 8px 20px rgba(255, 84, 28, 0.4); }
@media (max-width: 720px) {
  .nav-links a:not(.nav-cta):not(.lang-toggle) { display: none; }
  .nav-cta { padding: 8px 14px; font-size: 0.85rem; }
  .nav-inner { padding: 12px 16px; gap: 8px; }
  .nav-links { gap: 8px; }
  .brand { font-size: 1.2rem; }
  .lang-toggle { padding: 5px 9px; font-size: 0.72rem; }
}
@media (max-width: 380px) {
  .nav-cta { padding: 7px 12px; font-size: 0.78rem; }
  .nav-cta::after { content: " →"; }
}

/* ====== HERO ====== */
.hero {
  padding: 80px 24px 60px;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(255, 106, 19, 0.12), transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, #FFEFE0 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 179, 71, 0.1), transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(255, 84, 28, 0.08), transparent 40%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }

/* Big free banner */
.free-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: white;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(255, 106, 19, 0.35);
  text-transform: uppercase;
}
.free-banner-star { font-size: 1.2rem; }
.hero-inner { max-width: 880px; margin: 0 auto; }
.badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 { margin-bottom: 24px; }
.hero-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.hero-sub {
  font-size: 1.2rem;
  max-width: 640px;
  margin: 0 auto 40px;
  color: var(--ink-soft);
}
.hero-cta {
  display: flex; gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex; gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* ====== BUTTONS ====== */
.btn-primary, .btn-ghost {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: white;
  box-shadow: 0 6px 20px rgba(255, 106, 19, 0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 84, 28, 0.4);
}
.btn-primary.big { padding: 18px 36px; font-size: 1.1rem; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--bg-card); }
.btn-add {
  background: var(--accent-soft);
  color: var(--accent-deep);
  border: 1px dashed var(--accent);
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 16px;
  font-family: inherit;
}
.btn-add:hover {
  background: var(--accent);
  color: white;
  border-style: solid;
}

/* ====== BUILDER ====== */
.builder-section {
  padding: 60px 24px;
}
.builder-shell {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  padding: 48px;
  border: 1px solid var(--border);
}
.builder-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: white;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(255, 106, 19, 0.3);
}
.builder-header { margin-bottom: 32px; text-align: center; }
.builder-header h2 { font-size: 2rem; }
.builder-header p { margin-top: 12px; }

.progress {
  background: var(--accent-soft);
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px;
}
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--accent), var(--accent-deep));
  width: 14%;
  transition: width 0.4s ease;
  box-shadow: 0 0 12px rgba(255, 106, 19, 0.4);
}
.step-label {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

.builder-form .step { display: none; }
.builder-form .step.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.step h3 { margin-bottom: 8px; color: var(--ink); }
.step-help { color: var(--ink-soft); margin-bottom: 24px; font-size: 0.95rem; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.grid-2 .full { grid-column: 1 / -1; }
@media (max-width: 600px) {
  .grid-2 { grid-template-columns: 1fr; }
}

.builder-form label {
  display: block;
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 16px;
}
.builder-form input,
.builder-form select,
.builder-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--ink);
  margin-top: 6px;
  transition: border 0.2s, box-shadow 0.2s;
}
.builder-form input:focus,
.builder-form select:focus,
.builder-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 106, 19, 0.15);
}
.mt-24 { margin-top: 24px; }

.bequest-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  padding: 16px;
  background: var(--bg);
  border-radius: 10px;
  margin-bottom: 12px;
  align-items: end;
}
.bequest-row label { margin-bottom: 0; font-size: 0.75rem; }
.bequest-row .remove-bequest {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--ink-soft);
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
}
.bequest-row .remove-bequest:hover { color: #c0392b; border-color: #c0392b; }
@media (max-width: 600px) {
  .bequest-row { grid-template-columns: 1fr; }
}

.review-box {
  background: var(--bg);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
  max-height: 400px;
  overflow-y: auto;
}
.review-box dt {
  font-weight: 600;
  color: var(--ink);
  margin-top: 12px;
}
.review-box dt:first-child { margin-top: 0; }
.review-box dd {
  color: var(--ink-soft);
  margin-left: 0;
}

.legal-note {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.6;
}

.step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.btn-clear {
  font-size: 0.85rem;
  opacity: 0.75;
  margin: 0 auto;
}
.btn-clear:hover { opacity: 1; color: var(--accent-deep); }
@media (max-width: 520px) {
  .step-nav { flex-direction: column-reverse; gap: 8px; }
  .step-nav button { width: 100%; }
  .btn-clear { order: 99; font-size: 0.8rem; }
}

/* ====== HOW IT WORKS ====== */
.how {
  padding: 100px 24px;
  text-align: center;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.how-card {
  background: var(--bg-card);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: left;
}
.how-num {
  font-family: 'Cormorant Garamond', serif;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}
@media (max-width: 800px) {
  .how-grid { grid-template-columns: 1fr; }
}

/* ====== AGENTS ====== */
.agents {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--bg) 0%, #FFEFE0 100%);
  text-align: center;
}
.agents .lead { max-width: 640px; margin: 16px auto 50px; font-size: 1.1rem; }
.agent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.agent-card {
  background: var(--bg-card);
  padding: 28px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.agent-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.agent-emoji { font-size: 2.5rem; margin-bottom: 12px; }
.agent-card h4 { margin-bottom: 8px; }
.agent-card p { font-size: 0.85rem; color: var(--ink-soft); }
@media (max-width: 900px) { .agent-grid { grid-template-columns: repeat(2, 1fr); } }

/* ====== FOR WHO ====== */
.for-who {
  padding: 100px 24px;
  text-align: center;
}
.for-list {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--ink);
  margin: 32px 0 40px;
}
.for-list span:nth-child(even) { color: var(--accent); }
.for-text { max-width: 640px; margin: 0 auto; font-size: 1.1rem; }

/* ====== PROMISE ====== */
.promise {
  padding: 100px 24px;
  background: linear-gradient(135deg, #1A1208 0%, #2A1810 100%);
  color: white;
  text-align: center;
}
.promise h2, .promise .kicker { color: white; }
.promise .kicker { color: var(--gold); }
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
  text-align: left;
}
.promise-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.promise-card h4 {
  color: white;
  margin-bottom: 8px;
}
.promise-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}
@media (max-width: 800px) { .promise-grid { grid-template-columns: 1fr; } }

/* ====== FAQ ====== */
.faq {
  padding: 100px 24px;
}
.faq details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 12px;
  cursor: pointer;
}
.faq summary {
  font-weight: 600;
  color: var(--ink);
  font-size: 1.05rem;
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 300;
}
.faq details[open] summary::after { content: '−'; }
.faq details p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ====== FINAL CTA ====== */
.final-cta {
  padding: 120px 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--accent-soft) 100%);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '✶';
  position: absolute;
  font-size: 12rem;
  color: rgba(255, 106, 19, 0.08);
  top: 20px;
  right: -20px;
  font-family: 'Cormorant Garamond', serif;
}
.final-cta h2 { margin-bottom: 16px; }
.final-cta p { font-size: 1.2rem; margin-bottom: 40px; }

/* ====== FOOTER ====== */
.footer {
  background: var(--ink);
  color: white;
  padding: 60px 24px 40px;
  text-align: center;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-tag {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  font-size: 1rem;
}
.footer-fine {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  max-width: 640px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.footer-copy {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

/* ====== WILL PREVIEW MODAL ====== */
#willPreviewModal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: stretch;
  justify-content: center;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.will-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 8, 0.7);
  backdrop-filter: blur(8px);
}

.will-modal-shell {
  position: relative;
  background: var(--bg);
  width: 100%;
  max-width: 900px;
  margin: 20px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.will-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: white;
}
.will-modal-title {
  display: flex;
  align-items: center;
  gap: 16px;
}
.will-modal-icon {
  font-size: 2rem;
  color: white;
}
.will-modal-title strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
}
.will-modal-sub {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-top: 2px;
}
.will-modal-close {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.will-modal-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

.will-modal-actions {
  padding: 16px 28px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.will-modal-preview {
  flex: 1;
  overflow-y: auto;
  background: #E8E2D5;
  padding: 30px 20px;
}

.will-doc-styled {
  background: white;
  max-width: 7.5in;
  margin: 0 auto;
  padding: 60px 50px;
  font-family: 'Times New Roman', Times, serif;
  font-size: 12pt;
  line-height: 1.6;
  color: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}
.will-doc-styled h1 {
  font-family: 'Times New Roman', serif;
  text-align: center;
  font-size: 22pt;
  margin: 0 0 6pt;
  letter-spacing: 0.05em;
  color: #000;
}
.will-doc-styled h2 {
  font-family: 'Times New Roman', serif;
  text-align: center;
  font-size: 14pt;
  font-weight: normal;
  font-style: italic;
  margin: 0 0 32pt;
  color: #000;
}
.will-doc-styled h3 {
  font-family: 'Times New Roman', serif;
  font-size: 13pt;
  margin: 24pt 0 8pt;
  text-decoration: underline;
  color: #000;
}
.will-doc-styled p {
  margin: 8pt 0;
  text-align: justify;
  color: #000;
}
.will-doc-styled .sig-line {
  display: inline-block;
  border-bottom: 1px solid #000;
  width: 3in;
  margin: 0 8pt;
}
.will-doc-styled .signature-block { margin-top: 50pt; }
.will-doc-styled .witness-block {
  margin-top: 40pt;
  border-top: 2px solid #000;
  padding-top: 20pt;
}
.will-doc-styled .footer-note {
  margin-top: 40pt;
  font-size: 9pt;
  color: #555;
  text-align: center;
  font-style: italic;
}

@media (max-width: 720px) {
  .will-modal-shell { margin: 0; border-radius: 0; }
  .will-doc-styled {
    padding: 30px 24px;
    font-size: 11pt;
  }
  .will-modal-header { padding: 14px 18px; }
  .will-modal-title strong { font-size: 1.2rem; }
  .will-modal-actions { padding: 12px 16px; }
  .will-modal-actions .btn-primary,
  .will-modal-actions .btn-ghost {
    flex: 1 1 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
  }
}

/* ====== EMAIL FORM (inside modal) ====== */
.email-form {
  background: var(--accent-soft);
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.email-form input[type="email"] {
  flex: 1;
  min-width: 240px;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: white;
  color: var(--ink);
  transition: border 0.2s, box-shadow 0.2s;
}
.email-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 106, 19, 0.15);
}
.email-form .btn-primary {
  padding: 12px 22px;
}
.email-form-note {
  flex: 1 1 100%;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ====== LANGUAGE TOGGLE ====== */
.lang-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lang-toggle:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
}
.lang-toggle .lang-sep { color: var(--border); }
.lang-toggle.lang-active-en .lang-en { color: var(--accent-deep); }
.lang-toggle.lang-active-es .lang-es { color: var(--accent-deep); }

/* ====== HERO DISCLAIMER (UPL safe-harbor) ====== */
.hero-disclaimer {
  max-width: 720px;
  margin: 28px auto 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--ink-soft);
  opacity: 0.75;
  padding: 0 16px;
}

/* ====== FOOTER LINKS ROW ====== */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 22px 0 18px;
  font-size: 0.9rem;
}
.footer-links a {
  color: var(--ink-soft);
  font-weight: 500;
}
.footer-links a:hover { color: var(--accent-deep); }

.footer-fine {
  max-width: 760px;
  margin: 0 auto 16px;
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--ink-soft);
  opacity: 0.85;
  text-align: center;
}

/* ====== REMINDER MODAL ====== */
.reminder-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 18, 8, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.2s ease-out;
}
.reminder-modal-overlay.open { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.reminder-modal {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 36px 32px 28px;
  box-shadow: var(--shadow-lift);
  position: relative;
  animation: rise 0.3s ease-out;
}
@keyframes rise { from { transform: translateY(12px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.reminder-modal h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  margin-bottom: 12px;
  color: var(--ink);
}
.reminder-modal p { margin-bottom: 16px; }

.reminder-modal label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 12px 0 6px;
}
.reminder-modal input[type="email"],
.reminder-modal input[type="tel"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
}
.reminder-modal input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 106, 19, 0.15);
}
.reminder-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 400;
}
.reminder-checkbox input { margin-top: 4px; }

.reminder-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
.reminder-skip {
  background: none;
  border: none;
  color: var(--ink-soft);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 6px;
}
.reminder-skip:hover { color: var(--accent-deep); }

.reminder-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--ink-soft);
  cursor: pointer;
  line-height: 1;
}
.reminder-close:hover { color: var(--accent-deep); }

.reminder-success {
  text-align: center;
  padding: 12px 0;
}
.reminder-success .check {
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  font-size: 28px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  border-radius: 50%;
  margin-bottom: 14px;
}
