/* ============================================
   3DPOP STUDIO — style.css
   Academic-Bold Creative Design
   ============================================ */

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

:root {
  --navy: #0a0f2e;
  --navy-mid: #131a45;
  --navy-light: #1e2a6e;
  --yellow: #fbbf24;
  --yellow-dark: #d97706;
  --yellow-light: #fde68a;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --red: #ef4444;
  --teal: #0d9488;
  --purple: #7c3aed;
  --font-head: 'Montserrat', 'Arial Black', Arial, sans-serif;
  --font-body: 'Open Sans', 'Segoe UI', Arial, sans-serif;
  --font-mono: 'Fira Code', 'Courier New', monospace;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 8px rgba(10,15,46,.10);
  --shadow-md: 0 4px 24px rgba(10,15,46,.15);
  --shadow-lg: 0 8px 40px rgba(10,15,46,.22);
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

/* --- GOOGLE FONTS IMPORT --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 120px 0; }

.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.badge--yellow { background: var(--yellow); color: var(--navy); }
.badge--navy { background: var(--navy); color: var(--yellow); }
.badge--outline { border: 2px solid var(--yellow); color: var(--yellow); background: transparent; }

.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--yellow-light);
  color: var(--navy);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-transform: uppercase;
}
.btn--primary {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
}
.btn--primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(251,191,36,.4);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn--dark {
  background: var(--navy);
  color: var(--yellow);
  border-color: var(--navy);
}
.btn--dark:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--sm { padding: 10px 22px; font-size: .85rem; }
.btn--lg { padding: 18px 44px; font-size: 1.05rem; }

/* SECTION HEADERS */
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 12px;
}
.section-label--light { color: var(--yellow); }

.section-title {
  font-family: var(--font-head);
  font-weight: 900;
  line-height: 1.1;
  color: var(--navy);
}
.section-title--xl { font-size: clamp(2rem, 4vw, 3.2rem); }
.section-title--lg { font-size: clamp(1.75rem, 3vw, 2.5rem); }
.section-title--md { font-size: clamp(1.4rem, 2.5vw, 2rem); }
.section-title--light { color: var(--white); }

.section-desc {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 640px;
}
.section-desc--light { color: rgba(255,255,255,.8); }
.section-desc--center { margin-left: auto; margin-right: auto; }

.title-underline {
  display: inline-block;
  position: relative;
}
.title-underline::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60%;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
}
.section-header--center .title-underline::after {
  left: 50%;
  transform: translateX(-50%);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,15,46,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(251,191,36,.12);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(10,15,46,.5); }

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.navbar__logo img {
  height: 44px;
  width: auto;
}
.navbar__logo-text {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: .04em;
}
.navbar__logo-text span { color: var(--yellow); }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar__nav a {
  padding: 8px 16px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: all var(--transition);
}
.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--yellow);
  background: rgba(251,191,36,.08);
}

.navbar__cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--navy-mid);
  border-top: 1px solid rgba(251,191,36,.12);
  padding: 16px 24px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.06);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.mobile-nav a:hover { color: var(--yellow); }
.mobile-nav .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ============================================
   HERO — index.html
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('/images/hero-pop.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,15,46,.92) 0%,
    rgba(10,15,46,.88) 50%,
    rgba(19,26,69,.90) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 24px 80px;
}
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(251,191,36,.15);
  border: 1px solid rgba(251,191,36,.3);
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 24px;
}
.hero__label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}

.hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.hero__title .accent { color: var(--yellow); }
.hero__title .line2 {
  display: block;
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 700;
  color: rgba(255,255,255,.7);
  margin-top: 8px;
}

.hero__desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.8);
  max-width: 600px;
  margin: 24px 0 40px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero__stat-value {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.hero__stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  margin-top: 4px;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2.5s infinite;
}
.hero__scroll svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   INTRO STRIP
   ============================================ */
.intro-strip {
  background: var(--yellow);
  padding: 0;
  overflow: hidden;
}
.intro-strip__inner {
  display: flex;
  align-items: stretch;
}
.intro-strip__text {
  flex: 1;
  padding: 56px 48px;
}
.intro-strip__text h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--navy);
  margin-bottom: 12px;
}
.intro-strip__text p {
  color: rgba(10,15,46,.75);
  font-size: .95rem;
  line-height: 1.7;
  max-width: 540px;
}
.intro-strip__numbers {
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 40px 56px;
  gap: 56px;
  flex-shrink: 0;
}
.intro-strip__num {
  text-align: center;
}
.intro-strip__num strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.intro-strip__num span {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  margin-top: 4px;
  display: block;
}

/* ============================================
   SHOWCASE GRID (Films / Courts)
   ============================================ */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.showcase-grid--4 { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

.card-film {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
}
.card-film:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}

.card-film__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--navy);
}
.card-film__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.card-film:hover .card-film__thumb img { transform: scale(1.06); }

