@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */

:root {
  --primary: #c49a6c;
  --accent: #e6b88a;
  --bg: #0b0b0b;
  --surface: #161616;
  --text: #f2f2f5;
  --muted: #8a8a93;

  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;

  --shadow: 0 4px 12px rgba(0, 0, 0, 0.06);

  --container-max: 1200px;
  --container-narrow: 800px;
  --header-height: 72px;

  --transition: 0.25s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary);
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--muted);
  max-width: 65ch;
}

.lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header p {
  margin: 0.75rem auto 0;
  max-width: 560px;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--2 {
  grid-template-columns: 1fr;
}

.grid--3 {
  grid-template-columns: 1fr;
}

.grid--4 {
  grid-template-columns: 1fr;
}

.flex {
  display: flex;
}

.flex--center {
  align-items: center;
  justify-content: center;
}

.flex--between {
  align-items: center;
  justify-content: space-between;
}

.text-center {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 1.25rem;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: var(--surface);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.logo:hover {
  color: var(--accent);
}

.logo span {
  color: var(--primary);
}

.nav {
  position: relative;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
  padding: 0.25rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--text);
}

.mobile-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.mobile-menu-toggle:hover {
  background: var(--surface);
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   PHOTO BACKGROUND OVERLAY (CRITICAL)
   ============================================ */

.has-photo-bg {
  position: relative;
  isolation: isolate;
}

.has-photo-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.85));
  z-index: 0;
}

.has-photo-bg > * {
  position: relative;
  z-index: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 85vh;
  padding: 4rem 1.25rem;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.hero-section__content {
  max-width: 720px;
}

.hero-section h1 {
  margin-bottom: 1.25rem;
}

.hero-section p {
  font-size: 1.125rem;
  margin: 0 auto 2rem;
  color: rgba(242, 242, 245, 0.75);
}

.hero-section .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary,
.btn-secondary,
.cta-button,
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
  line-height: 1.4;
}

.btn-primary {
  background: var(--primary);
  color: #0b0b0b;
}

.btn-primary:hover {
  background: var(--accent);
  color: #0b0b0b;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--muted);
}

.btn-secondary:hover {
  border-color: var(--text);
  color: var(--text);
  transform: translateY(-1px);
}

.cta-button {
  background: var(--primary);
  color: #0b0b0b;
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.cta-button:hover {
  background: var(--accent);
  color: #0b0b0b;
  transform: translateY(-1px);
}

.form-submit {
  background: var(--primary);
  color: #0b0b0b;
  width: 100%;
  padding: 0.9rem 1.75rem;
  border: none;
  cursor: pointer;
}

.form-submit:hover {
  background: var(--accent);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
  padding: 5rem 0;
}

.feature-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.feature-card:hover {
  transform: translateY(-2px);
}

.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(196, 154, 108, 0.12);
  color: var(--primary);
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}

.feature-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.feature-card p {
  font-size: 0.925rem;
  line-height: 1.6;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
  padding: 5rem 0;
  background: var(--surface);
}

.service-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: transform var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
}

.service-card__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.925rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
  padding: 5rem 0;
}

.about-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-section__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.about-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section__content h2 {
  margin-bottom: 1rem;
}

.about-section__content p {
  margin-bottom: 1rem;
}

.about-section__content .btn-primary {
  margin-top: 0.5rem;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
  padding: 4rem 0;
  background: var(--surface);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

.stat-item__label {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonial-section {
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
}

.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.testimonial-card__quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card__quote::before {
  content: "\201C";
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--primary);
  line-height: 0;
  display: block;
  margin-bottom: 0.75rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.925rem;
  color: var(--text);
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  padding: 5rem 0;
  text-align: center;
  background: var(--surface);
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  margin: 0 auto 2rem;
  max-width: 520px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
  padding: 5rem 0;
}

.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info > p {
  margin-bottom: 2rem;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-row__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  color: var(--primary);
  line-height: 1.4;
}

.contact-row__text {
  font-size: 0.95rem;
  color: var(--muted);
}

.contact-row__text strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
  width: 100%;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--muted);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  transition: border-color var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* ============================================
   POLICY PAGES
   ============================================ */

.policy-page {
  padding: 4rem 0 5rem;
}

.policy-page__header {
  margin-bottom: 3rem;
}

.policy-page__header h1 {
  margin-bottom: 0.5rem;
}

.policy-page__header p {
  font-size: 0.95rem;
}

.policy-page__content {
  max-width: var(--container-narrow);
}

.policy-page__content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.policy-page__content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.policy-page__content p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

