:root {
  --brown-950: #160c07;
  --brown-900: #231309;
  --brown-800: #351d0d;
  --copper-700: #8d5524;
  --copper-600: #b87935;
  --gold-400: #f0c06e;
  --cream-100: #fff8ed;
  --cream-200: #f7e6c8;
  --paper: #fffcf6;
  --text: #24150c;
  --muted: #715c45;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(28, 13, 4, 0.22);
  --radius-xl: 32px;
  --radius-md: 18px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

.shell {
  width: min(var(--max-width), calc(100% - 32px));
  margin-inline: auto;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--brown-950);
  background: var(--gold-400);
  border-radius: 999px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 16px 0;
  background: linear-gradient(180deg, rgba(22, 12, 7, 0.82), rgba(22, 12, 7, 0));
  transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  padding: 10px 0;
  background: rgba(22, 12, 7, 0.94);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(var(--max-width), calc(100% - 32px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--cream-100);
}

.brand-symbol {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--brown-950);
  font-weight: 900;
  letter-spacing: 0.08em;
  background: radial-gradient(circle at 30% 20%, var(--cream-100), var(--gold-400) 58%, var(--copper-600));
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35), 0 12px 28px rgba(0, 0, 0, 0.24);
}

.brand-name {
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.menu {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cream-100);
}

.menu a {
  padding: 10px 15px;
  border: 1px solid rgba(255, 248, 237, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, background 0.2s ease;
}

.menu a:hover,
.menu a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 248, 237, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--cream-100);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-button.active .menu-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button.active .menu-line:nth-child(2) {
  opacity: 0;
}

.menu-button.active .menu-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  isolation: isolate;
  padding: 118px 0 76px;
  overflow: hidden;
  color: var(--cream-100);
  background:
    radial-gradient(circle at 18% 20%, rgba(240, 192, 110, 0.34), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(184, 121, 53, 0.28), transparent 26%),
    linear-gradient(135deg, var(--brown-950), var(--brown-800) 52%, var(--brown-900));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(255, 248, 237, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 248, 237, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.95), rgba(0,0,0,0.32));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.74fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
}

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

.overline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--gold-400);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.overline::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.overline.dark {
  color: var(--copper-700);
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(4rem, 12vw, 8.8rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  line-height: 1.05;
}

.lead {
  max-width: 580px;
  margin-bottom: 28px;
  color: rgba(255, 248, 237, 0.84);
  font-size: clamp(1.15rem, 2.7vw, 1.65rem);
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  outline: none;
}

.button.primary {
  color: var(--brown-950);
  background: linear-gradient(135deg, var(--cream-100), var(--gold-400) 55%, var(--copper-600));
  box-shadow: 0 18px 42px rgba(184, 121, 53, 0.35);
}

.button.secondary {
  color: var(--cream-100);
  border-color: rgba(255, 248, 237, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.button.full {
  width: 100%;
}

.feature-card {
  position: relative;
  padding: clamp(26px, 5vw, 42px);
  border: 1px solid rgba(255, 248, 237, 0.2);
  border-radius: var(--radius-xl);
  background: linear-gradient(150deg, rgba(255, 248, 237, 0.16), rgba(255, 248, 237, 0.06));
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  right: -72px;
  top: -72px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 192, 110, 0.36), transparent 70%);
}

.feature-badge {
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--brown-950);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  background: radial-gradient(circle at 25% 20%, var(--cream-100), var(--gold-400) 58%, var(--copper-600));
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.4), 0 18px 38px rgba(0, 0, 0, 0.24);
}

.card-title,
.card-location {
  margin-bottom: 8px;
  color: rgba(255, 248, 237, 0.76);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-number,
.big-phone {
  display: inline-block;
  color: var(--gold-400);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  word-break: break-word;
}

.divider {
  display: block;
  width: 100%;
  height: 1px;
  margin: 24px 0;
  background: rgba(255, 248, 237, 0.22);
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.orb,
.line-art {
  position: absolute;
  display: block;
}

.orb {
  border-radius: 50%;
  filter: blur(1px);
}

.orb-one {
  right: 9%;
  bottom: 7%;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(240, 192, 110, 0.32);
  background: rgba(240, 192, 110, 0.06);
}

.orb-two {
  left: 4%;
  bottom: 14%;
  width: 96px;
  height: 96px;
  background: rgba(184, 121, 53, 0.2);
}

.line-art {
  width: 28vw;
  height: 1px;
  background: rgba(255, 248, 237, 0.18);
  transform: rotate(-32deg);
}

.line-one {
  top: 32%;
  right: 0;
}

.line-two {
  left: 5%;
  bottom: 22%;
}

.section {
  padding: clamp(74px, 10vw, 124px) 0;
}

.section-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 22px;
  align-items: stretch;
}

.section-title {
  padding-right: 18px;
}

.content-card {
  min-height: 280px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(141, 85, 36, 0.16);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(38, 19, 5, 0.08);
}

.content-card p,
.coverage-text p,
.contact-box p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.content-card.accent {
  color: var(--cream-100);
  background: linear-gradient(145deg, var(--brown-900), var(--brown-800));
}

.content-card.accent p {
  color: rgba(255, 248, 237, 0.82);
}

.coverage {
  padding: clamp(74px, 10vw, 124px) 0;
  background:
    radial-gradient(circle at 85% 12%, rgba(184, 121, 53, 0.16), transparent 28%),
    linear-gradient(180deg, var(--cream-100), var(--cream-200));
}

.coverage-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(26px, 6vw, 78px);
}

