/* ============================================================
   Developex — Building Solutions
   Theme: charcoal + gold (from developex.com.au brand palette)
   ============================================================ */

:root {
  --bg: #0f1113;
  --nav: #131517;
  --panel: rgba(19, 21, 23, 0.86);
  --panel-alt: rgba(26, 29, 32, 0.92);
  --card: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.08);
  --ink: #eceef0;
  --muted: #9aa3ab;
  --gold-1: #e5b860;
  --gold-2: #df9837;
  --gold-grad: linear-gradient(135deg, #e5b860 0%, #df9837 100%);
  --charcoal: #23272b;
  --font: 'Montserrat', -apple-system, sans-serif;
  --radius: 20px;
  --nav-h: 76px;
}

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

::selection { background: var(--gold-2); color: #131517; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

.container { width: min(1180px, 92vw); margin: 0 auto; }

/* ---------- Background video ---------- */

.bg-media {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.bg-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}

.bg-media .bg-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 17, 19, 0.82) 0%, rgba(15, 17, 19, 0.55) 45%, rgba(15, 17, 19, 0.85) 100%),
    radial-gradient(120% 90% at 50% 10%, rgba(223, 152, 55, 0.10) 0%, transparent 55%);
}

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h3 { font-size: 1.15rem; font-weight: 600; letter-spacing: 0.02em; }

.grad-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold-1);
  margin-bottom: 1.1rem;
}

.section-sub {
  color: var(--muted);
  max-width: 560px;
  margin-top: 1rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 1rem 2.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.btn-gold {
  background: var(--gold-grad);
  color: #131517;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(223, 152, 55, 0.35);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--gold-1);
  color: var(--gold-1);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--gold-2);
  color: var(--gold-1);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold-grad);
  color: #131517;
  transform: translateY(-2px);
}

.btn-sm { padding: 0.7rem 1.5rem; font-size: 0.74rem; }
.btn-lg { padding: 1.15rem 2.6rem; }

/* ---------- Navigation ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

.nav.scrolled {
  background: rgba(19, 21, 23, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-inner {
  width: min(1280px, 94vw);
  margin: 0 auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand-logo {
  height: 40px;
  width: auto;
  mix-blend-mode: screen; /* black logo background disappears on dark UI */
}

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold-grad);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-links a.active { color: var(--gold-1); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-phone {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-1);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav-burger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: calc(var(--nav-h) + 4rem) 0 6rem;
}

.hero-inner { max-width: 900px; }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(236, 238, 240, 0.82);
  max-width: 620px;
  margin-top: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.6rem;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  list-style: none;
  margin-top: 3.4rem;
}

.hero-chips li {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(236, 238, 240, 0.75);
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(19, 21, 23, 0.45);
  backdrop-filter: blur(10px);
}

