/* ============================================
   CHAD LAUFFER INC.
   chadlauffer.com  ·  v3
   v1 layout · Bodoni Moda + Montserrat · pure black
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #F5F2EC;
  background-color: #000000;
  overflow-x: hidden;
  font-weight: 400;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

::selection {
  background-color: #F5F2EC;
  color: #000;
}

/* ============================================
   TYPOGRAPHY  ·  Bodoni Moda (display) + Montserrat (body)
   ============================================ */

h1, h2, h3, h4 {
  font-family: 'Bodoni Moda', 'Bodoni 72', Didot, 'Times New Roman', serif;
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 1.1;
  color: #F5F2EC;
}

.display-italic {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 400;
}

p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(245, 242, 236, 0.85);
}

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.7);
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.55);
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-medium {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   FLOATING HEADER
   ============================================ */

.floating-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0);
  transition: background-color 300ms ease-in-out,
              backdrop-filter 300ms ease-in-out,
              padding 300ms ease-in-out,
              border-color 300ms ease-in-out;
  border-bottom: 0.5px solid transparent;
}

.floating-header.scrolled {
  background-color: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1rem 2rem;
  border-bottom-color: rgba(245, 242, 236, 0.08);
}

.header-logo { display: flex; align-items: center; height: 34px; }
.header-logo img {
  height: 34px;
  width: auto;
  transition: opacity 200ms ease;
}
.header-logo:hover img { opacity: 0.7; }

.header-nav { display: flex; align-items: center; gap: 2.5rem; }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F5F2EC;
  transition: opacity 200ms ease;
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #F5F2EC;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 250ms ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.envelope-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 200ms ease, transform 200ms ease;
}

.envelope-icon:hover {
  opacity: 0.7;
  transform: scale(1.05);
}

.envelope-icon svg {
  width: 100%;
  height: 100%;
  stroke: #F5F2EC;
  stroke-width: 1.5;
  fill: none;
}

/* Hamburger */
.hamburger {
  display: none;
  width: 28px;
  height: 22px;
  position: relative;
  cursor: pointer;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 1.5px;
  width: 100%;
  background: #F5F2EC;
  transition: transform 300ms ease, opacity 300ms ease;
  left: 0;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.97);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-menu .nav-link {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.75rem;
  letter-spacing: 0.02em;
  margin: 1.25rem 0;
  text-transform: none;
  font-weight: 700;
}

.mobile-menu .nav-link::after { display: none; }

/* ============================================
   HERO BAND  ·  16:9 video, fixed mobile
   ============================================ */

.hero-band {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  margin-top: 0;
}

.hero-media,
.hero-media-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-media {
  opacity: 1;
  transition: opacity 600ms ease;
}

/* When video loads, hide the static image completely so they don't ghost */
.hero-media.hidden { opacity: 0; }

.hero-media-video {
  opacity: 0;
  transition: opacity 1200ms ease-in-out;
  z-index: 1;
}

.hero-media-video.loaded { opacity: 1; }

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.45) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 2rem;
  max-width: 1100px;
  width: 100%;
}

.hero-deck {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.85);
  margin-top: 0;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 800ms cubic-bezier(0.2, 0.8, 0.2, 1) 900ms forwards;
}

.hero-headline {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 1.15;
  color: #F5F2EC;
  margin-bottom: 1.5rem;
  max-width: 22em;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
  opacity: 0;
  animation: fadeUp 1000ms cubic-bezier(0.2, 0.8, 0.2, 1) 500ms forwards;
}

.hero-cta {
  display: inline-block;
  padding: 1rem 2.75rem;
  background-color: transparent;
  color: #F5F2EC;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid #F5F2EC;
  transition: all 250ms ease;
  opacity: 0;
  animation: fadeUp 900ms ease 1000ms forwards;
}

.hero-cta:hover {
  background-color: #F5F2EC;
  color: #000;
}

/* HERO MOTION TOGGLE  ·  hidden until video proves it can play */
.hero-toggle {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #F5F2EC;
  border: 1px solid rgba(245, 242, 236, 0.6);
  cursor: pointer;
  padding: 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: background-color 250ms ease,
              color 250ms ease,
              border-color 250ms ease,
              opacity 600ms ease;
}

