/* Elevate Fit-Out — Services page (from "Elevate - Services.dc.html") */

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #DFD8C8;
  color: #1E1B16;
  font-family: 'Manrope', sans-serif;
  overflow-x: hidden;
}

a { color: #EE5D2F; text-decoration: none; }
a:hover { color: #1E1B16; }
img { display: block; }

.accent { color: #EE5D2F; }

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 32px;
  background: linear-gradient(180deg, rgba(19,19,18,.55), rgba(19,19,18,0));
  transition: background .35s ease, box-shadow .35s ease;
}
.nav.scrolled {
  background: rgba(10,10,9,.97);
  box-shadow: 0 1px 0 rgba(245,243,239,.09);
}

.nav-wordmark { justify-self: start; }
.nav-wordmark img { height: 34px; }
.nav-mark { justify-self: center; }
.nav-mark img { height: 46px; }
.nav-actions { display: flex; gap: 12px; align-items: center; justify-self: end; }

.btn {
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  letter-spacing: .14em;
  border-radius: 10px;
}
.btn-solid { background: #EE5D2F; color: #131312; padding: 14px 28px; }
.btn-solid:hover { color: #131312; }
.btn-ghost { border: 1px solid rgba(245,243,239,.4); color: #F5F3EF; padding: 13px 24px; }
.btn-ghost:hover { color: #F5F3EF; }

.nav-burger {
  width: 47px; height: 47px;
  border: 0;
  border-radius: 10px;
  background: #F5F3EF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.nav-burger span { width: 18px; height: 2px; background: #131312; display: block; }

.menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(19,19,18,.98);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 8vw;
}
.menu[hidden] { display: none; }
.menu-close {
  position: absolute;
  top: 26px; right: 32px;
  border: 0;
  background: none;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .24em;
  color: #F5F3EF;
  cursor: pointer;
  padding: 12px;
}
.menu-link {
  font-family: 'Anton', sans-serif;
  font-size: clamp(44px, 6vw, 84px);
  color: #F5F3EF;
  line-height: 1.15;
}
.menu-link:hover { color: #EE5D2F; }
.menu-link-accent { color: #EE5D2F; }

/* ---------- Hero ---------- */

.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 160px 44px 72px;
}
.hero-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3em;
  color: #EE5D2F;
}
.hero-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(56px, 7.5vw, 116px);
  font-weight: 400;
  line-height: .98;
  margin: 24px 0 0;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: #4A453C;
  margin: 28px 0 0;
  max-width: 640px;
}

/* ---------- Service rows ---------- */

.service {
  display: grid;
  grid-template-columns: 45% 55%;
  border-top: 1px solid rgba(30,27,22,.15);
}
.service-media {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}
.service-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-no {
  position: absolute;
  left: 24px; top: 24px;
  font-family: 'Anton', sans-serif;
  font-size: 80px;
  line-height: 1;
  color: rgba(245,243,239,.28);
}
.service-body {
  padding: 64px 44px 64px 56px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s ease, transform .9s ease;
}
.service-body.revealed { opacity: 1; transform: none; }
.service-title {
  font-family: 'Anton', sans-serif;
  font-size: 44px;
  font-weight: 400;
  letter-spacing: .02em;
  color: #EE5D2F;
  margin: 0;
}
.service-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  margin-top: 36px;
}
.si-h {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
}
.si-d {
  font-size: 14px;
  line-height: 1.7;
  color: #5F594E;
  margin-top: 8px;
}

.service { scroll-margin-top: 90px; }

/* the shared CTA sits on a cream page here — go dark so it reads as its own section
   (body prefix outranks the later-loaded footer.css defaults) */
body .next-cta { background: #131312; }
body .next-cta h2 { color: #F5F3EF; }

/* ---------- Responsive ---------- */

@media (max-width: 1023px) {
  .service { grid-template-columns: 1fr; }
  .service-media { min-height: 380px; }
}

@media (max-width: 679px) {
  .nav-btn { display: none; }
  .hero { padding: 140px 20px 56px; }
  .service-body { padding: 44px 20px; }
  .service-items { grid-template-columns: 1fr; }
}
