:root {
  --black: #080808;
  --soft-black: #111111;
  --charcoal: #1a1a1a;
  --dark-gray: #292929;
  --gold: #d4af37;
  --gold-bright: #f2d675;
  --gold-deep: #a97818;
  --white: #ffffff;
  --off-white: #f7f4ed;
  --light-gray: #e7e7e7;
  --muted: #b9b4aa;
  --max: 1180px;
  --header-height: 82px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 14px clamp(18px, 5vw, 54px);
  background: rgba(8, 8, 8, 0.72);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  backdrop-filter: blur(18px);
}

.brand img {
  width: clamp(164px, 22vw, 230px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(242, 214, 117, 0.34);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--gold-bright);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: calc(var(--header-height) + 40px) clamp(20px, 7vw, 92px) 72px;
  overflow: hidden;
}

.hero-media,
.commercial-media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1581147036324-c1c89c2c8b5c?auto=format&fit=crop&w=1800&q=82");
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.96) 0%, rgba(8, 8, 8, 0.74) 42%, rgba(8, 8, 8, 0.26) 100%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.8) 0%, rgba(8, 8, 8, 0) 48%);
}

.hero-content {
  position: relative;
  max-width: 720px;
  padding-top: 24px;
}

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

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

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(4rem, 13vw, 9rem);
  line-height: 0.84;
  text-transform: uppercase;
}

h2 {
  color: inherit;
  font-size: clamp(2rem, 5vw, 4.25rem);
  line-height: 0.98;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.1;
}

.hero-line {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions,
.field-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 22px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #8f6615 0%, #d4af37 42%, #f2d675 62%, #b9851e 100%);
  color: #0a0a0a;
}

.button-secondary {
  border-color: rgba(242, 214, 117, 0.42);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.section-pad {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 72px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(28px, 8vw, 96px);
  max-width: var(--max);
  margin: 0 auto;
}

.intro-section,
.brands {
  background: var(--off-white);
  color: var(--black);
}

.intro-copy p {
  color: #3a352d;
  font-size: 1.08rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 36px 0 0;
  background: rgba(169, 120, 24, 0.25);
}

.proof-strip div {
  min-width: 0;
  padding: 20px;
  background: #fffaf0;
}

.proof-strip dt {
  color: var(--gold-deep);
  font-weight: 900;
  text-transform: uppercase;
}

.proof-strip dd {
  margin: 6px 0 0;
  color: #50493f;
}

.product-band {
  background: var(--soft-black);
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.align-left {
  text-align: left;
}

.section-heading h2 {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.align-left h2 {
  margin-left: 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}

.category-tile {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(242, 214, 117, 0.16);
  background: var(--charcoal);
}

.category-tile.large {
  grid-column: span 2;
}

.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
  transition: transform 360ms ease, filter 360ms ease;
}

.category-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(8, 8, 8, 0.92), rgba(8, 8, 8, 0.08) 66%);
}

.category-tile div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 26px;
}

.category-tile span,
.service-list span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.category-tile p,
.service-list p,
.commercial-content p,
.quote-copy p,
.site-footer p,
.site-footer span {
  color: rgba(255, 255, 255, 0.72);
}

.category-tile:hover img {
  transform: scale(1.06);
  filter: saturate(1) contrast(1.12);
}

.services {
  background: var(--off-white);
  color: var(--black);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  background: rgba(8, 8, 8, 0.16);
}

.service-list article {
  padding: clamp(24px, 4vw, 42px);
  background: #fffaf0;
}

.service-list p {
  color: #534c42;
}

.commercial {
  position: relative;
  display: grid;
  min-height: 720px;
  align-items: center;
  padding: 88px clamp(20px, 6vw, 72px);
  overflow: hidden;
}

.commercial-media {
  background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=82");
}

.commercial::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.88), rgba(8, 8, 8, 0.54), rgba(8, 8, 8, 0.18)),
    linear-gradient(0deg, rgba(8, 8, 8, 0.82), rgba(8, 8, 8, 0.12));
}

.commercial-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.82);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--gold-bright);
  content: ">";
  font-weight: 900;
}

.brand-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-lines span {
  border: 1px solid rgba(169, 120, 24, 0.28);
  border-radius: 999px;
  padding: 10px 14px;
  background: #fffaf0;
  color: #312b22;
  font-weight: 750;
}

.quote-section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 72px);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(8, 8, 8, 0) 42%),
    var(--soft-black);
}

.quote-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 80px);
  max-width: var(--max);
  margin: 0 auto;
  align-items: start;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(242, 214, 117, 0.22);
  background: rgba(255, 255, 255, 0.055);
}

.quote-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  font-weight: 800;
}

.field-row label {
  flex: 1 1 220px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(8, 8, 8, 0.74);
  color: var(--white);
  padding: 14px;
}

.quote-form textarea {
  resize: vertical;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) auto;
  gap: 28px;
  padding: 52px clamp(20px, 6vw, 72px);
  background: #050505;
  border-top: 1px solid rgba(242, 214, 117, 0.18);
}

.site-footer img {
  width: 210px;
  margin-bottom: 16px;
}

.site-footer address,
.site-footer nav {
  display: grid;
  gap: 8px;
  font-style: normal;
}

.site-footer strong {
  color: var(--gold-bright);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise-in 700ms ease forwards;
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 18px;
    left: 18px;
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid rgba(242, 214, 117, 0.22);
    background: rgba(8, 8, 8, 0.96);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 12px;
  }

  .section-grid,
  .quote-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-list,
  .proof-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand img {
    width: 168px;
  }

  .hero {
    min-height: 92svh;
    padding-inline: 18px;
  }

  h1 {
    font-size: clamp(3.3rem, 18vw, 5.4rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .category-tile.large {
    grid-column: auto;
  }

  .category-tile {
    min-height: 330px;
  }

  .commercial {
    min-height: auto;
    padding-block: 76px;
  }
}
