/* ============================================================
   Café Origem · Custom Stylesheet
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --espresso:      #2C1810;
  --espresso-mid:  #3d2518;
  --espresso-deep: #1A0F08;
  --gold:          #C8943A;
  --gold-light:    #E8B86D;
  --gold-pale:     rgba(200, 148, 58, .12);
  --cream:         #FFF8F0;
  --off-white:     #FDFAF7;
  --muted:         #8B7355;
  --border:        rgba(44, 24, 16, .1);
  --grad-dark:     linear-gradient(135deg, #1A0F08 0%, #2C1810 55%, #3d2518 100%);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--espresso-deep);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; transition: color .3s; }
img { max-width: 100%; height: auto; }

/* ── Navbar ─────────────────────────────────────────────────── */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1030;
  padding: 22px 0;
  transition: background .4s ease, padding .4s ease, box-shadow .4s ease;
  background: transparent;
}

#mainNav.scrolled {
  background: var(--espresso-deep) !important;
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.25);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff !important;
}

.brand-icon {
  font-size: 1.65rem;
  color: var(--gold);
  line-height: 1;
}

.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.3px;
}

.nav-link {
  color: rgba(255,255,255,.8) !important;
  font-size: .88rem;
  font-weight: 500;
  padding: 8px 14px !important;
  border-radius: 6px;
  transition: all .3s;
}

.nav-link:hover,
.nav-link.active {
  color: #fff !important;
  background: rgba(200,148,58,.18);
}

.btn-cafe {
  background: var(--gold);
  color: var(--espresso-deep) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .85rem;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all .3s;
  white-space: nowrap;
}

.btn-cafe:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,148,58,.4);
}

.navbar-toggler {
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 8px;
  padding: 6px 10px;
}

.navbar-toggler-icon { filter: brightness(10); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--espresso-deep);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: .3;
  transform: scale(1.04);
  transition: transform 10s ease;
}

.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    rgba(26,15,8,.92) 0%,
    rgba(44,24,16,.78) 55%,
    rgba(26,15,8,.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 90px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: .7;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  max-width: 700px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.btn-hero-primary {
  background: var(--gold);
  color: var(--espresso-deep) !important;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .3s;
}

.btn-hero-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(200,148,58,.45);
  color: var(--espresso-deep) !important;
}

.btn-hero-outline {
  border: 2px solid rgba(255,255,255,.35);
  color: #fff !important;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .3s;
}

.btn-hero-outline:hover {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.4);
  font-size: .65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  animation: bounce 2.4s infinite;
}

.hero-scroll i { font-size: 1.1rem; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--grad-dark);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(200,148,58,.15) 0%, transparent 70%);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: rgba(255,255,255,.6);
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.custom-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.custom-breadcrumb a { color: rgba(255,255,255,.55); }
.custom-breadcrumb a:hover { color: var(--gold); }
.custom-breadcrumb .sep { opacity: .35; }

/* ── Section Utilities ─────────────────────────────────────── */
.section    { padding: 100px 0; }
.section-sm { padding: 70px 0; }
.section-cream { background: var(--cream); }
.section-dark  { background: var(--espresso-deep); color: #fff; }

.section-eyebrow {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.15;
}

.section-subtitle {
  font-size: .97rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.75;
}

.section-dark .section-subtitle { color: rgba(255,255,255,.55); }
.section-dark .section-title     { color: #fff; }

/* ── Feature Cards ─────────────────────────────────────────── */
.feature-card {
  padding: 38px 28px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #fff;
  text-align: center;
  transition: all .35s;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(44,24,16,.1);
  border-color: var(--gold);
}

.feature-icon {
  width: 68px;
  height: 68px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--gold);
  margin: 0 auto 20px;
}

.feature-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--espresso);
}

.feature-card p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.75;
  margin: 0;
}

/* ── Café Cards ────────────────────────────────────────────── */
.cafe-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  transition: all .35s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cafe-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(44,24,16,.14);
}

.cafe-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.cafe-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.cafe-card:hover .cafe-card-img img { transform: scale(1.08); }

.cafe-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--espresso);
  color: #fff;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}

.cafe-badge-destaque {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--espresso-deep);
  font-size: .67rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
}

.cafe-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cafe-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 6px;
}

.cafe-origin {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cafe-notes {
  font-size: .85rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.6;
  flex: 1;
}

.cafe-notes::before {
  content: '♦ ';
  color: var(--gold);
  font-style: normal;
}

.cafe-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.cafe-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--espresso);
}

.btn-link-cafe {
  color: var(--gold);
  font-weight: 600;
  font-size: .84rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap .2s, color .2s;
}

.btn-link-cafe:hover {
  color: var(--espresso);
  gap: 10px;
}

/* ── Produtor Cards ────────────────────────────────────────── */
.produtor-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  transition: all .35s;
}

.produtor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(44,24,16,.13);
}

.produtor-img {
  position: relative;
  overflow: hidden;
  height: 270px;
}

.produtor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s;
}

.produtor-card:hover .produtor-img img { transform: scale(1.06); }

.produtor-region {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,15,8,.88));
  padding: 36px 20px 18px;
  color: #fff;
}

.produtor-region-name {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}

.produtor-region-estado { font-size: .82rem; color: rgba(255,255,255,.75); }

.produtor-body { padding: 22px; }

.produtor-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 10px;
}

.produtor-desc {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Blog Cards ────────────────────────────────────────────── */
.blog-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  transition: all .35s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(44,24,16,.12);
}

.blog-card-img {
  overflow: hidden;
  height: 210px;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s;
}

.blog-card:hover .blog-card-img img { transform: scale(1.06); }

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 600;
  font-size: .84rem;
  margin-top: 16px;
  transition: gap .2s, color .2s;
}