.scroll-hint {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.scroll-hint span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 4px;
  background: var(--gold-1);
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(16px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- Sub-page hero ---------- */

.page-hero {
  padding: calc(var(--nav-h) + 6.5rem) 0 5rem;
  position: relative;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
}

.page-hero .hero-sub { max-width: 640px; }

/* ---------- Claims process steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 1.9rem 1.5rem 1.7rem;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  background: var(--card);
  overflow: hidden;
}

.step::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--gold-grad);
  opacity: 0.85;
}

.step-num {
  display: block;
  font-size: 2.1rem;
  font-weight: 200;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

.step h3 { font-size: 1rem; margin-bottom: 0.5rem; }

.step p { color: var(--muted); font-size: 0.85rem; }

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

.svc-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.svc-row + .svc-row { margin-top: 5rem; }

.svc-row .svc-media img {
  border-radius: var(--radius);
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.svc-row.flip .svc-media { order: 2; }

.svc-row h3 { font-size: 1.5rem; font-weight: 500; margin-bottom: 0.9rem; }

.svc-row p { color: var(--muted); }

.svc-row .ticks { margin-top: 1.4rem; }

.svc-kicker {
  display: block;
  font-size: 2rem;
  font-weight: 200;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.9rem;
}

@media (max-width: 980px) {
  .svc-row { grid-template-columns: 1fr; gap: 2rem; }
  .svc-row.flip .svc-media { order: 0; }
}

/* ---------- Emergency makesafe strip ---------- */

.strip { padding: 2.6rem 0; }

.emergency-inner {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  background: rgba(19, 21, 23, 0.85);
  border: 1px solid rgba(229, 184, 96, 0.35);
  border-left: 4px solid var(--gold-2);
  border-radius: var(--radius);
  padding: 1.6rem 2rem;
  backdrop-filter: blur(10px);
}

.emergency-dot {
  flex: none;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold-1);
  box-shadow: 0 0 0 0 rgba(229, 184, 96, 0.55);
  animation: emergencyPulse 1.8s ease-out infinite;
}

@keyframes emergencyPulse {
  0% { box-shadow: 0 0 0 0 rgba(229, 184, 96, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(229, 184, 96, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 184, 96, 0); }
}

.emergency-copy { flex: 1 1 320px; }

.emergency-copy h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }

.emergency-copy p { color: var(--muted); font-size: 0.88rem; }

.emergency-inner .btn { flex: none; }

@media (prefers-reduced-motion: reduce) {
  .emergency-dot { animation: none; }
}

/* ---------- Section CTA row ---------- */

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ---------- Insurance teaser band ---------- */

.band-insure .hero-actions { justify-content: center; }


.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(19, 21, 23, 0.7);
  backdrop-filter: blur(10px);
  padding: 1.1rem 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.marquee-track span {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(236, 238, 240, 0.66);
  white-space: nowrap;
}

.marquee-track i {
  font-style: normal;
  color: var(--gold-2);
  font-size: 0.7rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections / panels ---------- */

.section { padding: 7rem 0; }

.panel { background: var(--panel); backdrop-filter: blur(6px); }
.panel.alt { background: var(--panel-alt); }

.section-head { margin-bottom: 3.6rem; }

/* ---------- Projects ---------- */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}

.project-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: var(--card);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 184, 96, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.project-wide { grid-column: 1 / -1; }

.project-media { overflow: hidden; }

.project-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-wide .project-media img { height: 460px; }

.project-card:hover .project-media img { transform: scale(1.05); }

.project-info { padding: 1.6rem 1.8rem 1.8rem; }

.project-info h3 { margin: 0.6rem 0 0.45rem; font-size: 1.3rem; font-weight: 500; }

.project-info p { color: var(--muted); font-size: 0.92rem; }

.project-tag {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-1);
  border: 1px solid rgba(229, 184, 96, 0.4);
  border-radius: 999px;
  padding: 0.32rem 0.85rem;
}

/* ---------- Project slideshows ---------- */

.project-media.slideshow { position: relative; height: 320px; }

.project-wide .project-media.slideshow { height: 460px; }

.project-media.slideshow .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.55s ease, transform 0.6s ease;
}

.project-media.slideshow .slide.active { opacity: 1; }

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(15, 17, 19, 0.55);
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding-bottom: 4px;
  transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}

.slide-btn.prev { left: 14px; }
.slide-btn.next { right: 14px; }

.slide-btn:hover {
  border-color: var(--gold-1);
  color: var(--gold-1);
  background: rgba(15, 17, 19, 0.8);
}

.slide-counter {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 17, 19, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
}

/* ---------- On-site video ---------- */

.onsite-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.onsite-media video {
  display: block;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

@media (max-width: 980px) {
  .onsite-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ---------- Render grid & walkthrough films ---------- */

.render-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.render-grid .project-media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.films-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem 3rem;
}

.film { margin: 0; max-width: 100%; }

/* Width lives on the flex item so it has a definite basis to size against. */
.film-portrait { width: 330px; }
.film-landscape { width: 560px; }

/* Each clip declares its own aspect ratio so the frame is correct before the
   video loads (preload="none" means intrinsic size is unknown at layout time). */
.film video {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.film-portrait video { aspect-ratio: 9 / 16; }
.film-landscape video { aspect-ratio: 16 / 9; }

/* Spam honeypot — hidden from real visitors */
.hidden-field { display: none; }

.film figcaption {
  text-align: center;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

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

/* ---------- Services ---------- */

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

.service-card {
  position: relative;
  padding: 2.4rem 1.9rem 2.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  background: var(--card);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(229, 184, 96, 0.4);
}

.service-card:hover::before { transform: scaleX(1); }

.service-num {
  display: block;
  font-size: 2.6rem;
  font-weight: 200;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.2rem;
}

.service-card h3 { margin-bottom: 0.7rem; }

.service-card p { color: var(--muted); font-size: 0.9rem; }

/* ---------- Video window bands ---------- */

.band {
  padding: 9rem 0;
  text-align: center;
  /* transparent — lets the timelapse show through */
}

.band-inner { max-width: 760px; margin: 0 auto; }

.band h2 { text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6); }

.band p {
  margin-top: 1.3rem;
  color: rgba(236, 238, 240, 0.85);
  font-size: 1.05rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7);
}

.band .hero-actions { justify-content: center; }

.band-cta { padding: 10rem 0; }

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}