.card-film__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,15,46,.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}
.card-film:hover .card-film__overlay { opacity: 1; }

.card-film__year {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: .06em;
}
.card-film__cat {
  position: absolute;
  top: 12px;
  left: 12px;
}

.card-film__body { padding: 20px; }

.card-film__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.card-film__desc {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-film__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--gray-400);
  font-weight: 600;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}

/* ============================================
   2-COL IMAGE SECTIONS
   ============================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

.two-col__img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.two-col__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 400px;
}
.two-col__img::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 3px solid var(--yellow);
  border-radius: calc(var(--radius-xl) + 8px);
  z-index: -1;
}

.two-col__content { padding: 16px 0; }
.two-col__content .section-label { margin-bottom: 12px; }

.two-col__list {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.two-col__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: var(--gray-600);
}
.two-col__list li::before {
  content: '▶';
  color: var(--yellow-dark);
  font-size: .7rem;
  margin-top: 5px;
  flex-shrink: 0;
}

/* ============================================
   FESTIVAL BANNER (CSS bg)
   ============================================ */
.festival-banner {
  position: relative;
  background-image: url('/images/festival.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  overflow: hidden;
}
.festival-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,15,46,.91) 0%, rgba(30,42,110,.88) 100%);
  z-index: 1;
}
.festival-banner__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.festival-banner h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}
.festival-banner h2 .accent { color: var(--yellow); }
.festival-banner p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 40px;
}
.festival-banner__awards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.festival-banner__award {
  text-align: center;
  color: var(--white);
}
.festival-banner__award .num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--yellow);
  display: block;
}
.festival-banner__award span {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

/* ============================================
   CONCEPT ART CTA (2-col)
   ============================================ */
.cta-section {
  background: var(--navy);
  padding: 100px 0;
}
.cta-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-two-col__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(251,191,36,.2);
}
.cta-two-col__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 400px;
}
.cta-two-col__content {}
.cta-two-col__content .section-label { color: var(--yellow); }
.cta-two-col__content .section-title { color: var(--white); }
.cta-two-col__content p {
  color: rgba(255,255,255,.75);
  margin: 20px 0 32px;
  font-size: 1rem;
  line-height: 1.8;
}
.cta-two-col__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================
   BLOG / ACTU CARDS
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.card-blog {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.card-blog:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}

.card-blog__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--navy);
}
.card-blog__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.card-blog:hover .card-blog__thumb img { transform: scale(1.05); }

.card-blog__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-blog__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.card-blog__date {
  font-size: .78rem;
  color: var(--gray-400);
  font-weight: 500;
}
.card-blog__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 10px;
}
.card-blog__title a:hover { color: var(--yellow-dark); }
.card-blog__excerpt {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-blog__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.card-blog__link:hover { color: var(--yellow-dark); }
.card-blog__link svg { transition: transform var(--transition); }
.card-blog__link:hover svg { transform: translateX(4px); }

/* ============================================
   ARTICLE (Blog post) LAYOUT
   ============================================ */
.article-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background: var(--navy);
  overflow: hidden;
}
.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .45;
}
.article-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
  max-width: 900px;
  margin: 0 auto;
  left: 0; right: 0;
}
.article-hero__content .badge { margin-bottom: 16px; }
.article-hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.article-hero__meta {
  display: flex;
  gap: 24px;
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  font-weight: 500;
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}
.article-body h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--navy);
  margin: 40px 0 16px;
  padding-left: 16px;
  border-left: 4px solid var(--yellow);
}
.article-body h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  margin: 28px 0 12px;
}
.article-body p {
  color: var(--gray-600);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
}
.article-body ul, .article-body ol {
  margin: 0 0 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { color: var(--gray-600); font-size: 1rem; line-height: 1.7; }
.article-body strong { color: var(--navy); font-weight: 700; }
.article-body .article-img {
  margin: 32px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.article-body .article-img img { width: 100%; height: auto; }
.article-body blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--yellow);
}
.article-body blockquote p {
  color: rgba(255,255,255,.85);
  font-style: italic;
  font-size: 1.05rem;
  margin: 0;
}

.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 64px;
  padding: 0 24px;
}
.article-nav__link {
  padding: 20px 24px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.article-nav__link:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-sm);
}
.article-nav__dir {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 6px;
}
.article-nav__title {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 140px 0 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero--dark-bottom::after { background: var(--gray-100); }

.page-hero__label {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
  display: block;
}
.page-hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}
.page-hero__desc {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.8;
}

