/* ============================================================
   SANJEEV HATHIRAMANI — Film Editor
   sanjeev.de
   Minimal · Skandinavisch · Typografisch stark
   ============================================================ */

:root {
  --bg:        #F8F7F4;
  --white:     #FFFFFF;
  --text:      #1A1A1A;
  --muted:     #787878;
  --accent:    #7B1F1F;   /* dunkles Bordeaux-Rot, warm */
  --border:    #E3DED8;
  --font:      'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --max:       1200px;
  --nav-h:     64px;
}

/* ---- RESET ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ---- CONTAINER -------------------------------------------- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- SECTION LABEL ---------------------------------------- */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 3rem;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  background: rgba(248, 247, 244, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 100;
}

.nav-name {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  color: var(--accent) !important;
  font-weight: 600;
}

.nav-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--text);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 5rem) 2rem 5rem;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.hero-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 2rem;
}

.hero-name {
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  font-weight: 700;
  line-height: 0.93;
  letter-spacing: -0.035em;
  margin-bottom: 2.5rem;
}

.hero-name-first {
  display: block;
  color: var(--text);
}

.hero-name-last {
  display: block;
  color: var(--muted);
  font-weight: 300;
}

.hero-tagline {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 3rem;
  line-height: 1.75;
  font-weight: 300;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--text);
  color: var(--bg);
  padding: 1rem 2.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
  align-self: flex-start;
}
.btn-primary:hover { background: var(--accent); }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  color: var(--muted);
  font-size: 1rem;
  animation: floatDown 2.5s ease-in-out infinite;
}

@keyframes floatDown {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%       { transform: translateY(8px); opacity: 1; }
}

/* ============================================================
   SHOWREEL
   ============================================================ */
.showreel {
  background: #111;
  position: relative;
}

.showreel-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.showreel-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.showreel-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showreel-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: grayscale(40%);
}

.showreel-placeholder-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.showreel-ph-play {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
}

.showreel-ph-title {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.showreel-ph-sub {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 9rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 5rem;
}

.service-num {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.service h3 {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.service p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-clients {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.service-clients li {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 0.25rem 0.6rem;
  font-weight: 500;
}

/* ---- ENGAGEMENT TEASER ------------------------------------ */
.engagement-teaser {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.engagement-link {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 2rem 2.5rem;
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
  max-width: 640px;
}

.engagement-link:hover {
  border-color: var(--accent);
  background: var(--white);
}

.engagement-link-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.engagement-link-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.engagement-link-sub {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ============================================================
   WORK
   ============================================================ */
.work {
  padding-top: 9rem;
  background: var(--white);
}

.work > .container {
  margin-bottom: 3rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.work-item {
  padding: 2.75rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.work-item:hover { background: var(--bg); }

.work-featured {
  grid-column: span 2;
  background: var(--text);
  color: var(--white);
  padding: 4rem 2.75rem;
}
.work-featured:hover { background: var(--accent); }

.work-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1rem;
}

.work-tag {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.work-featured .work-tag {
  color: rgba(255, 255, 255, 0.45);
}

.work-year {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 400;
}

.work-featured .work-year {
  color: rgba(255, 255, 255, 0.35);
}

.work-item h3 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
  line-height: 1.15;
}

.work-featured h3 {
  font-size: 2.75rem;
  margin-bottom: 0.75rem;
}

.work-item p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

.work-featured p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
}

/* ---- CLIENTS STRIP ---------------------------------------- */
.clients-strip {
  border-top: 1px solid var(--border);
  background: var(--white);
  padding: 2.5rem 0;
  margin-top: 6rem;
}

.clients-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}

.clients-inner span {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  padding: 0.4rem 1.25rem;
  border-right: 1px solid var(--border);
  line-height: 1.8;
}

.clients-inner span:last-child { border-right: none; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 9rem 0;
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.about-image-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.about-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.about-img-secondary {
  width: 70%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  align-self: flex-end;
  margin-top: -3rem;
}

.about-text-col { padding-top: 0.5rem; }

.about-lead {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.about-text-col p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about-numbers {
  display: flex;
  gap: 3rem;
  padding-top: 2.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.about-number strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}

.about-number span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 9rem 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.testimonial {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonial p {
  font-size: 0.97rem;
  line-height: 1.8;
  font-style: italic;
  color: var(--text);
  margin-bottom: 1.75rem;
}

.testimonial cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testimonial cite strong {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.testimonial cite span,
.testimonial cite:not(strong) {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.testimonial:nth-child(3n) { border-right: 1px solid var(--border); }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 9rem 0;
  background: var(--bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  margin-top: 0;
}

.faq-item {
  padding: 3rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
}

.faq-item p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.85;
}

.faq-item p a {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  transition: opacity 0.2s;
}
.faq-item p a:hover { opacity: 0.7; }

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

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 10rem 0;
  background: var(--bg);
}

.contact-inner {
  max-width: 640px;
}

.contact h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.contact-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.contact-email {
  display: inline-block;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 500;
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.2rem;
  margin-bottom: 1.5rem;
  transition: opacity 0.2s;
}
.contact-email:hover { opacity: 0.7; }

.contact-location {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy,
.footer-links a {
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { gap: 3rem; }
  .about-grid { gap: 4rem; }
}

@media (max-width: 768px) {
  .nav-links    { display: none; }
  .nav-menu-btn { display: block; }

  .hero { padding-bottom: 4rem; }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }
  .work-featured { grid-column: span 1; }
  .work-featured h3 { font-size: 2rem; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image-col { position: static; }
  .about-img-secondary { display: none; }

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

  .about-numbers { gap: 2rem; }

  .clients-inner span { font-size: 0.62rem; padding: 0.35rem 0.75rem; }

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

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .services { padding: 6rem 0; }
  .work      { padding-top: 6rem; }
  .about     { padding: 6rem 0; }
  .testimonials { padding: 6rem 0; }
  .contact   { padding: 7rem 0; }
}
