:root {
  --bg: #0d0f14;
  --bg-soft: #141925;
  --surface: #ffffff;
  --surface-soft: #f4f4f1;
  --surface-card: rgba(255, 255, 255, 0.08);
  --text: #11131a;
  --text-light: rgba(255, 255, 255, 0.88);
  --muted: #667085;
  --gold: #d4b06e;
  --gold-strong: #f0c878;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(7, 9, 14, 0.24);
  --radius: 26px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: #fff;
}

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

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  padding: 18px 0;
  transition: 0.28s ease;
}

.site-header.scrolled {
  background: rgba(9, 11, 16, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  padding: 12px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  width: clamp(150px, 14vw, 220px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.site-nav a {
  position: relative;
  opacity: 0.92;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold-strong);
  transition: transform 0.22s ease;
}

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

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nav-cta {
  background: var(--gold);
  color: #101216;
  box-shadow: 0 12px 34px rgba(212, 176, 110, 0.26);
}

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

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  padding: 0;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  background: #fff;
  transition: 0.2s ease;
}

.menu-toggle span:first-child {
  top: 18px;
}

.menu-toggle span:last-child {
  bottom: 18px;
}

.hero {
  position: relative;
  min-height: 100svh;
  background: #07090e;
  color: #fff;
  overflow: clip;
}

.hero-slider,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1s ease, transform 6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.slide-one {
  background-image: linear-gradient(rgba(7, 10, 16, 0.46), rgba(7, 10, 16, 0.72)), url('https://images.unsplash.com/photo-1771371854543-bb274762389e?auto=format&fit=crop&fm=jpg&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&ixlib=rb-4.1.0&q=80&w=2200');
}

.slide-two {
  background-image: linear-gradient(rgba(7, 10, 16, 0.48), rgba(7, 10, 16, 0.76)), url('https://images.unsplash.com/photo-1704742950992-9815a104820c?auto=format&fit=crop&fm=jpg&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&ixlib=rb-4.1.0&q=80&w=2200');
}

.slide-three {
  background-image: linear-gradient(rgba(7, 10, 16, 0.46), rgba(7, 10, 16, 0.74)), url('https://images.unsplash.com/photo-1762810931790-40b25e10b3e7?auto=format&fit=crop&fm=jpg&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&ixlib=rb-4.1.0&q=80&w=2200');
}

.hero-overlay {
  background:
    radial-gradient(circle at 14% 24%, rgba(212, 176, 110, 0.18), transparent 26%),
    radial-gradient(circle at 83% 19%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(8, 10, 15, 0.16) 0%, rgba(8, 10, 15, 0.2) 38%, rgba(8, 10, 15, 0.58) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - 120px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  gap: 44px;
  align-items: center;
  padding: 144px 0 180px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-strong);
}

.eyebrow-dark {
  color: #a06d16;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.9rem, 7vw, 5.7rem);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.hero-text,
.section-heading p,
.section-copy p,
.process-copy p,
.quote-copy p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.hero-text {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn-primary {
  background: var(--gold);
  color: #101216;
  box-shadow: 0 18px 44px rgba(212, 176, 110, 0.26);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-badges span {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.hero-panel {
  padding: 28px;
  border-radius: 28px;
  background: rgba(14, 17, 25, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 70px rgba(3, 5, 9, 0.34);
  backdrop-filter: blur(16px);
}

.panel-kicker,
.card-kicker {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-strong);
}

.hero-phone {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-panel-list {
  display: grid;
  gap: 18px;
  margin: 28px 0;
}

.hero-panel-list span,
.hero-panel-note p,
.bar-item span {
  color: rgba(255, 255, 255, 0.7);
}

.hero-panel-list strong,
.bar-item strong,
.intro-stat strong,
.contact-stack a {
  display: block;
  margin-top: 6px;
}

.hero-panel-note {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-bottom-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(10, 12, 18, 0.2), rgba(10, 12, 18, 0.72));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bottom-bar-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  padding: 26px 0 30px;
}

.bar-item {
  min-width: 0;
}

.section {
  padding: 104px 0;
}

.intro-section {
  background: linear-gradient(180deg, #fff 0%, #f8f5ee 100%);
}

.intro-grid,
.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 34px;
  align-items: start;
}

.section-copy h2,
.section-heading h2,
.process-copy h2,
.quote-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-copy p,
.section-heading p,
.process-copy p,
.quote-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  max-width: 760px;
}

.intro-card {
  padding: 30px;
  border-radius: var(--radius);
  background: #121722;
  color: #fff;
  box-shadow: var(--shadow);
}

.intro-stat + .intro-stat {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.services-section {
  background: #fff;
}

.section-heading {
  margin-bottom: 38px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  padding: 30px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #faf8f2);
  border: 1px solid rgba(17, 19, 26, 0.08);
  box-shadow: 0 16px 44px rgba(12, 14, 20, 0.07);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 62px rgba(12, 14, 20, 0.12);
  border-color: rgba(160, 109, 22, 0.2);
}

.service-icon,
.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(212, 176, 110, 0.14);
  color: #8a5a09;
  font-weight: 800;
}

.service-card h3,
.showcase-content h3,
.process-step h3 {
  margin: 18px 0 12px;
  font-size: 1.3rem;
  line-height: 1.2;
}

.service-card p,
.showcase-content p,
.process-step p,
.contact-stack a,
.hero-panel-note p,
.intro-stat span,
.bar-item span {
  line-height: 1.7;
  font-size: 1rem;
}

.showcase-section {
  background: linear-gradient(180deg, #10141d 0%, #0a0d13 100%);
  color: #fff;
}

.light-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 24px;
}

.showcase-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-card-large {
  min-height: 620px;
}

.showcase-image {
  min-height: 280px;
  background-size: cover;
  background-position: center;
}

.showcase-card-large .showcase-image {
  min-height: 420px;
}

.image-finish {
  background-image: linear-gradient(rgba(13, 16, 23, 0.16), rgba(13, 16, 23, 0.44)), url('https://images.unsplash.com/photo-1771371854543-bb274762389e?auto=format&fit=crop&fm=jpg&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&ixlib=rb-4.1.0&q=80&w=2000');
}

.image-rough {
  background-image: linear-gradient(rgba(13, 16, 23, 0.2), rgba(13, 16, 23, 0.5)), url('https://images.unsplash.com/photo-1704742950992-9815a104820c?auto=format&fit=crop&fm=jpg&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&ixlib=rb-4.1.0&q=80&w=2000');
}

.image-detail {
  background-image: linear-gradient(rgba(13, 16, 23, 0.2), rgba(13, 16, 23, 0.5)), url('https://images.unsplash.com/photo-1762810931790-40b25e10b3e7?auto=format&fit=crop&fm=jpg&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&ixlib=rb-4.1.0&q=80&w=2000');
}

.showcase-content {
  padding: 24px 24px 28px;
}

.process-section {
  background: linear-gradient(180deg, #f7f5ef 0%, #fff 100%);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 34px;
  align-items: start;
}

.process-steps {
  display: grid;
  gap: 20px;
}

.process-step {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(17, 19, 26, 0.08);
  box-shadow: 0 16px 44px rgba(12, 14, 20, 0.07);
}

.quote-section {
  background: #fff;
}

.contact-stack {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-stack a {
  font-weight: 700;
}

.quote-form {
  padding: 30px;
  border-radius: 28px;
  background: #111620;
  color: #fff;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.quote-form label {
  display: grid;
  gap: 10px;
}

.quote-form span {
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 15px 16px;
  outline: none;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(212, 176, 110, 0.58);
  box-shadow: 0 0 0 4px rgba(212, 176, 110, 0.12);
}

.full-width {
  grid-column: 1 / -1;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.form-submit {
  width: 100%;
  margin-top: 22px;
}

.site-footer {
  padding: 34px 0 48px;
  background: #0a0d13;
  color: rgba(255, 255, 255, 0.72);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  width: clamp(150px, 14vw, 220px);
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

@media (max-width: 1080px) {
  .hero-grid,
  .intro-grid,
  .quote-grid,
  .process-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 520px;
  }

  .showcase-card-large {
    min-height: 0;
  }

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

@media (max-width: 820px) {
  .site-header {
    padding: 10px 0;
  }

  .site-header.scrolled {
    padding: 8px 0;
  }

  .nav-wrap {
    gap: 14px;
  }

  .brand-logo {
    width: 138px;
  }

  .hero {
    min-height: auto;
  }

  .site-nav {
    position: fixed;
    top: 64px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    background: rgba(9, 11, 16, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: 0.22s ease;
  }

  .site-nav a {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

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

  body.menu-open .menu-toggle span:first-child {
    top: 21px;
    transform: rotate(45deg);
  }

  body.menu-open .menu-toggle span:last-child {
    bottom: 21px;
    transform: rotate(-45deg);
  }

  .menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .menu-toggle span {
    left: 12px;
    right: 12px;
  }

  .menu-toggle span:first-child {
    top: 16px;
  }

  .menu-toggle span:last-child {
    bottom: 16px;
  }

  .nav-cta,
  .site-nav {
    color: #fff;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    gap: 28px;
    align-items: start;
    padding-top: 108px;
    padding-bottom: 36px;
  }

  .hero-panel {
    max-width: 100%;
  }

  .hero-bottom-bar {
    position: relative;
    inset: auto;
  }

  .bottom-bar-wrap {
    gap: 18px;
    padding: 22px 0 26px;
  }

  .bottom-bar-wrap,
  .services-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 84px 0;
  }

  .footer-logo {
    width: 156px;
  }

  .brand-logo {
    width: 124px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 14vw, 4rem);
  }

  .hero-text,
  .section-copy p,
  .section-heading p,
  .process-copy p,
  .quote-copy p {
    font-size: 1rem;
  }

  .hero-panel,
  .quote-form,
  .service-card,
  .process-step,
  .intro-card,
  .showcase-content {
    padding: 22px;
  }

  .hero-badges {
    gap: 10px;
  }

  .hero-badges span {
    width: calc(50% - 5px);
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