.hero-band.video-available .hero-toggle {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (hover: hover) {
  .hero-toggle:hover {
    background-color: #F5F2EC;
    color: #000;
    border-color: #F5F2EC;
  }
}

.hero-toggle:focus-visible {
  background-color: #F5F2EC;
  color: #000;
  border-color: #F5F2EC;
  outline: none;
}

.hero-toggle-icon {
  width: 14px;
  height: 14px;
  display: block;
}

.hero-toggle .hero-toggle-play { display: none; }
.hero-band.motion-paused .hero-toggle .hero-toggle-pause { display: none; }
.hero-band.motion-paused .hero-toggle .hero-toggle-play { display: block; }

/* When motion is paused: video hidden, static poster visible */
.hero-band.motion-paused .hero-media-video,
.hero-band.motion-paused .hero-media-video.loaded {
  opacity: 0;
}
.hero-band.motion-paused .hero-media,
.hero-band.motion-paused .hero-media.hidden {
  opacity: 1;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Page hero for Services/Work */
.page-hero {
  padding: 9rem 2rem 5rem;
  text-align: center;
  background-color: #000;
  border-bottom: 0.5px solid rgba(245, 242, 236, 0.1);
}

.page-hero-title {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #F5F2EC;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.page-hero-intro {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(245, 242, 236, 0.8);
}

/* ============================================
   BANDS  ·  Home long-scroll sections
   ============================================ */

.band {
  padding: 5rem 0;
  position: relative;
  background-color: #000;
  border-top: 1px solid rgba(245, 242, 236, 0.14);
}

.band-proof {
  background-color: #000;
  padding: 5rem 0;
  text-align: center;
  border-bottom: none;
}

.proof-bar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.proof-line {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.85);
  line-height: 1.6;
}

.summary-paragraph {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(245, 242, 236, 0.92);
}

.band-about {
  background-color: #000;
  padding: 5rem 0;
}

.about-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245, 242, 236, 0.9);
  margin-bottom: 1.5rem;
}

.about-tagline {
  font-family: 'Bodoni Moda', serif !important;
  font-size: 1.6rem !important;
  font-style: italic;
  font-weight: 400 !important;
  text-align: center;
  margin: 3rem 0 !important;
  color: #F5F2EC !important;
  letter-spacing: 0.01em;
}

.based-in {
  font-family: 'Bodoni Moda', serif !important;
  font-style: italic;
  font-weight: 400 !important;
  font-size: 1.2rem !important;
  text-align: center;
  margin-top: 3rem !important;
  color: rgba(245, 242, 236, 0.85) !important;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-label {
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.015em;
  color: #F5F2EC;
  text-transform: uppercase;
}

.section-subhead {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.15rem;
  color: rgba(245, 242, 236, 0.75);
  margin-top: 0.75rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.gallery-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(245, 242, 236, 0.8);
}

/* ============================================
   MASONRY GALLERY
   ============================================ */

.masonry-grid {
  column-count: 3;
  column-gap: 1.5rem;
  padding: 0 2rem;
  max-width: 1500px;
  margin: 0 auto;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  display: block;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  background-color: #050505;
  transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 300ms ease, transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
  background-color: #050505;
}

.masonry-item:hover { transform: translateY(-2px); }
.masonry-item:hover img { opacity: 0.88; transform: scale(1.02); }

.masonry-item.video-tile { position: relative; }

.video-thumbnail {
  position: relative;
  width: 100%;
  background-color: #050505;
}

.video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.video-thumbnail::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  z-index: 1;
  transition: background-color 250ms ease, transform 250ms ease;
}

.video-thumbnail::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #F5F2EC;
  z-index: 2;
}

.masonry-item.video-tile:hover .video-thumbnail::after {
  background-color: rgba(0, 0, 0, 0.85);
  transform: translate(-50%, -50%) scale(1.08);
}

.video-caption {
  padding: 0.875rem 0.25rem 0.25rem;
}

.video-title {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F5F2EC;
  margin-bottom: 0.15rem;
}

.video-duration {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-size: 0.82rem;
  color: rgba(245, 242, 236, 0.55);
  letter-spacing: 0.05em;
}

/* ============================================
   VIEW ALL LINK
   ============================================ */

.view-all-wrapper {
  text-align: center;
  margin-top: 4rem;
}

.view-all-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #F5F2EC;
  border-bottom: 1px solid rgba(245, 242, 236, 0.4);
  padding-bottom: 4px;
  transition: border-color 250ms ease, letter-spacing 300ms ease;
  display: inline-block;
}

