/* ============================================
   DG Nature — Pawfect-inspired Design
   Organic shapes, paw prints, playful feel
   ============================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark: #2d4a3e;
  --dark-rgb: 45, 74, 62;
  --accent: #3d8b6e;
  --amber: #e8a838;
  --cream: #faf8f5;
  --light: #f5f0eb;
  --white: #ffffff;
  --text: #1a1a2e;
  --muted: #6b7b75;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 8px 32px rgba(0,0,0,.08);
  --shadow-hover: 0 12px 40px rgba(0,0,0,.14);
  --transition: .3s cubic-bezier(.4,0,.2,1);

  /* Category colors */
  --cat-chien: #e8a838;
  --cat-chat: #9b59b6;
  --cat-alimentation: #3d8b6e;
  --cat-sante: #3498db;
  --cat-animaux: #8B6914;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', 'Inter', sans-serif;
  line-height: 1.25;
  font-weight: 700;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- PAW PRINT SVG (reusable background) ---------- */
.paw-bg {
  position: relative;
}
.paw-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='%23ffffff' opacity='1'%3E%3Cellipse cx='30' cy='38' rx='8' ry='10'/%3E%3Ccircle cx='20' cy='24' r='5'/%3E%3Ccircle cx='40' cy='24' r='5'/%3E%3Ccircle cx='14' cy='32' r='4'/%3E%3Ccircle cx='46' cy='32' r='4'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
}

.paw-bg-dark::before {
  opacity: .06;
}

/* ---------- BLOB SHAPES ---------- */
.blob-shape {
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  overflow: hidden;
  display: inline-block;
}
.blob-shape-alt {
  border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
  overflow: hidden;
  display: inline-block;
}
.blob-decor {
  position: absolute;
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  opacity: .08;
  pointer-events: none;
  z-index: 0;
}

/* ---------- WAVY SECTION DIVIDERS ---------- */
.wave-top {
  position: relative;
}
.wave-top::before {
  content: '';
  position: absolute;
  top: -48px;
  left: 0;
  width: 100%;
  height: 50px;
  background: inherit;
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
}

.wave-bottom::after {
  content: '';
  position: absolute;
  bottom: -48px;
  left: 0;
  width: 100%;
  height: 50px;
  background: inherit;
  clip-path: ellipse(55% 100% at 50% 0%);
  z-index: 2;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo img { height: 40px; width: auto; }

.main-nav {
  display: flex;
  gap: 8px;
  align-items: center;
}
.main-nav a {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.main-nav a:hover {
  background: var(--light);
  color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    transform: translateY(-120%);
    transition: var(--transition);
    z-index: 999;
  }
  .main-nav.open {
    transform: translateY(0);
  }
  .main-nav a {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
  }
}

/* ============================================
   HERO — Split layout
   ============================================ */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='%23ffffff' opacity='1'%3E%3Cellipse cx='30' cy='38' rx='8' ry='10'/%3E%3Ccircle cx='20' cy='24' r='5'/%3E%3Ccircle cx='40' cy='24' r='5'/%3E%3Ccircle cx='14' cy='32' r='4'/%3E%3Ccircle cx='46' cy='32' r='4'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
}
.hero .blob-decor {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: -100px;
  right: -100px;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { z-index: 2; }

.hero-label {
  display: inline-block;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: .5px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero h1 .highlight {
  color: var(--amber);
}

.hero-sub {
  font-size: 1.05rem;
  opacity: .85;
  margin-bottom: 32px;
  line-height: 1.8;
  max-width: 540px;
}

.hero-cta {
  display: inline-block;
  background: var(--amber);
  color: var(--text);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(232,168,56,.3);
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,168,56,.4);
  background: #f0b44a;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-image .blob-shape {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
}
.hero-image .blob-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Floating paw prints around hero image */
.hero-image::before,
.hero-image::after {
  content: '\1F43E';
  position: absolute;
  font-size: 2rem;
  opacity: .3;
  animation: float 4s ease-in-out infinite;
}
.hero-image::before { top: 10%; right: 5%; animation-delay: 0s; }
.hero-image::after { bottom: 15%; left: 5%; animation-delay: 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(10deg); }
}

