:root {
  --bg: #0e1016;
  --bg2: #090b10;
  --card: #181c26;
  --line: rgba(255,255,255,.1);
  --text: #f1f3f8;
  --muted: #9ca5b5;
  --orange: #ff8a00;
  --gold: #ffb400;
  --max: 1180px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter,system-ui,sans-serif;
  line-height: 1.65;
}
h1,
h2,
h3 {
  font-family: Sora,sans-serif;
  line-height: 1.08;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
}
.container {
  width: min(var(--max),calc(100% - 44px));
  margin: auto;
}
.nav {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  padding: 22px 0;
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img {
  width: 210px;
  height: 40px;
  object-fit: contain;
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
}
.navlinks a:hover {
  color: var(--gold);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  background: linear-gradient(135deg,var(--gold),var(--orange));
  color: #15110a;
  font: 700 .92rem Sora,sans-serif;
  cursor: pointer;
}
.hero {
  min-height: 88vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(5,6,9,.95),rgba(5,6,9,.52)
    55%,rgba(5,6,9,.2)),linear-gradient(0deg,#0e1016,transparent 45%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 180px 0 100px;
  max-width: 790px;
}
.eyebrow {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .74rem;
}
.hero h1 {
  font-size: clamp(3.2rem,8vw,6.8rem);
  text-transform: uppercase;
  margin: 22px 0 24px;
}
.hero h1 span {
  color: var(--orange);
}
.hero p {
  font-size: 1.12rem;
  color: #d7dbe4;
  max-width: 650px;
}
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.ghost {
  background: rgba(255,255,255,.04);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}
section {
  padding: 100px 0;
}
.head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 48px;
}
.head h2 {
  font-size: clamp(2.1rem,5vw,4rem);
  text-transform: uppercase;
}
.head p {
  color: var(--muted);
  max-width: 440px;
}
.services {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.service {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(160deg,#1b202b,#11141c);
}
.num {
  color: var(--orange);
  font: 800 .75rem Sora;
  letter-spacing: .14em;
}
.service h3 {
  font-size: 1.18rem;
  margin: 20px 0 10px;
}
.service p {
  color: var(--muted);
  font-size: .94rem;
}
.gallery {
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr;
  grid-template-rows: 260px 260px;
  gap: 14px;
}
.gallery img {
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}
.gallery img:first-child {
  grid-row: 1/3;
}
.gallery img:nth-child(4) {
  grid-column: 2/4;
}
.commit {
  background: var(--bg2);
}
.commit-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
.commit-card {
  border-top: 2px solid var(--orange);
  padding: 26px 20px;
  background: rgba(255,255,255,.035);
}
.commit-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}
.commit-card p {
  color: var(--muted);
  font-size: .9rem;
}
.pickup {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: linear-gradient(135deg,#202531,#11141b);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.pickup img {
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}
.pickup-copy {
  padding: 54px;
}
.pickup h2 {
  font-size: clamp(2rem,4vw,3.5rem);
  text-transform: uppercase;
  margin: 14px 0 18px;
}
.pickup p {
  color: var(--muted);
}
.contact {
  background: var(--bg2);
}
.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 22px;
}
.contact-info,
.form {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
}
.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
.contact-info p {
  color: var(--muted);
  margin-bottom: 25px;
}
.detail {
  padding: 15px 0;
  border-top: 1px solid var(--line);
}
.detail b {
  display: block;
  color: var(--gold);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #10131a;
  color: #fff;
  padding: 14px;
  font: inherit;
}
.field textarea {
  min-height: 130px;
  resize: vertical;
}
.check {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: .9rem;
  margin: 4px 0 20px;
}
.check input {
  accent-color: var(--orange);
}
.note {
  display: none;
  margin-top: 14px;
  color: var(--gold);
}
footer {
  padding: 34px 0;
  background: #07090d;
  color: var(--muted);
}
footer .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width:800px) {
  .navlinks a:not(.btn) {
    display: none;
  }
  .hero {
    min-height: 78vh;
  }
  .hero-copy {
    padding: 150px 0 70px;
  }
  .services,
  .commit-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 190px 190px;
  }
  .gallery img:first-child {
    grid-column: 1/3;
    grid-row: auto;
  }
  .gallery img:nth-child(4) {
    grid-column: auto;
  }
  .pickup,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .pickup-copy {
    padding: 36px;
  }
  .head {
    align-items: start;
    flex-direction: column;
  }
  .fields {
    grid-template-columns: 1fr;
  }
}
@media (max-width:520px) {
  .container {
    width: min(100% - 30px,var(--max));
  }
  .brand img {
    width: 165px;
  }
  .nav .btn {
    display: none;
  }
  .services,
  .commit-grid {
    grid-template-columns: 1fr;
  }
  .gallery {
    display: flex;
    overflow: auto;
  }
  .gallery img {
    width: 85%;
    height: 260px;
    flex: none;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  section {
    padding: 72px 0;
  }
  .contact-info,
  .form {
    padding: 25px;
  }
  footer .container {
    flex-direction: column;
  }
}
