:root {
  --bg: #07100d;
  --bg-2: #0b1612;
  --surface: rgba(15, 24, 20, 0.82);
  --surface-2: rgba(11, 19, 16, 0.92);
  --paper: #f6f1e8;
  --paper-2: #fffcf7;
  --text: #f1ebdf;
  --text-dark: #1f1914;
  --muted: rgba(241, 235, 223, 0.74);
  --muted-dark: #685f54;
  --line: rgba(255, 245, 228, 0.1);
  --line-dark: rgba(34, 28, 21, 0.1);
  --accent: #bf8141;
  --accent-2: #905a2c;
  --accent-soft: rgba(191, 129, 65, 0.14);
  --shadow-xl: 0 16px 36px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 10px 24px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.08);
  --radius-2xl: 18px;
  --radius-xl: 12px;
  --radius-lg: 8px;
  --radius-md: 6px;
  --container: min(1180px, calc(100vw - 2rem));
  --hero-container: min(1400px, calc(100vw - 1rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(191, 129, 65, 0.12), transparent 20%),
    radial-gradient(circle at top right, rgba(64, 96, 82, 0.1), transparent 24%),
    linear-gradient(180deg, #08110e 0%, #050c0a 100%);
  font-family: "Inter", "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.02), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent 18%);
  pointer-events: none;
  z-index: -2;
}

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

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

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

button {
  border: 0;
  background: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--accent), #e2bc8b);
  box-shadow: 0 0 20px rgba(191, 129, 65, 0.35);
  z-index: 70;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.28;
  pointer-events: none;
  z-index: -1;
}

.page-shell::before {
  top: -13rem;
  right: -13rem;
  background: rgba(191, 129, 65, 0.16);
}

.page-shell::after {
  bottom: -13rem;
  left: -13rem;
  background: rgba(60, 91, 77, 0.16);
}

.site-header,
main > section:not(.hero) {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  margin-top: 0;
  width: 100%;
  padding: 0.8rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  border-bottom: 1px solid rgba(255, 245, 228, 0.08);
  border-radius: 0;
  background: rgba(14, 23, 19, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  transition:
    background 220ms ease,
    backdrop-filter 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    padding 220ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  padding-left: 0.25rem;
}

.brand-logo {
  width: 3.4rem;
  height: 3.4rem;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-copy {
  display: flex;
  align-items: center;
}

.brand-copy strong {
  display: inline-flex;
  align-items: center;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f8f1e5;
  line-height: 1;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.18);
}

.brand-copy strong::after {
  content: "";
  width: 1.8rem;
  height: 1px;
  margin-left: 0.7rem;
  background: linear-gradient(90deg, rgba(227, 186, 134, 0.95), transparent);
  transform: translateY(0.02rem);
}

.header-cta {
  margin-left: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3.2rem;
  padding: 0.92rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  color: #fff8ef;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 30px rgba(144, 90, 44, 0.28);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line);
}

.hero {
  position: relative;
  width: var(--hero-container);
  min-height: 100svh;
  margin: 0 auto;
  padding: 8rem min(5vw, 4rem) 2rem;
  border-top: 1px solid rgba(255, 245, 228, 0.08);
  border-bottom: 1px solid rgba(255, 245, 228, 0.08);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(7, 12, 10, 0.92) 12%, rgba(7, 12, 10, 0.54) 44%, rgba(7, 12, 10, 0.88) 100%),
    linear-gradient(180deg, rgba(7, 12, 10, 0.12), rgba(7, 12, 10, 0.84));
  z-index: -1;
}

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

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: saturate(0.92) contrast(1.04);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
  gap: 2rem;
  align-items: start;
}

.eyebrow,
.panel-label,
.stage-kicker {
  margin: 0 0 1rem;
  color: #e3ba86;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1,
h2,
h3,
summary {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.1rem, 7.5vw, 6rem);
  line-height: 0.93;
}

h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  line-height: 0.96;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.08;
}

.hero-text,
.section-intro > p,
.service-stage-copy > p,
.why-copy > p,
.why-grid p,
.coverage-card p,
.faq-item p,
.contact-copy > p,
.contact-panel p,
.form-note,
.form-status {
  line-height: 1.72;
}

.hero-text,
.section-intro > p,
.why-copy > p,
.contact-copy > p,
.contact-panel p,
.form-note {
  color: var(--muted);
}

