:root {
  --black: #0c0c0d;
  --charcoal: #161617;
  --charcoal-2: #1f1f21;
  --white: #f6f5f2;
  --gray: #a3a3a0;
  --gray-light: #d8d7d3;
  --gold: #f2a71b;
  --gold-dark: #c9860f;
  --line: rgba(246,245,242,0.12);
  --radius: 10px;
  --shadow: 0 20px 40px -20px rgba(0,0,0,0.6);
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 6px;
  font-family: var(--font-head);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover { background: var(--gold-dark); }

.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover { background: var(--gold); color: var(--black); }

.btn-lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12,12,13,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand-logo { height: 58px; width: auto; }

.main-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.main-nav a {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--gray-light);
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--gold); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--white);
}
.phone-link:hover { color: var(--gold); }
.phone-link .icon { width: 18px; height: 18px; fill: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
}

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 65%;
  filter: saturate(0.9) brightness(0.75);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,12,13,0.55) 0%, rgba(12,12,13,0.55) 30%, rgba(12,12,13,0.92) 100%),
    linear-gradient(90deg, rgba(12,12,13,0.85) 0%, rgba(12,12,13,0.2) 65%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-top: 100px;
  padding-bottom: 100px;
}
.eyebrow, .section-eyebrow {
  font-family: var(--font-head);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  margin: 0 0 14px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--white);
}
.hero h1 .accent { color: var(--gold); }
.hero-sub {
  color: var(--gray-light);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 22px 0 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* SECTIONS */
.section { padding: 96px 0; }
.section-dark { background: var(--charcoal); }
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 48px;
  max-width: 640px;
}

.grid { display: grid; gap: 28px; }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.features-grid { grid-template-columns: repeat(4, 1fr); }
.steps-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; }

.card {
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: var(--gold); transform: translateY(-4px); }
.card-icon {
  width: 48px; height: 48px;
  border-radius: 8px;
  background: rgba(242,167,27,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg {
  width: 24px; height: 24px;
  fill: none; stroke: var(--gold); stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.card h3 { font-size: 1.15rem; color: var(--white); margin-bottom: 10px; }
.card p { color: var(--gray); margin: 0; font-size: 0.96rem; }

.feature { border-top: 2px solid var(--gold); padding-top: 18px; }
.feature-num {
  display: block;
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.feature h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 8px; }
.feature p { color: var(--gray); margin: 0; font-size: 0.95rem; }

.step { text-align: left; }
.step-num {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.15rem; color: var(--white); margin-bottom: 8px; }
.step p { color: var(--gray); margin: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.gallery-grid img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

/* QUOTE FORM */
.quote-section { background: var(--black); }
.quote-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.quote-inner > * { min-width: 0; }
.quote-copy p { color: var(--gray-light); max-width: 420px; margin: 18px 0 28px; }

.quote-form {
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 20px; }
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-row-split .form-row { margin-bottom: 0; }
label {
  display: block;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--gray-light);
  margin-bottom: 8px;
}
.req { color: var(--gold); }
.opt { color: var(--gray); text-transform: none; letter-spacing: 0; font-family: var(--font-body); }

input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.98rem;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}
textarea { resize: vertical; min-height: 90px; }
.botcheck { display: none; }

.photo-note {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
  background: rgba(242,167,27,0.08);
  border: 1px solid rgba(242,167,27,0.3);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--gray-light);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 20px;
  overflow-wrap: anywhere;
  min-width: 0;
}
.photo-note .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.photo-note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.photo-note a:hover { color: var(--white); }

.form-status {
  margin: 14px 0 0;
  font-size: 0.92rem;
  min-height: 1.2em;
}
.form-status.success { color: #6fd08c; }
.form-status.error { color: #f07070; }

/* FOOTER */
.site-footer {
  background: var(--charcoal);
  border-top: 1px solid var(--line);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo { height: 44px; width: auto; }
.footer-brand p {
  font-family: var(--font-head);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  font-size: 0.9rem;
}
.footer-contact { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-contact a { color: var(--gray-light); font-size: 0.95rem; }
.footer-contact a:hover { color: var(--gold); }
.footer-copy {
  width: 100%;
  text-align: center;
  color: var(--gray);
  font-size: 0.82rem;
  margin: 30px 0 0;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .quote-inner { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 320px; }
}

@media (max-width: 760px) {
  .main-nav, .header-actions .phone-link { display: none; }
  .nav-toggle { display: flex; }
  .header-actions { gap: 0; }

  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--charcoal);
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
  }

  .services-grid, .features-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .form-row-split { grid-template-columns: 1fr; }
  .quote-form { padding: 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
