/* 217 Sets — Studio Cinématographique | style.css?v=1 */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background: #111111;
  color: #e8e2d9;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #ea580c; text-decoration: none; transition: color 0.2s; }
a:hover { color: #fb923c; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Oswald', 'Impact', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }

/* ===== LAYOUT UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-dark { background: #1c1c1c; }
.section-darker { background: #111111; }
.section-orange { background: #ea580c; }
.text-center { text-align: center; }
.text-orange { color: #ea580c; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Oswald', 'Impact', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 2px solid #ea580c;
  background: #ea580c;
  color: #fff;
  cursor: pointer;
  transition: all 0.25s;
}
.btn:hover { background: transparent; color: #ea580c; }
.btn-outline {
  background: transparent;
  color: #ea580c;
}
.btn-outline:hover { background: #ea580c; color: #fff; }
.btn-white {
  background: #fff;
  border-color: #fff;
  color: #1c1c1c;
}
.btn-white:hover { background: transparent; color: #fff; }

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  margin-bottom: 16px;
}
.section-title span { color: #ea580c; }
.section-subtitle {
  color: #b0a89e;
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 48px;
}
.section-header { margin-bottom: 56px; }
.divider {
  width: 60px;
  height: 4px;
  background: #ea580c;
  margin: 16px 0 32px;
}
.divider-center { margin: 16px auto 32px; }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.96);
  border-bottom: 2px solid #ea580c;
  transition: background 0.3s;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 72px;
}
.navbar-logo img {
  height: 44px;
  width: auto;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-nav a {
  color: #e8e2d9;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  transition: color 0.2s;
}
.navbar-nav a:hover,
.navbar-nav a.active { color: #ea580c; }
.navbar-cta {
  background: #ea580c;
  color: #fff !important;
  padding: 8px 20px !important;
}
.navbar-cta:hover { background: #c2410c !important; color: #fff !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #e8e2d9;
  transition: all 0.3s;
}

/* ===== HERO SPLIT ===== */
.hero { padding-top: 72px; }
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
}
.hero-video-half {
  position: relative;
  overflow: hidden;
  background: #1c1c1c;
}
.hero-split-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,28,28,0.3) 0%, rgba(234,88,12,0.1) 100%);
}
.hero-text-half {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  background: #1c1c1c;
  color: #fff;
}
.hero-eyebrow {
  display: inline-block;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ea580c;
  border-left: 3px solid #ea580c;
  padding-left: 12px;
  margin-bottom: 24px;
}
.hero-text-half h1 {
  color: #fff;
  margin-bottom: 20px;
}
.hero-text-half h1 span { color: #ea580c; }
.hero-text-half > p {
  color: #b0a89e;
  font-size: 1.1rem;
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(234,88,12,0.3);
}
.stat-item { text-align: left; }
.stat-num {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ea580c;
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #b0a89e;
  margin-top: 4px;
}

/* ===== SERVICES STRIP ===== */
.services-strip {
  background: #ea580c;
  padding: 20px 0;
}
.services-strip-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.service-tag {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.7);
  transform: rotate(45deg);
}