.hero-text {
  max-width: 38rem;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0 1.8rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 0.75rem 1rem;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 245, 228, 0.12);
  background: transparent;
  color: rgba(241, 235, 223, 0.86);
  font-size: 0.92rem;
  box-shadow: none;
}

.hero-form-card {
  padding: 1.5rem;
  border-radius: 0;
  border-top: 1px solid rgba(255, 245, 228, 0.1);
  border-bottom: 1px solid rgba(255, 245, 228, 0.1);
  border-left: 0;
  border-right: 0;
  background: rgba(11, 19, 16, 0.52);
  backdrop-filter: blur(12px);
  box-shadow: none;
}

.hero-form-header h2 {
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  max-width: 15ch;
}

.hero-form {
  margin-top: 1.15rem;
  display: grid;
  gap: 0.95rem;
}

.hero-form label,
.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: rgba(241, 235, 223, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-form input,
.hero-form textarea,
.hero-form select,
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.92rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 245, 228, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.hero-form textarea,
.contact-form textarea {
  resize: vertical;
  min-height: 8.5rem;
}

.hero-form input::placeholder,
.hero-form textarea::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(241, 235, 223, 0.48);
}

.hero-form input:focus-visible,
.hero-form textarea:focus-visible,
.hero-form select:focus-visible,
.contact-form input:focus-visible,
.contact-form textarea:focus-visible,
.contact-form select:focus-visible {
  outline: none;
  border-color: rgba(191, 129, 65, 0.46);
  box-shadow: 0 0 0 4px rgba(191, 129, 65, 0.12);
}

.trust-strip,
.services,
.why-us,
.service-area,
.faq,
.contact {
  padding-top: 6.5rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  align-items: center;
  border-top: 1px solid rgba(255, 245, 228, 0.08);
  border-bottom: 1px solid rgba(255, 245, 228, 0.08);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.trust-strip div {
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: rgba(241, 235, 223, 0.82);
  text-align: left;
  box-shadow: none;
  font-weight: 600;
}

.trust-strip div::after {
  content: "•";
  margin-left: 1.4rem;
  color: #e3ba86;
}

.trust-strip div:last-child::after {
  display: none;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  gap: 1.4rem 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-intro > p {
  margin: 0;
  max-width: 31rem;
}

.section-intro-wide {
  grid-template-columns: 1fr;
}

.section-intro-wide > div,
.section-intro-wide h2 {
  max-width: none;
}

.service-explorer {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 1rem;
}

.service-nav {
  display: grid;
  gap: 0.85rem;
}

.service-pill,
.service-stage,
.coverage-card,
.faq-item,
.contact-copy,
.contact-panel,
.why-copy,
.why-card {
  box-shadow: var(--shadow-md);
}

.service-pill {
  width: 100%;
  padding: 0.95rem 0;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 245, 228, 0.08);
  background: transparent;
  color: rgba(241, 235, 223, 0.68);
  text-align: left;
  font-weight: 700;
  transition: transform 220ms ease, color 220ms ease, border-color 220ms ease;
  cursor: pointer;
}

.service-pill:hover,
.service-pill:focus-visible,
.service-pill.is-active {
  transform: translateX(6px);
  color: var(--text);
  border-color: rgba(227, 186, 134, 0.36);
}

.service-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  overflow: hidden;
  border-radius: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 0;
  border-right: 0;
  background: transparent;
  color: var(--text-dark);
}

.service-stage-image {
  margin: 0;
  min-height: 28rem;
  overflow: hidden;
}

.service-stage-image img {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
  transition: opacity 320ms ease, transform 320ms ease;
}

.service-stage-copy {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 251, 246, 0.94);
}

.service-stage-copy > p {
  color: var(--muted-dark);
}

.stage-points {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.stage-points li {
  position: relative;
  padding-left: 1.1rem;
  color: #544d43;
}

.stage-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.why-copy {
  padding: 2rem;
  border-radius: 0;
  border-top: 1px solid rgba(255, 245, 228, 0.08);
  border-bottom: 1px solid rgba(255, 245, 228, 0.08);
  border-left: 0;
  border-right: 0;
  background: transparent;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.why-grid article {
  padding: 1.2rem;
  border-radius: 0;
  background: transparent;
  border-top: 1px solid rgba(255, 245, 228, 0.08);
}

.why-grid strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.02rem;
}

.why-grid p {
  color: var(--muted);
}

.why-visual {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  border-radius: 0;
  border-top: 1px solid rgba(255, 245, 228, 0.08);
  border-bottom: 1px solid rgba(255, 245, 228, 0.08);
  border-left: 0;
  border-right: 0;
  background: transparent;
}

.why-image {
  position: absolute;
  inset: 0;
  margin: 0;
}

.why-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 12, 10, 0.16), rgba(7, 12, 10, 0.84)),
    linear-gradient(135deg, rgba(191, 129, 65, 0.16), transparent 40%);
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-card {
  position: relative;
  z-index: 1;
  margin-top: auto;
  max-width: 25rem;
  padding: 1.45rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 245, 228, 0.1);
  background: rgba(11, 19, 16, 0.62);
}

