:root {
  --ink: #111317;
  --muted: #5e6269;
  --paper: #fffdfa;
  --cream: #fff8e7;
  --gold: #f5b400;
  --gold-dark: #8a5f00;
  --orange: #c43e0d;
  --line: #e9e2d4;
  --radius: 22px;
  --shadow: 0 22px 60px rgba(18, 20, 24, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(17, 19, 23, 0.08);
  background: rgba(255, 253, 250, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.brand img {
  width: 76px;
  height: 78px;
  object-fit: cover;
  object-position: 50% 45%;
  border-radius: 12px;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 23px;
  letter-spacing: -0.55px;
}

.brand-copy strong span {
  color: var(--gold-dark);
}

.brand-copy small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding-block: 10px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 3px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-phones {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  border-radius: 11px;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease;
}

.header-phone:nth-child(2) {
  background: var(--orange);
}

.header-phone:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 20%, rgba(245, 180, 0, 0.15), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fffaf0 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 72px;
  right: -110px;
  width: 320px;
  aspect-ratio: 1;
  border: 2px solid rgba(245, 180, 0, 0.2);
  transform: rotate(30deg);
  clip-path: polygon(25% 7%, 75% 7%, 100% 50%, 75% 93%, 25% 93%, 0 50%);
}

.hero-grid {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
  padding-block: 86px 92px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-weight: inherit;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(48px, 6.2vw, 84px);
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 31px;
  color: #44484e;
  font-size: clamp(17px, 1.6vw, 20px);
}

.phone-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.phone-button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border: 2px solid var(--ink);
  border-radius: 13px;
  background: var(--ink);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(17, 19, 23, 0.14);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.phone-button:nth-child(2) {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.phone-button:hover {
  transform: translateY(-3px);
  border-color: var(--gold-dark);
  background: var(--gold-dark);
  color: #fff;
}

.phone-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 16px;
}

.phone-button:nth-child(2) .phone-icon {
  background: rgba(255, 255, 255, 0.16);
}

.trust-line {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.height-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(17, 19, 23, 0.08);
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}

.height-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
}

.height-card img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  padding: 18px;
  background: #fff;
  object-fit: contain;
  object-position: center;
}

.hero-note {
  position: absolute;
  right: -18px;
  bottom: -22px;
  max-width: 360px;
  padding: 17px 20px;
  border-left: 5px solid var(--orange);
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(17, 19, 23, 0.2);
}

.quick-answer {
  background: var(--gold);
}

.quick-answer-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.quick-answer-inner strong {
  font-size: 18px;
}

.quick-answer-inner p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.quick-answer-inner a {
  padding: 8px 13px;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.section {
  padding-block: 108px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading--left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2,
.height-copy h2,
.local-copy h2,
.final-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 4.3vw, 59px);
}

.section-heading > p:last-child,
.local-copy > p,
.height-copy > p {
  color: var(--muted);
  font-size: 17px;
}