/*
Theme Name: Film In Israel
Theme URI: https://filminisrael.com
Author: Highlight Films
Description: Official theme for filminisrael.com — cinematic dark theme.
Version: 2.1
Text Domain: filminisrael
*/

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --orange:   #ff7034;
  --orange-d: #e05a20;
  --black:    #0a0a0a;
  --dark:     #111111;
  --card:     #181818;
  --border:   #2a2a2a;
  --muted:    #888888;
  --light:    #cccccc;
  --white:    #ffffff;
  --font-head: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
  --max-w:    1200px;
  --radius:   4px;
  --t:        0.25s ease;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--light);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--white); }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.04em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; }
p  { margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--white); font-weight: 600; }

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section--dark   { background: var(--dark); }
.section--darker { background: var(--black); }
.section--card   { background: var(--card); }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-intro {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 650px;
  margin: 0 auto 50px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
}
.btn-primary:hover { background: transparent; color: var(--orange); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-group { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.site-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--white);
}
.site-logo span { color: var(--orange); }
.site-logo:hover { color: var(--white); }

.main-nav ul { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light);
  position: relative;
  padding-bottom: 2px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width var(--t);
}
.main-nav a:hover,
.main-nav .current-menu-item > a { color: var(--orange); }
.main-nav a:hover::after,
.main-nav .current-menu-item > a::after { width: 100%; }

.nav-cta .btn { padding: 10px 22px; font-size: 0.75rem; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all var(--t); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav { display: none; background: var(--dark); border-top: 1px solid var(--border); padding: 16px 24px; }
.mobile-nav li a {
  display: block;
  padding: 11px 0;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
  border-bottom: 1px solid var(--border);
}
.mobile-nav li a:hover { color: var(--orange); }
.mobile-nav.open { display: block; }

/* ── Hero (homepage) ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
/* Geometric right panel */
.hero::after {
  content: '';
  position: absolute;
  right: -40px; top: 0; bottom: 0;
  width: 44%;
  background: var(--card);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}
/* Orange glow */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 65% at 72% 50%, rgba(255,165,0,0.07) 0%, transparent 65%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 600px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 2px; background: var(--orange); }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-sub { font-size: 1.1rem; color: var(--muted); max-width: 480px; line-height: 1.65; }

/* Hero image — shown on right panel */
.hero-image {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 43%;
  z-index: 1;
  overflow: hidden;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
/* Gradient blends image into left side */
.hero-image::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--dark) 0%, transparent 35%);
  z-index: 2;
}
/* If no image, shows cinematic gradient instead */
.hero-image-fallback {
  width: 100%; height: 100%;
  background:
    linear-gradient(135deg, rgba(255,165,0,0.04) 0%, transparent 60%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 38px,
      rgba(255,165,0,0.03) 38px,
      rgba(255,165,0,0.03) 40px
    );
}

/* ── Stats bar ───────────────────────────────────────────── */
.stats-bar {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: 2.8rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── About grid (homepage) ───────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-wrap img {
  width: 100%; height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-image-wrap::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 60%; height: 60%;
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  z-index: -1;
}
.about-badge {
  position: absolute;
  bottom: 24px; left: -24px;
  background: var(--orange);
  color: var(--black);
  padding: 16px 24px;
  font-family: var(--font-head);
  font-size: 1.6rem;
  line-height: 1.2;
  z-index: 2;
}
.about-badge small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Services grid ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.service-card {
  background: var(--card);
  padding: 40px 32px;
  transition: background var(--t);
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--t);
  transform-origin: left;
}
.service-card:hover { background: #1e1e1e; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .service-title { color: var(--orange); }
.service-icon { font-size: 2.4rem; margin-bottom: 18px; display: block; }
.service-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  transition: color var(--t);
}
.service-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.6; margin: 0; }
.service-arrow {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ── CTA band ────────────────────────────────────────────── */
.cta-band { background: var(--orange); padding: 70px 0; }
.cta-band h2 { color: var(--black); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 10px; }
.cta-band p  { color: rgba(0,0,0,0.65); margin: 0; font-size: 1.05rem; }
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band .btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  flex-shrink: 0;
}
.cta-band .btn-primary:hover { background: transparent; color: var(--black); }

