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

:root {
  --bg-body: #f5f5f7;
  --bg-alt: #111217;
  --bg-card: #ffffff;
  --bg-card-alt: #151720;
  --text-main-dark: #0b0c10;
  --text-main-light: #f9fafb;
  --text-muted-dark: #4f5563;
  --text-muted-light: #cbd5f5;
  --accent: #ff4f5e;
  --accent-soft: rgba(255, 79, 94, 0.15);
  --border-subtle: rgba(15, 23, 42, 0.06);
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.16);
  --shadow-subtle: 0 4px 18px rgba(15, 23, 42, 0.12);
  --max-width: 1120px;
}

/* Base */

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  background: radial-gradient(circle at top left, #171925 0, #05060a 40%, #05060a 100%);
  color: var(--text-main-dark);
  -webkit-font-smoothing: antialiased;
}

/* Layout helpers */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  padding: 5rem 0;
  background: var(--bg-body);
}

.section-heading {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: left;
}

.section-heading h2 {
  font-size: 2rem;
  letter-spacing: 0.03em;
  margin: 0 0 0.6rem;
  color: var(--text-main-dark);
}

.section-heading p {
  margin: 0;
  color: var(--text-muted-dark);
  font-size: 0.95rem;
}

/* Header / Nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5, 6, 10, 0.96), rgba(5, 6, 10, 0.92));
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
}

.logo-group {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--text-main-light);
}

.logo-sub {
  font-size: 0.75rem;
  color: rgba(226, 232, 240, 0.75);
}

.main-nav {
  display: flex;
  gap: 1.25rem;
}

.main-nav a {
  font-size: 0.9rem;
  text-decoration: none;
  color: rgba(226, 232, 240, 0.82);
  padding: 0.35rem 0;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  transition: width 0.2s ease-out;
}

.main-nav a:hover::after {
  width: 100%;
}

/* Hero */

.hero {
  padding: 4.5rem 0 4.75rem;
  background: radial-gradient(circle at top left, rgba(255, 79, 94, 0.16), transparent 55%),
              radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.16), transparent 55%);
  color: var(--text-main-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.35rem, 4vw, 3.15rem);
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.hero-sub {
  margin: 0 0 1.8rem;
  color: rgba(226, 232, 240, 0.82);
  font-size: 0.98rem;
  line-height: 1.6;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.9);
  margin: 0 0 0.85rem;
}

.highlight {
  color: var(--accent);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.hero-video-placeholder {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.32);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.5), #020617);
  box-shadow: var(--shadow-soft);
  padding: 2.75rem 1.75rem;
  text-align: center;
  position: relative;
}

.hero-video-placeholder p {
  margin: 0.75rem 0 0;
  color: rgba(148, 163, 184, 0.9);
  font-size: 0.85rem;
}

.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(248, 250, 252, 0.12);
  font-size: 1.4rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.65rem 1.4rem;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s ease-out, border-color 0.12s ease-out, color 0.12s ease-out;
}

.btn.primary {
  background: var(--accent);
  color: #0b0c10;
  box-shadow: 0 14px 30px rgba(248, 113, 113, 0.32);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(248, 113, 113, 0.42);
}

.btn.ghost {
  background: transparent;
  color: var(--text-main-light);
  border-color: rgba(148, 163, 184, 0.5);
}

.btn.ghost:hover {
  background: rgba(15, 23, 42, 0.85);
}

.btn.full-width {
  width: 100%;
}

/* Cards / Grid */

.grid {
  display: grid;
  gap: 1.6rem;
}

.portfolio-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
  overflow: hidden;
}

.section-alt .card {
  background: #ffffff;
}

.card-body {
  padding: 1.4rem 1.6rem 1.5rem;
}

.card-body h3 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
  color: var(--text-main-dark);
}

.card-body p {
  margin: 0 0 0.9rem;
  color: var(--text-muted-dark);
  font-size: 0.92rem;
}

/* Media cards - images */

.media-thumb {
  background: #e5e7eb;
  position: relative;
  padding: 0.75rem;
}

.media-img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  display: block;
}

/* Links & text helpers */

.text-link {
  font-size: 0.86rem;
  color: var(--accent);
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.section-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted-dark);
}

/* Lists */

.feature-list {
  padding-left: 1.1rem;
  margin: 1rem 0 1.6rem;
  color: var(--text-muted-dark);
  font-size: 0.94rem;
}

.feature-list li + li {
  margin-top: 0.35rem;
}

