:root {
  --ink: #17201d;
  --muted: #5e6a65;
  --paper: #f7f5ef;
  --white: #ffffff;
  --line: #ded9cd;
  --green: #335f46;
  --brick: #a8462d;
  --steel: #314a5a;
  --gold: #d59b42;
  --shadow: 0 20px 55px rgba(23, 32, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(17, 26, 23, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 245px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 1px solid rgba(213, 155, 66, 0.5);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
}

.nav {
  display: flex;
  gap: clamp(12px, 3vw, 34px);
  font-size: 0.94rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.86);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
}

.header-cta {
  color: var(--ink);
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(15, 22, 20, 0.9) 0%, rgba(15, 22, 20, 0.72) 42%, rgba(15, 22, 20, 0.2) 100%),
    linear-gradient(0deg, rgba(15, 22, 20, 0.64) 0%, rgba(15, 22, 20, 0) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 136px 0 52px;
}

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

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

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 7.4vw, 7rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
}

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

.lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 2.2vw, 1.42rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 34px;
}

.button.primary {
  color: var(--white);
  background: var(--brick);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin: 0;
}

.hero-facts div {
  padding: 16px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.hero-facts dt {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 100px) 0;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.intro p,
.muted,
.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.service-card {
  min-height: 276px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 26px rgba(23, 32, 29, 0.06);
}

.service-number {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--brick);
  font-weight: 800;
}

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

.gallery-section {
  padding-top: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 14px;
  margin-top: 34px;
}

.gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #d7d1c5;
  border: 1px solid var(--line);
}

.gallery-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-card:hover img {
  transform: scale(1.03);
}

.gallery-card figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(17, 26, 23, 0.78);
  font-weight: 700;
  font-size: 0.9rem;
}

.video-section {
  padding-top: 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.video-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #111a17;
  object-fit: cover;
}

.video-copy {
  padding: 18px;
}

.video-copy p {
  color: var(--muted);
}

.video-copy h3 {
  margin-top: 6px;
  font-size: 1.05rem;
}

.video-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.video-note a {
  color: var(--brick);
  font-weight: 700;
}

.band {
  color: var(--white);
  background: var(--steel);
}

.band-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 74px);
}

.process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-list li {
  position: relative;
  min-height: 96px;
  padding: 22px 22px 22px 74px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.process-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 800;
}

.process-list strong,
.process-list span,
.company-data span {
  display: block;
}

.process-list span {
  color: rgba(255, 255, 255, 0.72);
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 58px);
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

address {
  margin: 0 0 22px;
  font-style: normal;
  font-size: 1.18rem;
  font-weight: 700;
}

.contact-links {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 1.08rem;
  font-weight: 800;
}

.contact-links a {
  color: var(--brick);
}

.company-data {
  display: grid;
  gap: 5px;
  margin: 0 0 22px;
  color: var(--muted);
}

.company-data strong {
  color: var(--ink);
}

.domain-note {
  margin-top: 24px;
  padding: 18px;
  border-left: 4px solid var(--green);
  background: #eef3ee;
  color: #23342d;
}

.contact-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfc8bc;
  border-radius: 0;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfaf7;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(213, 155, 66, 0.36);
  border-color: var(--gold);
}

.form-button {
  width: 100%;
  border: 0;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.8);
  background: #111a17;
}

.site-footer a {
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 1040px) {
  .service-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 940px) {
  .site-header {
    position: absolute;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 118px;
  }

  .hero-facts,
  .intro,
  .band-inner,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-card video {
    aspect-ratio: 16 / 10;
  }
}

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

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(15, 22, 20, 0.92), rgba(15, 22, 20, 0.52)),
      linear-gradient(0deg, rgba(15, 22, 20, 0.78), rgba(15, 22, 20, 0));
  }

  .hero-actions {
    display: grid;
  }

  .hero-facts,
  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-card.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .service-card {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}
