:root {
  --bg: #050505;
  --panel: #101010;
  --panel-2: #171717;
  --text: #f7f4ec;
  --muted: #c7c0b1;
  --line: rgba(255, 255, 255, 0.14);
  --gold: #d6a64d;
  --gold-light: #f3cf7a;
  --white-soft: #f6f6f6;
  --shadow: rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 8%, rgba(214, 166, 77, 0.18), transparent 26rem),
    linear-gradient(180deg, #000 0%, var(--bg) 42%, #0b0b0b 100%);
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  background: rgba(0, 0, 0, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 180px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.2rem);
  color: var(--muted);
  font-size: 0.92rem;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--gold-light);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta {
  padding: 0.7rem 1rem;
  color: #070707;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.button {
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #050505;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 18px 35px rgba(214, 166, 77, 0.2);
}

.button.secondary {
  color: var(--white-soft);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(100svh - 84px);
  padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 5vw, 5rem) clamp(2rem, 5vw, 4rem);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1.35rem;
  font-size: clamp(2.3rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
  max-width: 930px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.08rem;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 1.7rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 10% 1%;
  z-index: -1;
  border: 1px solid rgba(214, 166, 77, 0.18);
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.hero-visual img {
  width: min(100%, 640px);
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.55));
}

.hero-badges {
  position: absolute;
  right: 4%;
  bottom: 11%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.hero-badges span,
.contact-list span,
.contact-list a {
  border: 1px solid rgba(214, 166, 77, 0.32);
  background: rgba(0, 0, 0, 0.62);
  color: var(--gold-light);
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-list a:hover {
  border-color: rgba(243, 207, 122, 0.75);
  background: rgba(214, 166, 77, 0.12);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(1rem, 5vw, 5rem);
  border: 1px solid var(--line);
  background: var(--line);
}

.trust-strip div {
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.045);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.section,
.work-section,
.process-section,
.contact-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(0, 0.65fr);
  gap: 2rem;
  align-items: start;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

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

.service-card {
  min-height: 210px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  border-radius: 8px;
}

.service-card p,
.timeline p,
.contact-copy p {
  color: var(--muted);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.1rem;
  border-radius: 6px;
  color: #070707;
  background: linear-gradient(135deg, var(--white-soft), var(--gold));
  font-weight: 900;
}

.work-section {
  background: #0a0a0a;
  border-block: 1px solid var(--line);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 190px;
  gap: 1rem;
}

.work-tile {
  position: relative;
  min-height: 190px;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--panel);
  box-shadow: 0 22px 55px var(--shadow);
}

.work-tile.wide {
  grid-column: span 2;
}

.work-tile.tall {
  grid-row: span 2;
}

.work-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.work-tile:hover img {
  transform: scale(1.04);
  filter: brightness(1.08);
}

.work-tile span {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1rem;
  color: var(--text);
  border-left: 3px solid var(--gold);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.38));
  font-weight: 800;
}

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

.timeline div {
  padding: 1.35rem;
  border-top: 1px solid var(--gold);
  background: rgba(255, 255, 255, 0.04);
}

.timeline span {
  display: block;
  margin-bottom: 1rem;
  color: var(--gold-light);
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  background: linear-gradient(180deg, #111, #050505);
}

.contact-copy {
  max-width: 690px;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.form-stack {
  display: grid;
  gap: 1rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(214, 166, 77, 0.35);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.58);
  box-shadow: 0 28px 70px var(--shadow);
}

.contact-form h3 {
  margin-bottom: 0.1rem;
}

.professional-form {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.85rem 0.9rem;
  color: var(--text);
  background: #111;
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem clamp(1rem, 5vw, 5rem);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #020202;
}

.site-footer img {
  width: 145px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .hero,
  .contact-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 390px;
  }

  .trust-strip,
  .service-grid,
  .work-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-auto-rows: 260px;
  }

  .work-tile.wide,
  .work-tile.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .work-tile {
    min-height: 250px;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 0.8rem;
  }

  .brand img {
    width: 138px;
  }

  .header-cta {
    padding-inline: 0.8rem;
  }

  .hero-badges {
    position: static;
    justify-content: center;
    margin-top: -1rem;
  }

  .hero-visual::before {
    inset: 14% 0;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
