/* ===== TOKENS ===== */
:root {
  --nude:          #F0DED0;
  --nude-light:    #F7EDE5;
  --nude-dark:     #E4C9B4;
  --espresso:      #3D1A0B;
  --espresso-mid:  #5C2E18;
  --caramel:       #C4956A;
  --caramel-light: #D9AE8A;
  --cream:         #FDF6F0;
  --text:          #3D1A0B;
  --text-muted:    #7A5C4A;
  --radius:        16px;
  --radius-lg:     28px;
  --nav-h:         84px;
  --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--nude-light); color: var(--text);
  line-height: 1.65; overflow-x: hidden;
  animation: pageFadeIn 0.45s ease both;
}
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
body.fade-out {
  animation: pageFadeOut 0.3s ease forwards;
  pointer-events: none;
}
@keyframes pageFadeOut {
  from { opacity: 1; transform: none; }
  to   { opacity: 0; transform: translateY(-8px); }
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'DM Serif Display', Georgia, serif; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
em { font-style: italic; color: var(--caramel); }
p  { color: var(--text-muted); }

.eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--caramel); margin-bottom: 0.75rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 100px;
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  border: none; transition: var(--transition); white-space: nowrap; font-family: inherit;
}
.btn-primary { background: var(--espresso); color: var(--cream); }
.btn-primary:hover { background: var(--espresso-mid); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(61,26,11,0.22); }
.btn-ghost { background: transparent; color: var(--espresso); border: 2px solid var(--espresso); }
.btn-ghost:hover { background: var(--espresso); color: var(--cream); transform: translateY(-2px); }
.btn-nav { background: var(--espresso); color: var(--cream); padding: 0.6rem 1.4rem; font-size: 0.85rem; }
.btn-nav:hover { background: var(--espresso-mid); }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAV ===== */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  background: rgba(247,237,229,0.82);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(196,149,106,0.15);
  transition: var(--transition);
}
#nav.scrolled { background: rgba(247,237,229,0.97); box-shadow: 0 2px 24px rgba(61,26,11,0.08); }

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo-img { height: 60px; width: auto; object-fit: contain; }
.nav-logo-fallback { display: none; align-items: center; gap: 0.6rem; }
.logo-mark { font-family: 'DM Serif Display', serif; font-size: 1.5rem; color: var(--espresso); line-height: 1; }
.logo-text { font-weight: 700; font-size: 1rem; letter-spacing: 0.02em; color: var(--espresso); }

.nav-links { display: flex; gap: 2.5rem; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--espresso); }
.nav-toggle { display: none; }

/* ===== HERO ===== */
#hero {
  min-height: 100svh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
  padding: calc(var(--nav-h) + 4rem) 5vw 6rem;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(196,149,106,0.12) 0%, transparent 70%), var(--nude-light);
}
.hero-content { max-width: 600px; }
.hero-content h1 { margin-bottom: 1.25rem; }
.hero-sub { font-size: 1.05rem; max-width: 480px; margin-bottom: 2.5rem; color: var(--text-muted); }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; height: 420px; overflow: visible; }
.hero-badge { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; }
.badge-ring {
  position: absolute; width: 280px; height: 280px;
  border-radius: 50%; border: 2px dashed rgba(196,149,106,0.4);
  animation: spin 30s linear infinite;
}
.badge-inner {
  width: 200px; height: 200px; border-radius: 50%;
  background: var(--espresso);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.4rem;
  box-shadow: 0 24px 64px rgba(61,26,11,0.28); overflow: hidden;
}
.badge-logo-img { width: 80%; height: 80%; object-fit: contain; border-radius: 0; }
.badge-logo-fallback {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.4rem;
}
.badge-logo { font-family: 'DM Serif Display', serif; font-size: 2rem; color: var(--nude-light); letter-spacing: 0.05em; }
.badge-inner p { color: var(--caramel-light); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; text-align: center; line-height: 1.5; }

.hero-blob { position: absolute; border-radius: 50%; filter: blur(48px); opacity: 0.5; }
.blob-1 { width: 300px; height: 300px; background: var(--caramel); top: 20%; right: 10%; animation: float 8s ease-in-out infinite; }
.blob-2 { width: 180px; height: 180px; background: var(--nude-dark); bottom: 10%; left: 5%; animation: float 10s ease-in-out infinite reverse; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-24px); } }
@keyframes spin  { to { transform: rotate(360deg); } }

