:root {
  --ink: #1f1b18;
  --text: #2b2723;
  --muted: #716b63;
  --paper: #f7f3ec;
  --paper-2: #ede7dd;
  --surface: #fffaf1;
  --white: #ffffff;
  --line: rgba(31, 27, 24, 0.13);
  --gold: #d99a32;
  --gold-2: #f2bf62;
  --clay: #9b4f32;
  --plum: #3b2838;
  --charcoal: #181614;
  --shadow: 0 24px 70px rgba(31, 27, 24, 0.16);
  --soft-shadow: 0 14px 38px rgba(31, 27, 24, 0.1);
  --radius: 8px;
  --wrap: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(217, 154, 50, 0.12), transparent 32%),
    linear-gradient(315deg, rgba(155, 79, 50, 0.1), transparent 34%),
    var(--paper);
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p,
li,
label,
input,
select,
textarea,
button {
  overflow-wrap: anywhere;
}

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

h1 {
  margin-bottom: 20px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 6vw, 6.4rem);
  line-height: 0.88;
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: 0;
}

p {
  margin-bottom: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(31, 27, 24, 0.08);
  background: rgba(247, 243, 236, 0.88);
  backdrop-filter: blur(18px);
}

.nav {
  width: var(--wrap);
  min-height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: var(--charcoal);
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
  font-size: 0.88rem;
  font-weight: 800;
}

.nav-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 7px;
  color: rgba(31, 27, 24, 0.78);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus {
  background: rgba(31, 27, 24, 0.07);
  color: var(--ink);
  transform: translateY(-1px);
}

.button,
button.button {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid var(--ink);
  border-radius: 7px;
  background: var(--ink);
  color: var(--white);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(31, 27, 24, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(31, 27, 24, 0.18);
}

.button.secondary {
  border-color: rgba(31, 27, 24, 0.16);
  background: rgba(255, 250, 241, 0.82);
  color: var(--ink);
  box-shadow: none;
}

.button.gold {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #21170c;
}

.phone-button {
  border-color: rgba(217, 154, 50, 0.48);
  background: linear-gradient(135deg, #1f1b18, #3b2838);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(31, 27, 24, 0.18);
  white-space: nowrap;
}

.phone-button::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold-2);
  box-shadow: 0 0 0 5px rgba(242, 191, 98, 0.17);
}

.nav-links .phone-button {
  min-height: 38px;
  padding: 8px 13px;
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
}

.hero-inner {
  width: var(--wrap);
  min-height: calc(100svh - 58px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(36px, 6vw, 78px);
  padding: clamp(54px, 8vw, 96px) 0;
}

.hero-card {
  max-width: 720px;
}

.hero-logo {
  width: min(172px, 50vw);
  margin-bottom: 26px;
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: var(--soft-shadow);
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--gold);
}

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

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
}

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

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-photo.primary {
  inset: 0 0 70px 76px;
}

.hero-photo.secondary {
  left: 0;
  bottom: 0;
  width: 58%;
  height: 42%;
  border: 8px solid var(--paper);
}

.hero-badge {
  position: absolute;
  right: 0;
  bottom: 18px;
  max-width: 230px;
  border: 1px solid rgba(31, 27, 24, 0.11);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.94);
  box-shadow: var(--soft-shadow);
  padding: 18px;
}

.hero-badge strong {
  display: block;
  color: var(--ink);
  font-size: 1.45rem;
}

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

.trust-row {
  width: var(--wrap);
  margin: -28px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stat {
  min-height: 116px;
  border: 1px solid rgba(31, 27, 24, 0.1);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.92);
  box-shadow: var(--soft-shadow);
  padding: 20px;
}

.stat strong {
  display: block;
  color: var(--ink);
  font-size: 1.12rem;
}

.stat span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.94rem;
}

.page-hero {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.94), rgba(237, 231, 221, 0.94)),
    url("images/451932_223935.png") center / cover no-repeat;
}

