@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Crimson+Pro:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --saffron:    #E8862A;
  --saffron-lt: #F5B56A;
  --saffron-dk: #B5621A;
  --burgundy:   #7B1C2E;
  --burgundy-lt:#A33045;
  --ivory:      #FBF6EE;
  --ivory-dk:   #F0E8D8;
  --gold:       #C9961A;
  --gold-lt:    #F0C84A;
  --brown:      #4A2C10;
  --text:       #2C1A0E;
  --text-muted: #7A5C40;
  --white:      #FFFFFF;
  --shadow:     0 8px 40px rgba(74,44,16,0.13);
  --shadow-sm:  0 2px 12px rgba(74,44,16,0.09);
  --radius:     14px;
  --radius-sm:  8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ivory);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

/* ── NAV ─────────────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--burgundy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px; height: 66px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--ivory);
}
.nav-brand-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--saffron); display: flex; align-items: center;
  justify-content: center; font-size: 18px; flex-shrink: 0;
}
.nav-brand-text { font-family: 'Cinzel', serif; font-size: 15px; font-weight: 600; line-height: 1.2; }
.nav-brand-sub  { font-family: 'DM Sans', sans-serif; font-size: 11px; opacity: 0.7; font-weight: 300; }
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-link {
  padding: 8px 16px; border-radius: var(--radius-sm);
  text-decoration: none; color: rgba(255,255,255,0.78);
  font-size: 14px; font-weight: 500; transition: all 0.2s;
}
.nav-link:hover, .nav-link.active {
  background: rgba(232,134,42,0.22); color: var(--saffron-lt);
}
.nav-link.active { color: var(--gold-lt); font-weight: 600; }
.nav-cta {
  background: var(--saffron); color: white !important;
  padding: 8px 18px; border-radius: 20px; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--saffron-dk) !important; color: white !important; }

/* ── HERO BANNER ─────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--burgundy) 0%, #4A1220 55%, var(--brown) 100%);
  color: white; position: relative; overflow: hidden;
  padding: 80px 28px 70px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E8862A' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { max-width: 820px; margin: 0 auto; text-align: center; position: relative; }
.hero-badge {
  display: inline-block; background: rgba(232,134,42,0.2);
  border: 1px solid rgba(232,134,42,0.4); color: var(--saffron-lt);
  font-family: 'Crimson Pro', serif; font-size: 15px; font-style: italic;
  padding: 6px 20px; border-radius: 20px; margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Cinzel', serif; font-size: clamp(28px, 5vw, 52px);
  font-weight: 700; line-height: 1.15; margin-bottom: 20px;
  color: var(--ivory);
}
.hero h1 span { color: var(--saffron-lt); }
.hero-sub {
  font-family: 'Crimson Pro', serif; font-size: clamp(16px,2vw,20px);
  color: rgba(255,255,255,0.78); max-width: 600px; margin: 0 auto 36px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--saffron); color: white;
  padding: 13px 32px; border-radius: 30px;
  font-weight: 600; font-size: 15px; text-decoration: none;
  transition: all 0.2s; border: none; cursor: pointer;
  display: inline-block;
}
.btn-primary:hover { background: var(--saffron-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,134,42,0.4); }
.btn-outline {
  background: transparent; color: var(--ivory);
  border: 2px solid rgba(255,255,255,0.35);
  padding: 12px 28px; border-radius: 30px;
  font-weight: 500; font-size: 15px; text-decoration: none;
  transition: all 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: var(--saffron-lt); color: var(--saffron-lt); }

/* ── SECTION WRAPPER ─────────────────────────────────────────── */
.section { padding: 72px 28px; }
.section-alt { background: var(--ivory-dk); }
.section-dark { background: var(--burgundy); color: white; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--saffron); margin-bottom: 10px;
}
.section-title {
  font-family: 'Cinzel', serif; font-size: clamp(22px,3.5vw,36px);
  font-weight: 700; color: var(--burgundy); margin-bottom: 14px; line-height: 1.25;
}
.section-dark .section-title { color: var(--ivory); }
.section-body {
  font-family: 'Crimson Pro', serif; font-size: 18px;
  color: var(--text-muted); max-width: 640px; line-height: 1.8;
}
.section-dark .section-body { color: rgba(255,255,255,0.75); }
.divider {
  width: 56px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  margin: 16px 0 28px;
}

/* ── CARDS ───────────────────────────────────────────────────── */
.card-grid { display: grid; gap: 24px; }
.card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); }
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); }
.card-grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); }

