/* ============================================================
   ATLANTA PODCAST RECORDING — Original Design System
   Dark, bold, modern studio aesthetic
   ============================================================ */

:root {
  /* Core palette */
  --orange:       #E07020;
  --orange-dark:  #C05A10;
  --orange-light: #F59040;
  --dark:         #0F0F0F;
  --dark-2:       #181818;
  --dark-3:       #222222;
  --dark-4:       #2E2E2E;
  --grey:         #6B7280;
  --grey-light:   #BEC5CC;
  --off-white:    #F5F3F0;
  --white:        #FFFFFF;
  --border:       rgba(255,255,255,0.08);
  --border-light: rgba(255,255,255,0.14);

  /* Typography */
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-ui:      'Inter', sans-serif;

  /* Spacing */
  --nav-h: 90px;
  --max-w: 1300px;
  --section-py: 72px;

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 40px;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.3);
  --shadow-md: 0 6px 28px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 60px rgba(0,0,0,0.5);
  --glow-orange: 0 0 40px rgba(224,112,32,0.25);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* ---- Utility ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 48px;
}

.section-header { margin-bottom: 60px; }
.section-header--center { text-align: center; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 13px 28px;
  border-radius: var(--r-xl);
  transition: all 0.22s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(224,112,32,0.35);
}
.btn--primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(224,112,32,0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--off-white);
  border: 1.5px solid var(--border-light);
}
.btn--ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border-light);
}
.btn--outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn--lg { padding: 16px 36px; font-size: 15px; }
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15,15,15,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  transition: background 0.3s;
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: 'Bebas Neue', 'Impact', sans-serif !important;
  font-size: 36px !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.nav__links a {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey-light);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav__links a:hover { color: var(--white); }

.nav__cta {
  margin-left: auto;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 9px 22px;
  border-radius: var(--r-xl);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.nav__cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--off-white);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 32px 24px;

  gap: 4px;
  background: var(--dark-2);
}

.nav__mobile a {
  padding: 11px 0;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 500;
  color: var(--grey-light);

  transition: color 0.2s;
}

.nav__mobile a:hover { color: var(--white); }

.nav__mobile a.nav__cta {
  border: none;
  margin-top: 12px;
  text-align: center;
  padding: 13px;
  border-radius: var(--r-xl);
  color: var(--white);
}

.nav__mobile.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
  z-index: 0;
}

.hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.6;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero__glow--1 {
  width: 600px;
  height: 600px;
  background: rgba(224,112,32,0.12);
  top: -100px;
  right: -100px;
}

.hero__glow--2 {
  width: 400px;
  height: 400px;
  background: rgba(224,112,32,0.06);
  bottom: 0;
  left: 10%;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 32px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 80px;
  width: 100%;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  color: var(--grey-light);
  letter-spacing: 1px;
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  width: fit-content;
}

.hero__tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 5.5vw, 82px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.hero__headline-accent {
  color: var(--orange);
  display: block;
}

.hero__sub {
  font-size: 18px;
  font-weight: 700;
  color: var(--grey-light);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero__sub-break { display: none; }
.hero__sub-inline { display: inline; }

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 32px;

}

.hero__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1;
}

.hero__stat-label {
  display: block;
  font-size: 12px;
  color: var(--grey);
  margin-top: 4px;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

.hero__right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--glow-orange);
  border: 1px solid var(--border-light);
}

.hero__img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(0.85) contrast(1.05);
}

.hero__img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(15,15,15,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--grey), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   CLIENTS GRID (static three-row logo grid)
   ============================================================ */
.clients {
  background: var(--dark);
  padding: 72px 0;
}

.clients__inner {
  text-align: center;
}

.clients__intro-text {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--grey-light);
  max-width: 680px;
  margin: 0 auto 56px;
  line-height: 1.6;
}

.clients__grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 0;
  align-items: center;
  justify-items: center;
}

.clients__logo {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.2s;
  padding: 16px 12px;
  box-sizing: content-box;
}

.clients__logo:hover {
  opacity: 0.9;
}

.clients__logo--color {
  filter: none;
  opacity: 0.75;
}

.clients__logo--color:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 1024px) {
  .clients__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 768px) {
  .clients__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .clients__logo {
    height: 32px;
    padding: 14px 10px;
  }
}