.page-hero .section-inner {
  padding-top: 80px;
  padding-bottom: 70px;
}

.section {
  padding: clamp(66px, 8vw, 104px) 0;
}

.section.alt {
  background: rgba(255, 250, 241, 0.58);
}

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

.section.band h2,
.section.band h3 {
  color: var(--white);
}

.section.band p {
  color: rgba(255, 255, 255, 0.76);
}

.section-inner {
  width: var(--wrap);
  margin: 0 auto;
}

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

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

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

.card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 27, 24, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.82);
  box-shadow: 0 10px 32px rgba(31, 27, 24, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 154, 50, 0.5);
  box-shadow: var(--soft-shadow);
}

.card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  background: var(--paper-2);
}

.card-body {
  padding: 24px;
}

.card p,
.split p,
.check-list {
  color: var(--muted);
}

.card .button {
  margin-top: 6px;
}

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

.service-pill {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.service-pill strong {
  display: block;
  color: var(--gold-2);
}

.service-pill span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(32px, 5vw, 62px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
}

.split img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 14px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold);
}

.zone-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.zone-list li {
  border: 1px solid rgba(31, 27, 24, 0.1);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.82);
  padding: 13px 15px;
  font-weight: 850;
  box-shadow: 0 8px 22px rgba(31, 27, 24, 0.05);
}

.contact-hero {
  background:
    linear-gradient(115deg, rgba(247, 243, 236, 0.97) 0%, rgba(247, 243, 236, 0.86) 47%, rgba(247, 243, 236, 0.2) 100%),
    url("images/151842_83721.png") center right / cover no-repeat;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: start;
}

.contact-panel,
.form-panel {
  border: 1px solid rgba(31, 27, 24, 0.1);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.88);
  box-shadow: var(--soft-shadow);
}

.contact-panel {
  padding: 30px;
}

.contact-panel .hero-logo {
  width: 144px;
  margin-bottom: 24px;
}

.contact-panel p:last-child {
  margin-bottom: 0;
}

.form-panel {
  overflow: hidden;
}

.form-head {
  border-bottom: 1px solid var(--line);
  background: var(--charcoal);
  color: var(--white);
  padding: 28px;
}

.form-head h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
}

.form-head p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(31, 27, 24, 0.17);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
  padding: 11px 13px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(217, 154, 50, 0.92);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(217, 154, 50, 0.18);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

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

.notice {
  border-left: 4px solid var(--gold);
  background: rgba(255, 250, 241, 0.9);
  padding: 16px 18px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.74);
}

.footer-inner {
  width: var(--wrap);
  margin: 0 auto;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 0.92rem;
}

.footer-phone {
  color: var(--gold-2);
  font-weight: 900;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--delay, 0ms);
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

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

@media (max-width: 980px) {
  .hero-inner,
  .split,
  .split.reverse,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

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

  .grid,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .service-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zone-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --wrap: min(100% - 28px, 1120px);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    min-height: 0;
    padding: 10px 0;
    gap: 8px;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 2px;
    font-size: 0.84rem;
  }

  .nav-links a {
    min-height: 34px;
    padding: 6px 8px;
  }

  .hero-inner,
  .section,
  .page-hero .section-inner {
    padding-top: 46px;
    padding-bottom: 54px;
  }

  .hero-logo {
    width: 142px;
  }

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

  .hero-photo.primary {
    inset: 0 0 50px 36px;
  }

  .hero-photo.secondary {
    width: 64%;
    height: 38%;
  }

  .hero-badge {
    max-width: 190px;
    padding: 14px;
  }

  .trust-row {
    grid-template-columns: 1fr;
    margin-top: -12px;
  }

  .field-row,
  .service-strip,
  .zone-list {
    grid-template-columns: 1fr;
  }

  .button,
  form .button {
    width: 100%;
  }

  .nav-links .phone-button {
    width: auto;
  }

  .footer-inner {
    flex-direction: column;
  }
}