@media (max-width: 768px) {
  .hero { padding: 48px 0 64px; }
  .hero-split {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-image { order: -1; }
  .hero-image .blob-shape { max-width: 280px; }
}

/* ============================================
   SECTION: CATEGORIES (dark bg)
   ============================================ */
.section-categories {
  background: var(--dark);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.section-categories::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='%23ffffff' opacity='1'%3E%3Cellipse cx='30' cy='38' rx='8' ry='10'/%3E%3Ccircle cx='20' cy='24' r='5'/%3E%3Ccircle cx='40' cy='24' r='5'/%3E%3Ccircle cx='14' cy='32' r='4'/%3E%3Ccircle cx='46' cy='32' r='4'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
}

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--amber);
  border-radius: 4px;
  margin: 16px auto 0;
}

.section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  opacity: .8;
  max-width: 640px;
  margin: -32px auto 48px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.category-card {
  background: #1a2e25;
  color: #ffffff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  background: #223d32;
}
.category-card .cat-icon {
  font-size: 2.8rem;
  line-height: 1;
}
.category-card h3 {
  font-size: 1.15rem;
  color: #ffffff;
}
.category-card p {
  font-size: .88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* Category-specific top accent */
.category-card.cat-chien { border-top: 4px solid var(--cat-chien); }
.category-card.cat-chat { border-top: 4px solid var(--cat-chat); }
.category-card.cat-alimentation { border-top: 4px solid var(--cat-alimentation); }
.category-card.cat-sante { border-top: 4px solid var(--cat-sante); }
.category-card.cat-animaux { border-top: 4px solid var(--cat-animaux); }

/* ============================================
   SECTION: ABOUT (split layout, light bg)
   ============================================ */
.section-about {
  background: var(--light);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  display: flex;
  justify-content: center;
  position: relative;
}
.about-image .blob-shape-alt {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
}
.about-image .blob-shape-alt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Blob decorative accent behind about image */
.about-image::before {
  content: '';
  position: absolute;
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
  background: var(--accent);
  opacity: .1;
  border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
  z-index: 0;
}
.about-image .blob-shape-alt { position: relative; z-index: 1; }

.about-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 20px;
  color: var(--dark);
}
.about-text p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.btn-accent {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-accent:hover {
  background: #348a62;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61,139,110,.3);
}

@media (max-width: 768px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .about-image .blob-shape-alt { max-width: 280px; }
}

/* ============================================
   SECTION: RACES POPULAIRES (cream bg)
   ============================================ */
.section-races {
  background: var(--cream);
  padding: 100px 0;
}

.races-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.race-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: visible;
}
.race-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.race-card-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--light);
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.race-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--dark);
}
.race-card-type {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.race-card-type.type-chien {
  background: rgba(232,168,56,.15);
  color: #c48a20;
}
.race-card-type.type-chat {
  background: rgba(155,89,182,.15);
  color: #8e44ad;
}

.race-card-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  font-size: .85rem;
  color: var(--muted);
}
.race-card-details span {
  display: flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 640px) {
  .races-grid { grid-template-columns: 1fr; }
}

/* ============================================
   SECTION: INFO BLOCKS (alternating)
   ============================================ */
.section-info {
  padding: 80px 0;
}
.section-info.bg-light { background: var(--light); }
.section-info.bg-cream { background: var(--cream); }

.info-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.info-split.reverse .info-image { order: 2; }
.info-split.reverse .info-text { order: 1; }

.info-image {
  position: relative;
  display: flex;
  justify-content: center;
}
.info-image .blob-shape,
.info-image .blob-shape-alt {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
}
.info-image .blob-shape img,
.info-image .blob-shape-alt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 20px;
  color: var(--dark);
}
.info-text p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .info-split {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .info-split.reverse .info-image { order: -1; }
  .info-split.reverse .info-text { order: 0; }
  .info-image .blob-shape,
  .info-image .blob-shape-alt { max-width: 280px; margin: 0 auto; }
}

