:root {
  --bg: #111111;
  --surface: rgba(27, 27, 27, 0.92);
  --surface-strong: #1d1d1d;
  --text: #f3ecde;
  --muted: #c3b8a1;
  --line: rgba(240, 90, 26, 0.2);
  --charcoal: #171717;
  --tan: #d6d2c4;
  --orange: #f05a1a;
  --gold: #e5a93d;
  --olive: #556b2f;
  --brown: #7a4a2a;
  --max-width: 1200px;
  --shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.34);
  --shadow-md: 0 18px 40px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(240, 90, 26, 0.2), transparent 24%),
    radial-gradient(circle at top right, rgba(229, 169, 61, 0.12), transparent 18%),
    linear-gradient(180deg, #0d0d0d 0%, #171717 100%);
}

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

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

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

.page-shell {
  padding: 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: 0.25rem;
  margin-bottom: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid rgba(240, 90, 26, 0.18);
  border-radius: 22px;
  background: rgba(21, 21, 21, 0.84);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
}

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

.brand-logo {
  width: auto;
  max-width: min(13rem, 22vw);
  max-height: 6.5rem;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(26, 26, 26, 0.22));
  flex-shrink: 0;
}

.eyebrow,
.nav-links a,
.nav-cta,
.service-index,
.process-list span {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.96rem;
  color: #d5cab5;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #fff3e4;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.nav-cta,
.button-primary {
  background: var(--orange);
  color: #fff8f1;
}

.nav-cta:hover,
.button-primary:hover {
  background: #d94f14;
}

.button-secondary {
  border: 1px solid rgba(240, 90, 26, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: #f3ecde;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero-section {
  margin-top: 0;
  min-height: auto;
  padding: 0;
  border-radius: 36px;
  border: 1px solid rgba(240, 90, 26, 0.14);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.99), rgba(41, 41, 41, 0.96));
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 1rem;
  align-items: stretch;
  padding: 1.2rem;
}

.hero-copy,
.hero-visual,
.contact-card,
.reason-card,
.service-card,
.copy-panel,
.area-panel {
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
}

.hero-copy {
  padding: 2.65rem;
  background:
    linear-gradient(135deg, rgba(14, 14, 14, 0.98), rgba(31, 31, 31, 0.92));
  border: 1px solid rgba(240, 90, 26, 0.12);
  color: #f2ede3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
}

.hero-mark {
  width: min(100%, 13rem);
  height: auto;
  object-fit: contain;
}

.eyebrow {
  font-size: 0.9rem;
  color: var(--gold);
}

.hero-copy h1,
.section-heading h2,
.copy-panel h2,
.contact-copy h2 {
  font-family: "Barlow Condensed", sans-serif;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  margin-top: 0.8rem;
  max-width: 9ch;
  font-size: clamp(3.6rem, 6.8vw, 5.8rem);
  text-transform: uppercase;
}