.coverage-panel {
  min-height: 360px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(90deg, rgba(141, 85, 36, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(141, 85, 36, 0.08) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 248, 237, 0.58));
  background-size: 44px 44px, 44px 44px, auto;
  box-shadow: inset 0 0 0 1px rgba(141, 85, 36, 0.12), var(--shadow);
}

.state-card {
  position: relative;
  width: min(360px, 84%);
  aspect-ratio: 1.45;
  display: grid;
  place-items: center;
  border-radius: 34px;
  color: var(--cream-100);
  font-size: clamp(1.8rem, 5vw, 3.3rem);
  background: linear-gradient(135deg, var(--brown-900), var(--copper-700));
  overflow: hidden;
}

.state-card::before,
.state-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.state-card::before {
  width: 220px;
  height: 220px;
  right: -70px;
  top: -80px;
  background: rgba(240, 192, 110, 0.24);
}

.state-card::after {
  width: 110px;
  height: 110px;
  left: -30px;
  bottom: -32px;
  background: rgba(255, 248, 237, 0.16);
}

.state-card strong {
  position: relative;
  z-index: 2;
}

.pulse {
  position: absolute;
  z-index: 1;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 18px rgba(240, 192, 110, 0.18), 0 0 0 40px rgba(240, 192, 110, 0.08);
  animation: pulse 2.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(0.9);
    opacity: 0.86;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.contact-box {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: center;
  padding: clamp(28px, 6vw, 54px);
  border-radius: var(--radius-xl);
  color: var(--cream-100);
  background:
    radial-gradient(circle at 92% 8%, rgba(240, 192, 110, 0.22), transparent 28%),
    linear-gradient(135deg, var(--brown-950), var(--brown-800));
  box-shadow: var(--shadow);
}

.contact-box .overline.dark {
  color: var(--gold-400);
}

.contact-box p {
  color: rgba(255, 248, 237, 0.78);
}

.contact-actions {
  justify-content: flex-end;
}

.big-phone {
  width: 100%;
  text-align: right;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  color: var(--brown-950);
  background: linear-gradient(135deg, var(--cream-100), var(--gold-400));
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.floating-contact span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(22, 12, 7, 0.1);
}

.footer {
  padding: 34px 0;
  color: var(--cream-100);
  background: var(--brown-950);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 22px;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--gold-400);
  font-weight: 800;
}

@media (max-width: 920px) {
  .menu-button {
    display: inline-block;
  }

  .menu {
    position: fixed;
    top: 82px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(255, 248, 237, 0.18);
    border-radius: 24px;
    background: rgba(22, 12, 7, 0.96);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

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

  .menu a {
    border-radius: 16px;
    padding: 14px;
  }

  .hero-grid,
  .section-grid,
  .coverage-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .feature-card {
    max-width: 560px;
  }

  .content-card {
    min-height: auto;
  }

  .coverage-panel {
    min-height: 300px;
  }

  .big-phone {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .shell,
  .nav {
    width: min(100% - 24px, var(--max-width));
  }

  .site-header {
    padding: 12px 0;
  }

  .brand-symbol {
    width: 46px;
    height: 46px;
    font-size: 0.78rem;
  }

  .brand-name {
    max-width: 190px;
    white-space: normal;
    line-height: 1.1;
  }

  .hero {
    padding: 106px 0 58px;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5.1rem);
  }

  .hero-actions,
  .hero-actions .button,
  .contact-actions,
  .button.full {
    width: 100%;
  }

  .phone-number,
  .big-phone {
    font-size: clamp(1.9rem, 10vw, 2.55rem);
  }

  .feature-badge {
    width: 104px;
    height: 104px;
  }

  .section,
  .coverage {
    padding: 66px 0;
  }

  .floating-contact {
    left: 14px;
    right: 14px;
    justify-content: center;
  }

  .footer {
    padding-bottom: 102px;
  }
}

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