:root {
  --ink: #151719;
  --muted: #6f767d;
  --paper: #f4f1ec;
  --panel: #ffffff;
  --line: rgba(21, 23, 25, 0.12);
  --gold: #c69a4a;
  --gold-soft: #e9d7b6;
  --graphite: #25282b;
  --shadow: 0 24px 70px rgba(15, 17, 19, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

.scroll-progress {
  background: linear-gradient(90deg, var(--gold), #fff2cf);
  height: 4px;
  left: 0;
  position: fixed;
  top: 0;
  transform: scaleX(0);
  transform-origin: left;
  width: 100%;
  z-index: 50;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(12, 14, 16, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr auto auto;
  left: 0;
  padding: 18px clamp(18px, 5vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 260ms ease, color 260ms ease, padding 260ms ease;
  z-index: 20;
}

.site-header.scrolled {
  background: rgba(244, 241, 236, 0.92);
  color: var(--ink);
  padding-block: 12px;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  align-items: center;
  background: var(--gold);
  color: #111;
  display: inline-flex;
  font-size: 13px;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
}

.nav a {
  position: relative;
}

.nav a::after {
  background: var(--gold);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  width: 100%;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  align-items: center;
  border: 1px solid currentColor;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  overflow: hidden;
  padding: 0 20px;
  position: relative;
}

.button::before,
.header-cta::before {
  background: rgba(255, 255, 255, 0.32);
  content: "";
  inset: 0 auto 0 -45%;
  position: absolute;
  transform: skewX(-20deg);
  transition: left 420ms ease;
  width: 35%;
}

.button:hover::before,
.header-cta:hover::before {
  left: 120%;
}

.header-cta {
  font-size: 14px;
  min-height: 40px;
}

.hero {
  align-items: end;
  color: #fff;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  padding: 150px clamp(20px, 6vw, 84px) 72px;
  position: relative;
}

.hero-media,
.hero-image,
.hero-shade,
.hero-wipe {
  inset: 0;
  position: absolute;
}

.hero-media {
  z-index: 0;
}

.hero-image {
  height: 100%;
  object-fit: cover;
  width: 100%;
  will-change: clip-path, transform;
}

.hero-image-main {
  filter: saturate(0.95) contrast(1.04);
  transform: scale(1.04);
}

.hero-image-next {
  clip-path: inset(0 100% 0 0);
  filter: saturate(1.02) contrast(1.08);
  transform: scale(1.08);
}

.hero-wipe {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  opacity: 0;
  transform: translateX(-120%);
}

.hero-shade {
  background:
    radial-gradient(circle at 78% 22%, rgba(198, 154, 74, 0.28), transparent 26%),
    linear-gradient(90deg, rgba(8, 10, 12, 0.86), rgba(8, 10, 12, 0.22) 54%, rgba(8, 10, 12, 0.64)),
    linear-gradient(0deg, rgba(8, 10, 12, 0.68), transparent 46%);
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #8b6425;
}

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

h1 {
  font-size: clamp(58px, 9vw, 132px);
  letter-spacing: 0;
  line-height: 0.9;
  margin-bottom: 24px;
  max-width: 900px;
  text-wrap: balance;
}

h2 {
  font-size: clamp(34px, 5vw, 72px);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 0;
  text-wrap: balance;
}

h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 24px);
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #111;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-card {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  z-index: 2;
}

.hero-card {
  bottom: 72px;
  display: grid;
  gap: 4px;
  padding: 22px;
  position: absolute;
  right: clamp(20px, 6vw, 84px);
  width: min(320px, calc(100vw - 40px));
}

.hero-card span,
.hero-card small {
  color: rgba(255, 255, 255, 0.72);
}

.hero-card strong {
  font-size: 28px;
}

.section {
  padding: 112px clamp(20px, 6vw, 84px);
}

.intro {
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
}

.intro p:last-child,
.showcase-content p,
.contact-panel p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  margin-bottom: 42px;
  max-width: 820px;
}

.service-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  background: var(--panel);
  border: 1px solid var(--line);
  min-height: 260px;
  overflow: hidden;
  padding: 30px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::after {
  background: linear-gradient(135deg, transparent, rgba(198, 154, 74, 0.16));
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 220ms ease;
}

.service-card:hover {
  border-color: rgba(198, 154, 74, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card span,
.timeline-item span {
  color: var(--gold);
  display: inline-block;
  font-weight: 900;
  margin-bottom: 42px;
}

.service-card h3,
.service-card p {
  position: relative;
  z-index: 1;
}

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

.image-band {
  background: #111315;
  overflow: hidden;
  padding: 32px 0;
}

.band-track {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(320px, 1fr));
  padding-inline: clamp(20px, 6vw, 84px);
  transform: translateX(0);
  transition: transform 120ms linear;
  will-change: transform;
}

.band-track img {
  aspect-ratio: 1.35;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.showcase {
  background: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: 760px;
}

.showcase-image {
  overflow: hidden;
}

.showcase-image img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 900ms ease;
  width: 100%;
}

.showcase-image.visible img {
  transform: scale(1);
}

.showcase-content {
  align-self: center;
  padding: clamp(36px, 6vw, 84px);
}

.stats {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 44px;
  padding-top: 28px;
}

.stats strong {
  display: block;
  font-size: 42px;
}

.stats span {
  color: var(--muted);
}

.process {
  background: var(--graphite);
  color: #fff;
}

.process .eyebrow.dark {
  color: var(--gold);
}

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

.timeline-item {
  background: rgba(255, 255, 255, 0.06);
  min-height: 260px;
  overflow: hidden;
  padding: 32px;
  position: relative;
}

.timeline-item::before {
  background: var(--gold);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 500ms ease;
  width: 3px;
}

.timeline-item.visible::before {
  transform: scaleY(1);
}

.timeline-item p {
  color: rgba(255, 255, 255, 0.66);
}

.contact {
  background:
    linear-gradient(90deg, rgba(12, 14, 16, 0.9), rgba(12, 14, 16, 0.55)),
    url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=2000&q=90") center/cover;
  color: #fff;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  min-height: 720px;
  padding: 128px clamp(20px, 6vw, 84px);
}

.contact-panel {
  align-self: center;
}

.contact-panel h2 {
  margin-bottom: 28px;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 660px;
}

.contact-lines {
  display: grid;
  gap: 14px;
  margin-top: 44px;
}

.contact-lines a {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.contact-form {
  align-self: center;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  gap: 18px;
  padding: 30px;
}

label {
  color: rgba(255, 255, 255, 0.8);
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
}

input,
textarea {
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  color: var(--ink);
  font: inherit;
  min-height: 50px;
  padding: 14px 16px;
  transition: box-shadow 180ms ease, transform 180ms ease;
  width: 100%;
}

input:focus,
textarea:focus {
  box-shadow: 0 0 0 3px rgba(198, 154, 74, 0.42);
  outline: 0;
  transform: translateY(-2px);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.footer {
  align-items: center;
  background: #121416;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  justify-content: space-between;
  padding: 28px clamp(20px, 6vw, 84px);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .nav {
    display: none;
  }

  .hero {
    align-content: end;
    gap: 22px;
    min-height: 860px;
  }

  .hero-card {
    bottom: auto;
    justify-self: start;
    left: auto;
    margin-top: 6px;
    position: relative;
    right: auto;
    width: min(360px, 100%);
  }

  .hero-image-main {
    object-position: 54% center;
  }

  .hero-image-next {
    object-position: 60% center;
  }

  .intro,
  .showcase,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .band-track {
    grid-template-columns: repeat(3, 78vw);
    overflow: visible;
  }

  .band-track img,
  .showcase-image img {
    object-position: center;
  }

  .showcase {
    min-height: auto;
  }

  .showcase-image {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
    padding-inline: 16px;
  }

  .brand {
    font-size: 14px;
  }

  .header-cta {
    font-size: 12px;
    padding-inline: 12px;
  }

  .hero {
    min-height: 100svh;
    padding-bottom: 32px;
    padding-inline: 18px;
    padding-top: 118px;
    row-gap: 18px;
  }

  .hero-card {
    padding: 18px;
  }

  .hero-card strong {
    font-size: 23px;
  }

  .hero-copy {
    font-size: 17px;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 38px;
  }

  .section,
  .contact {
    padding-block: 78px;
  }

  .contact {
    background-position: 58% center;
    gap: 38px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