/* ===== FEATURE CARDS ===== */
.feature-card {
  background: #242424;
  padding: 40px 32px;
  border-top: 3px solid #ea580c;
  transition: transform 0.25s, background 0.25s;
}
.feature-card:hover { transform: translateY(-4px); background: #2a2a2a; }
.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.feature-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 12px; }
.feature-card p { color: #b0a89e; font-size: 0.95rem; margin: 0; }

/* ===== IMAGE BLOCKS ===== */
.img-block { overflow: hidden; }
.img-block img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.img-block:hover img { transform: scale(1.04); }

.content-block { padding: 48px; }
.content-block h2 { color: #fff; margin-bottom: 12px; }
.content-block p { color: #b0a89e; }
.content-block ul { margin: 16px 0 28px; }
.content-block ul li {
  color: #b0a89e;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
}
.content-block ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #ea580c;
}

/* ===== BANNER ===== */
.banner-section {
  background-image: url('/images/decor-exterieur.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 100px 0;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.75);
}
.banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.banner-content h2 { color: #fff; margin-bottom: 16px; }
.banner-content p { color: #b0a89e; max-width: 620px; margin: 0 auto 36px; font-size: 1.05rem; }

/* ===== CTA GRID ===== */
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.cta-image { position: relative; overflow: hidden; }
.cta-image img { width: 100%; height: 100%; object-fit: cover; }
.cta-content {
  background: #ea580c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  color: #fff;
}
.cta-content h2 { color: #fff; margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.9); margin-bottom: 32px; font-size: 1.05rem; }

/* ===== PROCESS STEPS ===== */
.process-steps { counter-reset: step; }
.process-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.process-step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #ea580c;
  opacity: 0.35;
  line-height: 1;
  min-width: 60px;
}
.step-body h3 { color: #fff; margin-bottom: 8px; font-size: 1.2rem; }
.step-body p { color: #b0a89e; margin: 0; font-size: 0.95rem; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
}
.gallery-item { overflow: hidden; position: relative; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.06); }

/* ===== TARIFS / PRICING ===== */
.pricing-card {
  background: #1c1c1c;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px 32px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}
.pricing-card:hover { border-color: #ea580c; transform: translateY(-4px); }
.pricing-card.featured { border-color: #ea580c; background: #242424; }
.pricing-tag {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ea580c;
  margin-bottom: 12px;
}
.pricing-card h3 { color: #fff; margin-bottom: 8px; font-size: 1.5rem; }
.pricing-price {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 2.8rem;
  color: #ea580c;
  font-weight: 700;
  line-height: 1;
  margin: 20px 0;
}
.pricing-price small { font-size: 1rem; color: #b0a89e; }
.pricing-card ul { text-align: left; margin: 20px 0 32px; }
.pricing-card ul li {
  color: #b0a89e;
  padding: 7px 0;
  padding-left: 22px;
  position: relative;
  font-size: 0.9rem;
}
.pricing-card ul li::before { content: '✓'; position: absolute; left: 0; color: #ea580c; font-weight: 700; }

/* ===== CONTACT FORM ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h2 { color: #fff; margin-bottom: 12px; }
.contact-info p { color: #b0a89e; margin-bottom: 28px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(234,88,12,0.15);
  border: 1px solid rgba(234,88,12,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-detail-text strong { color: #fff; display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-detail-text span { color: #b0a89e; font-size: 0.9rem; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #b0a89e;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #242424;
  border: 1px solid rgba(255,255,255,0.1);
  color: #e8e2d9;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #ea580c; }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card {
  background: #1c1c1c;
  overflow: hidden;
  transition: transform 0.25s;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 28px; }
.blog-meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ea580c;
  margin-bottom: 10px;
}
.blog-card-body h3 { color: #fff; font-size: 1.1rem; margin-bottom: 10px; line-height: 1.3; }
.blog-card-body p { color: #b0a89e; font-size: 0.88rem; margin-bottom: 18px; line-height: 1.6; }
.read-more {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ea580c;
}
.read-more::after { content: ' →'; }

/* Article single */
.article-hero {
  padding-top: 72px;
  height: 460px;
  position: relative;
  overflow: hidden;
}
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.9) 0%, rgba(17,17,17,0.3) 100%);
}
.article-hero-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
}
.article-hero-title h1 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.5rem); max-width: 800px; }

.article-body { padding: 60px 0 80px; }
.article-container { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.article-meta-bar span {
  font-size: 0.82rem;
  color: #b0a89e;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.article-meta-bar .tag {
  background: rgba(234,88,12,0.2);
  color: #ea580c;
  padding: 4px 12px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.article-content h2 { color: #fff; margin: 36px 0 14px; font-size: 1.5rem; }
.article-content h3 { color: #ea580c; margin: 28px 0 10px; font-size: 1.15rem; text-transform: none; letter-spacing: 0; }
.article-content p { color: #b0a89e; margin-bottom: 20px; font-size: 1rem; line-height: 1.8; }
.article-content ul { margin: 16px 0 24px 20px; list-style: disc; }
.article-content ul li { color: #b0a89e; margin-bottom: 8px; font-size: 0.97rem; line-height: 1.7; }
.article-content a { color: #ea580c; text-decoration: underline; }
.article-content a:hover { color: #fb923c; }
.article-content blockquote {
  border-left: 4px solid #ea580c;
  padding: 16px 24px;
  background: rgba(234,88,12,0.07);
  margin: 28px 0;
  color: #e8e2d9;
  font-style: italic;
}
.article-img-full { margin: 36px 0; overflow: hidden; }
.article-img-full img { width: 100%; height: 300px; object-fit: cover; }
.article-img-caption { font-size: 0.82rem; color: #6b6460; margin-top: 8px; text-align: center; }

/* Article sidebar (optional, for layout) */
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start; }
.article-sidebar {}
.sidebar-widget {
  background: #1c1c1c;
  padding: 28px;
  margin-bottom: 28px;
}
.sidebar-widget h4 { color: #fff; margin-bottom: 16px; font-size: 0.9rem; }
.sidebar-widget ul li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-widget ul li a { color: #b0a89e; font-size: 0.88rem; }
.sidebar-widget ul li a:hover { color: #ea580c; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding-top: 72px;
  background: #1c1c1c;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}
.page-hero-inner {
  padding: 80px 0 70px;
  position: relative;
  z-index: 1;
}
.page-hero-inner h1 { color: #fff; margin-bottom: 12px; }
.page-hero-inner p { color: #b0a89e; max-width: 560px; font-size: 1.05rem; margin-bottom: 0; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.breadcrumb a { color: #b0a89e; }
.breadcrumb a:hover { color: #ea580c; }
.breadcrumb span { color: #ea580c; }
.page-hero-accent {
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 100%;
  background: linear-gradient(to left, rgba(234,88,12,0.08) 0%, transparent 100%);
}

/* ===== ACCORDION ===== */
.accordion-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.accordion-btn::after {
  content: '+';
  font-size: 1.4rem;
  color: #ea580c;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.accordion-btn.open::after { transform: rotate(45deg); }
.accordion-body {
  display: none;
  padding: 0 0 24px;
  color: #b0a89e;
  font-size: 0.95rem;
  line-height: 1.7;
}
.accordion-body.open { display: block; }

/* ===== FOOTER ===== */
.footer {
  background: #0a0a0a;
  border-top: 3px solid #ea580c;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  color: #6b6460;
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 280px;
}
.footer-logo img { height: 40px; }
.footer-col h5 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(234,88,12,0.4);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: #6b6460;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #ea580c; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: #6b6460; font-size: 0.82rem; margin: 0; }
.footer-bottom a { color: #6b6460; font-size: 0.82rem; }
.footer-bottom a:hover { color: #ea580c; }

/* ===== 404 ===== */
.error-404 {
  padding: 120px 0 80px;
  text-align: center;
}
.error-404 .error-num {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: clamp(7rem, 20vw, 14rem);
  font-weight: 700;
  color: rgba(234,88,12,0.15);
  line-height: 1;
  margin-bottom: -20px;
}
.error-404 h1 { color: #fff; margin-bottom: 16px; }
.error-404 p { color: #b0a89e; max-width: 480px; margin: 0 auto 36px; }

/* ===== SITEMAP ===== */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.sitemap-section h3 { color: #ea580c; margin-bottom: 16px; font-size: 1rem; }
.sitemap-section ul li { margin-bottom: 10px; }
.sitemap-section ul li a { color: #b0a89e; font-size: 0.9rem; }
.sitemap-section ul li a:hover { color: #ea580c; }

/* ===== TAGS ===== */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tag-pill {
  background: rgba(234,88,12,0.1);
  border: 1px solid rgba(234,88,12,0.3);
  color: #ea580c;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
}

/* ===== SCROLL-REVEAL (JS hook) ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
}
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .sitemap-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-image { height: 320px; }
}
@media (max-width: 768px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-video-half { height: 300px; }
  .hero-text-half { padding: 40px 28px; }
  .hero-stats { gap: 24px; }
  .grid-2 { grid-template-columns: 1fr; }
  .navbar-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: #111; flex-direction: column; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.08); }
  .navbar-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .content-block { padding: 32px 24px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .section { padding: 56px 0; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-3, .blog-grid, .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .pricing-card { padding: 28px 20px; }
}
