@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */

:root {
  --primary: #B85C3C;
  --accent: #8A8744;
  --bg: #F5EBDD;
  --surface: #FAF3E7;
  --text: #3D2B1F;
  --muted: #9E8B78;

  --font-family: 'Outfit', sans-serif;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-offset: 6px 6px 0 var(--primary);
  --shadow-offset-accent: 6px 6px 0 var(--accent);
  --shadow-offset-sm: 4px 4px 0 var(--primary);
  --transition: 0.2s ease;
  --max-width: 1200px;
  --header-height: 72px;
}

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

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

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

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

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

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

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

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

ul, ol {
  list-style: none;
}

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

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

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

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

.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;
}

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

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

.section {
  padding: 4rem 0;
}

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

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 2px solid var(--text);
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), border-color var(--transition);
}

.header.scrolled {
  background: var(--surface);
  border-bottom-color: var(--primary);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--text);
  border-radius: var(--radius);
  padding: 0.5rem;
  cursor: pointer;
  color: var(--text);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle svg,
.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  position: relative;
}

.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--text);
  left: 0;
}

.mobile-menu-toggle span::before {
  top: -6px;
}

.mobile-menu-toggle span::after {
  top: 6px;
}

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

.nav-menu a {
  font-weight: 500;
  color: var(--text);
  padding: 0.25rem 0;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

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

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

  .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;
  }
}

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

.btn-primary,
.btn-secondary,
.cta-button,
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid var(--text);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
  line-height: 1.2;
}

.btn-primary {
  background: var(--primary);
  color: var(--surface);
  box-shadow: var(--shadow-offset);
}

.btn-primary:hover {
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0 var(--primary);
  color: var(--surface);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-offset-accent);
}

.btn-secondary:hover {
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0 var(--accent);
  color: var(--text);
}

.cta-button {
  background: var(--primary);
  color: var(--surface);
  box-shadow: var(--shadow-offset);
  font-size: 1.125rem;
  padding: 1rem 2.25rem;
}

.cta-button:hover {
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0 var(--primary);
  color: var(--surface);
}

.form-submit {
  background: var(--primary);
  color: var(--surface);
  box-shadow: var(--shadow-offset-sm);
  width: 100%;
}

.form-submit:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--primary);
  color: var(--surface);
}

/* ============================================
   PHOTO BACKGROUND OVERLAY
   ============================================ */

.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 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: 4rem 0;
}

.hero-section .container {
  width: 100%;
}

.hero-content {
  max-width: 680px;
}

.hero-content h1 {
  color: var(--surface);
  margin-bottom: 1.25rem;
}

.hero-content p {
  color: var(--bg);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 767px) {
  .hero-section {
    min-height: 60vh;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
  }
}

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

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-card {
  background: var(--surface);
  border: 2px solid var(--text);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-offset);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--primary);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--surface);
  font-size: 1.5rem;
}

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

.feature-card p {
  color: var(--muted);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border: 2px solid var(--text);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-offset-accent);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--accent);
}

.service-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid var(--text);
}

.service-card-body {
  padding: 1.5rem;
}

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

.service-card-body p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.service-card-body .btn-secondary {
  font-size: 0.875rem;
  padding: 0.6rem 1.25rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

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

.about-image {
  border: 2px solid var(--text);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-offset);
}

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

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

.about-content p {
  color: var(--muted);
  margin-bottom: 1rem;
}

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

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

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

.stats-section {
  background: var(--surface);
  border-top: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
}

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

.stat-item h2 {
  color: var(--primary);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.25rem;
}

.stat-item p {
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.testimonial-section {
  background-size: cover;
  background-position: center;
}

.testimonial-section .section-header h2 {
  color: var(--surface);
}

.testimonial-section .section-header p {
  color: var(--bg);
  opacity: 0.8;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.testimonial-quote::before {
  content: "\201C";
  font-size: 2.5rem;
  color: var(--primary);
  line-height: 0;
  vertical-align: -0.5rem;
  margin-right: 0.25rem;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text);
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.cta-section {
  background: var(--primary);
  border-top: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  text-align: center;
}

.cta-section h2 {
  color: var(--surface);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--bg);
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.cta-section .cta-button {
  background: var(--surface);
  color: var(--text);
  border-color: var(--text);
  box-shadow: 6px 6px 0 var(--text);
}

.cta-section .cta-button:hover {
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0 var(--text);
}

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

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

.contact-info h3 {
  margin-bottom: 1.5rem;
}

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

.contact-row-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-top: 0.15rem;
}

.contact-row-text {
  color: var(--text);
  line-height: 1.5;
}

.contact-row-text strong {
  display: block;
  margin-bottom: 0.15rem;
}

.contact-form {
  background: var(--surface);
  border: 2px solid var(--text);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-offset);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
}

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

