/* ============================================================
   ElinaFilma — Stylesheet
   Organized into 7 sections for easy maintenance:
   1. Tokens & Reset
   2. Layout Utilities
   3. Navigation
   4. Hero (homepage)
   5. Content Sections (Page-Hero, Filming, About, Pricing, Portfolio, Contact)
   6. Footer
   7. Responsive
   ============================================================ */


/* ============================================================
   1. TOKENS & RESET
   ============================================================ */

:root {
  /* Brand palette */
  --red:        #C90F0E;
  --red-soft:   #A5302F;
  --ink:        #211313;   /* warm near-black */
  --ink-soft:   rgba(33, 19, 19, 0.7);
  --grey-light: #EDEDED;
  --grey-mid:   #8F8F8F;
  --lime:       #DCFF53;
  --white:      #FFFFFF;
  --cream:      #F7F4EE;
  --grid-line:  rgba(33, 19, 19, 0.1);

  /* Sizing */
  --max-width: 1440px;
  --page-pad:  clamp(20px, 4vw, 60px);
  --nav-h:     88px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter Tight', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--red); color: var(--white); }

img { max-width: 100%; display: block; }
a { color: inherit; }


/* ============================================================
   2. LAYOUT UTILITIES
   ============================================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

/* Red horizontal divider between sections */
.red-bar {
  height: 16px;
  background: var(--red);
  width: 100%;
}

/* Section label — small uppercase line with red dash */
.section-label {
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-label::before {
  content: '';
  width: 36px; height: 1px;
  background: var(--red);
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Pulsing live dot — used on Contact eyebrow */
.live-dot {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--lime);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 255, 83, 0.7); }
  50%      { box-shadow: 0 0 0 8px rgba(220, 255, 83, 0); }
}

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   3. NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 24px var(--page-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s ease, padding 0.3s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  padding: 16px var(--page-pad);
  border-bottom: 1px solid var(--grid-line);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 80px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
}

.nav.scrolled .nav-logo-img { height: 64px; }

.nav-links {
  display: flex;
  gap: 44px;
  list-style: none;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -8px;
  width: 0; height: 2px;
  background: var(--lime);
  transition: width 0.3s ease;
}

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

.nav-links a:hover,
.nav-links a.active { color: var(--red); }

/* Language switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 36px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.lang-switch a {
  color: var(--ink);
  opacity: 0.4;
  text-decoration: none;
  padding: 4px 6px;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.lang-switch a:hover { opacity: 0.8; }

.lang-switch a.active {
  opacity: 1;
  color: var(--red);
  position: relative;
  cursor: default;
}

.lang-switch a.active::after {
  content: '';
  position: absolute;
  left: 6px; right: 6px; bottom: 0;
  height: 2px;
  background: var(--lime);
}

.lang-switch .sep { opacity: 0.3; }

/* Mobile burger (hidden on desktop) */
.nav-burger { display: none; }


/* ============================================================
   4. HERO (homepage only)
   ============================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px var(--page-pad) 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

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

.hero-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(80px, 14vw, 240px);
  line-height: 0.95;
  color: var(--red);
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: fade-up 1s forwards;
}

.hero-title span:nth-child(1) { animation-delay: 0.2s; }
.hero-title span:nth-child(2) { animation-delay: 0.35s; }

.hero-tagline {
  margin-top: 36px;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--red);
  line-height: 1.1;
  opacity: 0;
  animation: fade-up 0.8s 0.6s forwards;
}

.hero-subtitle {
  margin-top: 28px;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-mid);
  font-weight: 500;
  max-width: 680px;
  line-height: 1.5;
  opacity: 0;
  animation: fade-up 0.8s 0.8s forwards;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: var(--page-pad);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  opacity: 0;
  animation: fade-up 0.8s 1s forwards;
}

.scroll-indicator::after {
  content: '';
  display: block;
  width: 1px; height: 40px;
  background: var(--ink);
  margin: 12px auto 0;
  animation: scroll-line 2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scroll-line {
  0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
  50%      { transform: scaleY(1);   opacity: 1; }
}


/* ============================================================
   5. CONTENT SECTIONS
   ============================================================ */

