:root {
  --ink: #202126;
  --muted: #65616b;
  --purple: #78539a;
  --purple-dark: #3e2857;
  --gold: #b99355;
  --gold-soft: #efe4cf;
  --mist: #f7f5f8;
  --line: #e6dfeb;
  --charcoal: #18191d;
  --green: #1fae62;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(31, 28, 36, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
  padding: 10px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(32, 33, 38, 0.06);
  backdrop-filter: blur(20px);
}

.brand img {
  width: 190px;
  height: 62px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.88rem;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--purple);
}

.site-nav a:not(.nav-call)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:not(.nav-call):hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-call {
  color: var(--white);
  background: var(--charcoal);
  padding: 11px 15px;
  border-radius: 6px;
  box-shadow: 0 10px 22px rgba(24, 25, 29, 0.16);
}

.nav-call:hover {
  color: var(--white) !important;
  background: var(--purple);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
  padding: 10px 12px;
  font-weight: 800;
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  align-items: center;
  gap: clamp(28px, 6vw, 86px);
  padding: clamp(38px, 8vw, 92px) clamp(18px, 6vw, 88px);
  background:
    linear-gradient(110deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.91) 44%, rgba(247,245,248,0.72) 100%),
    url("https://images.pexels.com/photos/4440540/pexels-photo-4440540.jpeg?auto=compress&cs=tinysrgb&w=1600") center / cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(185, 147, 85, 0.14), rgba(255, 255, 255, 0) 38%);
  content: "";
}

.hero-copy {
  position: relative;
  max-width: 760px;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--purple-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.8rem, 7vw, 6.2rem);
  line-height: 0.98;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  color: var(--charcoal);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  line-height: 1.2;
}

.hero-text {
  margin: 22px 0 0;
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  max-width: 590px;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.social-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(185, 147, 85, 0.34);
  border-radius: 6px;
  padding: 8px 12px;
  color: var(--purple-dark);
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
}

.social-links a:hover {
  border-color: var(--purple);
  background: var(--white);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 4px;
  padding: 14px 20px;
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--charcoal), var(--purple-dark));
  box-shadow: 0 16px 34px rgba(24, 25, 29, 0.22);
}

.secondary {
  color: var(--purple-dark);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(185, 147, 85, 0.34);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span {
  border: 1px solid rgba(185, 147, 85, 0.28);
  background: rgba(255,255,255,0.82);
  border-radius: 4px;
  padding: 9px 13px;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-panel {
  position: relative;
  z-index: 1;
  padding: 28px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(185, 147, 85, 0.32);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 100%;
  max-height: 290px;
  object-fit: contain;
  margin: 0 auto;
}

.hero-panel p {
  margin: 20px 0 12px;
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-stat {
  display: grid;
  gap: 2px;
  margin: 18px 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-stat strong {
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.hero-stat span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-panel a {
  color: var(--purple-dark);
  font-weight: 800;
  word-break: break-word;
}

.section {
  padding: clamp(64px, 8vw, 108px) clamp(18px, 6vw, 88px);
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(26px, 6vw, 82px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(24,25,29,0.98), rgba(62,40,87,0.94)),
    url("https://images.pexels.com/photos/4107284/pexels-photo-4107284.jpeg?auto=compress&cs=tinysrgb&w=1400") center / cover;
  color: var(--white);
}

.intro p:last-child {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 1.12rem;
}

.intro .eyebrow,
.why .eyebrow,
.offers .eyebrow {
  color: var(--gold-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.signature {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  background: var(--white);
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 18px 46px rgba(32, 33, 38, 0.08);
}

.signature-grid div {
  min-height: 220px;
  padding: 26px;
  background: linear-gradient(180deg, var(--white), #fbfafc);
}

.signature-grid span {
  display: block;
  margin-bottom: 30px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  line-height: 1;
}

.signature-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--charcoal);
  font-size: 1.08rem;
}

.signature-grid p {
  margin: 0;
  color: var(--muted);
}

.services {
  background: linear-gradient(180deg, var(--mist), #fff);
}

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

.service-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(185, 147, 85, 0.22);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(36, 37, 42, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(36, 37, 42, 0.13);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
}

.service-card div {
  padding: 22px;
}

.service-card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.service-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink);
  font-size: 0.95rem;
}

.service-card li::marker {
  color: var(--gold);
}

.service-card li + li {
  margin-top: 6px;
}

.why {
  background: var(--charcoal);
  color: var(--white);
}

.why h2 {
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.why-grid div {
  border-top: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.06);
  padding: 24px;
  border-radius: 8px;
}

.why-grid strong,
.why-grid span {
  display: block;
}

.why-grid strong {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.why-grid span {
  color: rgba(255, 255, 255, 0.68);
}

.offers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(24,25,29,0.94), rgba(62,40,87,0.92)),
    url("https://images.pexels.com/photos/10568362/pexels-photo-10568362.jpeg?auto=compress&cs=tinysrgb&w=1400") center / cover;
}

.offers h2 {
  max-width: 760px;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1.16fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
  background:
    linear-gradient(180deg, #fff, var(--mist));
}

.quote-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(185, 147, 85, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.contact-list a,
.contact-list span {
  display: block;
  color: var(--purple-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  background: var(--white);
  border: 1px solid rgba(185, 147, 85, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #d8d0df;
  border-radius: 6px;
  padding: 14px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(116, 80, 150, 0.18);
  border-color: var(--purple);
}

.wide,
.form-actions,
.form-note {
  grid-column: 1 / -1;
}

.form-actions {
  margin-top: 4px;
}

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

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(18px, 6vw, 88px);
  color: var(--white);
  background: var(--charcoal);
}

.site-footer img {
  width: 148px;
  height: 58px;
  object-fit: contain;
  background: var(--white);
  border-radius: 6px;
  padding: 4px;
}

.site-footer p {
  margin: 0;
  color: rgba(255,255,255,0.76);
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 800;
}

.live-agent {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  gap: 2px;
  max-width: min(260px, calc(100vw - 36px));
  padding: 13px 16px;
  color: var(--white);
  background: linear-gradient(135deg, #16884d, var(--green));
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(31, 174, 98, 0.32);
}

.live-agent span {
  font-size: 0.8rem;
  font-weight: 700;
}

.live-agent strong {
  font-size: 1rem;
}

@media (max-width: 1120px) {
  .service-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-top: 1px solid var(--line);
    padding: 13px 0;
  }

  .nav-call {
    margin-top: 8px;
    text-align: center;
  }

  .hero,
  .intro,
  .quote-section {
    grid-template-columns: 1fr;
  }

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

  .signature-grid div {
    min-height: auto;
  }

  .hero {
    min-height: auto;
  }

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

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

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

@media (max-width: 620px) {
  .brand img {
    width: 150px;
  }

  .service-grid,
  .why-grid,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .social-links a {
    width: calc(33.333% - 7px);
    min-width: 92px;
  }

  .trust-row span {
    width: calc(50% - 5px);
    text-align: center;
  }

  .live-agent {
    right: 12px;
    bottom: 12px;
  }
}