.card {
  background: white; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.card-img-placeholder {
  width: 100%; height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
}
.card-body { padding: 22px 24px 26px; }
.card-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--saffron);
  margin-bottom: 8px; display: block;
}
.card-title {
  font-family: 'Cinzel', serif; font-size: 17px; font-weight: 600;
  color: var(--burgundy); margin-bottom: 10px; line-height: 1.3;
}
.card-text {
  font-family: 'Crimson Pro', serif; font-size: 16px;
  color: var(--text-muted); line-height: 1.7;
}
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; color: var(--saffron); font-weight: 600;
  font-size: 14px; text-decoration: none;
  transition: gap 0.2s;
}
.card-link:hover { gap: 10px; }

/* ── STAT STRIP ──────────────────────────────────────────────── */
.stat-strip {
  display: flex; gap: 0; flex-wrap: wrap;
  background: var(--burgundy); border-radius: var(--radius);
  overflow: hidden;
}
.stat-item {
  flex: 1; min-width: 160px; padding: 28px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cinzel', serif; font-size: 36px; font-weight: 700;
  color: var(--saffron-lt); display: block; line-height: 1;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 6px; }

/* ── QUOTE BLOCK ─────────────────────────────────────────────── */
.quote-block {
  background: linear-gradient(135deg, var(--burgundy), #4A1220);
  border-radius: var(--radius); padding: 40px 48px;
  text-align: center; color: white; position: relative;
}
.quote-block::before {
  content: '\201C'; font-family: 'Cinzel', serif;
  font-size: 120px; color: rgba(232,134,42,0.15);
  position: absolute; top: -10px; left: 24px; line-height: 1;
}
.quote-text {
  font-family: 'Crimson Pro', serif; font-size: clamp(18px,2.5vw,24px);
  font-style: italic; line-height: 1.7; color: var(--ivory); position: relative;
}
.quote-attr {
  margin-top: 16px; font-size: 13px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--saffron-lt); font-weight: 600;
}

/* ── SERVICE PAGE SPECIFIC ───────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--burgundy), #3A0E1C);
  color: white; padding: 56px 28px 48px; text-align: center;
}
.page-hero h1 { font-family: 'Cinzel', serif; font-size: clamp(24px,4vw,42px); font-weight: 700; color: var(--ivory); margin-bottom: 12px; }
.page-hero p  { font-family: 'Crimson Pro', serif; font-size: 18px; color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto; }
.breadcrumb   { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.breadcrumb a { color: var(--saffron-lt); text-decoration: none; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--brown); color: rgba(255,255,255,0.75);
  padding: 48px 28px 28px; margin-top: auto;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid  { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-brand { font-family: 'Cinzel', serif; font-size: 16px; color: var(--ivory); margin-bottom: 10px; }
.footer-tagline { font-family: 'Crimson Pro', serif; font-size: 15px; font-style: italic; line-height: 1.6; }
.footer-heading { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--saffron-lt); margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--saffron-lt); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; font-size: 13px; text-align: center; color: rgba(255,255,255,0.45); }
.footer-blessing { font-family: 'Crimson Pro', serif; font-size: 15px; font-style: italic; color: var(--saffron-lt); margin-bottom: 8px; text-align: center; }

/* ── FORM ELEMENTS ───────────────────────────────────────────── */
.form-card {
  background: white; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 40px;
  max-width: 480px; width: 100%; margin: 0 auto;
}
.form-title { font-family: 'Cinzel', serif; font-size: 22px; color: var(--burgundy); margin-bottom: 6px; }
.form-sub   { font-family: 'Crimson Pro', serif; font-size: 16px; color: var(--text-muted); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--brown); margin-bottom: 7px; }
.form-input {
  width: 100%; padding: 12px 16px;
  border: 2px solid #E8DDD0; border-radius: var(--radius-sm);
  font-size: 15px; font-family: 'DM Sans', sans-serif;
  background: var(--ivory); color: var(--text);
  outline: none; transition: border 0.2s;
}
.form-input:focus { border-color: var(--saffron); background: white; }
.form-btn {
  width: 100%; padding: 14px; background: var(--saffron);
  color: white; border: none; border-radius: 30px;
  font-size: 16px; font-weight: 600; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, transform 0.15s;
}
.form-btn:hover { background: var(--saffron-dk); transform: translateY(-1px); }
.form-btn:disabled { background: #ccc; cursor: not-allowed; transform: none; }
.form-msg { font-size: 13px; border-radius: var(--radius-sm); padding: 10px 14px; margin-top: 14px; }
.form-msg.success { background: #D4EDDA; color: #1A7A4A; }
.form-msg.error   { background: #FEE2E2; color: #7F1D1D; }
.form-msg.info    { background: #D6E8F7; color: #1E3A5F; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 20px 52px; }
  .section { padding: 52px 20px; }
  .quote-block { padding: 32px 24px; }
  .stat-item { min-width: 50%; }
}

/* ── UTILITY ─────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-16 { gap: 16px; }