.view-all-link:hover {
  border-bottom-color: #F5F2EC;
  letter-spacing: 0.26em;
}

/* ============================================
   SERVICES PAGE
   ============================================ */

.services-grid {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.service-tier {
  padding: 4rem 0;
  border-bottom: 0.5px solid rgba(245, 242, 236, 0.1);
}

.service-tier:last-of-type { border-bottom: none; }

.service-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.55);
  margin-bottom: 0.75rem;
}

.service-title {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #F5F2EC;
  margin-bottom: 0.75rem;
  letter-spacing: 0.015em;
}

.service-subhead {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.15rem;
  color: rgba(245, 242, 236, 0.78);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.service-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245, 242, 236, 0.88);
  margin-bottom: 1.25rem;
}

.service-body strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #F5F2EC;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.4rem;
  margin-top: 1.5rem;
}

.service-cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.85rem 2rem;
  background-color: transparent;
  color: #F5F2EC;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid #F5F2EC;
  transition: all 250ms ease;
}

.service-cta:hover {
  background-color: #F5F2EC;
  color: #000;
}

.services-closing {
  max-width: 700px;
  margin: 5rem auto 0;
  text-align: center;
  padding: 4rem 2rem;
  border-top: 0.5px solid rgba(245, 242, 236, 0.1);
}

.services-closing p {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #F5F2EC;
  margin-bottom: 2rem;
}

/* ============================================
   CONTACT BAND
   ============================================ */

.band-contact {
  background-color: #000;
  padding: 5rem 0;
  border-top: 1px solid rgba(245, 242, 236, 0.14);
  scroll-margin-top: 80px;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-intro {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(245, 242, 236, 0.88);
}

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

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.7);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background-color: #000;
  border: 1px solid rgba(245, 242, 236, 0.2);
  color: #F5F2EC;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  transition: border-color 250ms ease;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23F5F2EC' stroke-width='1.5'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #F5F2EC;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
  font-family: 'Montserrat', sans-serif;
}

.form-submit {
  display: inline-block;
  align-self: flex-start;
  padding: 1rem 2.5rem;
  background-color: transparent;
  color: #F5F2EC;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid #F5F2EC;
  cursor: pointer;
  transition: all 250ms ease;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background-color: #F5F2EC;
  color: #000;
}

.contact-direct {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: rgba(245, 242, 236, 0.75);
}

.contact-direct a {
  border-bottom: 1px solid rgba(245, 242, 236, 0.3);
  padding-bottom: 2px;
  transition: border-color 200ms ease;
}

.contact-direct a:hover { border-bottom-color: #F5F2EC; }

.form-message {
  display: none;
  text-align: center;
  padding: 1.5rem;
  margin-top: 1rem;
  background-color: rgba(245, 242, 236, 0.08);
  border: 1px solid rgba(245, 242, 236, 0.2);
  color: #F5F2EC;
  font-size: 1rem;
}

.form-message.visible { display: block; }

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background-color: #000;
  border-top: 0.5px solid rgba(245, 242, 236, 0.1);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.55);
  margin-bottom: 1.25rem;
}

.footer-logo img {
  height: 32px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: rgba(245, 242, 236, 0.75);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: rgba(245, 242, 236, 0.8);
  transition: opacity 200ms ease;
}

.footer-nav a:hover { color: #F5F2EC; }

.footer-contact a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: rgba(245, 242, 236, 0.85);
  transition: opacity 200ms ease;
  display: block;
  margin-bottom: 1rem;
}

.footer-contact a:hover { color: #F5F2EC; }

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 242, 236, 0.25);
  transition: border-color 200ms ease, transform 200ms ease;
}

.footer-social a:hover {
  border-color: #F5F2EC;
  transform: translateY(-1px);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: rgba(245, 242, 236, 0.85);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 0.5px solid rgba(245, 242, 236, 0.08);
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  color: rgba(245, 242, 236, 0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.lightbox.open { display: flex; animation: lightboxFade 200ms ease; }

@keyframes lightboxFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
}

.lightbox-video {
  width: 90vw;
  max-width: 1400px;
  aspect-ratio: 16 / 9;
  background-color: #000;
}

.lightbox-video.vertical {
  width: auto;
  height: 85vh;
  aspect-ratio: 9 / 16;
  max-width: 90vw;
}

.lightbox-video.near-vertical {
  width: auto;
  height: 85vh;
  aspect-ratio: 1080 / 1358;
  max-width: 90vw;
}

.lightbox-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(245, 242, 236, 0.3);
  z-index: 10001;
  transition: background-color 200ms ease, border-color 200ms ease;
}

