:root {
  --ink: #f8f3e8;
  --muted: #c9c1b3;
  --dim: #8f948d;
  --bg: #090b0d;
  --panel: #111518;
  --panel-soft: #171d20;
  --line: rgba(248, 243, 232, 0.13);
  --gold: #e7bd73;
  --gold-dark: #b07a2f;
  --green: #8da88c;
  --blue: #6f9db4;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(231, 189, 115, 0.12), transparent 28rem),
    linear-gradient(180deg, #080a0c 0%, #0b0e10 52%, #101514 100%);
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  background: rgba(8, 10, 12, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border: 1px solid rgba(231, 189, 115, 0.55);
  border-radius: 50%;
  color: #ffe1a3;
  background: rgba(231, 189, 115, 0.1);
}

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

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 7rem clamp(1rem, 4vw, 3rem) 3rem;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 66% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 6, 8, 0.95) 0%, rgba(5, 7, 10, 0.74) 36%, rgba(5, 7, 10, 0.2) 72%),
    linear-gradient(0deg, rgba(8, 10, 12, 0.95) 0%, rgba(8, 10, 12, 0.14) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 46rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 13.5ch;
  margin-bottom: 1rem;
  font-size: clamp(2.75rem, 6.8vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(2rem, 7vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0.95rem 1.35rem;
  border: 1px solid transparent;
  font-weight: 790;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #11100c;
  background: linear-gradient(135deg, #ffe2a0, var(--gold));
  box-shadow: 0 16px 40px rgba(231, 189, 115, 0.26);
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(248, 243, 232, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-proof span {
  padding: 0.5rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.section {
  padding: clamp(4.5rem, 10vw, 8rem) clamp(1rem, 4vw, 3rem);
}

.service-area {
  padding: 1rem clamp(1rem, 4vw, 3rem);
  color: var(--muted);
  text-align: center;
  background: rgba(231, 189, 115, 0.08);
  border-block: 1px solid rgba(231, 189, 115, 0.16);
}

.service-area p {
  max-width: 56rem;
  margin: 0 auto;
  line-height: 1.6;
}

.section-heading {
  max-width: 48rem;
  margin: 0 auto 2rem;
  text-align: left;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.benefit-grid,
.step-grid,
.trust-grid,
.comparison-grid {
  display: grid;
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
}

.benefit-card,
.step,
.trust-item,
details,
form[name="quote-request"],
.photo-panel,
.comparison-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.benefit-card {
  padding: 1.2rem;
}

.benefit-card p,
.step p,
details p,
.quote-copy p,
.quote-list {
  color: var(--muted);
  line-height: 1.7;
}

.icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(231, 189, 115, 0.1);
}

.icon svg,
.socials svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.examples {
  background: linear-gradient(180deg, rgba(141, 168, 140, 0.08), transparent);
}

.example-layout {
  display: grid;
  gap: 1rem;
  max-width: 78rem;
  margin: 0 auto;
}

.photo-panel {
  position: relative;
  overflow: hidden;
}

.photo-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 600ms ease;
}

.photo-panel:hover img {
  transform: scale(1.035);
}

.photo-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(8, 10, 12, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.comparison {
  background:
    linear-gradient(180deg, rgba(111, 157, 180, 0.08), transparent),
    rgba(255, 255, 255, 0.01);
}

.comparison-grid {
  max-width: 64rem;
}

.comparison-card {
  padding: 1.25rem;
}

.comparison-card h3 {
  font-size: 1.25rem;
}

.comparison-card ul {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  line-height: 1.55;
}

.comparison-card li {
  position: relative;
  padding-left: 1.55rem;
}

.comparison-card li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(231, 189, 115, 0.5);
}

.comparison-muted {
  background: rgba(255, 255, 255, 0.025);
}

.comparison-muted li::before {
  background: var(--dim);
  box-shadow: none;
}

.step {
  padding: 1.25rem;
}

.step span {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-weight: 820;
}

.quote-section {
  display: grid;
  gap: 2rem;
  padding: clamp(4.5rem, 10vw, 8rem) clamp(1rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, rgba(111, 157, 180, 0.13), transparent 42%),
    #0d1113;
}

.quote-copy {
  max-width: 38rem;
}

.quote-list {
  display: grid;
  gap: 0.55rem;
  padding-left: 1.15rem;
}

.pricing-note {
  padding: 1rem;
  border: 1px solid rgba(231, 189, 115, 0.18);
  border-radius: var(--radius);
  background: rgba(231, 189, 115, 0.07);
}

form[name="quote-request"] {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  background: rgba(248, 243, 232, 0.05);
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 720;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(248, 243, 232, 0.15);
  border-radius: var(--radius);
  padding: 0.95rem 1rem;
  color: var(--ink);
  background: rgba(3, 5, 6, 0.62);
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(231, 189, 115, 0.75);
  box-shadow: 0 0 0 3px rgba(231, 189, 115, 0.14);
}

form[name="quote-request"] button[type="submit"] {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0.95rem 1.35rem;
  color: #11100c;
  background: linear-gradient(135deg, #ffe2a0, var(--gold));
  box-shadow: 0 16px 40px rgba(231, 189, 115, 0.26);
  font-weight: 790;
  width: 100%;
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease;
}

form[name="quote-request"] button[type="submit"]:hover {
  transform: translateY(-2px);
}

form[name="quote-request"] button[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.form-note {
  margin: 0;
  color: var(--dim);
  font-size: 0.86rem;
  line-height: 1.5;
}

.trust {
  background: rgba(255, 255, 255, 0.025);
}

.trust-item {
  padding: 1.2rem;
  color: var(--ink);
  font-weight: 780;
}

.trust-item::before {
  content: "";
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(141, 168, 140, 0.65);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  max-width: 54rem;
  margin: 0 auto;
}

details {
  padding: 1rem 1.1rem;
}

summary {
  cursor: pointer;
  font-weight: 780;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--gold);
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0.75rem 0 0;
}

.site-footer {
  display: grid;
  gap: 1.4rem;
  padding: 2rem clamp(1rem, 4vw, 3rem) 6rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #070809;
}

.footer-brand {
  color: var(--ink);
}

address {
  display: grid;
  gap: 0.45rem;
  font-style: normal;
}

.socials {
  display: flex;
  gap: 0.7rem;
}

.socials a {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
}

.mobile-action-bar {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 30;
  display: grid;
  grid-template-columns: 3.3rem 1fr;
  gap: 0.7rem;
}

.mobile-sticky-cta,
.mobile-call {
  display: flex;
  min-height: 3.3rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 820;
}

.mobile-sticky-cta {
  color: #11100c;
  background: linear-gradient(135deg, #ffe2a0, var(--gold));
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.5);
}

.mobile-call {
  color: var(--ink);
  background: rgba(8, 10, 12, 0.92);
  border: 1px solid rgba(248, 243, 232, 0.2);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.5);
}

.mobile-call svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thank-you-page {
  min-height: 100svh;
}

.thank-you-shell {
  min-height: 100svh;
  display: grid;
  align-content: center;
  gap: 2rem;
  padding: clamp(1.25rem, 4vw, 3rem);
  background:
    linear-gradient(90deg, rgba(4, 6, 8, 0.94), rgba(8, 10, 12, 0.76)),
    url("assets/hero-home.webp") center / cover;
}

.thank-you-brand {
  width: fit-content;
}

.thank-you-panel {
  max-width: 44rem;
}

.thank-you-panel h1 {
  max-width: none;
}

.thank-you-panel p:not(.eyebrow) {
  max-width: 35rem;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

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

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

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

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

  form[name="quote-request"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 1.35rem;
  }

  form[name="quote-request"] label:nth-of-type(4),
  form[name="quote-request"] label:nth-of-type(7),
  form[name="quote-request"] button[type="submit"],
  .form-note {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .nav-links,
  .header-cta {
    display: flex;
  }

  .nav-links {
    gap: 1.4rem;
    color: var(--muted);
    font-size: 0.92rem;
  }

  .header-cta {
    align-items: center;
    min-height: 2.65rem;
    padding: 0 1rem;
    border: 1px solid rgba(231, 189, 115, 0.45);
    border-radius: var(--radius);
    color: var(--gold);
  }

  .hero {
    align-items: center;
  }

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

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

  .example-layout,
  .step-grid,
  .quote-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .quote-section {
    align-items: center;
  }

  .site-footer {
    grid-template-columns: 1fr auto auto;
    align-items: center;
    padding-bottom: 2rem;
  }

  .mobile-action-bar {
    display: none;
  }
}

@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;
  }

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