.inline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.inline-list li {
  font-size: 0.78rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid var(--border-subtle);
  color: var(--text-main-dark);
}

/* Studio section */

.studio-section {
  background: var(--bg-body);
}

.studio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.6rem;
  align-items: center;
}

.studio-text h2 {
  color: var(--text-main-dark);
}

.studio-text p {
  margin: 0.5rem 0 0.5rem;
  color: var(--text-muted-dark);
}

.studio-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.studio-photo-frame {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  margin: 0;
}

.studio-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.studio-photo-frame figcaption {
  padding: 0.65rem 0.9rem;
  font-size: 0.8rem;
  color: var(--text-muted-dark);
}

/* Booking */

.booking-section {
  background: #05060a;
  color: var(--text-main-light);
}

.booking-section .section-heading h2 {
  color: var(--text-main-light);
}

.booking-section .section-heading p {
  color: rgba(226, 232, 240, 0.78);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.35fr);
  gap: 2rem;
  align-items: flex-start;
  margin-top: 1.5rem;
}

.booking-section .card {
  background: linear-gradient(145deg, #050816, #020617);
  border-color: rgba(148, 163, 184, 0.2);
}

.booking-section .card-body h3 {
  color: var(--text-main-light);
}

.booking-section .card-body p {
  color: rgba(226, 232, 240, 0.82);
}

.card-note {
  font-size: 0.82rem;
  margin-top: 0.9rem;
}

.deposit-options h4 {
  margin: 1.4rem 0 0.7rem;
  font-size: 0.95rem;
  color: var(--text-main-light);
}

.deposit-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.booking-widget-placeholder {
  margin-top: 1rem;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(148, 163, 184, 0.5);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.9);
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted-dark);
}

.contact-list li + li {
  margin-top: 0.35rem;
}

.contact-list a {
  color: #2563eb;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-form {
  padding: 1.6rem 1.8rem 1.7rem;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.9rem;
}

.form-row label {
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  color: #374151;
}

.form-row input,
.form-row textarea {
  font: inherit;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  outline: none;
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.5);
}

.small {
  font-size: 0.78rem;
  color: #6b7280;
  margin: 0.5rem 0 0.7rem;
}

.small-invert {
  color: rgba(203, 213, 225, 0.9);
}

.footer-small {
  color: rgba(148, 163, 184, 0.85);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(31, 41, 55, 0.7);
  background: #020617;
  color: rgba(148, 163, 184, 0.85);
  padding: 1.4rem 0 1.7rem;
  font-size: 0.8rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
}

/* Responsive */

@media (max-width: 880px) {
  .hero-grid,
  .studio-grid,
  .booking-layout,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 3.4rem;
  }

  .hero-grid {
    gap: 2.3rem;
  }

  .nav-container {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.85rem;
  }

  .studio-media {
    order: -1;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 3.5rem 0;
  }

  .section-alt {
    padding: 3.5rem 0;
  }

  .card-body {
    padding: 1.2rem 1.35rem 1.3rem;
  }

  .contact-form {
    padding: 1.4rem 1.35rem 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}


/* Post-production grid layout */
.post-production-section .section-heading {
  text-align: center;
}

.post-production-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-bottom: 1.5rem;
}

.post-production-video {
  max-width: 720px;
  margin: 0 auto;
}

/* Booking section single-column layout */
.booking-layout-single {
  display: flex;
  justify-content: center;
}

.booking-layout-single .booking-info {
  max-width: 640px;
  width: 100%;
}


/* Featured work & behind the scenes slider */
.portfolio-slider-wrapper {
  position: relative;
  margin-top: 1.75rem;
}

.portfolio-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.25rem 0 0.75rem;
}

.portfolio-slide {
  flex: 0 0 min(100%, 360px);
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .portfolio-slide {
    flex-basis: 420px;
  }
}

.portfolio-slider::-webkit-scrollbar {
  height: 6px;
}

.portfolio-slider::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.8);
  border-radius: 999px;
}

.portfolio-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(15, 23, 42, 0.8);
  color: #fff;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
}

.portfolio-slider-btn.prev {
  left: -0.75rem;
}

.portfolio-slider-btn.next {
  right: -0.75rem;
}

@media (min-width: 900px) {
  .portfolio-slider-btn {
    display: inline-flex;
  }
}

/* Sub-heading inside post-production section */
.section-heading-sub {
  margin-top: 2.25rem;
  text-align: center;
}