.hero-lede {
  margin-top: 1.1rem;
  max-width: 33rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(242, 237, 227, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.hero-trust-strip {
  margin-top: 1rem;
  color: rgba(242, 237, 227, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-form h2,
.hero-card strong,
.service-card h3,
.reason-card h3,
.process-list h3,
.contact-details a {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
}

.hero-form-copy,
.service-card p,
.reason-card p,
.process-list p,
.contact-copy p,
.contact-details p,
.section-heading p,
.copy-panel p {
  margin-top: 0.45rem;
  line-height: 1.75;
  color: inherit;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(240, 90, 26, 0.12);
  background: #121212;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-caption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(17, 17, 17, 0.82);
  border: 1px solid rgba(240, 90, 26, 0.16);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-md);
}

.hero-caption strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.hero-caption p {
  margin-top: 0.35rem;
  line-height: 1.7;
  color: rgba(242, 237, 227, 0.8);
}

.hero-mini-strip {
  width: min(var(--max-width), 100%);
  margin: 1rem auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.hero-mini-strip p {
  margin: 0;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(23, 23, 23, 0.94);
  border: 1px solid rgba(240, 90, 26, 0.12);
  color: #f3ecde;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.hero-form {
  padding: 2rem;
  border-radius: 32px;
  background: rgba(14, 14, 14, 0.88);
  border: 1px solid rgba(240, 90, 26, 0.18);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 0.95rem;
  align-self: center;
}

.hero-form-kicker {
  color: var(--gold);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-form h2 {
  margin-top: 0.2rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero-form label {
  display: grid;
  gap: 0.38rem;
  color: #f3ecde;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  width: 100%;
  border: 1px solid rgba(240, 90, 26, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: #f3ecde;
  padding: 0.95rem 1rem;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  outline: none;
  border-color: rgba(240, 90, 26, 0.5);
  box-shadow: 0 0 0 3px rgba(240, 90, 26, 0.12);
}

.hero-form textarea {
  resize: vertical;
  min-height: 120px;
}

.hero-form input::placeholder,
.hero-form textarea::placeholder {
  color: rgba(243, 236, 222, 0.58);
}

.hero-submit {
  width: 100%;
  margin-top: 0.35rem;
  border: 0;
  cursor: pointer;
}

.hero-form-note {
  color: rgba(243, 236, 222, 0.72);
  font-size: 0.9rem;
}

.content-section {
  margin-top: 1rem;
  padding: 2rem 0;
}

.section-heading {
  max-width: 44rem;
}

.section-heading h2,
.copy-panel h2,
.contact-copy h2 {
  margin-top: 0.55rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.section-heading p,
.copy-panel p,
.contact-copy p {
  margin-top: 1rem;
  color: var(--muted);
}

.services-grid,
.reasons-grid,
.process-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

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

.service-card,
.reason-card {
  padding: 1.5rem;
  background: rgba(23, 23, 23, 0.94);
  border: 1px solid rgba(240, 90, 26, 0.12);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-index {
  color: var(--orange);
  font-size: 0.95rem;
}

.service-card h3,
.reason-card h3 {
  margin-top: 0.65rem;
}

.service-card:hover,
.reason-card:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 90, 26, 0.22);
}

.accent-card {
  background: linear-gradient(180deg, rgba(240, 90, 26, 0.16), rgba(23, 23, 23, 0.96));
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1.08fr);
  gap: 1rem;
}

.copy-panel,
.area-panel,
.contact-card {
  padding: 2rem;
  background: rgba(23, 23, 23, 0.94);
  border: 1px solid rgba(240, 90, 26, 0.12);
}

.area-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  align-content: start;
}

.area-chip {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.98), rgba(85, 107, 47, 0.94));
  color: #f2ede3;
  font-weight: 700;
}

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

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

.process-list article {
  padding: 1.6rem;
  border-top: 4px solid var(--orange);
  border-radius: 24px;
  background: rgba(23, 23, 23, 0.94);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease;
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: rgba(240, 90, 26, 0.12);
  color: var(--orange);
  font-size: 1.15rem;
}

.process-list h3 {
  margin-top: 0.9rem;
}

.process-list article:hover {
  transform: translateY(-2px);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 1rem;
  background:
    linear-gradient(135deg, rgba(23, 23, 23, 0.98), rgba(33, 33, 33, 0.96));
  align-items: start;
}

.contact-details {
  padding: 1.2rem;
  border-radius: 26px;
  background: rgba(26, 26, 26, 0.97);
  color: #f2ede3;
}

.contact-form {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  margin-bottom: 1rem;
}

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

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  align-items: center;
  padding: 1.6rem 1.8rem;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.99), rgba(41, 41, 41, 0.96));
  box-shadow: var(--shadow-lg);
  color: #f2ede3;
}

.footer-logo {
  width: 9rem;
  height: 9rem;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-copy p,
.footer-copy a {
  margin-top: 0.45rem;
  line-height: 1.7;
}

.footer-copy a {
  display: inline-block;
  color: #f2ede3;
  font-weight: 800;
}

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

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

@media (max-width: 1024px) {
  .hero-inner,
  .hero-mini-strip,
  .split-layout,
  .contact-card,
  .services-grid,
  .reasons-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .hero-highlights,
  .area-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 0.75rem;
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .brand {
    align-items: flex-start;
  }

  .brand-logo {
    max-width: min(9rem, 100%);
    max-height: 4.5rem;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 0.9rem 1.1rem;
  }

  .hero-copy,
  .copy-panel,
  .area-panel,
  .contact-card {
    padding: 1.4rem;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.9rem, 15vw, 4.5rem);
  }

  .hero-highlights,
  .area-panel {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-inner {
    padding: 0.8rem;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-mini-strip {
    gap: 0.6rem;
  }

  .hero-mini-strip p {
    text-align: left;
  }

  .hero-form {
    padding: 1.35rem;
  }

  .footer-logo {
    width: 7rem;
    height: 7rem;
  }
}
