/* ================================================
   MJR Digital — Brand Website | style.css
   ================================================ */

/* ── 1. VARIABLES & RESET ──────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:       #0A0A0A;
  --white:       #F5F2EE;
  --cream:       #EDE8E1;
  --ink:         #1A1A1A;
  --accent:      #C8A96E;
  --accent-dark: #A8893E;
  --muted:       #7A7468;
  --border:      rgba(200,169,110,0.25);
  --font:        'Poppins', sans-serif;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h:       72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
ul,ol { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }

/* ── 2. TYPOGRAPHY ─────────────────────────────── */
h1,h2,h3,h4,h5 { font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; }

.eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.eyebrow.center::before { display: none; }

/* ── 3. UTILITIES ──────────────────────────────── */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 6vw; }
.section   { padding: 6rem 0; }
.section--dark  { background: var(--black); color: var(--white); }
.section--cream { background: var(--cream); }
.section--ink   { background: var(--ink);   color: var(--white); }

.text-accent { color: var(--accent); }
.text-muted  { color: var(--muted);  }
.text-white  { color: var(--white);  }
.text-center { text-align: center;   }

/* ── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200,169,110,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(245,242,238,0.3);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: rgba(26,26,26,0.25);
}
.btn-outline-dark:hover { border-color: var(--accent); color: var(--accent); }

.btn-ghost {
  padding: 0;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: gap 0.25s;
}
.btn-ghost:hover { gap: 0.7rem; }

/* ── 4. NAVBAR ─────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.35s;
}
.navbar.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.5); }

.nav-brand { display: flex; flex-direction: column; line-height: 1.2; }
.nav-brand-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}
.nav-brand-role {
  font-size: 0.58rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(245,242,238,0.6);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links .btn { padding: 0.45rem 1.1rem; font-size: 0.7rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: absolute;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 6vw 2rem;
  flex-direction: column;
  gap: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(245,242,238,0.65);
  letter-spacing: 0.04em;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile a:hover,
.nav-mobile a.active { color: var(--accent); }
.nav-mobile .btn { margin-top: 1.25rem; justify-content: center; text-align: center; }

/* ── 5. FOOTER ─────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  font-size: 0.83rem;
  color: rgba(245,242,238,0.45);
  line-height: 1.8;
  margin-top: 0.9rem;
  max-width: 280px;
}
.footer-logo-name { font-size: 1.05rem; font-weight: 600; color: var(--white); }
.footer-logo-role {
  font-size: 0.6rem;
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}
.footer-socials { display: flex; gap: 0.65rem; margin-top: 1.5rem; }
.footer-social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,242,238,0.45);
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.2s;
}
.footer-social-link:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h5 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.35rem;
}
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(245,242,238,0.45);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p, .footer-bottom a {
  font-size: 0.75rem;
  color: rgba(245,242,238,0.3);
}
.footer-bottom a:hover { color: var(--accent); }

/* ── 6. EMAIL POPUP ────────────────────────────── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.popup-overlay.active { opacity: 1; visibility: visible; }

.popup {
  background: var(--ink);
  border: 1px solid var(--border);
  max-width: 500px;
  width: 100%;
  padding: 3rem;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.45s var(--ease);
  overflow: hidden;
}
.popup-overlay.active .popup { transform: translateY(0) scale(1); }

.popup::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.popup-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,242,238,0.35);
  font-size: 1.2rem;
  transition: color 0.2s;
  background: none; border: none; cursor: pointer;
  line-height: 1;
}
.popup-close:hover { color: var(--white); }

.popup-eyebrow {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.popup h3 {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.popup > p {
  font-size: 0.84rem;
  color: rgba(245,242,238,0.5);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  font-weight: 300;
}
.popup-form { display: flex; flex-direction: column; gap: 0.7rem; }
.popup-form input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.875rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}
.popup-form input::placeholder { color: rgba(245,242,238,0.28); }
.popup-form input:focus { border-color: var(--accent); }
.popup-form .btn { width: 100%; justify-content: center; margin-top: 0.4rem; }
.popup-disclaimer {
  font-size: 0.68rem;
  color: rgba(245,242,238,0.28);
  text-align: center;
  margin-top: 0.75rem;
}

/* ── 7. ANIMATIONS ─────────────────────────────── */
.animate-up    { opacity: 0; transform: translateY(28px); }
.animate-fade  { opacity: 0; }
.animate-left  { opacity: 0; transform: translateX(-28px); }
.animate-right { opacity: 0; transform: translateX(28px); }

.animate-up,
.animate-fade,
.animate-left,
.animate-right { transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }

.animate-up.visible,
.animate-fade.visible,
.animate-left.visible,
.animate-right.visible { opacity: 1; transform: none; }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── 8. NOISE TEXTURE ─────────────────────────── */
.noise {
  position: relative;
}
.noise::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
.noise > * { position: relative; z-index: 1; }

/* ── 9. HERO (LANDING) ─────────────────────────── */
.hero-main {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 5rem) 6vw 7rem;
  overflow: hidden;
}
.hero-main::before {
  content: '';
  position: absolute;
  top: -20%; right: -5%;
  width: 750px; height: 750px;
  background: radial-gradient(circle, rgba(200,169,110,0.07) 0%, transparent 68%);
  pointer-events: none;
}
.hero-main::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

.hero-content { position: relative; z-index: 1; max-width: 840px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border-radius: 100px;
  margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(1.4); }
}

.hero-main h1 {
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-main h1 em { font-style: normal; color: var(--accent); }

.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: rgba(245,242,238,0.55);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 6vw;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,242,238,0.25);
}
.hero-scroll-line {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

/* Page Inner Hero */
.page-hero {
  background: var(--black);
  padding: calc(var(--nav-h) + 5rem) 6vw 5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: -10%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.page-hero p {
  font-size: 1rem;
  color: rgba(245,242,238,0.5);
  max-width: 520px;
  font-weight: 300;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

/* ── 10. SECTION HEADER ────────────────────────── */
.section-header { margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 0.75rem; font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
.section-header p { font-size: 1rem; color: var(--muted); max-width: 520px; line-height: 1.75; font-weight: 300; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* ── 11. STATS BAR ─────────────────────────────── */
.stats-bar { background: var(--ink); border-bottom: 1px solid var(--border); }
.stats-bar .container { padding-top: 3rem; padding-bottom: 3rem; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(245,242,238,0.45);
  letter-spacing: 0.06em;
  font-weight: 400;
}

/* ── 12. SERVICES GRID ─────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--white);
  padding: 2.5rem;
  transition: background 0.3s;
}
.service-card:hover { background: var(--cream); }

.service-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
  color: var(--ink);
}
.service-card > p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.service-features { display: flex; flex-direction: column; gap: 0.45rem; }
.service-features li {
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-features li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── 13. PROCESS ───────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 12%;  right: 12%;
  height: 1px;
  background: var(--border);
}
.process-step { padding: 0 1.5rem; text-align: center; }
.process-num {
  width: 4rem; height: 4rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin: 0 auto 1.5rem;
  background: var(--black);
  position: relative;
  z-index: 1;
}
.process-step h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.process-step p { font-size: 0.78rem; color: rgba(245,242,238,0.42); line-height: 1.65; }

/* ── 14. TESTIMONIALS ──────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
  transition: box-shadow 0.3s;
}
.testimonial-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); }
.testimonial-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  font-family: Georgia, serif;
  opacity: 0.4;
  margin-bottom: 0.5rem;
}
.testimonial-card > p {
  font-size: 0.855rem;
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-weight: 300;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.testimonial-role { font-size: 0.72rem; color: var(--muted); margin-top: 0.15rem; }

/* ── 15. CTA BANNER ────────────────────────────── */
.cta-banner {
  background: var(--ink);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, rgba(200,169,110,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; position: relative; z-index: 1; }
.cta-banner p  {
  color: rgba(245,242,238,0.48);
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 2.25rem;
  position: relative; z-index: 1;
}
.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* ── 16. BLOG CARDS ────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); transform: translateY(-3px); }
.blog-card-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--ink), var(--black));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.blog-card-body { padding: 1.5rem; }
.blog-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.blog-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.55rem;
  line-height: 1.4;
}
.blog-card h3 a { transition: color 0.2s; }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card > .blog-card-body > p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-weight: 300;
}
.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--muted);
}

.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  border: 1px solid var(--border);
  margin-bottom: 3rem;
  overflow: hidden;
}
.blog-featured-thumb {
  background: linear-gradient(135deg, rgba(200,169,110,0.08), rgba(10,10,10,0.9));
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border-right: 1px solid var(--border);
}
.blog-featured-body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-featured-body .blog-tag { margin-bottom: 1rem; }
.blog-featured-body h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.blog-featured-body > p {
  font-size: 0.875rem;
  color: rgba(245,242,238,0.48);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.cat-pill {
  padding: 0.3rem 0.9rem;
  border: 1px solid var(--border);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,242,238,0.5);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
}
.cat-pill:hover, .cat-pill.active {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── 17. RESOURCES ─────────────────────────────── */
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.resource-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.3s;
}
.resource-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); transform: translateY(-3px); }
.resource-card:hover::before { background: var(--accent); }

.resource-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--ink); }
.resource-card > p { font-size: 0.8rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.5rem; font-weight: 300; }