/* ===== TICKER ===== */
.ticker-wrap { background: var(--espresso); overflow: hidden; padding: 1rem 0; }
.ticker { display: inline-flex; gap: 2.5rem; white-space: nowrap; animation: ticker 22s linear infinite; }
.ticker span { font-size: 0.85rem; font-weight: 500; color: var(--caramel-light); letter-spacing: 0.05em; text-transform: uppercase; }
.ticker .dot { color: var(--caramel); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTION COMMON ===== */
section { padding: 7rem 5vw; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { margin-top: 0.25rem; }
.section-cta { text-align: center; margin-top: 3rem; }

/* ===== PAGE HERO ===== */
.page-hero {
  min-height: 36vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 4rem) 5vw 4rem;
  background: radial-gradient(ellipse 70% 60% at 50% 60%, rgba(196,149,106,0.12) 0%, transparent 70%), var(--nude-light);
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero-sub { font-size: 1.05rem; max-width: 520px; color: var(--text-muted); }

/* ===== STATS ===== */
#stats { background: var(--espresso); padding: 4rem 5vw 5rem; margin-top: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat { background: none; }
.stat-num { display: block; font-family: 'DM Serif Display', serif; font-size: clamp(2.5rem, 4vw, 3.8rem); color: var(--caramel); line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.85rem; font-weight: 600; color: var(--caramel); letter-spacing: 0.05em; }

/* ===== SERVICES GRID ===== */
#services-teaser { background: var(--cream); padding-bottom: 3rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  position: relative; background: var(--nude-light);
  border: 1px solid rgba(196,149,106,0.2); border-radius: var(--radius-lg);
  padding: 2.5rem; transition: var(--transition); overflow: hidden;
}
.service-card::before {
  content: attr(data-index); position: absolute; top: 1.5rem; right: 2rem;
  font-size: 3.5rem; font-family: 'DM Serif Display', serif;
  color: rgba(196,149,106,0.12); line-height: 1;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(61,26,11,0.1); border-color: var(--caramel); }
.service-card.featured { background: var(--espresso); border-color: var(--espresso); color: var(--cream); }
.service-card.featured p, .service-card.featured .service-features li { color: rgba(240,222,208,0.75); }
.service-card.featured h3 { color: var(--cream); }
.service-card.featured::before { color: rgba(196,149,106,0.08); }
.service-card.featured .service-link, .service-card.featured .service-icon { color: var(--caramel-light); }
.featured-tag { display: inline-block; background: var(--caramel); color: var(--cream); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.85rem; border-radius: 100px; margin-bottom: 1rem; }
.service-icon { width: 52px; height: 52px; color: var(--caramel); margin-bottom: 1.5rem; }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { margin-bottom: 0.85rem; }
.service-card > p { font-size: 0.9rem; margin-bottom: 1.5rem; }
.service-features { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2rem; }
.service-features li { font-size: 0.85rem; color: var(--text-muted); padding-left: 1.2rem; position: relative; }
.service-features li::before { content: '→'; position: absolute; left: 0; color: var(--caramel); font-size: 0.75rem; }
.service-link { font-size: 0.85rem; font-weight: 600; color: var(--espresso); transition: 0.2s; }
.service-link:hover { text-decoration: underline; }

/* ===== SERVICE DETAIL PAGES ===== */
.service-detail { padding: 6rem 5vw; background: var(--nude-light); }
.service-detail.alt-bg { background: var(--cream); }
.service-detail-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: 1100px; margin: 0 auto; }
.service-detail-inner.reverse { direction: rtl; }
.service-detail-inner.reverse > * { direction: ltr; }
.service-detail-text h2 { margin-bottom: 1rem; }
.service-detail-text p { margin-bottom: 1rem; font-size: 0.95rem; }
.detail-features { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0 2rem; }
.detail-features li { display: flex; align-items: center; gap: 0.65rem; font-size: 0.9rem; color: var(--text-muted); }
.detail-features li svg { width: 20px; height: 20px; color: var(--caramel); flex-shrink: 0; }
.service-detail-visual { display: flex; align-items: center; justify-content: center; }
.service-visual-card {
  width: 280px; height: 280px; border-radius: 50%;
  background: var(--espresso); display: flex; align-items: center; justify-content: center;
  color: var(--caramel-light); box-shadow: 0 24px 64px rgba(61,26,11,0.2);
}
.service-visual-card svg { width: 120px; height: 120px; }