/* ── Page hero (interior pages) ─────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 30%;
  background: linear-gradient(to left, rgba(255,165,0,0.04), transparent);
  pointer-events: none;
}
.breadcrumb { font-size: 0.75rem; color: var(--muted); margin-bottom: 16px; letter-spacing: 0.06em; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }
.page-hero h1 { margin-bottom: 16px; }
.page-hero .hero-desc { font-size: 1.1rem; color: var(--muted); max-width: 600px; line-height: 1.65; }

/* ── Page body layout ────────────────────────────────────── */
.page-body { padding: 80px 0; }
.page-layout { display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start; }

/* ── Entry content (WP editor output) ───────────────────── */
/* These styles apply to content written in the WordPress editor */
.entry-content h2 { margin: 40px 0 16px; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.entry-content h3 { margin: 32px 0 12px; font-size: 1.4rem; color: var(--white); }
.entry-content h4 { margin: 24px 0 10px; font-size: 1.1rem; color: var(--orange); letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--font-body); }
.entry-content p  { color: var(--light); margin-bottom: 1.2rem; }
.entry-content p:last-child { margin-bottom: 0; }
.entry-content strong { color: var(--white); }
.entry-content a  { color: var(--orange); }
.entry-content a:hover { color: var(--white); }

/* Lists from WP editor */
.entry-content ul,
.entry-content ol {
  margin: 14px 0 28px;
  padding: 0;
}
.entry-content ul { list-style: none; }
.entry-content ul li {
  padding: 9px 0 9px 24px;
  position: relative;
  color: var(--light);
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.entry-content ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--orange);
}
.entry-content ol { list-style: decimal; padding-left: 20px; }
.entry-content ol li {
  color: var(--light);
  padding: 6px 0;
  font-size: 0.95rem;
}
/* WP images in content */
.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 20px 0;
}
.entry-content figure { margin: 24px 0; }
.entry-content figcaption { font-size: 0.82rem; color: var(--muted); text-align: center; margin-top: 8px; }

/* WP blocks that might appear */
.entry-content .wp-block-image img { width: 100%; height: 220px; object-fit: cover; }
.entry-content .wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 28px 0;
}
.entry-content .wp-block-gallery figure { margin: 0; }
.entry-content .wp-block-gallery img { width: 100%; height: 180px; object-fit: cover; }

/* ── Sidebar featured image ──────────────────────────────── */
/* Sits at top of right sidebar, above "Our Services" links. */
/* Set per page: Dashboard → Pages → Edit → Featured Image   */
.sidebar-featured-image {
  margin-bottom: 20px;
}
.sidebar-featured-image img {
  width: 100%;
  height: 180px;          /* ~50% of the former full-content height (was 520px) */
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  display: block;
}

/* ── Image gallery (service pages) ──────────────────────── */
.page-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 28px 0;
}
.page-gallery img {
  width: 100%; height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: opacity var(--t);
}
.page-gallery img:hover { opacity: 0.8; }

/* ── Sidebar ─────────────────────────────────────────────── */
.sidebar-widget {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  padding: 28px;
  margin-bottom: 20px;
}
.sidebar-widget h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.sidebar-widget ul { list-style: none; }
.sidebar-widget ul li { border-bottom: 1px solid var(--border); }
.sidebar-widget ul li a {
  display: block;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--light);
  transition: color var(--t), padding-left var(--t);
}
.sidebar-widget ul li a:hover,
.sidebar-widget ul li a.active { color: var(--orange); padding-left: 8px; }
.sidebar-widget p { font-size: 0.9rem; color: var(--muted); margin-bottom: 8px; }
.sidebar-widget p:last-child { margin: 0; }
.sidebar-widget strong { color: var(--white); display: block; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2px; }
.sidebar-widget a { color: var(--orange); }

