/* =========================
   RESET & VARIABLES
========================= */
:root {
  --bg-dark: #0d0d0d;
  --bg-light: #111;
  --accent: #c59d5f;
  --text-main: #ffffff;
  --text-muted: #b5b5b5;
  --border-soft: rgba(255,255,255,0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.7;
}

/* =========================
   GLOBAL UTILITIES
========================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.section,
.page-section {
  padding: 120px 0 90px;
}

.center {
  text-align: center;
  margin-top: 40px;
}

/* =========================
   HEADER + NAV
========================= */
.site-header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  height: 45px;
}

.nav {
  position: relative;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--accent);
}

.nav-cta {
  padding: 8px 16px;
  border: 1px solid var(--accent);
  border-radius: 30px;
  color: var(--accent);
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
}

/* MOBILE NAV */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #000;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    transform: translateY(-120%);
    transition: 0.3s ease;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-links li {
    margin: 12px 0;
  }
}

/* =========================
   HERO
========================= */
.hero {
  height: 100vh;
  position: relative;
}

.slides,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s;
}

.slide.is-active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), #000);
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #000;
}

.btn-outline {
  border: 1px solid var(--accent);
  color: var(--accent);
}

/* =========================
   ABOUT PAGE (CLEAN)
========================= */
.about-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-img-box {
  height: 260px;
  overflow: hidden;
  border-radius: 16px;
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Feature portrait */
.about-img-box:first-child {
  grid-column: span 2;
  height: 460px;
}

/* ABOUT MOBILE */
@media (max-width: 768px) {
  .about-images {
    grid-template-columns: 1fr;
  }

  .about-img-box {
    height: 220px;
  }

  .about-img-box:first-child {
    height: 320px;
  }
}

/* =========================
   SERVICES PAGE (BOXED IMAGES)
========================= */
.services-visuals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 50px 0;
}

.visual-box {
  max-width: 520px;
  height: 320px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border-soft);
}

.visual-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--bg-light);
  padding: 28px;
  border-radius: 16px;
  text-align: center;
}

.service-card h3 {
  margin-bottom: 12px;
}

/* SERVICES MOBILE */
@media (max-width: 768px) {
  .services-visuals {
    grid-template-columns: 1fr;
  }

  .visual-box {
    height: 220px;
  }
}

/* =========================
   RELEASES
========================= */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.release-card {
  background: var(--bg-light);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
}

.release-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border-soft);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