.about-media { position: relative; }

.about-media img {
  border-radius: var(--radius);
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  right: -1.4rem;
  bottom: 2.2rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--gold-grad);
  color: #131517;
  border-radius: 16px;
  padding: 1.1rem 1.4rem;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}

.about-badge-num {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.08em;
}

.about-badge-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.5;
}

.about-copy p:not(.eyebrow) { color: var(--muted); margin-top: 1.2rem; }

.ticks {
  list-style: none;
  margin-top: 1.8rem;
  display: grid;
  gap: 0.75rem;
}

.ticks li {
  position: relative;
  padding-left: 2rem;
  color: var(--ink);
  font-size: 0.95rem;
}

.ticks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23131517' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4 10-10'/%3E%3C/svg%3E") center / 10px no-repeat,
    linear-gradient(135deg, #e5b860, #df9837);
}

.about-copy .btn { margin-top: 2.2rem; }

/* ---------- Areas ---------- */

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.area-card {
  padding: 2.4rem 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  background: var(--card);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.area-card:hover {
  transform: translateY(-5px);
  border-color: rgba(229, 184, 96, 0.4);
}

.area-abbr {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  background: var(--gold-grad);
  color: #131517;
  border-radius: 8px;
  padding: 0.4rem 0.75rem 0.4rem 0.95rem;
  margin-bottom: 1.3rem;
}

.area-card h3 { margin-bottom: 0.5rem; }

.area-card p { color: var(--muted); font-size: 0.9rem; }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4.5rem;
  align-items: start;
}

.contact-copy > p:not(.eyebrow) { color: var(--muted); margin-top: 1.2rem; }

.contact-list {
  list-style: none;
  margin-top: 2.4rem;
  display: grid;
  gap: 1.5rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.contact-ic {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(229, 184, 96, 0.35);
  color: var(--gold-1);
  background: rgba(229, 184, 96, 0.06);
}

.contact-ic svg { width: 21px; height: 21px; }

.contact-list strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.contact-list a, .contact-list span { font-size: 0.98rem; }
.contact-list a:hover { color: var(--gold-1); }

.contact-form {
  padding: 2.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  background: var(--card);
  backdrop-filter: blur(8px);
  display: grid;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--ink);
  background: rgba(15, 17, 19, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(223, 152, 55, 0.18);
}

.contact-form .btn { justify-self: start; }

.form-note { font-size: 0.85rem; color: var(--gold-1); min-height: 1.2em; }

/* ---------- Footer ---------- */

.footer {
  background: #0c0e10;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 1.2rem;
  max-width: 300px;
}

.footer h4 {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--gold-1);
  margin-bottom: 1.2rem;
}

.footer ul { list-style: none; display: grid; gap: 0.65rem; }

.footer ul li, .footer ul a { color: var(--muted); font-size: 0.9rem; }

.footer ul a:hover { color: var(--ink); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 3.6rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom p { color: rgba(154, 163, 171, 0.7); font-size: 0.8rem; }

/* ---------- Reveal animations ---------- */

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: none; }

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .scroll-hint span { animation: none; }
}

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

@media (max-height: 800px) {
  .hero { padding: calc(var(--nav-h) + 2.5rem) 0 4.5rem; }
  h1 { font-size: clamp(2.3rem, 5.2vw, 3.6rem); }
  .hero-sub { margin-top: 1.2rem; }
  .hero-actions { margin-top: 2rem; }
  .hero-chips { margin-top: 2.2rem; }
}


@media (max-width: 980px) {
  .services-grid, .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-media img { height: 420px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-cta .btn { display: none; }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(15, 17, 19, 0.97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .nav-links.open { max-height: 420px; }

  .nav-links a {
    padding: 1.05rem 5vw;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links a::after { display: none; }

  .nav-burger { display: flex; }
  .nav-phone { display: none; }

  .projects-grid { grid-template-columns: 1fr; }
  .project-wide .project-media img, .project-media img { height: 260px; }
  .project-media.slideshow, .project-wide .project-media.slideshow { height: 260px; }
  .services-grid, .areas-grid, .form-row, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .section { padding: 5rem 0; }
  .band { padding: 6.5rem 0; }
  .about-badge { right: 0.9rem; }
}