.why-card span {
  color: #e3ba86;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.why-card strong {
  display: block;
  margin: 0.7rem 0 0.55rem;
  font-size: 1.45rem;
  line-height: 1.1;
}

.why-card p {
  margin: 0;
  color: var(--muted);
}

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

.coverage-card,
.contact-strip {
  padding: 1.5rem;
  border-radius: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 0;
  border-right: 0;
  background: rgba(255, 251, 246, 0.94);
  color: var(--text-dark);
}

.coverage-card p,
.form-note,
.form-status {
  color: var(--muted-dark);
}

.coverage-card-accent {
  background: linear-gradient(135deg, rgba(33, 56, 47, 0.98), rgba(18, 32, 26, 0.96));
  color: var(--text);
  border-top-color: rgba(255, 245, 228, 0.08);
  border-bottom-color: rgba(255, 245, 228, 0.08);
}

.coverage-card-accent p {
  color: rgba(241, 235, 223, 0.78);
}

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

.faq .section-intro {
  margin-bottom: 1.1rem;
}

.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: rgba(255, 251, 246, 0.96);
  color: var(--text-dark);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 1.35rem;
  font-size: 1.1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 1.35rem 1.2rem;
  color: var(--muted-dark);
}

.contact {
  padding-bottom: 4rem;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.75rem 0;
  border-top-color: rgba(255, 245, 228, 0.08);
  border-bottom-color: rgba(255, 245, 228, 0.08);
  background: transparent;
  color: var(--text);
  box-shadow: none;
}

.contact-strip-intro {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-strip-label {
  margin: 0;
  color: #e3ba86;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-strip-copy {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1180px) {
  .hero-grid,
  .section-intro,
  .service-explorer,
  .why-layout {
    grid-template-columns: 1fr;
  }

  .service-stage {
    grid-template-columns: 1fr;
  }

  .service-stage-copy {
    order: 1;
  }

  .service-stage-image {
    order: 2;
    min-height: 22rem;
  }

  .service-stage-image img {
    min-height: 22rem;
  }

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

@media (max-width: 900px) {
  .site-header {
    padding: 0.7rem 0.9rem;
  }

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

  .header-cta {
    width: auto;
    min-height: 2.75rem;
    padding: 0.72rem 1rem;
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .hero {
    min-height: 100svh;
    padding: 6.8rem 1.25rem 1.5rem;
  }

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

  .trust-strip {
    gap: 0.9rem;
  }
}

@media (max-width: 640px) {
  main > section:not(.hero) {
    width: min(calc(100vw - 1rem), 100%);
  }

  .site-header {
    top: 0;
    margin-top: 0;
    padding: 0.6rem 0.75rem;
    gap: 0.6rem;
  }

  .brand-logo {
    width: 2.65rem;
    height: 2.65rem;
  }

  .brand-copy strong {
    font-size: 0.84rem;
    letter-spacing: 0.11em;
  }

  .brand {
    padding-left: 0;
    gap: 0.55rem;
  }

  .brand-copy strong::after {
    width: 1.15rem;
    margin-left: 0.45rem;
  }

  .header-cta {
    min-height: 2.4rem;
    padding: 0.62rem 0.8rem;
    font-size: 0.82rem;
  }

  h1 {
    font-size: clamp(2.8rem, 12vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 7vw, 2.9rem);
  }

  .trust-strip,
  .services,
  .why-us,
  .service-area,
  .faq,
  .contact {
    padding-top: 5rem;
  }

  .service-stage-copy,
  .hero-form-card,
  .coverage-card,
  .contact-strip,
  .why-copy {
    padding: 1.25rem;
  }

  .contact-strip {
    flex-direction: column;
    align-items: center;
    padding: 1.35rem 0;
    text-align: center;
  }

  .contact-strip-intro {
    align-items: 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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