.read-more:hover { color: var(--espresso); gap: 11px; }

/* ── About Section ─────────────────────────────────────────── */
.about-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: -18px;
  right: 24px;
  background: var(--gold);
  color: var(--espresso-deep);
  padding: 20px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(200,148,58,.4);
}

.about-img-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.about-img-badge .lbl {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

.value-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  border: 1px solid rgba(200,148,58,.3);
  color: var(--espresso);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .84rem;
  font-weight: 600;
  margin: 4px;
  transition: all .3s;
}

.value-pill:hover {
  background: var(--gold);
  color: var(--espresso-deep);
  transform: translateY(-2px);
}

/* ── Mission / Vision / Values cards ──────────────────────── */
.mvv-card {
  padding: 36px 28px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #fff;
  transition: all .3s;
  height: 100%;
}

.mvv-card:hover {
  box-shadow: 0 16px 48px rgba(44,24,16,.1);
  transform: translateY(-4px);
}

.mvv-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.mvv-icon.gold { background: var(--gold-pale); color: var(--gold); }
.mvv-icon.espresso { background: rgba(44,24,16,.08); color: var(--espresso); }

.mvv-card h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--espresso);
}

.mvv-card p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

/* ── CTA Section ───────────────────────────────────────────── */
.cta-section {
  background: var(--grad-dark);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200,148,58,.16) 0%, transparent 65%);
}

.cta-section h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  color: rgba(255,255,255,.6);
  font-size: 1.05rem;
  margin-bottom: 40px;
  position: relative;
}

.btn-cta-wa {
  background: #25D366;
  color: #fff !important;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .3s;
  position: relative;
}

.btn-cta-wa:hover {
  background: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37,211,102,.35);
}

/* ── Contact ───────────────────────────────────────────────── */
.contact-form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 44px;
  box-shadow: 0 4px 40px rgba(44,24,16,.07);
  border: 1px solid var(--border);
}

.form-label {
  font-weight: 600;
  font-size: .86rem;
  color: var(--espresso);
  margin-bottom: 6px;
}

.form-control, .form-select {
  border-color: var(--border);
  border-radius: 10px;
  padding: 11px 16px;
  font-size: .9rem;
  transition: all .3s;
  background: var(--off-white);
}

.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,148,58,.15);
  background: #fff;
}

textarea.form-control { min-height: 140px; resize: vertical; }

.contact-info-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 26px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(200,148,58,.15);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--espresso-deep);
  flex-shrink: 0;
}

.contact-info-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 3px;
}

.contact-info-value {
  color: var(--espresso);
  font-weight: 600;
  font-size: .92rem;
}

.btn-submit {
  background: var(--espresso);
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all .3s;
  cursor: pointer;
}

.btn-submit:hover {
  background: var(--espresso-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44,24,16,.28);
  color: #fff;
}

/* ── Blog Single Post ──────────────────────────────────────── */
.post-header { margin-bottom: 40px; }

.post-image {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 48px;
}

.post-image img { width: 100%; max-height: 500px; object-fit: cover; }

.post-content {
  font-size: 1.02rem;
  line-height: 1.9;
  color: #3a3028;
}

.post-content h2, .post-content h3 {
  margin: 2.5rem 0 1rem;
  color: var(--espresso);
}

.post-content p { margin-bottom: 1.5rem; }

.post-content img { border-radius: 12px; margin: 1.5rem 0; }

.post-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  border: 1px solid rgba(200,148,58,.3);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: #0f0804;
  color: rgba(255,255,255,.65);
  padding: 84px 0 0;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
}

.footer-brand i { color: var(--gold); margin-right: 8px; }

.footer-desc {
  font-size: .86rem;
  line-height: 1.75;
  color: rgba(255,255,255,.45);
  max-width: 260px;
  margin-top: 12px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: .92rem;
  transition: all .3s;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--espresso-deep);
  transform: translateY(-3px);
}

.footer-heading {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-links li { margin-bottom: 9px; }

.footer-links a {
  color: rgba(255,255,255,.45);
  font-size: .86rem;
  transition: color .3s;
}

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

.footer-contact { list-style: none; padding: 0; margin: 0; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.45);
  font-size: .84rem;
  margin-bottom: 12px;
}

.footer-contact i { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.footer-post { margin-bottom: 14px; }

.footer-post a {
  display: block;
  color: rgba(255,255,255,.5);
  font-size: .84rem;
  line-height: 1.4;
  margin-bottom: 3px;
  transition: color .3s;
}

.footer-post a:hover { color: var(--gold); }
.footer-post span { font-size: .7rem; color: rgba(255,255,255,.25); }

.footer-bottom {
  margin-top: 64px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.04);
}

.footer-bottom p {
  margin: 0;
  font-size: .8rem;
  color: rgba(255,255,255,.25);
  text-align: center;
}

/* ── Divider / Ornament ────────────────────────────────────── */
.ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.ornament span { width: 30px; height: 1.5px; background: var(--gold); opacity: .6; }
.ornament i { color: var(--gold); font-size: 1rem; }

/* ── Animations ────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-up.d-100 { transition-delay: .1s; }
.fade-up.d-200 { transition-delay: .2s; }
.fade-up.d-300 { transition-delay: .3s; }
.fade-up.d-400 { transition-delay: .4s; }
.fade-up.d-500 { transition-delay: .5s; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 991px) {
  #mainNav { background: var(--espresso-deep) !important; padding: 14px 0 !important; }
  .hero-stats { gap: 24px; }
}

@media (max-width: 767px) {
  .section  { padding: 70px 0; }
  .page-hero { padding: 120px 0 60px; }
  .contact-form-wrap { padding: 28px; }
  .about-img-wrap img { height: 320px; }
  .about-img-badge { display: none; }
  .hero-stats { margin-top: 40px; }
}