/* --- 5a. Page Hero (for About / Services / Contact pages) --- */

.page-hero {
  padding: 180px var(--page-pad) 80px;
  background: var(--white);
  border-bottom: 1px solid var(--grid-line);
}

.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.page-hero-eyebrow::before {
  content: '';
  width: 44px; height: 1px;
  background: var(--red);
}

/* Drop the line prefix when eyebrow starts with a live dot */
.page-hero-eyebrow:has(.live-dot)::before { display: none; }

.page-hero-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(80px, 13vw, 220px);
  line-height: 0.95;
  color: var(--red);
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.page-hero-sub {
  margin-top: 28px;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 26px;
  color: var(--ink);
  opacity: 0.8;
  max-width: 720px;
  line-height: 1.4;
}


/* --- 5b. Filming (homepage "What can I film for you?") --- */

.filming {
  padding: 120px 0;
  background: var(--white);
}

.filming-header {
  margin-bottom: 80px;
  text-align: center;
}

.filming-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(60px, 9vw, 140px);
  line-height: 1;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.filming-title-main {
  color: var(--red);
}

.filming-title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  text-transform: lowercase;
  font-size: 0.85em;
  letter-spacing: 0;
  margin-left: 0.2em;
}

.filming-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
}

.filming-card {
  padding: 40px 28px 60px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  position: relative;
  transition: background 0.4s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.filming-card:last-child { border-right: none; }

.filming-card:hover {
  background: var(--ink);
  color: var(--white);
}

.filming-card:hover h3,
.filming-card:hover .filming-card-num { color: var(--red); }

.filming-card::after {
  content: '→';
  position: absolute;
  bottom: 24px;
  right: 28px;
  font-size: 22px;
  color: var(--red);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.filming-card:hover::after {
  opacity: 1;
  transform: translateX(4px);
  color: var(--lime);
}

.filming-card-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--red);
  margin-bottom: 60px;
}

.filming-card h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 32px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 28px;
}

.filming-card ul { list-style: none; }

.filming-card ul li {
  font-size: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(33, 19, 19, 0.1);
  letter-spacing: 0.02em;
  transition: padding-left 0.3s ease;
}

.filming-card:hover ul li {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.filming-card ul li:hover { padding-left: 12px; }


/* --- 5c. About page --- */

.about {
  padding: 60px 0 140px;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--ink);
}

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

.about-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(60px, 9vw, 130px);
  line-height: 1;
  color: var(--red);
  letter-spacing: 0.015em;
  text-transform: uppercase;
  margin: 24px 0 40px;
}

.about-text {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink);
  max-width: 600px;
}

.about-text p { margin-bottom: 28px; }
.about-text p:last-child { margin-bottom: 0; }

.about-text p:first-child {
  font-family: 'Instrument Serif', serif;
  font-size: 28px;
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 36px;
}

.about-text strong {
  color: var(--red);
  font-weight: 600;
}


/* --- 5d. Pricing (Services page) --- */

.pricing {
  padding: 120px 0;
  background: var(--white);
}

.pricing-block {
  margin-bottom: 100px;
  scroll-margin-top: 100px;
}

.pricing-block:last-child { margin-bottom: 0; }

.pricing-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 7vw, 110px);
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 1;
  margin-bottom: 16px;
}

.pricing-sub {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--red-soft);
  margin-bottom: 50px;
  font-size: 20px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.pricing-card {
  background: var(--white);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pricing-num {
  display: inline-block;
  align-self: flex-start;
  background: var(--red);
  color: var(--white);
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  padding: 4px 12px;
  margin-bottom: 24px;
  letter-spacing: 0.08em;
}

.pricing-card h4 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 28px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.015em;
  margin-bottom: 20px;
  line-height: 1.1;
}

.pricing-list { list-style: none; }

.pricing-list li {
  font-size: 15px;
  padding: 7px 0;
  color: var(--ink);
  opacity: 0.8;
  position: relative;
  padding-left: 18px;
}

.pricing-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--red);
}

.pricing-detail {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-soft);
  font-weight: 700;
}