/* ===== PROCESS ===== */
#process { background: var(--cream); padding-top: 3rem; }
.process-steps {
  display: flex; align-items: flex-start; gap: 0;
  max-width: 1000px; margin: 0 auto;
}
.process-step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
.process-connector { flex: 0 0 40px; height: 2px; background: var(--caramel); opacity: 0.3; margin-top: 2.2rem; }
.step-number { font-family: 'DM Serif Display', serif; font-size: 2rem; color: var(--caramel); opacity: 0.5; line-height: 1; }
.step-content h4 { margin-bottom: 0.4rem; }
.step-content p { font-size: 0.85rem; }

/* ===== WORK GRID ===== */
#featured-work { background: var(--nude-light); }
#work-page { background: var(--nude-light); padding: 4rem 5vw 7rem; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.work-card { background: var(--cream); border: 1px solid rgba(196,149,106,0.15); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.work-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(61,26,11,0.1); }
.work-thumb { height: 200px; display: flex; align-items: center; justify-content: center; }
.work-thumb-inner { width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; }
.work-thumb-inner span { color: white; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.05em; }
.work-info { padding: 1.75rem; }
.work-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--caramel); display: block; margin-bottom: 0.6rem; }
.work-info h4 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.work-info p { font-size: 0.85rem; }
.work-visit-btn {
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin-top: 1rem; font-size: 0.82rem; font-weight: 600;
  color: var(--espresso); text-decoration: none;
  border-bottom: 1.5px solid var(--caramel);
  padding-bottom: 0.1rem;
  transition: color 0.2s, border-color 0.2s;
}
.work-visit-btn:hover { color: var(--caramel); }
.work-empty { grid-column: 1/-1; text-align: center; padding: 5rem 2rem; color: var(--text-muted); }
.loading-work { grid-column: 1/-1; display: flex; justify-content: center; padding: 5rem; }
.work-spinner { width: 36px; height: 36px; border: 3px solid rgba(196,149,106,0.2); border-top-color: var(--caramel); border-radius: 50%; animation: wspin 0.8s linear infinite; }
@keyframes wspin { to { transform: rotate(360deg); } }

/* Work page filters */
.work-filters { display: flex; gap: 0.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.filter-pill { padding: 0.5rem 1.4rem; border-radius: 100px; border: 1.5px solid rgba(196,149,106,0.3); background: none; font-size: 0.85rem; font-weight: 500; color: var(--text-muted); cursor: pointer; font-family: inherit; transition: var(--transition); }
.filter-pill:hover { border-color: var(--caramel); color: var(--espresso); }
.filter-pill.active { background: var(--espresso); border-color: var(--espresso); color: var(--cream); }

/* ===== REVIEWS ===== */
#reviews { background: var(--cream); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 4rem; }
.review-card { background: var(--nude-light); border: 1px solid rgba(196,149,106,0.18); border-radius: var(--radius); padding: 1.75rem; }
.review-stars { font-size: 1.2rem; color: var(--caramel); margin-bottom: 0.85rem; letter-spacing: 0.05em; }
.review-comment { font-size: 0.92rem; color: var(--text-muted); font-style: italic; margin-bottom: 1rem; line-height: 1.7; }
.review-name { font-size: 0.82rem; font-weight: 600; color: var(--espresso); }
.reviews-empty { grid-column: 1/-1; text-align: center; padding: 3rem; color: var(--text-muted); font-size: 0.9rem; }

/* Star Input */
.review-form-wrap { background: var(--nude-light); border: 1px solid rgba(196,149,106,0.2); border-radius: var(--radius-lg); padding: 2.5rem; max-width: 680px; margin: 0 auto; }
.review-form-wrap h3 { font-size: 1.4rem; margin-bottom: 0.4rem; }
.review-form-wrap > p { margin-bottom: 1.75rem; font-size: 0.9rem; }
.review-form { display: flex; flex-direction: column; gap: 1.25rem; }
.star-input { display: flex; gap: 0.3rem; cursor: pointer; }
.star-input span { font-size: 1.6rem; color: rgba(196,149,106,0.3); transition: color 0.15s; line-height: 1; }
.star-input span.active { color: var(--caramel); }

/* ===== CONTACT PAGE ===== */
#contact-page { background: var(--nude-light); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; max-width: 1100px; margin: 0 auto; }
.contact-text h2 { margin-bottom: 1rem; }
.contact-text > p { margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
.contact-item:hover { color: var(--espresso); }
.contact-item svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--caramel); }

