:root {
  --black: #0c0c0d;
  --black2: #141416;
  --card: #1a1a1d;
  --gold: #d4af37;
  --gold2: #f1d879;
  --text: #f5f3ed;
  --muted: #a6a39b;
  --line: rgba(255, 255, 255, 0.11);
  --max: 1180px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--black);
  color: var(--text);
  font-family: Montserrat, sans-serif;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  width: 100%;
  display: block;
}
.header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: rgba(12, 12, 13, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}
.logo span,
h1 span,
h2 span,
strong {
  color: var(--gold);
}
.nav {
  display: flex;
  gap: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.nav a:hover {
  color: var(--gold);
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 1.6rem;
}
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #080809 url("img/setup-mattedj.jpg") 68% 40% / cover no-repeat;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 6, 7, 0.98) 0%,
    rgba(6, 6, 7, 0.88) 34%,
    rgba(6, 6, 7, 0.42) 58%,
    rgba(6, 6, 7, 0.12) 100%
  );
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(8, 8, 9, 0.72) 0%,
    transparent 28%,
    transparent 72%,
    rgba(8, 8, 9, 0.3) 100%
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 90%);
  margin-left: 9vw;
  padding-top: 70px;
}
.eyebrow,
.section-label {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  font-weight: 700;
}
.hero h1 {
  font-size: clamp(3.3rem, 7vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
  margin: 22px 0;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}
.hero-text {
  max-width: 540px;
  color: #e1ded6;
  font-size: 1.05rem;
  margin-bottom: 34px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  gap: 22px;
  margin-top: 42px;
  color: #b8b5ae;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-meta i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 25px;
  border-radius: 3px;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: #111;
}
.btn-gold:hover {
  background: var(--gold2);
}
.btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.2);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.scroll-hint {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 9vw;
  color: #aaa;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
}
.section {
  padding: 110px max(6vw, 25px);
}
.dark-section {
  background: var(--black2);
}
.intro-grid,
.equipment-grid,
.quote-grid {
  max-width: var(--max);
  margin: 42px auto 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
}
.intro-photo {
  overflow: hidden;
  border-radius: 2px;
}
.intro-photo img {
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: 67% center;
}
.intro-copy {
  align-self: center;
}
h2 {
  font-size: clamp(2.3rem, 4.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}
.intro-grid p,
.muted {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 0.96rem;
}
.section-heading {
  max-width: var(--max);
  margin: 35px auto 48px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.section-heading p {
  color: var(--muted);
  max-width: 370px;
}
.cards {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.cards article{
  background:var(--card);
  min-height:330px;
  padding:30px;
  display:flex;
  flex-direction:column;
  transition:.25s ease;
}

.cards article:hover{
  background:#171717;
}

.cards h3{
  font-size:1.35rem;
  margin:55px 0 13px;
}

.cards p{
  color:var(--muted);
  font-size:.82rem;
  line-height:1.7;
}
.cards .number {
  color: #666;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  font-weight: 700;
}
.cards h3 {
  font-size: 1.35rem;
  margin: 55px 0 13px;
}
.cards p {
  color: var(--muted);
  font-size: 0.82rem;
}
.cards strong {
  margin-top: auto;
  font-size: 0.82rem;
}
.service-link {
  margin-top: auto;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: 0.2s ease;
}

.service-link:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}
.services-cta {
  max-width: var(--max);
  margin: 45px auto 0;
  padding: 28px 30px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: rgba(212, 175, 55, 0.04);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.services-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.services-cta p strong {
  color: var(--text);
}
.equipment-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 8%;
  align-items: center;
}
.photo {
  overflow: hidden;
}
.photo img {
  aspect-ratio: 4/3;
  object-fit: cover;
}
.equipment-grid ul {
  list-style: none;
  border-top: 1px solid var(--line);
}
.equipment-grid li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  color: #ddd;
}
.gallery {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 280px 180px;
  gap: 12px;
}
.gallery figure {
  overflow: hidden;
}
.gallery img {
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.gallery img:hover {
  transform: scale(1.03);
}
.gallery .large {
  grid-row: 1/3;
}
.placeholder {
  background: #171719;
  border: 1px dashed #444;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #777;
  text-align: center;
}
.placeholder span {
  color: var(--gold);
  font-size: 2rem;
}
.placeholder small {
  color: #555;
}
.quote {
  background: #111113;
}
.quote-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10%;
}
.quote-grid > div > p {
  max-width: 450px;
  margin: 25px 0;
}
.contact {
  display: grid;
  gap: 4px;
  margin-top: 35px;
}
.contact small {
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  margin-top: 12px;
}
.contact strong {
  font-size: 0.9rem;
  font-weight: 600;
}
.quote form {
  background: var(--card);
  padding: 30px;
}
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
label {
  display: block;
  color: #bbb;
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 15px;
}
input,
select,
textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  background: #101012;
  border: 1px solid #303034;
  color: #fff;
  font: inherit;
  font-size: 0.82rem;
  outline: 0;
  border-radius: 2px;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
}
textarea {
  resize: vertical;
}
form .btn {
  width: 100%;
  margin-top: 5px;
}
.note {
  color: #666;
  font-size: 0.62rem;
  margin-top: 13px;
}
footer {
  padding: 55px 6vw 30px;
  border-top: 1px solid var(--line);
  text-align: center;
}
footer p {
  color: #777;
  font-size: 0.75rem;
  margin: 8px 0 18px;
}
footer div:nth-child(3) {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 30px;
}
footer a:hover {
  color: var(--gold);
}
footer small {
  color: #555;
  font-size: 0.62rem;
}

.hero-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: #f5f3ed;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.hero-instagram:hover {
  color: var(--gold);
}

.instagram-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.15rem;
  line-height: 1;
}

.instagram-username {
  color: var(--gold);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.gallery-instagram {
  grid-column: 1 / -1;
  text-align: center;
  padding: 25px 0 0;
}

.gallery-instagram p {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.gallery-instagram a {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.gallery-instagram a:hover {
  color: var(--gold-light);
}
@media (max-width: 900px) {
  .nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 22px 6vw;
    background: #101012;
  }
  .nav.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .hero-content {
    margin-left: 6vw;
  }
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .intro-grid,
  .equipment-grid,
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 180px;
  }
}
@media (max-width: 600px) {
  .header {
    height: 68px;
  }
  .nav {
    top: 68px;
  }
  .hero {
    min-height: 92vh;
    background-position: 68% center;
  }
  .hero-content {
    margin-left: 5vw;
  }
  .hero-meta {
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  .hero h1 {
    font-size: 3.3rem;
  }
  .section {
    padding: 75px 5vw;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .cards article {
    min-height: 240px;
  }
  .cards h3 {
    margin-top: 30px;
  }
  .section-heading {
    display: block;
  }
  .section-heading p {
    margin-top: 18px;
  }
  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 300px 220px 180px;
  }
  .gallery .large {
    grid-row: auto;
  }
  .row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .quote form {
    padding: 20px;
  }
  .services-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
}
