:root {
  --bg: #101010;
  --panel: #151515;
  --panel-2: #1b1813;
  --line: #262626;
  --text: #f4f1ea;
  --muted: #a7a7a7;
  --gold: #caaa63;
  --gold-bright: #d8bb72;
  --ink: #0b0b0b;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 0 max(22px, calc((100vw - var(--max)) / 2));
  background: rgba(16, 16, 16, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand img,
.footer img {
  width: 96px;
}

.nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
  color: #b7b7b7;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav a {
  transition: color 160ms ease;
}

.nav a:hover {
  color: var(--gold);
}

.call-button,
.primary-cta,
.secondary-cta,
.sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.call-button,
.primary-cta {
  background: var(--gold);
  color: var(--ink);
}

.call-button:hover,
.primary-cta:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
}

.secondary-cta {
  border-color: #3a3428;
  background: rgba(17, 17, 17, 0.52);
  color: var(--text);
}

.secondary-cta:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
}

.call-button svg,
.primary-cta svg,
.secondary-cta svg,
.sticky-cta svg,
li svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.96) 0%, rgba(16, 16, 16, 0.72) 44%, rgba(16, 16, 16, 0.18) 100%),
    linear-gradient(180deg, rgba(16, 16, 16, 0.38) 0%, rgba(16, 16, 16, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin-inline: max(20px, calc((100vw - var(--max)) / 2));
  padding: 82px 0 66px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.42em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 {
  max-width: 650px;
  font-size: clamp(68px, 8vw, 128px);
}

h2 {
  font-size: clamp(42px, 5vw, 72px);
}

h3 {
  font-size: clamp(28px, 2.8vw, 42px);
}

.lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: #c9c9c9;
  font-size: clamp(17px, 1.6vw, 21px);
}

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

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 720px;
  margin: 54px 0 0;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.proof-strip div {
  padding: 22px 20px;
  background: rgba(16, 16, 16, 0.86);
}

.proof-strip dt {
  color: var(--gold);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 44px;
  line-height: 1;
}

.proof-strip dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section,
.service-grid,
.projects,
.process,
.final-cta,
.footer {
  width: min(var(--max), calc(100% - 44px));
  margin-inline: auto;
}

.section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 470px;
  gap: 72px;
  padding: 108px 0 78px;
}

.section p:last-child,
.service-copy p,
.conversion-band p,
.projects p,
.process p,
.footer p {
  color: #b9c0c8;
}

.intro h2 {
  max-width: 760px;
}

.service-grid {
  display: grid;
  gap: 116px;
  padding: 42px 0 82px;
}

.service {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 64px;
}

.service img,
.project-list img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.03);
}

.service-copy h2 {
  color: var(--gold);
}

.service-copy p {
  margin: 22px 0 0;
  max-width: 610px;
  font-size: 17px;
}

.service-copy ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 800;
}

.service-copy li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-copy li svg {
  color: var(--gold);
}

.conversion-band {
  width: min(1040px, calc(100% - 44px));
  margin: 38px auto 118px;
  padding: 58px;
  border: 1px solid #342d20;
  background:
    linear-gradient(90deg, rgba(28, 24, 17, 0.94), rgba(16, 16, 16, 0.94)),
    url("/assets/project-bath2.jpg") center/cover;
  text-align: center;
}

.conversion-band h2 {
  max-width: 780px;
  margin-inline: auto;
}

.conversion-band p {
  max-width: 620px;
  margin: 20px auto 0;
}

.conversion-band .primary-cta {
  margin-top: 30px;
}

.projects,
.process,
.final-cta {
  padding: 104px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 66px;
}

.project-list {
  display: grid;
  gap: 74px;
}

.project-list article {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(320px, 1fr);
  align-items: center;
  gap: 54px;
}

.project-list article:nth-child(even) img {
  order: 2;
}

.project-list h3 {
  color: var(--text);
}

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

.steps article {
  min-height: 270px;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  background: var(--panel-2);
  color: var(--gold);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 34px;
}

.steps h3 {
  color: var(--gold);
}

.final-cta {
  text-align: center;
}

.final-cta .hero-actions {
  justify-content: center;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 90px;
  padding: 66px 0 72px;
  border-top: 1px solid var(--line);
}

.footer p {
  max-width: 340px;
  margin: 18px 0 0;
}

.footer a {
  display: block;
  margin-top: 10px;
  color: #c6ced9;
}

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

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: none;
  gap: 8px;
  padding: 8px;
  border: 1px solid #332b1e;
  background: rgba(16, 16, 16, 0.92);
  backdrop-filter: blur(12px);
}

.sticky-cta a {
  min-height: 46px;
  padding-inline: 16px;
  background: var(--gold);
  color: var(--ink);
}

@media (max-width: 900px) {
  body {
    padding-bottom: 74px;
  }

  .site-header {
    grid-template-columns: auto 1fr;
    min-height: 70px;
  }

  .brand img {
    width: 86px;
  }

  .nav {
    display: none;
  }

  .call-button {
    justify-self: end;
    min-height: 46px;
    padding-inline: 18px;
  }

  .hero {
    min-height: auto;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(16, 16, 16, 0.72), rgba(16, 16, 16, 0.98)),
      linear-gradient(90deg, rgba(16, 16, 16, 0.86), rgba(16, 16, 16, 0.22));
  }

  .hero-content {
    padding: 70px 0 58px;
  }

  .proof-strip,
  .section,
  .service,
  .project-list article,
  .steps,
  .footer {
    grid-template-columns: 1fr;
  }

  .section {
    gap: 22px;
    padding: 72px 0 34px;
  }

  .service-grid {
    gap: 72px;
  }

  .service,
  .project-list article {
    gap: 28px;
  }

  .service-reverse img,
  .project-list article:nth-child(even) img {
    order: initial;
  }

  .conversion-band {
    padding: 40px 22px;
    margin-bottom: 72px;
  }

  .projects,
  .process,
  .final-cta {
    padding: 72px 0;
  }

  .footer {
    gap: 34px;
    padding-bottom: 104px;
  }

  .sticky-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

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

  .call-button {
    font-size: 12px;
  }

  .hero-content,
  .section,
  .service-grid,
  .projects,
  .process,
  .final-cta,
  .footer {
    width: calc(100% - 32px);
  }

  .eyebrow {
    letter-spacing: 0.28em;
  }

  h1 {
    font-size: clamp(58px, 18vw, 86px);
  }

  .hero-actions,
  .primary-cta,
  .secondary-cta {
    width: 100%;
  }

  .proof-strip div,
  .steps article {
    padding: 24px;
  }
}
