/* ============================================================
   DESIGN SYSTEM FOR LUMEN
   Light, premium, cool-toned videography portfolio site.
   ============================================================ */

/* 1. FONT DEFINITIONS */
@font-face {
  font-family: 'Space Grotesk';
  src: url('fonts/space-grotesk-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('fonts/space-grotesk-500-normal.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('fonts/space-grotesk-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* 2. DESIGN TOKENS */
:root {
  --bg:           #F4F6FA;  /* cool light canvas */
  --bg-elevated:  #FFFFFF;  /* cards / media frames */
  --bg-subtle:    #E8ECF4;  /* alternating section tint */
  --line:         rgba(26,26,46,0.08);   /* hairlines */
  --line-strong:  rgba(26,26,46,0.15);
  --ink:          #1A1A2E;  /* near-navy primary text */
  --ink-2:        #4A4F60;  /* body text */
  --ink-3:        #7A7F90;  /* secondary / meta */
  --accent:       #2B4FE0;  /* cobalt accent */
  --accent-hover: #1E3CB5;
  --accent-soft:  rgba(43,79,224,0.06);  /* soft tints */
  --accent-text:  #FFFFFF;  /* text on cobalt */
  --radius:       14px;     /* border radius system */
  --radius-sm:    8px;
  --shadow-sm:    0 1px 2px rgba(26,26,46,0.03), 0 2px 8px rgba(26,26,46,0.03);
  --shadow-md:    0 8px 30px rgba(26,26,46,0.06), 0 2px 8px rgba(43,79,224,0.02);
  --shadow-lg:    0 24px 60px rgba(26,26,46,0.08);
}

/* 3. BASE RESET */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  background-color: var(--bg);
  color: var(--ink-2);
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

/* 4. UTILITIES & TYPOGRAPHY */
#main {
  position: relative;
  width: 100%;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 20px;
  background-color: var(--accent);
  color: var(--accent-text);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  z-index: 10000;
  transition: top 0.2s ease;
  box-shadow: var(--shadow-md);
}

.skip-link:focus {
  top: 20px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2.25rem, 1.5rem + 3vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-top: 0;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

p {
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

/* 5. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
  background-color: var(--accent);
  color: var(--accent-text);
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  background-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
}

.btn--ghost {
  background-color: transparent;
  color: var(--ink);
  border: 1px stroke var(--line-strong);
  outline: 1.5px solid var(--line-strong);
  box-shadow: none;
}

.btn--ghost:hover {
  background-color: var(--bg-subtle);
  box-shadow: none;
}

.btn--submit {
  width: 100%;
  border-radius: var(--radius);
}

/* 6. HEADER NAVIGATION */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background-color: rgba(244, 246, 250, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  z-index: 1000;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.nav--scrolled {
  background-color: rgba(244, 246, 250, 0.90);
  border-color: var(--line-strong);
}

.nav__inner {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
}

.nav__mark {
  color: var(--accent);
}

.nav__links {
  display: none;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
}

.nav__pill {
  position: absolute;
  top: 50%;
  left: 0;
  height: 36px;
  width: 0;
  background-color: var(--accent-soft);
  border-radius: 20px;
  transform: translateY(-50%);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
  opacity: 0;
  z-index: -1;
  border: 1px solid rgba(43, 79, 224, 0.06);
}

@media (max-width: 767px) {
  .nav__pill {
    display: none !important;
  }
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 0.25s ease, font-weight 0.25s ease;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
}

.nav__link:hover {
  color: var(--accent);
}

.nav__link.active {
  color: var(--accent);
  font-weight: 700;
}

.nav__cta {
  margin-left: 0.5rem;
}

.nav__toggle {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--ink);
  display: block;
  z-index: 1001;
  transition: transform 0.2s ease;
}

@media (min-width: 768px) {
  .nav__toggle {
    display: none;
  }
}

#nav-line-1, #nav-line-2, #nav-line-3 {
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* Mobile Nav Open State */
.nav__links--open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg);
  padding: 2.5rem 1.5rem;
  gap: 2rem;
  z-index: 999;
  border-top: 1px solid var(--line);
  animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
  from { transform: translateY(-10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* 7. HERO SECTION */
.hero {
  height: 85vh;
  max-height: 900px;
  min-height: 600px;
  padding-top: 100px;
  padding-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero__inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero__inner {
    grid-template-columns: 4.5fr 5.5fr;
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__title {
  font-size: clamp(3rem, 2rem + 5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.hero__sub {
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink-2);
  margin-bottom: 2rem;
  max-width: 44ch;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__media {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: var(--bg-elevated);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.video-container {
  width: 100%;
  height: 100%;
  position: relative;
  background: var(--bg-subtle);
  overflow: hidden;
}

.video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(26,26,46,0) 60%, rgba(26,26,46,0.3) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  pointer-events: none;
}

.video-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background-color: rgba(26, 26, 46, 0.7);
  color: #FFFFFF;
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
}

/* 8. THE HONEST OFFER */
.offer {
  padding: 5rem 0;
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.offer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.offer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}

@media (min-width: 992px) {
  .offer__grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.offer__paragraph {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 1.5rem;
}

.offer__card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(43, 79, 224, 0.15);
  box-shadow: 0 8px 32px 0 rgba(43, 79, 224, 0.04), var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.offer__card:hover {
  transform: translateY(-2px);
  border-color: rgba(43, 79, 224, 0.3);
  box-shadow: 0 12px 40px 0 rgba(43, 79, 224, 0.08), var(--shadow-lg);
}

.offer__card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(43, 79, 224, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.offer__card-title, .offer__guarantees {
  position: relative;
  z-index: 1;
}

.offer__card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 0;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

.offer__guarantees {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.offer__guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  position: relative;
}

.offer__guarantee-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.offer__guarantee-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.offer__guarantee-highlight {
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
}

.offer__guarantee-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-2);
}

/* 9. PORTFOLIO / WORK SECTION */
.work {
  padding: 5rem 0;
}

.work__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.work__head {
  margin-bottom: 4rem;
  max-width: 60ch;
}

.work__subhead {
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink-2);
}

.work__category {
  margin-bottom: 5rem;
}

.category-title {
  font-size: clamp(1.4rem, 1.1rem + 1.5vw, 1.85rem);
  font-weight: 700;
  color: var(--ink);
  margin-top: 0;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.category-subtitle {
  font-size: 0.95rem;
  color: var(--ink-3);
  margin-top: 0;
  margin-bottom: 2rem;
}

/* MEDIA CARD SHARDS */
.media-card {
  background-color: var(--bg-elevated);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.media-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.media-aspect {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: var(--bg-subtle);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.vertical-aspect {
  aspect-ratio: 9/16;
}

.featured-aspect {
  aspect-ratio: 16/7;
}

@media (max-width: 768px) {
  .featured-aspect {
    aspect-ratio: 16/9;
  }
}

.banner-aspect {
  aspect-ratio: 21/9;
}

@media (max-width: 768px) {
  .banner-aspect {
    aspect-ratio: 16/9;
  }
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.media-card:hover .media-img {
  transform: scale(1.02);
}

.media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(26, 26, 46, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.media-card:hover .media-overlay {
  background-color: rgba(26, 26, 46, 0.15);
}

.media-play-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-elevated);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, background-color 0.2s ease;
  padding-left: 3px; /* visual center balance */
}

.media-card:hover .media-play-icon {
  transform: scale(1.1);
  background-color: var(--accent);
  color: var(--accent-text);
}

.media-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
  text-align: center;
}

.media-type {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}

.media-info {
  padding: 1.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.media-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.media-desc {
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--ink-2);
  margin-bottom: 0;
}

/* WEDDING STACKING TECHNIQUE MOCK */
.stacking-placeholder {
  background-color: #E2E6EE !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stacking-sim {
  display: flex;
  flex-direction: column;
  width: 75%;
  height: 80%;
  gap: 6px;
  padding: 8px;
  border-radius: 6px;
  background-color: rgba(26,26,46,0.05);
}

.stack-box {
  flex-grow: 1;
  border-radius: 4px;
  background-color: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--line);
}

/* ASYMMETRIC GRID LAYOUTS */

/* 1. Brand & Events: Horizontal Left, 2 Verticals Right */
.layout-brand-events {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .layout-brand-events {
    grid-template-columns: 1.2fr 0.8fr;
  }
  
  .layout-brand-events .media-card--horizontal {
    grid-row: span 2;
  }
}

@media (min-width: 992px) {
  .layout-brand-events {
    grid-template-columns: 2fr 1fr 1fr;
  }
  
  .layout-brand-events .media-card--horizontal {
    grid-row: auto;
  }
}

/* 2. Cinematic: 1 Large Featured Top, 2 Half Widths Bottom */
.layout-cinematic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .layout-cinematic {
    grid-template-columns: 1fr 1fr;
  }
  
  .layout-cinematic .media-card--featured {
    grid-column: span 2;
  }
}

/* 3. Weddings: Asymmetric split left horizontal, right stacked vertical */
.layout-weddings {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .layout-weddings {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.layout-weddings__verticals {
  display: flex;
  flex-direction: column;
}

.layout-weddings__verticals .media-card--vertical {
  height: 100%;
}

.layout-weddings__verticals .vertical-aspect {
  aspect-ratio: 16/9.3; /* balancing visual alignment on desktop */
}

@media (min-width: 768px) {
  .layout-weddings__verticals .vertical-aspect {
    aspect-ratio: 9/10;
  }
}

/* 4. Social & Short-Form: Masonry row of three frames */
.layout-social {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .layout-social {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

@media (min-width: 992px) {
  .layout-social {
    grid-template-columns: 1.1fr 0.9fr 1fr;
  }
  
  .layout-social .media-card--vertical {
    grid-row: span 1;
  }
}

/* 5. YouTube & Long-Form: 1 Widescreen Banner */
.layout-longform {
  display: grid;
  grid-template-columns: 1fr;
}

/* WEDDING DISCLOSURE BOX */
.work__wedding-box {
  background-color: var(--bg-subtle);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  border-left: 4px solid var(--accent);
  margin-top: 4rem;
  box-shadow: var(--shadow-sm);
}

.work__wedding-box p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
}

/* 10. SERVICES SECTION */
.services {
  padding: 5rem 0;
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.services__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.services__head {
  margin-bottom: 4rem;
}

.services__subhead {
  font-size: 1.15rem;
  color: var(--ink-2);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .services__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.services__item {
  background-color: var(--bg-elevated);
  border-radius: var(--radius);
  padding: 2.25rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services__item:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.services__item-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  background-color: var(--accent-soft);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
}

.services__item-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 0;
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}

.services__item-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-2);
  margin-bottom: 0;
}

/* 11. ABOUT SECTION */
.about {
  padding: 5rem 0;
}

.about__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about__grid {
    grid-template-columns: 5.5fr 4.5fr;
  }
}

.about__text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about__highlight {
  font-weight: 700;
  color: var(--ink);
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  margin-top: 2rem;
}

.about__metrics {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.metric-card {
  background-color: var(--bg-elevated);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.metric-value {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}

.metric-value.accent {
  color: var(--accent);
}

.metric-label {
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.4;
}

/* 12. CONTACT SECTION */
.contact {
  padding: 5rem 0;
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--line);
}

.contact__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 992px) {
  .contact__grid {
    grid-template-columns: 4.5fr 5.5fr;
  }
}

.contact__sub {
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink-2);
  margin-bottom: 2rem;
}

.contact__meta-info {
  font-size: 0.95rem;
  color: var(--ink-3);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-email {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-email:hover {
  color: var(--accent-hover);
}

/* CONTACT FORM WIRING */
.contact__form-container {
  background-color: var(--bg-elevated);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease, transform 0.2s ease;
  transform-origin: left;
}

.form-group:focus-within label {
  color: var(--accent);
  transform: translateY(-1px);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  background-color: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-group input:user-invalid,
.form-group textarea:user-invalid {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}

.form-group input:user-valid,
.form-group textarea:user-valid {
  border-color: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-3);
}

.form-status {
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 0.5rem;
  text-align: center;
  transition: color 0.2s ease;
}

.form-status--success {
  color: #10B981; /* green success */
}

.form-status--error {
  color: #EF4444; /* red error */
}

/* 13. FOOTER SECTION */
.footer {
  background-color: var(--bg-elevated);
  border-top: 1px solid var(--line);
  padding: 3rem 0;
  font-size: 0.9rem;
  color: var(--ink-3);
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--ink);
  font-size: 1.05rem;
}

.footer__tagline {
  font-weight: 500;
  color: var(--ink-2);
}

/* 14. ANIMATIONS & REVEALS */
.js-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-reveal--active {
  opacity: 1;
  transform: translateY(0);
}

/* 15. REDUCED MOTION PREFERENCE OVERRIDE */
@media (prefers-reduced-motion: reduce) {
  html, body {
    scroll-behavior: auto;
  }
  
  .js-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  
  .media-card {
    transition: none !important;
  }
  
  .media-card:hover {
    transform: none !important;
    box-shadow: var(--shadow-sm) !important;
  }
  
  .media-img {
    transition: none !important;
  }
  
  .media-card:hover .media-img {
    transform: none !important;
  }
  
  .media-play-icon {
    transition: none !important;
  }
  
  .media-card:hover .media-play-icon {
    transform: none !important;
  }
}

/* 16. THEATRICAL VIDEO LIGHTBOX MODAL */
.video-modal {
  border: none;
  background: transparent;
  padding: 0;
  max-width: 90vw;
  max-height: 90vh;
  outline: none;
  overflow: visible;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.video-modal[open] {
  opacity: 1;
}

.video-modal::backdrop {
  background-color: rgba(26, 26, 46, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.video-modal[open]::backdrop {
  opacity: 1;
}

.video-modal__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  background: transparent;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, color 0.2s ease;
  z-index: 1010;
}

.video-modal__close:hover {
  transform: scale(1.1);
  color: var(--accent);
}

.video-modal__close svg {
  display: block;
}

.video-modal__body {
  width: 80vw;
  aspect-ratio: 16/9;
  background-color: #000000;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-modal__body--vertical {
  width: auto;
  height: 80vh;
  aspect-ratio: 9/16;
  max-width: 45vh; /* 80vh * (9/16) */
}

.video-modal__body iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* 17. BUTTON LOADING STATE */
.btn--loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.btn--loading::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: btn-spinner 0.6s linear infinite;
}

@keyframes btn-spinner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