.pricing-best {
  font-size: 15px;
  color: var(--ink);
  opacity: 0.75;
  line-height: 1.5;
}

.pricing-amount {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  color: var(--red);
  line-height: 1;
  letter-spacing: 0.015em;
  border-top: 1px solid var(--grey-light);
  padding-top: 16px;
  margin-top: auto;
}

/* Collapsible: details hidden by default, shown when block is .expanded */
.pricing-card .pricing-list,
.pricing-card .pricing-detail,
.pricing-card .pricing-best {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.4s ease,
              margin 0.4s ease;
}

.pricing-card {
  cursor: pointer;
  user-select: none;
}

.pricing-card:hover {
  box-shadow: 8px 8px 0 var(--lime);
  transform: translate(-4px, -4px);
  z-index: 2;
}

/* When the block is expanded, ALL cards inside show details + raised state */
.pricing-block.expanded .pricing-card {
  box-shadow: 8px 8px 0 var(--lime);
  transform: translate(-4px, -4px);
}

.pricing-block.expanded .pricing-card .pricing-list {
  max-height: 400px; opacity: 1; margin-bottom: 24px;
}

.pricing-block.expanded .pricing-card .pricing-detail {
  max-height: 30px; opacity: 1;
  margin-top: 8px; margin-bottom: 8px;
}

.pricing-block.expanded .pricing-card .pricing-best {
  max-height: 120px; opacity: 1; margin-bottom: 20px;
}

/* Visual hint on collapsed cards */
.pricing-block:not(.expanded) .pricing-card::after {
  content: '＋';
  position: absolute;
  top: 32px;
  right: 28px;
  font-size: 22px;
  color: var(--red);
  font-weight: 300;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.pricing-block.expanded .pricing-card::after {
  content: '−';
  position: absolute;
  top: 32px;
  right: 28px;
  font-size: 28px;
  color: var(--red);
  opacity: 0.7;
}

.pricing-block:not(.expanded) .pricing-card:hover::after {
  opacity: 1;
}

/* On touch devices: tap also toggles (same behaviour) */
@media (hover: none) {
  .pricing-card:hover {
    transform: none;
    box-shadow: none;
  }
}


/* --- 5e. Portfolio --- */

.portfolio {
  padding: 120px 0;
  background: var(--ink);
  color: var(--white);
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 80px;
  flex-wrap: wrap;
  gap: 24px;
}

.portfolio-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(80px, 14vw, 240px);
  line-height: 0.95;
  color: var(--red);
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.portfolio-meta {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  text-align: right;
}

.portfolio-meta strong { color: var(--red); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item:hover img { transform: scale(1.08); }

.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-item-overlay { opacity: 1; }

.portfolio-item-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 8px;
}

.portfolio-item h4 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 1.05;
}

/* Asymmetric grid layout */
.portfolio-item-1 { grid-column: span 7; aspect-ratio: 16/10; }
.portfolio-item-2 { grid-column: span 5; aspect-ratio: 5/4; }
.portfolio-item-3 { grid-column: span 4; aspect-ratio: 1/1; }
.portfolio-item-4 { grid-column: span 4; aspect-ratio: 1/1; }
.portfolio-item-5 { grid-column: span 4; aspect-ratio: 1/1; }
.portfolio-item-6 { grid-column: span 6; aspect-ratio: 4/3; }
.portfolio-item-7 { grid-column: span 6; aspect-ratio: 4/3; }

