:root {
  --ink: #101514;
  --ink2: #17201e;
  --paper: #f4efe5;
  --paper2: #ebe1d0;
  --muted: #766d5e;
  --line: rgba(16, 21, 20, .14);
  --rust: #c95b2d;
  --gold: #f2b466;
  --sage: #6f7f67;
  --white: #fffaf1;
  --radius: 26px;
  --shadow: 0 24px 70px rgba(16, 21, 20, .16);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

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

a {
  color: inherit
}

.wrap {
  width: min(1180px, calc(100% - 42px));
  margin: auto
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0)
}

.site-shell {
  display: grid;
  grid-template-columns: 290px 1fr;
  min-height: 100vh
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  background: var(--ink);
  color: var(--paper);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, .08)
}

.side-logo img {
  width: 100%;
  height: auto
}

.nav {
  display: grid;
  gap: 8px;
  margin: 30px 0
}

.nav a {
  text-decoration: none;
  color: rgba(244, 239, 229, .72);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
  padding: 12px 14px;
  border-radius: 999px
}

.nav a:hover,
.nav a.active {
  background: rgba(242, 180, 102, .13);
  color: var(--gold)
}

.side-contact {
  display: grid;
  gap: 12px
}

.side-contact small {
  color: rgba(244, 239, 229, .52);
  text-transform: uppercase;
  letter-spacing: .16em
}

.phone-tile {
  background: linear-gradient(135deg, var(--rust), var(--gold));
  color: #16120c;
  text-decoration: none;
  border-radius: 20px;
  padding: 16px;
  font-weight: 900
}

.menu-btn {
  display: none
}

.main {
  overflow: hidden
}

.hero {
  min-height: 720px;
  background: linear-gradient(120deg, rgba(16, 21, 20, .68), rgba(16, 21, 20, .18)), linear-gradient(135deg, #23322d, #8c5d37);
  color: var(--white);
  position: relative
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 24%, rgba(242, 180, 102, .34), transparent 24%), radial-gradient(circle at 78% 76%, rgba(201, 91, 45, .28), transparent 28%);
  mix-blend-mode: screen
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 34px;
  align-items: end;
  min-height: 720px;
  padding: 64px 0
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(255, 250, 241, .24);
  border-radius: 999px;
  padding: 9px 13px;
  color: rgba(255, 250, 241, .82);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .74rem
}

.eyebrow:before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--gold)
}

h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: .88;
  margin: 22px 0;
  letter-spacing: -.07em;
  max-width: 850px
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: .95;
  letter-spacing: -.05em;
  margin: 0 0 18px
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 250, 241, .78);
  max-width: 680px
}

.hero-panel {
  background: rgba(255, 250, 241, .88);
  color: var(--ink);
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow)
}

.hero-panel h3 {
  font-size: 1.5rem;
  margin: 0 0 12px
}

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

.checklist li {
  display: flex;
  gap: 10px;
  font-weight: 750
}

.checklist li:before {
  content: "✓";
  color: var(--rust);
  font-weight: 1000
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 950;
  border: 1px solid var(--line);
  background: var(--white)
  color: var(--ink);  
}

.btn.primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink)
}

.btn.fire {
  background: linear-gradient(135deg, var(--rust), var(--gold));
  color: #17100b;
  border: 0
}

.strip {
  background: var(--ink);
  color: var(--paper);
  padding: 20px 0
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .1);
  border-radius: 20px;
  overflow: hidden
}

.strip-item {
  background: var(--ink2);
  padding: 20px
}

.strip-item b {
  display: block;
  color: var(--gold);
  font-size: 1.35rem
}

.section {
  padding: 86px 0
}

.intro-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 52px;
  align-items: start
}

.label {
  color: var(--rust);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 1000;
  font-size: .78rem
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 70ch
}

.service-board {
  display: grid;
  gap: 14px
}

.service-row {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 18px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(16, 21, 20, .06)
}

.num {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--paper2);
  display: grid;
  place-items: center;
  font-weight: 1000;
  color: var(--rust)
}

.service-row h3 {
  margin: 0 0 3px;
  font-size: 1.2rem
}

.service-row p {
  margin: 0;
  color: var(--muted)
}

.arrow {
  font-size: 1.6rem;
  color: var(--sage)
}

.feature {
  background: var(--ink);
  color: var(--paper);
  border-radius: 34px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  position: relative;
  overflow: hidden
}

.feature:after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -140px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(201, 91, 45, .24)
}

.feature>* {
  position: relative
}

.feature p {
  color: rgba(244, 239, 229, .72)
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 34px rgba(16, 21, 20, .07)
}

.card h3 {
  margin: 0 0 8px
}

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

.quote-band {
  background: linear-gradient(135deg, var(--sage), #33423c);
  color: var(--white);
  padding: 60px 0
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center
}

.quote-grid p {
  color: rgba(255, 250, 241, .75);
  margin: 0
}

.footer {
  background: #0c100f;
  color: rgba(244, 239, 229, .66);
  padding: 32px 0
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap
}

.footer a {
  color: var(--gold);
  text-decoration: none
}

.form {
  display: grid;
  gap: 14px;
  max-width: 760px
}

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

.field label {
  font-weight: 850
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  padding: 14px 16px;
  font: inherit;
  color: var(--ink)
}

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

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px
}

.contact-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 28px
}

.contact-card a {
  color: var(--gold);
  font-weight: 900;
  text-decoration: none
}

@media(max-width:940px) {
  .site-shell {
    display: block
  }

  .sidebar {
    height: auto;
    position: relative;
    padding: 16px
  }

  .side-logo img {
    width: 250px
  }

  .menu-btn {
    display: inline-flex;
    position: absolute;
    right: 18px;
    top: 28px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: transparent;
    color: var(--paper);
    border-radius: 14px;
    padding: 10px 12px
  }

  .nav {
    display: none
  }

  .nav.open {
    display: grid
  }

  .side-contact {
    display: none
  }

  .hero-inner,
  .intro-grid,
  .feature,
  .quote-grid,
  .contact-layout {
    grid-template-columns: 1fr
  }

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

  .hero-inner {
    padding: 72px 0
  }

  .strip-grid,
  .cards {
    grid-template-columns: 1fr
  }

  .service-row {
    grid-template-columns: 58px 1fr
  }

  .arrow {
    display: none
  }

  .split {
    grid-template-columns: 1fr
  }
}

@media(max-width:560px) {
  .wrap {
    width: min(100% - 28px, 1180px)
  }

  h1 {
    font-size: 3.1rem
  }

  .section {
    padding: 58px 0
  }

  .feature {
    padding: 28px
  }

  .side-logo img {
    width: 210px
  }
}