@media (max-width: 480px) {
  .clients__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .clients__logo {
    height: 26px;
    padding: 12px 8px;
  }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: var(--section-py) 0;
  background: var(--dark);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.service-card {
  background: var(--dark-2);
  padding: 40px 32px;
  position: relative;
  transition: background 0.25s;
  cursor: default;
  border-left: 3px solid var(--orange);
}

.service-card:hover { background: var(--dark-3); }

.service-card--featured {
  background: var(--dark-2);
}

.service-card--featured:hover { background: var(--dark-3); }

.service-card__num {
  font-family: var(--font-display);
  font-size: 48px;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.service-card__icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.1;
}

.service-card p {
  font-size: 16px;
  color: var(--grey-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-card__link {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  transition: gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-card__link:hover { gap: 8px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: var(--section-py) 0;
  background: var(--dark-2);
}

.about__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__img-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
  display: block;
  filter: brightness(0.9) contrast(1.05);
}

.about__img-tag {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(15,15,15,0.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: 8px 16px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  color: var(--grey-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.about__text-col .section-title { margin-bottom: 24px; }

.about__text-col p {
  font-size: 16px;
  color: #BEC5CC;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about__features {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--off-white);
}

.about__feature-icon {
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: var(--section-py) 0;
  background: var(--dark);
}

.process__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.process__step {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px 28px;
  transition: border-color 0.25s, transform 0.25s;
}

.process__step:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}

.process__step-num {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.process__step h3 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 10px;
}

.process__step p {
  font-size: 16px;
  color: var(--grey-light);
  line-height: 1.7;
}

.process__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  margin-top: 48px;
  color: var(--orange);
  font-size: 20px;
}

.process__connector::after {
  content: '→';
  font-size: 24px;
  color: var(--border-light);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--dark-2);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.testimonial-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}

.testimonial-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.testimonial-card--large {
  background: var(--dark-4);
  border-color: var(--border-light);
}

.testimonial-card__stars {
  color: #F5A623;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--orange);
  line-height: 0.7;
  margin-bottom: 20px;
  opacity: 0.7;
}

.testimonial-card blockquote {
  font-size: 16px;
  color: var(--off-white);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.testimonial-card__author span {
  font-size: 12px;
  color: var(--grey);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: var(--section-py) 0;
  background: var(--dark-2);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  /* kept for legacy, replaced by rate-sheet */
  align-items: start;
}

.pricing-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: border-color 0.25s, transform 0.25s;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
}

.pricing-card--featured {
  background: var(--dark-3);
  border-color: var(--orange);
  box-shadow: var(--glow-orange);
}

.pricing-card--featured:hover {
  border-color: var(--orange-light);
  transform: translateY(-6px);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--r-xl);
  white-space: nowrap;
}

.pricing-card__top h3 {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 10px;
}

.pricing-card__top p {
  font-size: 14px;
  color: var(--grey-light);
  line-height: 1.6;
}

.pricing-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--off-white);
  line-height: 1.5;
  padding-bottom: 10px;

}

.pricing-card__list li:last-child { border-bottom: none; }

.pricing-card__list li span {
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   RATE SHEET (Pricing)
   ============================================================ */
.rate-sheet {
  max-width: 900px;
  margin: 0 auto 48px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.rate-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 36px;

  background: var(--dark-2);
  transition: background 0.2s;
}

.rate-item:last-child {

}

.rate-item:hover {
  background: var(--dark-3);
}

.rate-item--highlight {
  background: var(--dark-3);
  border-left: 3px solid var(--orange);
}

.rate-item__info {
  flex: 1;
}

.rate-item__name {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.4;
}

.rate-item__desc {
  font-size: 14px;
  color: var(--grey-light);
  line-height: 1.6;
  margin: 0;
}

.rate-item__min {
  color: var(--orange);
  font-weight: 600;
}

.rate-item__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  min-width: 140px;
  text-align: right;
}

.rate-item__amount {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--orange);
  line-height: 1;
  letter-spacing: 1px;
}

.rate-item__amount--quote {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--grey-light);
  letter-spacing: 0;
  text-align: right;
  line-height: 1.4;
}

.rate-item__amount--free {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: #4ADE80;
  letter-spacing: 0;
}

.rate-item__unit {
  font-size: 13px;
  color: var(--grey);
  margin-top: 2px;
}

.section-sub {
  color: var(--grey-light);
  font-size: 15px;
  margin-top: 12px;
  line-height: 1.6;
}

.pricing-contact-link {
  color: var(--orange);
  text-decoration: underline;
}

.pricing__cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

@media (max-width: 640px) {
  .rate-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 20px;
  }
  .rate-item__price {
    align-items: flex-start;
    min-width: unset;
    text-align: left;
  }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--orange);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: 'APR';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 220px;
  color: rgba(255,255,255,0.06);
  letter-spacing: 4px;
  pointer-events: none;
  line-height: 1;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap;
  position: relative;
  z-index: 1;
}

.cta-banner__text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 2px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.cta-banner__text p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
}