/* ---------- Placeholder card (no image yet) ---------- */
.portfolio-item.placeholder {
  background: linear-gradient(135deg,
    rgba(201, 15, 14, 0.12) 0%,
    rgba(33, 19, 19, 0.4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.4s ease, background 0.4s ease;
}

.portfolio-item.placeholder:hover {
  border-color: var(--lime);
  background: linear-gradient(135deg,
    rgba(201, 15, 14, 0.2) 0%,
    rgba(33, 19, 19, 0.55) 100%);
}

.portfolio-item.placeholder .ph-category {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 700;
}

.portfolio-item.placeholder .ph-title {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.25;
  color: var(--white);
  margin: 18px 0;
}

.portfolio-item.placeholder .ph-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.portfolio-item.placeholder .ph-arrow {
  font-size: 20px;
  color: var(--red);
  transition: transform 0.3s ease, color 0.3s ease;
}

.portfolio-item.placeholder:hover .ph-arrow {
  transform: translateX(6px);
  color: var(--lime);
}

/* "View all" CTA at the bottom of homepage portfolio */
.portfolio-cta {
  margin-top: 60px;
  text-align: center;
}

.portfolio-cta a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border: 2px solid var(--white);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.portfolio-cta a:hover {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}

.portfolio-cta a::after {
  content: '→';
  transition: transform 0.3s ease;
}

.portfolio-cta a:hover::after { transform: translateX(6px); }

/* Full portfolio page — uniform grid */
.portfolio-full {
  padding: 60px 0 120px;
  background: var(--ink);
  color: var(--white);
}

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

.portfolio-full .portfolio-item {
  grid-column: auto;
  aspect-ratio: 4/5;
}

@media (max-width: 900px) {
  .portfolio-full .portfolio-grid-full {
    grid-template-columns: 1fr;
  }
}


/* --- 5f. Contact page --- */

.contact {
  padding: 80px 0 120px;
  background: var(--white);
}

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

.contact-inner .section-label {
  justify-content: center;
  margin-bottom: 32px;
}

.contact-inner .section-label::after {
  content: '';
  width: 30px; height: 1px;
  background: var(--red);
}

.contact-list {
  list-style: none;
  text-align: left;
  display: inline-block;
  min-width: 320px;
}

.contact-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--grid-line);
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 24px;
}

.contact-list li:first-child { border-top: 1px solid var(--grid-line); }

.contact-list .label {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}

.contact-list a {
  color: var(--ink);
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-list a:hover { color: var(--red); }

.contact-location {
  font-size: 16px;
  letter-spacing: 0.05em;
  color: var(--grey-mid);
}


/* ============================================================
   6. FOOTER (light variant — alternates with dark Portfolio)
   ============================================================ */

footer {
  background: var(--white);
  color: var(--ink);
  padding: 60px 0 24px;
  border-top: 1px solid var(--grid-line);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--grid-line);
  margin-bottom: 24px;
}

.footer-logo {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.footer-tagline {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--ink);
  opacity: 0.6;
  font-size: 14px;
}

.footer-contacts {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--grid-line);
}

.footer-contacts a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.footer-contacts a:hover { color: var(--red); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-mid);
}


/* ============================================================
   7. RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .filming-grid { grid-template-columns: repeat(2, 1fr); }
  .filming-card:nth-child(2n) { border-right: none; }
}

@media (max-width: 900px) {
  /* Hero */
  .hero { padding: 120px var(--page-pad) 60px; }
  .scroll-indicator { display: none; }

  /* Filming */
  .filming-grid { grid-template-columns: 1fr; }
  .filming-card { border-right: none; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-height: 500px; aspect-ratio: 4/5; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item-1, .portfolio-item-2, .portfolio-item-3,
  .portfolio-item-4, .portfolio-item-5, .portfolio-item-6,
  .portfolio-item-7 { grid-column: 1 / -1; aspect-ratio: 4/3; }

  /* Contact */
  .contact-list li { grid-template-columns: 1fr; gap: 4px; }

  /* Nav (burger) */
  .nav-logo-img { height: 56px; }
  .nav.scrolled .nav-logo-img { height: 48px; }
  .nav-links { display: none; }
  .lang-switch { margin-left: 0; margin-right: 12px; }

  .nav-burger {
    display: block;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    width: 24px; height: 18px;
    position: relative;
  }

  .nav-burger span {
    display: block;
    position: absolute;
    left: 0; right: 0;
    height: 2px;
    background: currentColor;
  }

  .nav-burger span:nth-child(1) { top: 0; }
  .nav-burger span:nth-child(2) { top: 8px; }
  .nav-burger span:nth-child(3) { top: 16px; }

  /* Page hero */
  .page-hero { padding: 120px var(--page-pad) 60px; }
}
