/* Editor Cut Media LLP - Shared Styles */

:root {
  --brand: #111111;
  --bg: #111111;
  --bg2: #191919;
  --paper: #ffffff;
  --light: #f7f5f1;
  --gray: #767676;
  --border: #2a2a2a;
  --border-light: #e2ddd7;
  --text: #ede9e3;
  --muted: #9c9c9c;
  --sans: "Plus Jakarta Sans", sans-serif;
  --serif: "Cormorant Garamond", serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}

a {
  text-decoration: none;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  background: rgba(17, 17, 17, 0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.nav-logo {
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
  transition: opacity 0.25s;
}

.nav-logo img:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.25s;
}

.nav-links a:hover {
  color: white;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.8rem;
  border: 1px solid white;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.25s;
  cursor: pointer;
}

.btn-primary {
  background: white;
  color: black;
}

.btn-primary:hover {
  background: transparent;
  color: white;
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: white;
}

/* Footer */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.footer-logo {
  display: block;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
  display: block;
  transition: opacity 0.25s;
}

.footer-logo img:hover {
  opacity: 0.8;
}

.footer-links {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.78rem;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: white;
}

.footer-copy {
  margin-top: 1.5rem;
  font-size: 0.72rem;
  color: var(--gray);
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 900px) {
  nav {
    gap: 1.5rem;
    padding: 1rem 1rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.7rem;
  }
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 1rem;
    padding: 0.8rem 1rem;
  }

  .nav-logo img {
    height: 30px;
  }

  .nav-links {
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links a {
    font-size: 0.65rem;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  nav {
    gap: 0.5rem;
    padding: 0.5rem 0.5rem;
  }

  .nav-logo img {
    height: 25px;
  }

  .nav-links {
    gap: 0.5rem;
  }

  .nav-links a {
    font-size: 0.6rem;
  }

  .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.65rem;
  }
}
