/* ─── Reset & Variables ─────────────────────────────── */

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

:root {
  --bg:           #0d0d0d;
  --surface:      #111;
  --accent:       #035f70;
  --accent-light: #5ecfdf;
  --text:         #777;
  --text-mid:     #888;
  --text-bright:  #fff;
  --border:       #1a1a1a;
  --border-2:     #1e1e1e;
  --font:         -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w:        900px;
  --pad:          48px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

/* ─── Layout ─────────────────────────────────────────── */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section {
  padding: 80px 0;
}

/* ─── Eyebrow label ──────────────────────────────────── */

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 24px;
}

/* ─── Nav ────────────────────────────────────────────── */

.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 0;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  flex-direction: column;
}

.nav-name {
  color: var(--text-bright);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.nav-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-bright);
}

.btn-hire {
  background: var(--accent) !important;
  color: var(--text-bright) !important;
  padding: 9px 22px !important;
  border-radius: 999px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}

.btn-hire:hover {
  background: #024f5d !important;
  color: var(--text-bright) !important;
}

/* ─── Hero ───────────────────────────────────────────── */

.hero {
  position: relative;
  height: 580px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url('images/PXL_20230208_171628771.PORTRAIT.jpg');
  background-size: cover;
  background-position: center 20%;
  filter: brightness(0.6) saturate(0.85);
}

/* Bottom fade — image dissolves into page background */
.hero-bottom-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(13, 13, 13, 0.6) 75%,
    var(--bg) 100%
  );
}

/* Left-side gradient for text legibility + top-left corner coverage */
.hero-left-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13, 13, 13, 0.7) 0%,
    rgba(13, 13, 13, 0.35) 45%,
    transparent 70%
  );
}

.hero-content {
  position: absolute;
  bottom: 56px;
  left: 0;
  right: 0;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* ─── Availability tags ──────────────────────────────── */

.availability-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.tag--available {
  border-color: rgba(94, 207, 223, 0.28);
}

/* Animated pulse dot */
.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-light);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--accent-light);
  opacity: 0;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0%   { opacity: 0.55; transform: scale(1); }
  100% { opacity: 0;    transform: scale(2.6); }
}

.btn-cta {
  display: inline-block;
  align-self: flex-start;
  background: var(--accent);
  color: var(--text-bright);
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s;
}

.btn-cta:hover {
  background: #024f5d;
  transform: translateY(-1px);
}

/* ─── Showreel ───────────────────────────────────────── */

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-thumbnail {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(0.85);
  transition: filter 0.3s;
}

.video-thumbnail:hover img {
  filter: brightness(0.85) saturate(0.9);
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  background: var(--accent);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  padding-left: 4px; /* optical centre for play icon */
}

.video-play svg {
  width: 28px;
  height: 28px;
}

.video-thumbnail:hover .video-play {
  background: #024f5d;
  transform: translate(-50%, -50%) scale(1.08);
}

/* ─── Services ───────────────────────────────────────── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  border-radius: 12px;
  overflow: hidden;
}

.service-card {
  position: relative;
  height: 340px;
  overflow: hidden;
  border-top: 2px solid var(--accent);
}

.service-card__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6) saturate(0.8);
  transition: filter 0.4s ease, transform 0.5s ease;
}

.service-card:hover .service-card__image {
  filter: brightness(0.75) saturate(0.9);
  transform: scale(1.04);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.3)  50%,
    transparent         100%
  );
}

.service-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
}

.service-card__content h3 {
  color: var(--text-bright);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-card__content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.55;
}

/* ─── Clients ────────────────────────────────────────── */

.clients-intro {
  color: var(--text-mid);
  font-size: 15px;
  margin-bottom: 32px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.logo-cell {
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  min-height: 90px;
  transition: background 0.2s;
}

.logo-cell:hover {
  background: #151515;
}

.logo-cell img {
  max-height: 34px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.logo-cell:hover img {
  opacity: 1;
}

.logo-cell--others {
  font-size: 13px;
  font-style: italic;
  color: var(--text);
}

.clients-caption {
  font-size: 12px;
  color: #4a4a4a;
  margin-top: 18px;
}

/* ─── Atmospheric Strip ──────────────────────────────── */

.strip {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.strip__image {
  position: absolute;
  inset: 0;
  background-image: url('images/PXL_20230224_174459349.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) saturate(0.7);
}

/* Radial vignette: bright centre, dark edges that merge into surrounding sections */
.strip__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent          25%,
    rgba(13, 13, 13, 0.55) 65%,
    var(--bg)            100%
  );
}

.strip__top-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(to bottom, var(--bg), transparent);
}

.strip__bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(to top, var(--bg), transparent);
}

.strip__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 0 var(--pad);
}

.strip__location {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
}

.strip__quote {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 500px;
  line-height: 1.6;
}

/* ─── Kit ────────────────────────────────────────────── */

.section-intro {
  color: var(--text-mid);
  font-size: 15px;
  margin-bottom: 32px;
}

.kit-card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 48px;
}

.kit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.kit-list li {
  color: var(--text-mid);
  font-size: 14px;
  padding-left: 16px;
  position: relative;
}

.kit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 1px;
  background: var(--accent);
}

/* ─── Contact ────────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-left h2 {
  color: var(--text-bright);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.contact-copy {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.7;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  padding: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: 6px;
  color: var(--text-bright);
  font-family: var(--font);
  font-size: 14px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #3a3a3a;
}

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

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: var(--text-bright);
  border: none;
  border-radius: 6px;
  padding: 13px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}

.btn-submit:hover:not(:disabled) {
  background: #024f5d;
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-error {
  color: #d95050;
  font-size: 13px;
  margin-top: 12px;
  min-height: 18px;
}

.form-success {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
}

.form-success p {
  color: var(--accent-light);
  font-size: 15px;
}

/* ─── Footer ─────────────────────────────────────────── */

.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #3e3e3e;
}

/* ─── Responsive ─────────────────────────────────────── */

@media (max-width: 700px) {

  :root {
    --pad: 20px;
  }

  .section {
    padding: 56px 0;
  }

  /* Nav */
  .nav {
    padding: 20px 0;
  }

  .nav-name {
    font-size: 20px;
  }

  .nav-links a:not(.btn-hire) {
    display: none;
  }

  .nav-links {
    gap: 0;
  }

  /* Hero */
  .hero {
    height: 520px;
  }

  .hero-content {
    bottom: 40px;
  }

  /* Services — single column */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .service-card {
    height: 260px;
  }

  /* Logo grid — 2 columns */
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Kit — single column */
  .kit-card {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  /* Contact — single column */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-left h2 {
    font-size: 26px;
  }

  /* Footer — stack */
  .footer-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}