/* ── Contact section ─────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(255,165,0,0.08);
  border: 1px solid rgba(255,165,0,0.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-text strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.contact-info-text a,
.contact-info-text span { font-size: 1rem; color: var(--light); }
.contact-info-text a:hover { color: var(--orange); }

/* Contact form panel */
.contact-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  padding: 36px;
  border-radius: var(--radius);
}
.contact-panel h3 { font-size: 1.6rem; margin-bottom: 24px; }

/* ── Form styles (native + CF7) ─────────────────────────── */
.fii-form .form-row { margin-bottom: 18px; }
.fii-form .form-row-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
.fii-form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.fii-form input[type="text"],
.fii-form input[type="email"],
.fii-form input[type="tel"],
.fii-form select,
.fii-form textarea,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--t);
  -webkit-appearance: none;
}
.fii-form input:focus,
.fii-form textarea:focus,
.wpcf7 input:focus,
.wpcf7 textarea:focus { border-color: var(--orange); }
.fii-form textarea,
.wpcf7 textarea { min-height: 130px; resize: vertical; }
.fii-form select,
.wpcf7 select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.fii-form select option { background: var(--dark); }
.fii-form .btn-submit,
.wpcf7 input[type="submit"] {
  width: 100%;
  display: block;
  background: var(--orange);
  color: var(--black);
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 36px;
  cursor: pointer;
  transition: all var(--t);
  margin-top: 6px;
}
.fii-form .btn-submit:hover,
.wpcf7 input[type="submit"]:hover { background: transparent; color: var(--orange); }

/* Form messages */
.form-notice {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}
.form-notice.success { background: rgba(0,200,100,0.1); border: 1px solid rgba(0,200,100,0.3); color: #4ade80; }
.form-notice.error   { background: rgba(255,80,80,0.1);  border: 1px solid rgba(255,80,80,0.3);  color: #f87171; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 48px; }
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--white);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 14px;
}
.footer-logo span { color: var(--orange); }
.footer-logo:hover { color: var(--white); }
.footer-brand p { font-size: 0.9rem; color: var(--muted); max-width: 280px; line-height: 1.65; margin: 0; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700;
  color: var(--muted);
  transition: all var(--t);
}
.footer-social a:hover { border-color: var(--orange); color: var(--orange); }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.footer-col ul li a {
  display: block;
  font-size: 0.9rem;
  color: #555;
  padding: 5px 0;
  transition: color var(--t);
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact-item { margin-bottom: 10px; }
.footer-contact-item a,
.footer-contact-item span { font-size: 0.9rem; color: #555; transition: color var(--t); }
.footer-contact-item a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p  { font-size: 0.8rem; color: #444; margin: 0; }
.footer-bottom a  { font-size: 0.8rem; color: #444; }
.footer-bottom a:hover { color: var(--orange); }

/* ── 404 ─────────────────────────────────────────────────── */
.not-found {
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px;
}
.not-found-code {
  font-family: var(--font-head);
  font-size: clamp(6rem, 15vw, 12rem);
  color: var(--orange); opacity: 0.12;
  line-height: 1; display: block;
}
.not-found-content { margin-top: -40px; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid    { grid-template-columns: 1fr; }
  .about-grid .about-image-wrap { display: none; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .fii-form .form-row-half { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .main-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 72vh; }
  .hero::after, .hero-image { display: none; }
  .section { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .page-layout   { grid-template-columns: 1fr; }
  .sidebar-featured-image img { height: 220px; } /* taller on mobile since it's full width */
  .page-gallery  { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .footer-grid   { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .entry-content .wp-block-gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .btn-group  { flex-direction: column; }
  .contact-panel { padding: 24px; }
  .page-gallery { grid-template-columns: 1fr; }
}