/* Contact/Review Form shared */
.contact-form { background: var(--cream); border: 1px solid rgba(196,149,106,0.2); border-radius: var(--radius-lg); padding: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--espresso); letter-spacing: 0.03em; }
.form-group input, .form-group select, .form-group textarea {
  background: var(--nude-light); border: 1.5px solid rgba(196,149,106,0.25);
  border-radius: 10px; padding: 0.8rem 1rem; font-size: 0.9rem; color: var(--espresso);
  font-family: inherit; transition: border-color 0.2s, box-shadow 0.2s; outline: none; resize: vertical;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--caramel-light); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--caramel); box-shadow: 0 0 0 3px rgba(196,149,106,0.15);
}
.form-note { font-size: 0.78rem; text-align: center; color: var(--caramel); }

/* ===== CTA BANNER ===== */
#cta-banner { background: var(--espresso); text-align: center; padding: 7rem 5vw; }
.cta-inner h2 { color: var(--cream); margin-bottom: 1rem; }
.cta-inner p  { color: rgba(240,222,208,0.65); margin-bottom: 2.5rem; font-size: 1rem; }
.cta-inner .btn {
  background: var(--cream);
  color: var(--espresso);
  border: 2px solid var(--cream);
  padding: 1rem 2.5rem;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.cta-inner .btn:hover {
  background: var(--caramel);
  border-color: var(--caramel);
  color: var(--cream);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(196,149,106,0.4);
}

/* ===== FOOTER ===== */
footer { background: #1E0C04; padding: 3rem 5vw 2rem; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.footer-logo-img { height: 100px; width: auto; object-fit: contain; }
.footer-logo-fallback { display: none; align-items: center; gap: 0.5rem; }
.footer-logo-fallback .logo-mark { color: var(--caramel-light); }
.footer-logo-fallback .logo-text { color: var(--cream); }
.footer-brand p { color: rgba(240,222,208,0.5); font-size: 0.82rem; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 0.85rem; color: rgba(240,222,208,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--caramel-light); }
.footer-social { display: flex; gap: 1.5rem; align-items: center; justify-content: center; }
.footer-social-link { color: rgba(240,222,208,0.6); transition: color 0.2s; display: flex; }
.footer-social-link:hover { color: var(--caramel-light); }
.footer-copy { font-size: 0.78rem; color: rgba(240,222,208,0.3); }

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; }
  .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--espresso); border-radius: 2px; transition: var(--transition); }
  #nav.open .nav-links {
    display: flex; flex-direction: column; position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--cream); padding: 2rem 5vw; gap: 1.5rem;
    border-bottom: 1px solid rgba(196,149,106,0.2);
  }
  #nav.open .nav-links a { font-size: 1.1rem; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-inner { gap: 3rem; }
  .process-steps { flex-wrap: wrap; gap: 2rem; justify-content: center; }
  .process-connector { display: none; }
  .process-step { min-width: 180px; }
}
@media (max-width: 768px) {
  #hero { grid-template-columns: 1fr; text-align: center; padding-bottom: 4rem; }
  .hero-content { max-width: 100%; }
  .hero-cta { justify-content: center; }
  .hero-visual { height: 320px; overflow: visible; }
  .badge-ring { width: 200px; height: 200px; }
  .badge-inner { width: 140px; height: 140px; }
  .blob-1 { width: 200px; height: 200px; top: 10%; right: 5%; }
  .blob-2 { width: 140px; height: 140px; bottom: 5%; left: 5%; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .work-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .service-detail-inner, .service-detail-inner.reverse { grid-template-columns: 1fr; direction: ltr; }
  .service-detail-visual { display: none; }
  section { padding-bottom: 3.5rem; }
}
@media (max-width: 480px) {
  h1 { font-size: clamp(1.75rem, 7.5vw, 2.8rem); }
  section { padding: 4rem 6vw 2.5rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== SUCCESS MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(61,26,11,0.45); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 2rem;
  opacity: 0; transition: opacity 0.3s;
}
.modal-overlay.modal-in { opacity: 1; }
.modal-overlay.hidden   { display: none; }
.modal-card {
  background: var(--cream); border-radius: 24px;
  padding: 3rem 2.5rem; max-width: 400px; width: 100%;
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem;
  box-shadow: 0 32px 80px rgba(61,26,11,0.2);
  transform: translateY(20px); transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.modal-overlay.modal-in .modal-card { transform: translateY(0); }
.modal-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(46,125,82,0.12); color: #2e7d52;
  display: flex; align-items: center; justify-content: center;
}
.modal-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.7rem; color: var(--espresso); margin: 0; }
.modal-card p  { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.modal-close-btn {
  margin-top: 0.5rem; padding: 0.8rem 2.5rem;
  background: var(--espresso); color: var(--cream);
  border: none; border-radius: 100px; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: background 0.2s, transform 0.2s;
}
.modal-close-btn:hover { background: var(--espresso-mid); transform: translateY(-1px); }