/* ── 18. ABOUT PAGE ────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
}
.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(200,169,110,0.06));
}
.about-stat-box {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 10rem;
  padding: 1.25rem;
  background: var(--ink);
  border: 1px solid var(--border);
  text-align: center;
}
.about-stat-box .n { font-size: 2.25rem; font-weight: 700; color: var(--accent); letter-spacing: -0.03em; line-height: 1; }
.about-stat-box .l { font-size: 0.7rem; color: rgba(245,242,238,0.45); margin-top: 0.3rem; line-height: 1.4; }

.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.about-content p { font-size: 0.9rem; color: var(--muted); line-height: 1.85; margin-bottom: 1.25rem; font-weight: 300; }
.about-values { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.15rem; }
.about-value { display: flex; gap: 1rem; align-items: flex-start; }
.about-value-num {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  padding-top: 0.2rem;
  flex-shrink: 0;
  min-width: 2rem;
}
.about-value h4 { font-size: 0.9rem; margin-bottom: 0.2rem; color: var(--ink); }
.about-value p { font-size: 0.8rem; margin-bottom: 0; }

/* ── 19. SERVICES DETAIL PAGE ──────────────────── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 5rem 0;
  border-bottom: 1px solid rgba(200,169,110,0.15);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.service-detail-content p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.service-detail-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.service-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--ink);
}
.service-detail-list li::before {
  content: '';
  width: 16px; height: 16px;
  border: 1px solid var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3 3 7-7' stroke='%23C8A96E' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/11px no-repeat;
}
.service-visual {
  background: var(--cream);
  border: 1px solid var(--border);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  position: relative;
  overflow: hidden;
}
.service-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(200,169,110,0.06));
}

/* ── 20. FAQ ───────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
}
.faq-icon::before { width: 10px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-icon::after  { width: 1.5px; height: 10px; top: 50%; left: 50%; transform: translate(-50%,-50%); transition: transform 0.3s, opacity 0.3s; }
.faq-item.open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 2rem 1.5rem; font-size: 0.85rem; color: var(--muted); line-height: 1.8; font-weight: 300; }

/* ── 21. TOOLS ─────────────────────────────────── */
.tools-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.tool-card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.tool-card:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.tool-emoji { font-size: 1.75rem; margin-bottom: 0.5rem; }
.tool-name { font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-bottom: 0.25rem; }
.tool-desc { font-size: 0.72rem; color: var(--muted); }

/* ── 22. NEWSLETTER ────────────────────────────── */
.newsletter-form { display: flex; gap: 0.75rem; max-width: 480px; }
.newsletter-form.center { margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.875rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: rgba(245,242,238,0.3); }
.newsletter-form input:focus { border-color: var(--accent); }

/* ── 23. DIVIDER ───────────────────────────────── */
.divider {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 1.5rem 0;
}
.divider.center { margin: 1.5rem auto; }

/* ── 24. RESPONSIVE ────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid           { grid-template-columns: repeat(2, 1fr); }
  .stats-grid              { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid       { grid-template-columns: repeat(2, 1fr); }
  .process-steps           { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .process-steps::before   { display: none; }
  .blog-grid               { grid-template-columns: repeat(2, 1fr); }
  .blog-featured           { grid-template-columns: 1fr; }
  .blog-featured-thumb     { min-height: 220px; }
  .resources-grid          { grid-template-columns: repeat(2, 1fr); }
  .about-split             { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-image-wrap        { max-width: 380px; }
  .service-detail          { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-detail.reverse  { direction: ltr; }
  .tools-grid              { grid-template-columns: repeat(3, 1fr); }
  .footer-grid             { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links               { display: none; }
  .hamburger               { display: flex; }
  .services-grid           { grid-template-columns: 1fr; }
  .testimonials-grid       { grid-template-columns: 1fr; }
  .process-steps           { grid-template-columns: 1fr; }
  .blog-grid               { grid-template-columns: 1fr; }
  .resources-grid          { grid-template-columns: 1fr; }
  .tools-grid              { grid-template-columns: repeat(2, 1fr); }
  .section                 { padding: 4rem 0; }
  .stats-grid              { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)  { border-right: none; }
  .footer-grid             { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand p          { max-width: 100%; }
  .newsletter-form         { flex-direction: column; }
  .hero-ctas               { flex-direction: column; align-items: flex-start; }
  .btn-group               { flex-direction: column; align-items: center; }
  .about-stat-box          { display: none; }
  .popup                   { padding: 2rem; }
  .popup h3                { font-size: 1.35rem; }
  .faq-question            { padding: 1.25rem 1.5rem; }
  .faq-answer p            { padding: 0 1.5rem 1.25rem; }
}

@media (max-width: 480px) {
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-featured-body { padding: 2rem; }
}