.cta-banner__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn--white-orange {
  background: var(--white);
  color: var(--orange);
  border: none;
  box-shadow: none;
  font-weight: 700;
}
.btn--white-orange:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}
.btn--dark {
  background: rgba(15,15,15,0.85);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn--dark:hover {
  background: rgba(15,15,15,1);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: var(--section-py) 0;
  background: var(--dark-2);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact__info .section-title { margin-bottom: 32px; }

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact__detail-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__detail strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 4px;
}

.contact__detail span,
.contact__detail a {
  font-size: 17px;
  color: var(--off-white);
  line-height: 1.6;
}

.contact__detail a:hover { color: var(--orange); }

.contact__social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}

.contact__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-light);
  transition: all 0.2s;
}

.contact__social a:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

/* Contact Form */
.contact__form-wrap {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 48px 40px;
}

.contact__form h3 {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-2);
  border: 1px solid var(--border-light);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--off-white);
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

.form-group select {
  cursor: pointer;
  color: var(--grey-light);
}

.form-group select option {
  background: var(--dark-2);
  color: var(--off-white);
}

.form-group textarea { resize: vertical; min-height: 110px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);

}

.footer__top {
  padding: 64px 32px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 100% !important;
  width: 100%;
}

.footer__brand .nav__logo { margin-bottom: 20px; display: flex; justify-content: center; width: 100%; flex-shrink: unset; }
.footer__brand .nav__logo-text { font-size: 42px !important; }

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

/* footer logo text size handled above */

.footer__brand p {
  font-size: 18px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 600px;
}

.footer__phone {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--orange);
  transition: color 0.2s;
}

.footer__phone:hover { color: var(--orange-light); }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer__col h4 {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 20px;
}

.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--grey-light);
  padding: 5px 0;
  transition: color 0.2s;
}

.footer__col a:hover { color: var(--white); }

.footer__bottom {
  padding: 20px 32px 28px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom span {
  font-size: 13px;
  color: var(--grey);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  font-size: 13px;
  color: var(--grey);
  transition: color 0.2s;
}

.footer__bottom-links a:hover { color: var(--white); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 16px 24px 60px;
  }

  .hero__right { display: none; }

  .hero__headline { font-size: 68px; }

  .services__grid { grid-template-columns: repeat(2, 1fr); }

  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__img-col { order: -1; }
  .about__img-wrap img { height: auto; }

  .process__steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .process__connector { display: none; }

  .testimonials__grid { grid-template-columns: 1fr; }

  .pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .contact__inner { grid-template-columns: 1fr; gap: 48px; }

  .footer__top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-py: 52px; }

  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__logo-text { font-size: 26px !important; }
  .footer__brand .nav__logo-text { font-size: 26px !important; }
  .footer__brand p { font-size: 16px; text-align: center; max-width: 100%; }
  .footer__brand { text-align: center; align-items: center; }

  .hero__headline { font-size: 52px; }
  .hero__actions { flex-wrap: wrap; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__sub { font-size: 16px; max-width: 100% !important; overflow-wrap: break-word; text-align: center; }
  .hero__sub-break { display: inline; }
  .hero__sub-inline { display: none; }
  .hero__stats { padding-top: 24px; }

  .services__grid { grid-template-columns: 1fr; }

  .cta-banner__inner { flex-direction: column; text-align: center; flex-wrap: wrap; }
  .cta-banner__text p { white-space: normal; }
  .cta-banner__actions { justify-content: center; flex-wrap: wrap; }

  .form-row { grid-template-columns: 1fr; }

  .contact__form-wrap { padding: 32px 24px; }

  .footer__cols { grid-template-columns: 1fr 1fr; }

  .footer__bottom { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero__inner { padding: 16px 16px 60px; }

  .hero__headline { font-size: 44px; }
  .hero__sub { font-size: 16px; }

  .hero__stats { flex-wrap: wrap; gap: 20px; }

  .cta-banner__actions { flex-direction: column; width: 100%; }
  .cta-banner__actions .btn { width: 100%; justify-content: center; }

  .footer__cols { grid-template-columns: 1fr; }
}



/* ============================================================
   BOOKING SECTION
   ============================================================ */
.booking {
  padding: var(--section-py) 0;
  background: var(--dark);
}

.booking .section-sub {
  font-size: 17px;
}

.booking-form {
  max-width: 820px;
  margin: 0 auto;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 48px;
}

.booking-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 0;
}

.booking-form .form-group {
  margin-bottom: 24px;
}

.booking-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.booking-form .req {
  color: var(--orange);
}

.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form input[type="date"],
.booking-form input[type="time"],
.booking-form select,
.booking-form textarea {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.booking-form input[type="date"]::-webkit-calendar-picker-indicator,
.booking-form input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.6;
  cursor: pointer;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(224, 112, 32, 0.15);
}

.booking-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.booking-form textarea {
  resize: vertical;
  min-height: 110px;
}

.booking-form__checkboxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 4px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--grey-light);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  padding: 10px 14px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
}

