:root {
  color-scheme: dark;
  --black: #050505;
  --coal: #101010;
  --panel: #171717;
  --line: rgba(255, 255, 255, 0.14);
  --text: #f6f4ed;
  --muted: #b7b4aa;
  --yellow: #ffd21f;
  --yellow-2: #f6b900;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  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,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 50;
  background: var(--yellow);
  color: #090909;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem clamp(1rem, 4vw, 3rem);
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(5, 5, 5, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 0.9;
}

.brand strong {
  font-size: 0.95rem;
  font-weight: 900;
}

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.brand-mark {
  position: relative;
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
}

.brand-mark span {
  position: absolute;
  width: 0.42rem;
  height: 1.9rem;
  background: var(--yellow);
  transform: skewX(-18deg);
}

.brand-mark span:first-child {
  left: 0.42rem;
}

.brand-mark span:last-child {
  right: 0.42rem;
  background: var(--white);
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  gap: 0.35rem;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-toggle span {
  width: 1.05rem;
  height: 2px;
  background: currentColor;
}

.main-nav,
.header-cta {
  display: none;
}

.main-nav {
  position: fixed;
  inset: 4.4rem 1rem auto;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 12, 12, 0.96);
  box-shadow: var(--shadow);
}

.site-header.is-open .main-nav {
  display: grid;
  gap: 0.35rem;
}

.main-nav a {
  padding: 0.9rem;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a:hover {
  color: var(--yellow);
  background: rgba(255, 210, 31, 0.08);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  padding: 7rem 1rem 3rem;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.94) 78%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.56) 52%, rgba(5, 5, 5, 0.15));
}

.hero-content {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3rem, 15vw, 7.4rem);
  font-weight: 950;
}

h2 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 9vw, 5rem);
  font-weight: 950;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 42rem;
  color: #e4e0d6;
  font-size: clamp(1rem, 2.8vw, 1.2rem);
}

.hero-actions {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.95rem 1.2rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--yellow);
  color: #090909;
  box-shadow: 0 16px 36px rgba(255, 210, 31, 0.22);
}

.btn-primary:hover {
  background: var(--yellow-2);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.hero-proof li {
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--yellow);
  font-size: 1.1rem;
  line-height: 1;
}

.hero-proof span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.74rem;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.3rem;
  display: none;
  width: 1.8rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 0.55rem;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: var(--yellow);
  transform: translateX(-50%);
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, 1rem);
  }
}

.section {
  padding: 4.5rem 1rem;
}

.section-head {
  width: min(100%, var(--max));
  margin: 0 auto 2rem;
}

.section-head p:not(.eyebrow) {
  max-width: 42rem;
  color: var(--muted);
}

.intro-strip {
  padding-block: 1rem;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--yellow);
  color: #080808;
}

.ticker {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: ticker 24s linear infinite;
}

.ticker span {
  white-space: nowrap;
  font-weight: 950;
  text-transform: uppercase;
}

.ticker span::after {
  content: "/";
  margin-left: 1rem;
  color: rgba(0, 0, 0, 0.35);
}

@keyframes ticker {
  to {
    transform: translateX(-35%);
  }
}

.services {
  background:
    linear-gradient(180deg, var(--black), #111),
    radial-gradient(circle at top right, rgba(255, 210, 31, 0.18), transparent 28rem);
}

.service-grid,
.gallery-grid,
.process-list,
.faq-list {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.service-grid {
  display: grid;
  gap: 0.8rem;
}

.service-card {
  min-height: 16rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

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

.icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 210, 31, 0.45);
  border-radius: var(--radius);
  color: var(--yellow);
  font-weight: 950;
}

.photo-band {
  display: grid;
  gap: 1.5rem;
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
  padding-inline: 0;
}

.photo-band-grid {
  display: grid;
  gap: 0.8rem;
}

.photo-band img,
.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 16rem;
  object-fit: cover;
  border-radius: var(--radius);
}

.references {
  background: #f4f1e8;
  color: #111;
}

.references .eyebrow {
  color: #8f6800;
}

.references .section-head p {
  color: #555;
}

.before-after {
  position: relative;
  width: min(100%, var(--max));
  height: clamp(23rem, 72vw, 40rem);
  margin: 0 auto 1rem;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.22);
  background: #111;
}

.before-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.after-wrap {
  position: absolute;
  inset: 0;
  width: 54%;
  overflow: hidden;
  border-right: 3px solid var(--yellow);
}

.after-wrap img {
  width: min(100vw, var(--max));
  max-width: none;
}

.before-after input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.compare-label {
  position: absolute;
  top: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.76);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.compare-label.before {
  right: 1rem;
}

.compare-label.after {
  left: 1rem;
  background: var(--yellow);
  color: #070707;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

.gallery-grid article {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.gallery-grid h3,
.gallery-grid p {
  padding-inline: 1rem;
}

.gallery-grid h3 {
  margin-top: 1rem;
}

.gallery-grid p {
  color: #555;
  padding-bottom: 1.1rem;
}

.process {
  background:
    linear-gradient(rgba(5, 5, 5, 0.84), rgba(5, 5, 5, 0.92)),
    url("https://images.unsplash.com/photo-1494522855154-9297ac14b55f?auto=format&fit=crop&w=1800&q=80") center / cover fixed;
}

.process-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  list-style: none;
  counter-reset: item;
}

.process-list li {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.process-list span {
  display: inline-flex;
  margin-bottom: 1.7rem;
  color: var(--yellow);
  font-weight: 950;
}

.process-list p {
  color: var(--muted);
}

.faq {
  background: #0d0d0d;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

summary {
  cursor: pointer;
  padding: 1rem;
  color: var(--white);
  font-weight: 900;
}

details p {
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.contact {
  padding: 1rem;
  background: var(--yellow);
  color: #080808;
}

.contact-panel {
  display: grid;
  gap: 1.5rem;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(1.2rem, 5vw, 3rem);
  border-radius: var(--radius);
  background: #0b0b0b;
  color: var(--text);
  box-shadow: var(--shadow);
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
}

.contact-links {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.contact-links a {
  color: var(--yellow);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0.95rem;
  outline: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 210, 31, 0.14);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1rem;
  color: var(--muted);
  background: #050505;
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--yellow);
  font-weight: 900;
}

@media (min-width: 640px) {
  .hero-actions {
    grid-template-columns: max-content max-content;
  }

  .service-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 920px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    justify-content: center;
    gap: 0.2rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .header-cta {
    display: inline-flex;
    min-height: 2.8rem;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    background: var(--yellow);
    color: #090909;
    font-size: 0.82rem;
    font-weight: 950;
    text-transform: uppercase;
  }

  .hero {
    align-items: center;
    padding-inline: 3rem;
  }

  .hero-copy {
    max-width: 35rem;
  }

  .hero-proof {
    max-width: 38rem;
  }

  .scroll-cue {
    display: block;
  }

  .section {
    padding-block: 7rem;
  }

  .section-head {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 2rem;
    align-items: end;
  }

  .section-head .eyebrow {
    grid-column: 1 / -1;
  }

  .section-head h2 {
    margin-bottom: 0;
  }

  .service-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .photo-band {
    grid-template-columns: 0.75fr 1fr;
    align-items: end;
  }

  .photo-band-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-panel {
    grid-template-columns: 0.85fr 1fr;
    align-items: start;
  }
}

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