.page-hero__deco {
  position: absolute;
  top: 40px; right: 80px;
  width: 300px; height: 300px;
  border: 40px solid rgba(251,191,36,.07);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero__deco::before {
  content: '';
  position: absolute;
  inset: 40px;
  border: 20px solid rgba(251,191,36,.05);
  border-radius: 50%;
}

/* ============================================
   STUDIO PAGE
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  padding: 32px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.value-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.value-card__icon {
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.value-card__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.value-card__desc {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 28px;
}
.team-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  transition: all var(--transition);
}
.team-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-md);
}
.team-card__avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--yellow);
}
.team-card__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .95rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.team-card__role {
  font-size: .8rem;
  color: var(--gray-400);
  font-weight: 500;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.process-step {
  padding: 32px 24px;
  position: relative;
  text-align: center;
}
.process-step::after {
  content: '→';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--yellow-dark);
  font-weight: 700;
}
.process-step:last-child::after { display: none; }
.process-step__num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.process-step__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .9rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.process-step__desc {
  font-size: .82rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  position: sticky;
  top: 100px;
}
.contact-info h3 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-info p {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-info__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: rgba(251,191,36,.12);
  border: 1px solid rgba(251,191,36,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-info__text strong {
  display: block;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-info__text span {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--gray-800);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(251,191,36,.15);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ============================================
   SITEMAP / 404
   ============================================ */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
}
.sitemap-cat h3 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--yellow);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.sitemap-cat ul li { margin-bottom: 10px; }
.sitemap-cat ul li a {
  font-size: .9rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}
.sitemap-cat ul li a:hover { color: var(--yellow-dark); }
.sitemap-cat ul li a::before {
  content: '→';
  font-size: .75rem;
  color: var(--yellow-dark);
}

.not-found {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: var(--navy);
}
.not-found__code {
  font-family: var(--font-head);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 900;
  color: rgba(251,191,36,.12);
  line-height: 1;
  margin-bottom: -40px;
}
.not-found__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 16px;
}
.not-found__desc {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  padding: 80px 0 0;
  border-top: 3px solid var(--yellow);
}
.footer__main {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 64px;
}

.footer__brand {}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 20px;
}
.footer__logo img { height: 40px; width: auto; }
.footer__logo span {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--white);
}
.footer__logo span em { color: var(--yellow); font-style: normal; }
.footer__tagline {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 280px;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 38px; height: 38px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  font-weight: 700;
  transition: all var(--transition);
}
.footer__social a:hover {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
}

.footer__col h4 {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}
.footer__legal a:hover { color: rgba(255,255,255,.8); }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  background: var(--gray-100);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}
.breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--gray-400);
  font-weight: 500;
}
.breadcrumb__inner a { color: var(--navy); }
.breadcrumb__inner a:hover { color: var(--yellow-dark); }
.breadcrumb__inner span { color: var(--gray-400); }

/* ============================================
   MISC / DECORATIVE
   ============================================ */
.divider-wave {
  line-height: 0;
  overflow: hidden;
}
.divider-wave svg { display: block; width: 100%; }

.highlight-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  border-left: 5px solid var(--yellow);
}
.highlight-box p {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}
.highlight-box p a {
  color: var(--yellow);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.highlight-box p a:hover { color: var(--yellow-light); }

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.pagination a {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .88rem;
  color: var(--navy);
  transition: all var(--transition);
}
.pagination a:hover,
.pagination a.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--navy);
}

/* Tabs */
.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tab {
  padding: 10px 24px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  border: 2px solid var(--gray-200);
  color: var(--gray-600);
  background: var(--white);
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.tab:hover,
.tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--yellow);
}

/* bg utility */
.bg-gray { background: var(--gray-100); }
.bg-navy { background: var(--navy); }
.bg-yellow { background: var(--yellow); }

/* text utils */
.text-yellow { color: var(--yellow); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.text-light { color: rgba(255,255,255,.75); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .two-col--reverse { direction: ltr; }
  .two-col__img { min-height: 320px; }
  .cta-two-col { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__main { grid-template-columns: 1fr 1fr; }
  .intro-strip__inner { flex-direction: column; }
  .intro-strip__numbers { justify-content: center; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section--lg { padding: 80px 0; }
  .navbar__nav, .navbar__cta { display: none; }
  .hamburger { display: flex; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-grid--4 { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__stats { gap: 28px; }
  .intro-strip__numbers { gap: 32px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step::after { display: none; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .article-hero__content { padding: 32px 24px; }
  .article-nav { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .contact-form { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .page-hero { padding: 120px 0 60px; }
  .showcase-grid--4 { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr; }
  .footer__social a { width: 34px; height: 34px; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .festival-banner { background-attachment: scroll; }
  .cta-two-col__img img { min-height: 240px; }
  .hero__title { font-size: 2.4rem; }
  .intro-strip__text { padding: 40px 24px; }
  .intro-strip__numbers { padding: 32px 24px; flex-wrap: wrap; }
  .highlight-box { padding: 28px 24px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeInUp .6s ease both; }
.fade-up--delay1 { animation-delay: .1s; }
.fade-up--delay2 { animation-delay: .2s; }
.fade-up--delay3 { animation-delay: .3s; }