.policy-page__content ul {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

.policy-page__content ul li {
  position: relative;
  padding-left: 0.75rem;
  margin-bottom: 0.5rem;
  color: var(--muted);
  line-height: 1.65;
}

.policy-page__content ul li::before {
  content: "–";
  position: absolute;
  left: -0.75rem;
  color: var(--primary);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--surface);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer__brand .logo {
  margin-bottom: 1rem;
  display: inline-block;
}

.footer__brand p {
  font-size: 0.9rem;
  max-width: 280px;
}

.footer__column h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 1rem;
}

.footer__column ul li {
  margin-bottom: 0.6rem;
}

.footer__column ul li a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color var(--transition);
}

.footer__column ul li a:hover {
  color: var(--text);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer__bottom p {
  font-size: 0.825rem;
  color: var(--muted);
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer__bottom-links a {
  font-size: 0.825rem;
  color: var(--muted);
}

.footer__bottom-links a:hover {
  color: var(--text);
}

/* ============================================
   COOKIE POPUP
   ============================================ */

.cookie-popup {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  z-index: 9999;
  transition: opacity var(--transition), transform var(--transition);
}

.cookie-popup.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.cookie-popup p {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.cookie-popup__actions {
  display: flex;
  gap: 0.75rem;
}

.cookie-popup__actions .btn-primary {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

.cookie-popup__actions .btn-secondary {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

/* ============================================
   CARDS (GENERIC)
   ============================================ */

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.card:hover {
  transform: translateY(-2px);
}

.card__image {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.25rem;
  aspect-ratio: 16 / 10;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.card p {
  font-size: 0.9rem;
}

/* ============================================
   DIVIDER
   ============================================ */

.divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0;
}

/* ============================================
   BADGE
   ============================================ */

.badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(196, 154, 108, 0.12);
  color: var(--primary);
}

/* ============================================
   ACCESSIBILITY & FOCUS
   ============================================ */

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.75rem 1.25rem;
  background: var(--primary);
  color: #0b0b0b;
  font-weight: 600;
  border-radius: var(--radius-sm);
  z-index: 10000;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ============================================
   RESPONSIVE: TABLET (768px+)
   ============================================ */

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }

  .section {
    padding: 5rem 0;
  }

  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-section__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .contact-section__grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-popup {
    left: auto;
  }
}

/* ============================================
   RESPONSIVE: DESKTOP (1024px+)
   ============================================ */

@media (min-width: 1024px) {
  .section {
    padding: 6rem 0;
  }

  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-section__grid {
    gap: 4rem;
  }

  .features-section,
  .services-section,
  .about-section,
  .testimonial-section,
  .cta-section,
  .contact-section {
    padding: 6rem 0;
  }
}

/* ============================================
   RESPONSIVE: MOBILE NAV (max-width: 767px)
   ============================================ */

@media (max-width: 767px) {
  .mobile-menu-toggle {
    display: inline-block;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 1rem;
    border-top: 1px solid var(--muted);
  }

  .nav-menu.open a {
    padding: 0.75rem 0;
    font-size: 1rem;
  }

  .hero-section {
    min-height: 70vh;
    padding: 3rem 1.25rem;
  }

  .hero-section .btn-group {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ============================================
   PAGE-SPECIFIC: PRICING
   ============================================ */

.pricing-section {
  padding: 5rem 0;
}

.pricing-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: transform var(--transition), border-color var(--transition);
}

.pricing-card:hover {
  transform: translateY(-2px);
}

.pricing-card--featured {
  border-color: var(--primary);
}

.pricing-card__tier {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
}

.pricing-card__desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.pricing-card__features {
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-card__features li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-card__features li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   PAGE-SPECIFIC: BLOG / ARTICLES
   ============================================ */

.blog-section {
  padding: 5rem 0;
}

.blog-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.blog-card:hover {
  transform: translateY(-2px);
}

.blog-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body {
  padding: 1.5rem;
}

.blog-card__meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.blog-card__body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.blog-card__body h3 a {
  color: var(--text);
}

.blog-card__body h3 a:hover {
  color: var(--accent);
}

.blog-card__body p {
  font-size: 0.9rem;
}

/* ============================================
   PAGE-SPECIFIC: FAQ
   ============================================ */

.faq-section {
  padding: 5rem 0;
}

.faq-list {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
}

.faq-item__question:hover {
  color: var(--accent);
}

.faq-item__answer {
  padding-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================
   UTILITY: SPACING
   ============================================ */

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ============================================
   UTILITY: VISIBILITY
   ============================================ */

.hide-mobile {
  display: none;
}

.hide-desktop {
  display: block;
}

@media (min-width: 768px) {
  .hide-mobile {
    display: block;
  }

  .hide-desktop {
    display: none;
  }
}