/*
  Crispy Clean colors:
  Update these CSS variables to change the full color palette.
*/
:root {
  --black: #070707;
  --charcoal: #111111;
  --charcoal-light: #181818;
  --white: #ffffff;
  --off-white: #f3efe7;
  --muted: #c6bca8;
  --gold: #c6a15b;
  --gold-soft: #a98445;
  --gold-dark: #6f5528;
  --border: rgba(198, 161, 91, 0.28);
  --shadow: 0 22px 55px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--off-white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

img {
  max-width: 100%;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 7, 7, 0.88);
  border-bottom: 1px solid rgba(198, 161, 91, 0.16);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.logo::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 2px;
  background: var(--gold);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.96rem;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--gold);
}

.call-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.call-button {
  display: none;
  color: var(--black);
  background: var(--gold);
}

.button.primary {
  color: var(--black);
  background: var(--gold);
}

.button.secondary {
  color: var(--gold);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.03);
}

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

.button.primary:hover,
.button.primary:focus,
.call-button:hover,
.call-button:focus {
  background: #d2b06e;
}

.button.secondary:hover,
.button.secondary:focus {
  border-color: var(--gold);
  background: rgba(198, 161, 91, 0.1);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--gold);
}

.hero {
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.96), rgba(7, 7, 7, 0.72)),
    radial-gradient(circle at 78% 20%, rgba(198, 161, 91, 0.14), transparent 36%),
    var(--black);
}

.hero-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 8vw, 5.4rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 3.45rem);
}

h3 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.3;
}

.hero-text {
  max-width: 680px;
  color: var(--off-white);
  font-size: 1.08rem;
}

.trust-line {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--muted);
}

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

.hero-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--charcoal);
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(198, 161, 91, 0.18);
  border-radius: calc(var(--radius) - 6px);
  pointer-events: none;
}

.gold-line {
  width: 72px;
  height: 3px;
  margin-bottom: 42px;
  background: var(--gold);
}

.card-kicker {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-card h2 {
  max-width: 420px;
  font-size: clamp(1.85rem, 5vw, 3rem);
}

.hero-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.hero-list li {
  padding-left: 22px;
  position: relative;
}

.hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.card-grid,
.benefit-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

.service-card,
.benefit,
.process-step,
.quote-form,
.faq-list {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--charcoal);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.service-card {
  min-height: 220px;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 161, 91, 0.66);
  background: var(--charcoal-light);
}

.service-icon {
  width: 42px;
  height: 42px;
  display: inline-block;
  margin-bottom: 26px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: relative;
}

.service-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--gold);
  transform: translate(-50%, -50%);
}

.service-card p,
.benefit p,
.process-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-section {
  background: linear-gradient(180deg, rgba(198, 161, 91, 0.06), rgba(198, 161, 91, 0));
  border-top: 1px solid rgba(198, 161, 91, 0.11);
  border-bottom: 1px solid rgba(198, 161, 91, 0.11);
}

.feature-grid {
  display: grid;
  gap: 28px;
}

.benefit {
  padding: 22px;
}

.benefit h3 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefit h3::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(198, 161, 91, 0.11);
}

.process-step {
  padding: 24px;
}

.process-step span {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--black);
  background: var(--gold);
  font-weight: 900;
}

.quote-section {
  background: var(--charcoal);
}

.quote-grid {
  display: grid;
  gap: 30px;
  align-items: start;
}

.quote-contact {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.quote-contact a,
.site-footer a {
  color: var(--gold);
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: 22px;
  background: #0d0d0d;
}

.form-row {
  display: grid;
  gap: 7px;
}

label {
  color: var(--off-white);
  font-size: 0.92rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  color: var(--white);
  border: 1px solid rgba(198, 161, 91, 0.24);
  border-radius: 8px;
  background: #070707;
  padding: 12px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.16);
}

select option {
  background: #070707;
  color: var(--white);
}

.form-button {
  width: 100%;
  border: 0;
}

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

.faq-container {
  max-width: 900px;
}

.faq-list {
  overflow: hidden;
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(198, 161, 91, 0.17);
}

.faq-question {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--white);
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--black);
  background: var(--gold);
  font-weight: 800;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-item.active .faq-question span {
  content: "-";
}

.final-cta {
  padding-top: 46px;
}

.final-cta-inner {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(198, 161, 91, 0.15), rgba(255, 255, 255, 0.03)),
    var(--charcoal);
  box-shadow: var(--shadow);
}

.final-cta-inner p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
}

.site-footer {
  padding: 42px 0 22px;
  border-top: 1px solid rgba(198, 161, 91, 0.16);
  background: #050505;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.site-footer h2 {
  margin-bottom: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer p {
  color: var(--muted);
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(198, 161, 91, 0.13);
  color: var(--muted);
  font-size: 0.9rem;
}

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

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

@media (max-width: 767px) {
  .nav-links {
    position: fixed;
    inset: 74px 16px auto;
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #090909;
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .nav-links a {
    padding: 12px;
  }
}

@media (min-width: 640px) {
  .quote-form {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px;
  }

  .form-row.full,
  .form-button,
  .form-note {
    grid-column: 1 / -1;
  }

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

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

@media (min-width: 900px) {
  .section {
    padding: 96px 0;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links,
  .call-button {
    display: flex;
  }

  .hero-grid,
  .quote-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  }

  .feature-grid {
    grid-template-columns: 0.78fr 1.22fr;
    align-items: start;
  }

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

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

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

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

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

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