.form-group label {
  font-weight: 500;
  font-size: 0.9rem;
  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);
  box-shadow: 0 0 0 3px rgba(184, 92, 60, 0.15);
}

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

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

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

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

/* ============================================
   POLICY PAGES (Privacy, Terms, etc.)
   ============================================ */

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

.policy-content {
  max-width: 760px;
  margin: 0 auto;
}

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

.policy-content .policy-updated {
  color: var(--muted);
  margin-bottom: 2.5rem;
  font-size: 0.9rem;
}

.policy-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--muted);
}

.policy-content h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content p {
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.policy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.policy-content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.footer {
  background: var(--text);
  color: var(--bg);
  padding: 4rem 0 2rem;
  border-top: 2px solid var(--text);
}

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

.footer-col h4 {
  color: var(--surface);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-col p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: var(--bg);
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity var(--transition), color var(--transition);
}

.footer-col ul li a:hover {
  opacity: 1;
  color: var(--primary);
}

.footer-brand .logo {
  color: var(--surface);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 2px solid var(--muted);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  transition: background var(--transition), border-color var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--surface);
}

.footer-bottom {
  border-top: 1px solid var(--muted);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 0;
}

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

.footer-bottom-links a {
  color: var(--muted);
  font-size: 0.85rem;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.cookie-popup {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  max-width: 420px;
  margin-left: auto;
  background: var(--surface);
  border: 2px solid var(--text);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-offset);
  z-index: 9999;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.cookie-popup h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.cookie-popup p {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.cookie-popup-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-popup-buttons .btn-primary {
  font-size: 0.875rem;
  padding: 0.6rem 1.25rem;
}

.cookie-popup-buttons .btn-secondary {
  font-size: 0.875rem;
  padding: 0.6rem 1.25rem;
}

@media (min-width: 768px) {
  .cookie-popup {
    left: auto;
  }
}

/* ============================================
   PAGE HERO (Inner pages)
   ============================================ */

.page-hero {
  background: var(--surface);
  border-bottom: 2px solid var(--text);
  padding: 3rem 0;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--surface);
  border: 2px solid var(--text);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-offset);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--primary);
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-offset-accent);
}

.pricing-card.featured:hover {
  box-shadow: 3px 3px 0 var(--accent);
}

.pricing-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--surface);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.25rem;
}

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

.pricing-features {
  text-align: left;
  margin: 1.5rem 0;
}

.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--bg);
  color: var(--text);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  border: 2px solid var(--text);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

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

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================
   BLOG / ARTICLES GRID
   ============================================ */

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.blog-card {
  background: var(--surface);
  border: 2px solid var(--text);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-offset-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--primary);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid var(--text);
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.blog-card-body p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.blog-card-body a {
  font-weight: 600;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.team-card-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid var(--text);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-offset-sm);
}

.team-card h4 {
  margin-bottom: 0.25rem;
}

.team-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   NEWSLETTER / SUBSCRIBE
   ============================================ */

.newsletter-section {
  background: var(--accent);
  border-top: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
}

.newsletter-inner {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.newsletter-inner h2 {
  color: var(--surface);
  margin-bottom: 0.5rem;
}

.newsletter-inner p {
  color: var(--bg);
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-form .form-input {
  border-color: var(--text);
}

@media (min-width: 768px) {
  .newsletter-form {
    flex-direction: row;
  }

  .newsletter-form .form-input {
    flex: 1;
  }

  .newsletter-form .btn-primary {
    white-space: nowrap;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.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; }

.bg-surface {
  background: var(--surface);
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .header,
  .footer,
  .cookie-popup,
  .mobile-menu-toggle {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section {
    padding: 1rem 0;
  }
}