/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #0a0a0a;
  color: #e8e2d4;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.02em; line-height: 1.05; }
h1 { font-size: clamp(3.5rem, 9vw, 9rem); color: #fff; }
h2 { font-size: clamp(2.5rem, 5vw, 5rem); color: #fff; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); color: #fff; }
h4 { font-size: 1rem; font-family: 'DM Sans', sans-serif; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #e2b96f; }
p { font-size: 1.05rem; color: #a09b8e; line-height: 1.8; }
a { text-decoration: none; color: inherit; transition: color .2s; }

/* ── Layout ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e2b96f;
  border: 1px solid rgba(226,185,111,0.3);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
}
.btn-primary {
  background: #e2b96f;
  color: #0a0a0a;
}
.btn-primary:hover { background: #f0cc8f; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(226,185,111,0.35); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: #e2b96f; color: #e2b96f; }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all 0.3s;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner { display: flex; align-items: center; gap: 2rem; }
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #fff;
  letter-spacing: 0.05em;
  margin-right: auto;
}
.logo-dot { color: #e2b96f; }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: #a09b8e; }
.nav-links a:hover { color: #fff; }
.nav-cta { margin-left: 1rem; padding: 0.6rem 1.5rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #0a0a0a;
  z-index: 99;
  padding-top: 6rem;
  text-align: center;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { padding: 1rem; }
.mobile-menu ul li a { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: #fff; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(226,185,111,0.08) 0%, transparent 70%);
  top: -100px; right: -200px;
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #e2b96f;
}
.hero-eyebrow span { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #e2b96f; }
.hero-title { margin-bottom: 1.5rem; }
.hero-title em { font-style: italic; color: #e2b96f; }
.hero-desc { font-size: 1.15rem; margin-bottom: 2.5rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; color: #fff; line-height: 1; }
.stat-num span { color: #e2b96f; }
.stat-label { font-size: 0.85rem; color: #a09b8e; margin-top: 0.25rem; }
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-stack { position: relative; width: 100%; max-width: 420px; margin: 0 auto; }
.hero-main-card {
  background: linear-gradient(135deg, #161616 0%, #1e1a12 100%);
  border: 1px solid rgba(226,185,111,0.2);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  z-index: 2;
}
.hmc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.hmc-badge {
  background: rgba(226,185,111,0.15);
  color: #e2b96f;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}
.hmc-label { font-size: 0.8rem; color: #a09b8e; }
.chart-bars { display: flex; align-items: flex-end; gap: 8px; height: 120px; margin: 1.5rem 0; }
.bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: rgba(226,185,111,0.2);
  position: relative;
  transition: height 1s ease;
}
.bar.active { background: #e2b96f; }
.bar-val { position: absolute; top: -1.4rem; left: 50%; transform: translateX(-50%); font-size: 0.65rem; color: #e2b96f; white-space: nowrap; }
.hmc-metric { display: flex; justify-content: space-between; align-items: center; }
.hmc-metric .big { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: #fff; }
.hmc-metric .change { color: #5dca9e; font-size: 0.85rem; font-weight: 600; }
.floating-card {
  position: absolute;
  background: rgba(20,20,20,0.95);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  backdrop-filter: blur(10px);
  z-index: 3;
}
.fc-1 { top: -1.5rem; right: -2rem; }
.fc-2 { bottom: -1.5rem; left: -2rem; }
.fc-icon { font-size: 1.5rem; margin-bottom: 0.25rem; }
.fc-val { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: #fff; }
.fc-label { font-size: 0.72rem; color: #a09b8e; }

/* ── Marquee ── */
.marquee-section { padding: 2rem 0; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); overflow: hidden; }
.marquee-track { display: flex; gap: 4rem; animation: marquee 30s linear infinite; white-space: nowrap; }
.marquee-item { font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; color: rgba(255,255,255,0.25); letter-spacing: 0.05em; display: flex; align-items: center; gap: 1.5rem; }
.marquee-item::after { content: '✦'; color: #e2b96f; font-size: 0.75rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Services ── */
.services-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; overflow: hidden; }
.service-card {
  background: #0f0f0f;
  padding: 2.5rem;
  transition: background 0.3s;
  cursor: default;
}
.service-card:hover { background: #141410; }
.service-icon { font-size: 2.5rem; margin-bottom: 1.5rem; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.9rem; }
.service-card .learn-more { display: inline-flex; align-items: center; gap: 0.4rem; color: #e2b96f; font-size: 0.85rem; font-weight: 600; margin-top: 1.25rem; opacity: 0; transition: opacity 0.3s; }
.service-card:hover .learn-more { opacity: 1; }

/* ── Results / Numbers ── */
.results-section { background: #e2b96f; }
.results-section h2, .results-section p, .results-section .section-label { color: #0a0a0a; }
.results-section .section-label { border-color: rgba(10,10,10,0.3); color: #0a0a0a; }
.results-section .stat-num { color: #0a0a0a; }
.results-section .stat-num span { color: rgba(10,10,10,0.4); }
.results-section .stat-label { color: rgba(10,10,10,0.6); }
.results-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; align-items: center; }
.results-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; }
.results-visual { position: relative; }
.results-card {
  background: rgba(10,10,10,0.08);
  border: 1px solid rgba(10,10,10,0.1);
  border-radius: 16px;
  padding: 2rem;
}

/* ── Process ── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; margin-top: 4rem; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 2rem; left: 2rem; right: 2rem;
  height: 1px;
  background: rgba(226,185,111,0.2);
  z-index: 0;
}
.process-step { position: relative; z-index: 1; }
.step-num {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: #161616;
  border: 1px solid rgba(226,185,111,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: #e2b96f;
  margin-bottom: 1.5rem;
}
.process-step h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.875rem; }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.testimonial-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 2rem;
}
.stars { color: #e2b96f; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, #e2b96f, #b8863a);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: #0a0a0a;
}
.author-name { font-weight: 600; font-size: 0.9rem; color: #fff; }
.author-role { font-size: 0.8rem; color: #a09b8e; }

/* ── CTA Band ── */
.cta-section {
  background: #111;
  border: 1px solid rgba(226,185,111,0.15);
  border-radius: 24px;
  padding: 5rem 4rem;
  text-align: center;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(226,185,111,0.06) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { font-size: 1.1rem; max-width: 500px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Portfolio ── */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.portfolio-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: #161616;
  border: 1px solid rgba(255,255,255,0.06);
}
.portfolio-thumb {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  transition: transform 0.4s;
}
.portfolio-item:hover .portfolio-thumb { transform: scale(1.05); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-cat { font-size: 0.75rem; font-weight: 700; color: #e2b96f; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.25rem; }
.portfolio-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: #fff; }

/* ── Team ── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 4rem; }
.team-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, #1e1a12, #2a2214);
  border: 2px solid rgba(226,185,111,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.25rem;
}
.team-card h3 { font-size: 1.3rem; margin-bottom: 0.25rem; }
.team-role { font-size: 0.85rem; color: #e2b96f; margin-bottom: 0.75rem; }

/* ── Contact Form ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #a09b8e; }
.form-group input, .form-group textarea, .form-group select {
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.85rem 1.1rem;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: rgba(226,185,111,0.5);
}
.form-group select option { background: #111; }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-success {
  background: rgba(93,202,158,0.1);
  border: 1px solid rgba(93,202,158,0.3);
  color: #5dca9e;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  display: none;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; }
.info-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-icon { font-size: 1.5rem; flex-shrink: 0; }
.info-card h4 { font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 700; color: #e2b96f; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.25rem; }
.info-card p { font-size: 0.9rem; color: #a09b8e; margin: 0; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 12rem 0 6rem;
  text-align: center;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(226,185,111,0.07) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}

/* ── Footer ── */
.footer { background: #080808; border-top: 1px solid rgba(255,255,255,0.05); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand p { font-size: 0.9rem; margin: 1rem 0 1.5rem; max-width: 260px; }
.social-links { display: flex; gap: 1rem; }
.social-links a {
  width: 38px; height: 38px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
  color: #a09b8e;
  transition: all 0.2s;
}
.social-links a:hover { border-color: #e2b96f; color: #e2b96f; }
.footer-col h4 { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #e2b96f; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul li, .footer-col ul li a { font-size: 0.9rem; color: #a09b8e; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.85rem; color: #6b6760; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.85rem; color: #6b6760; }
.footer-legal a:hover { color: #a09b8e; }

/* ── Utilities ── */
.text-gold { color: #e2b96f; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ── Blog ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.blog-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}
.blog-card:hover { border-color: rgba(226,185,111,0.3); transform: translateY(-4px); }
.blog-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: #161616;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.blog-thumb-bg {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  font-size: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: blur(8px);
}
.blog-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; flex-wrap: wrap; }
.blog-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e2b96f;
  background: rgba(226,185,111,0.1);
  border: 1px solid rgba(226,185,111,0.2);
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
}
.blog-date { font-size: 0.8rem; color: #6b6760; }
.blog-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; line-height: 1.2; color: #fff; }
.blog-card h3 a:hover { color: #e2b96f; }
.blog-card p { font-size: 0.875rem; line-height: 1.7; flex: 1; }
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.blog-author { display: flex; align-items: center; gap: 0.6rem; }
.blog-author-av {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e2b96f, #b8863a);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: #0a0a0a;
}
.blog-author-name { font-size: 0.8rem; font-weight: 600; color: #e8e2d4; }
.blog-read-time { font-size: 0.75rem; color: #6b6760; }
.blog-read-more { font-size: 0.82rem; font-weight: 700; color: #e2b96f; display: flex; align-items: center; gap: 0.3rem; }
.blog-read-more:hover { color: #f0cc8f; }

/* Blog featured card */
.blog-featured {
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 2.5rem;
  transition: border-color 0.3s;
}
.blog-featured:hover { border-color: rgba(226,185,111,0.3); }
.blog-featured-thumb {
  background: #161616;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.blog-featured-body { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-tag {
  display: inline-block;
  background: #e2b96f;
  color: #0a0a0a;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.blog-featured-body h2 { font-size: clamp(1.8rem, 2.5vw, 2.5rem); margin-bottom: 1rem; }
.blog-featured-body p { font-size: 0.95rem; margin-bottom: 1.75rem; }

/* Blog single post */
.post-hero { padding: 10rem 0 4rem; }
.post-header { max-width: 820px; margin: 0 auto; text-align: center; }
.post-header h1 { font-size: clamp(2.5rem, 5vw, 5rem); margin-bottom: 1.5rem; }
.post-meta-bar { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
.post-body { max-width: 740px; margin: 0 auto; padding: 3rem 0 5rem; }
.post-body h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 3.5vw, 3rem); color: #fff; margin: 3rem 0 1rem; letter-spacing: 0.02em; line-height: 1.1; }
.post-body h3 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.5rem, 2.5vw, 2rem); color: #fff; margin: 2rem 0 0.75rem; letter-spacing: 0.02em; }
.post-body h4 { font-size: 1rem; font-weight: 700; color: #e2b96f; text-transform: uppercase; letter-spacing: 0.1em; margin: 1.5rem 0 0.5rem; }
.post-body p { font-size: 1.1rem; color: #a09b8e; margin-bottom: 1.5rem; line-height: 1.9; }
.post-body ul, .post-body ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.post-body li { font-size: 1.05rem; color: #a09b8e; line-height: 1.8; margin-bottom: 0.5rem; }
.post-body strong { color: #e8e2d4; font-weight: 700; }
.post-body em { color: #e2b96f; font-style: italic; }
.post-body a { color: #e2b96f; text-decoration: underline; text-underline-offset: 3px; }

/* Post Author Card */
.post-author-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-top: 3rem;
}
.post-author-av {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e2b96f, #b8863a);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; color: #0a0a0a;
  flex-shrink: 0;
  border: 3px solid rgba(226,185,111,0.3);
}
.post-author-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #e2b96f; margin-bottom: 0.25rem; }
.post-author-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: #fff; line-height: 1; margin-bottom: 0.5rem; }
.post-author-bio { font-size: 0.9rem; color: #a09b8e; line-height: 1.7; margin: 0; }

/* Post Header Meta */
.post-header-meta { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.post-divider { width: 40px; height: 2px; background: #e2b96f; margin: 1.5rem auto; }
.post-body blockquote {
  border-left: 3px solid #e2b96f;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: rgba(226,185,111,0.05);
  border-radius: 0 8px 8px 0;
}
.post-body blockquote p { color: #e8e2d4; font-size: 1.1rem; font-style: italic; margin: 0; }
.post-thumb-lg {
  width: 100%; height: 400px;
  background: #161616;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem;
  margin-bottom: 3rem;
  overflow: hidden;
  position: relative;
}
.post-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 2.5rem 0; }
.post-tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #a09b8e;
  font-size: 0.8rem;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }

/* Pagination */
.pagination { display: flex; gap: 0.5rem; justify-content: center; margin-top: 4rem; }
.page-btn {
  width: 42px; height: 42px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.875rem;
  color: #a09b8e;
  cursor: pointer;
  transition: all 0.2s;
}
.page-btn:hover, .page-btn.active { background: #e2b96f; border-color: #e2b96f; color: #0a0a0a; font-weight: 700; }

/* Search bar */
.blog-search { position: relative; max-width: 500px; margin: 0 auto 3rem; }
.blog-search input {
  width: 100%;
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 0.85rem 3.5rem 0.85rem 1.5rem;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.blog-search input:focus { border-color: rgba(226,185,111,0.5); }
.blog-search-icon { position: absolute; right: 1.25rem; top: 50%; transform: translateY(-50%); color: #a09b8e; font-size: 1.1rem; }
.blog-cats { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.blog-cat-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: #a09b8e;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.blog-cat-btn:hover, .blog-cat-btn.active { background: #e2b96f; border-color: #e2b96f; color: #0a0a0a; }

/* ── Animations ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid, .services-intro, .contact-grid, .results-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .hero-visual { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid, .testimonials-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 3rem 2rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-thumb { min-height: 200px; }
  .blog-featured-body { padding: 2rem; }
  .related-grid { grid-template-columns: 1fr; }
}