/* ============================================
   SECTION: ALL ARTICLES
   ============================================ */
.section-articles {
  background: var(--light);
  padding: 100px 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.article-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.article-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article-card h3 {
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
  flex: 1;
}
.article-card-meta {
  font-size: .78rem;
  color: var(--muted);
}

/* Category pills */
.article-card-cat {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 4px 12px;
  border-radius: 50px;
  width: fit-content;
}
.cat-chien {
  background: rgba(232,168,56,.15);
  color: #c48a20;
}
.cat-chat {
  background: rgba(155,89,182,.15);
  color: #8e44ad;
}
.cat-alimentation {
  background: rgba(61,139,110,.15);
  color: #2d7a5a;
}
.cat-sante {
  background: rgba(52,152,219,.15);
  color: #2980b9;
}
.cat-animaux {
  background: rgba(139,105,20,.15);
  color: #8B6914;
}

@media (max-width: 1024px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .articles-grid { grid-template-columns: 1fr; }
}

/* ============================================
   SECTION: CTA
   ============================================ */
.section-cta {
  background: var(--dark);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='%23ffffff' opacity='1'%3E%3Cellipse cx='30' cy='38' rx='8' ry='10'/%3E%3Ccircle cx='20' cy='24' r='5'/%3E%3Ccircle cx='40' cy='24' r='5'/%3E%3Ccircle cx='14' cy='32' r='4'/%3E%3Ccircle cx='46' cy='32' r='4'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
}

.section-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.section-cta h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--amber);
  border-radius: 4px;
  margin: 16px auto 0;
}
.section-cta p {
  font-size: 1.05rem;
  opacity: .85;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.btn-cta {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}
.btn-cta-amber {
  background: var(--amber);
  color: var(--text);
  box-shadow: 0 4px 16px rgba(232,168,56,.3);
}
.btn-cta-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,168,56,.4);
  background: #f0b44a;
}
.btn-cta-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
}
.btn-cta-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.8);
  padding-top: 60px;
  position: relative;
}
/* Wavy top separator */
.site-footer::before {
  content: '';
  position: absolute;
  top: -48px;
  left: 0;
  width: 100%;
  height: 50px;
  background: var(--dark);
  clip-path: ellipse(55% 100% at 50% 100%);
}
/* Paw prints decoration in footer */
.site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='%23ffffff' opacity='1'%3E%3Cellipse cx='30' cy='38' rx='8' ry='10'/%3E%3Ccircle cx='20' cy='24' r='5'/%3E%3Ccircle cx='40' cy='24' r='5'/%3E%3Ccircle cx='14' cy='32' r='4'/%3E%3Ccircle cx='46' cy='32' r='4'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.footer-brand .footer-logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand .footer-logo .accent { color: var(--amber); }
.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  opacity: .7;
}

.footer-col h4 {
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: .88rem;
  padding: 4px 0;
  opacity: .7;
  transition: var(--transition);
}
.footer-col a:hover {
  opacity: 1;
  color: var(--amber);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  padding: 20px 24px;
  font-size: .82rem;
  opacity: .6;
  position: relative;
  z-index: 1;
}
.footer-bottom a {
  opacity: .8;
  transition: var(--transition);
}
.footer-bottom a:hover { opacity: 1; color: var(--amber); }

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ============================================
   UTILITY & ANIMATIONS
   ============================================ */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }

/* Gentle fade-in on scroll */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive images inside blobs */
.blob-shape img,
.blob-shape-alt img {
  transition: transform .5s ease;
}
.blob-shape:hover img,
.blob-shape-alt:hover img {
  transform: scale(1.05);
}

/* Print */
@media print {
  .site-header, .site-footer, .section-cta, .hero-cta, .btn-accent, .btn-cta { display: none; }
  body { background: #fff; color: #000; }
}