.checkbox-label:hover {
  border-color: var(--border-light);
  background: var(--dark-2);
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-box {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-light);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-box {
  background: var(--orange);
  border-color: var(--orange);
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-box::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

.checkbox-label input[type="checkbox"]:checked ~ * {
  color: var(--white);
}

.booking-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
  padding-top: 24px;

}

.booking-form__note {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.6;
  max-width: 420px;
  margin: 0;
}

.booking-form__success {
  text-align: center;
  padding: 48px 24px;
}

.booking-form__success-icon {
  width: 64px;
  height: 64px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  margin: 0 auto 20px;
}

.booking-form__success h3 {
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 8px;
}

.booking-form__success p {
  color: var(--grey-light);
  font-size: 15px;
}

/* also update the nav to include Booking link */

@media (max-width: 768px) {
  .booking-form {
    padding: 28px 20px;
  }
  .booking-form__row {
    grid-template-columns: 1fr;
  }
  .booking-form__checkboxes {
    grid-template-columns: 1fr 1fr;
  }
  .booking-form__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .booking-form__checkboxes {
    grid-template-columns: 1fr;
  }
}

/* Time range field */
.time-range {
  display: flex;
  align-items: center;
  gap: 10px;
}

.time-range input[type="time"] {
  flex: 1;
}

.time-range__sep {
  font-size: 13px;
  color: var(--grey);
  flex-shrink: 0;
  font-weight: 500;
}

/* ===================== GALLERY ===================== */
.gallery {
  padding: 72px 0;
  background: #0F0F0F;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 26px;
  margin-top: 48px;
}

.gallery__item {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery__item:hover img {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
    gap: 20px;
  }
  .gallery__item--wide {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
    gap: 20px;
  }
  .gallery__item--wide {
    grid-column: span 1;
  }
}

/* ===================== CTA BANNER PHOTO ===================== */
.cta-banner--photo {
  background-size: cover;
  background-position: center;
  position: relative;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
  z-index: 0;
}

.cta-banner--photo .cta-banner__inner {
  position: relative;
  z-index: 1;
}

/* Inline Camera Selection */
.checkbox-group-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.camera-selection-inline {
  padding: 12px 16px;
  background: var(--dark-4);
  border: 1px solid var(--border-light);
  border-radius: var(--r-sm);
  margin-top: 4px;
  animation: fadeIn 0.3s ease;
}

.camera-selection-inline label {
  font-size: 11px !important;
  margin-bottom: 6px !important;
  color: var(--grey) !important;
}

.camera-selection-inline select {
  background: var(--dark-2) !important;
  font-size: 13px !important;
  padding: 8px 12px !important;
}

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

/* ===================== SECTION TRANSITION BLENDS ===================== */
/*
  Strategy: ::before fades IN from the surrounding dark (#0F0F0F) at the top,
  ::after fades OUT to #0F0F0F at the bottom of each #181818 section.
  This creates a smooth dissolve on both edges without hard lines.

  Section order & backgrounds:
  Hero         #0F0F0F
  Marquee      orange (skip)
  Services     #0F0F0F
  About        #181818  <-- needs blend
  Process      #0F0F0F
  Testimonials #181818  <-- needs blend
  Gallery      #0F0F0F
  Pricing      #0F0F0F
  Clients      #181818  <-- needs blend
  Booking      #0F0F0F
  Contact      #181818  <-- needs blend
  Footer       #0F0F0F
*/

/* About: fade in from #0F0F0F, fade out to #0F0F0F */
.about {
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, #0F0F0F, transparent);
  pointer-events: none;
  z-index: 1;
}
.about::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #0F0F0F);
  pointer-events: none;
  z-index: 1;
}

/* Testimonials: fade in from #0F0F0F, fade out to #0F0F0F */
.testimonials {
  position: relative;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, #0F0F0F, transparent);
  pointer-events: none;
  z-index: 1;
}
.testimonials::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #0F0F0F);
  pointer-events: none;
  z-index: 1;
}

/* Clients: same dark background as surrounding sections — no fade needed */

/* Contact: fade in from #0F0F0F, fade out to #0F0F0F */
/* Contact (#181818): fade in from #0F0F0F, fade out to #0F0F0F */
.contact {
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, #0F0F0F, transparent);
  pointer-events: none;
  z-index: 1;
}
.contact::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #0F0F0F);
  pointer-events: none;
  z-index: 1;
}

/* Booking is now #0F0F0F — same as surrounding sections, no fade needed */

/* Hero bottom → Clients: fade the hero's bottom edge into the dark clients section */
.hero {
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #0F0F0F);
  pointer-events: none;
  z-index: 1;
}

/* Pricing (#181818): fade in from #0F0F0F, fade out to #0F0F0F */
.pricing {
  position: relative;
}
.pricing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, #0F0F0F, transparent);
  pointer-events: none;
  z-index: 1;
}
.pricing::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #0F0F0F);
  pointer-events: none;
  z-index: 1;
}