.lightbox-close:hover {
  background-color: rgba(0, 0, 0, 0.85);
  border-color: #F5F2EC;
}

.lightbox-close::before,
.lightbox-close::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 1.5px;
  background-color: #F5F2EC;
}

.lightbox-close::before { transform: rotate(45deg); }
.lightbox-close::after { transform: rotate(-45deg); }

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(245, 242, 236, 0.25);
  z-index: 10001;
  transition: background-color 200ms ease, border-color 200ms ease;
}

.lightbox-arrow:hover {
  background-color: rgba(0, 0, 0, 0.85);
  border-color: #F5F2EC;
}

.lightbox-arrow.prev { left: 1.5rem; }
.lightbox-arrow.next { right: 1.5rem; }

.lightbox-arrow svg {
  width: 24px;
  height: 24px;
  stroke: #F5F2EC;
  fill: none;
  stroke-width: 1.5;
}

.lightbox-caption {
  position: absolute;
  bottom: -2.5rem;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: rgba(245, 242, 236, 0.75);
}

body.lightbox-open { overflow: hidden; }

/* ============================================
   RESPONSIVE  ·  mobile hero fix is here
   ============================================ */

@media (max-width: 1024px) {
  .masonry-grid { column-count: 2; }
  .footer-content { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .container, .container-narrow, .container-medium {
    padding: 0 1.5rem;
  }

  .nav-links { display: none; }
  .hamburger { display: block; }

  /* MOBILE HERO  ·  strict 16:9, text sized to fit and read larger than body */
  .hero-band {
    margin-top: 0;
  }

  .hero-content {
    padding: 0 1.25rem;
    z-index: 5;
    position: relative;
  }

  .hero-deck {
    font-size: 0.58rem;
    letter-spacing: 0.26em;
    margin-bottom: 0.85rem;
    color: rgba(245, 242, 236, 0.95);
  }

  .hero-headline {
    font-size: clamp(1.5rem, 4.8vw, 2.2rem);
    letter-spacing: 0.005em;
    line-height: 1.2;
    margin-bottom: 0.65rem;
    max-width: 19em;
  }

  .hero-toggle {
    width: 32px;
    height: 32px;
    bottom: 1rem;
    right: 1rem;
  }
  .hero-toggle-icon { width: 12px; height: 12px; }

  .hero-cta {
    font-size: 0.62rem;
    padding: 0.65rem 1.5rem;
    letter-spacing: 0.18em;
  }

  .page-hero { padding: 7rem 1.5rem 3.5rem; }

  .band, .band-proof, .band-about, .band-contact {
    padding: 3.5rem 0;
  }

  .services-grid { padding: 2rem 1.25rem 3.5rem; }

  .masonry-grid {
    column-count: 1;
    padding: 0 1.5rem;
    column-gap: 1rem;
  }

  .masonry-item { margin-bottom: 1rem; }

  .service-tier { padding: 3rem 0; }

  .footer-content { grid-template-columns: 1fr; gap: 2.5rem; text-align: left; }

  .lightbox-arrow { width: 40px; height: 40px; }
  .lightbox-arrow.prev { left: 0.5rem; }
  .lightbox-arrow.next { right: 0.5rem; }
  .lightbox-close { top: 1rem; right: 1rem; width: 40px; height: 40px; }
  .lightbox-video { width: 95vw; }
  .lightbox-video.vertical,
  .lightbox-video.near-vertical { height: 75vh; }
}

@media (max-width: 480px) {
  .floating-header { padding: 1rem 1.5rem; }
  .floating-header.scrolled { padding: 0.85rem 1.5rem; }
  .header-logo img { height: 28px; }
  .hero-deck { font-size: 0.52rem; letter-spacing: 0.22em; margin-bottom: 0.7rem; }
  .hero-headline { font-size: clamp(1.4rem, 4.5vw, 1.75rem); line-height: 1.2; margin-bottom: 0.5rem; max-width: 19em; }
  .hero-cta { font-size: 0.55rem; padding: 0.55rem 1.25rem; letter-spacing: 0.16em; }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-deck, .hero-headline, .hero-cta {
    opacity: 1;
    animation: none;
  }

  .hero-media-video { display: none; }
}
