:root {
  --color-ink: #111827;
  --color-text: #253044;
  --color-muted: #4b5563;
  --color-border: #e5e7eb;
  --color-yellow: #f5b301;
  --color-yellow-dark: #a16207;
  --color-cream: #fff8e7;
  --color-white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(17, 24, 39, 0.12);
  --shadow-small: 0 10px 26px rgba(17, 24, 39, 0.08);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--color-text);
  background: #fffdf7;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  padding-bottom: 76px;
}

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

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

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

h1,
h2,
h3 {
  color: var(--color-ink);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: 2.35rem;
  margin-bottom: 18px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.container {
  width: min(calc(100% - 32px), 1160px);
  margin: 0 auto;
}

.content-narrow {
  width: min(calc(100% - 32px), 840px);
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: var(--color-ink);
  background: var(--color-yellow);
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(229, 231, 235, 0.92);
  backdrop-filter: blur(14px);
}

.site-nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-ink);
  font-weight: 900;
  font-size: 1.05rem;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--color-ink);
  background: var(--color-yellow);
  border: 2px solid var(--color-ink);
  border-radius: var(--radius);
  font-size: 1rem;
}

.site-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 11px;
  color: var(--color-muted);
  border-radius: var(--radius);
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a.is-active {
  color: var(--color-ink);
  background: var(--color-cream);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.header-phone {
  color: var(--color-ink);
  font-weight: 900;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 2px;
  content: "";
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  position: absolute;
  left: 0;
}

.menu-toggle-lines::before {
  top: -7px;
}

.menu-toggle-lines::after {
  top: 7px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  box-shadow: var(--shadow-small);
}

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

.btn-dark {
  color: var(--color-white);
  background: var(--color-ink);
  border-color: var(--color-ink);
}

.btn-light {
  color: var(--color-ink);
  background: var(--color-white);
  border-color: rgba(255, 255, 255, 0.74);
}

.btn-outline {
  color: var(--color-ink);
  background: transparent;
  border-color: rgba(17, 24, 39, 0.24);
}

.btn-large {
  min-height: 52px;
  padding: 14px 22px;
  font-size: 1rem;
}

.hero {
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(64, 42, 14, 0.94)),
    linear-gradient(90deg, var(--color-ink), var(--color-yellow-dark));
  overflow: hidden;
}

.hero-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  padding-top: 44px;
  padding-bottom: 44px;
}

.hero-copy,
.page-hero-grid > div,
.section-heading,
.contact-grid > div,
.split-grid > div {
  min-width: 0;
}

.hero h1,
.hero h2,
.hero h3,
.hero .eyebrow {
  color: var(--color-white);
}

.hero h1 {
  font-size: 2.45rem;
  max-width: 760px;
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  overflow-wrap: break-word;
}

.hero-actions,
.cta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions.center {
  justify-content: center;
}

.hero-phone,
.contact-phone {
  display: inline-flex;
  margin: 20px 0 22px;
  color: var(--color-yellow);
  font-size: 1.85rem;
  line-height: 1.1;
  font-weight: 950;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 10px;
}

.trust-grid span {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  font-weight: 800;
}

.hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--color-yellow-dark);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.section {
  padding: 70px 0;
}

.section-cream {
  background: var(--color-cream);
}

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

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

.card-grid,
.region-grid,
.service-detail-grid,
.contact-method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.service-card,
.region-card,
.service-detail-card,
.contact-method,
.contact-card,
.cta-panel {
  background: var(--color-white);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.service-card,
.region-card,
.service-detail-card,
.contact-method {
  padding: 22px;
}

.service-card p,
.region-card p,
.service-detail-card p,
.contact-method p,
.contact-card p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.icon-badge {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--color-ink);
  background: var(--color-yellow);
  border-radius: var(--radius);
  font-weight: 950;
}

.split-grid,
.contact-grid,
.image-band-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list.compact {
  margin-top: 20px;
}

.feature-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  background: var(--color-white);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius);
}

.feature-item span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: var(--color-ink);
  background: var(--color-yellow);
  border-radius: var(--radius);
  font-weight: 950;
}

.feature-item p {
  margin: 0;
  color: var(--color-text);
  font-weight: 750;
}

.region-card h3 {
  color: var(--color-yellow-dark);
}

.region-card a,
.contact-method a,
.footer-list a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--color-ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.image-band {
  background: var(--color-ink);
}

.image-band-grid {
  align-items: stretch;
}

.image-band figure,
.framed-image {
  margin: 0;
  overflow: hidden;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.image-band img,
.framed-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.image-band figcaption {
  padding: 14px 16px;
  color: var(--color-ink);
  background: var(--color-white);
  font-weight: 900;
}

.framed-image.landscape img {
  height: 360px;
}

.seo-content p {
  color: var(--color-text);
  font-size: 1.03rem;
}

.seo-content p:not(.eyebrow) {
  margin-bottom: 18px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid rgba(17, 24, 39, 0.09);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.faq-item summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  color: var(--color-ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--color-muted);
}

.contact-section {
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(76, 50, 17, 0.95)),
    var(--color-ink);
}

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

.contact-section p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-card {
  padding: 26px;
  color: var(--color-ink);
}

.contact-card h2,
.contact-card h3 {
  color: var(--color-ink);
}

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

.contact-card .muted,
.muted {
  color: #6b7280;
  font-size: 0.94rem;
}

.cta-panel {
  max-width: 820px;
  margin: 0 auto;
  padding: 34px;
  text-align: center;
}

.cta-panel h2,
.cta-panel p {
  color: var(--color-ink);
}

.cta-panel .eyebrow {
  color: var(--color-yellow-dark);
}

.page-hero {
  background: var(--color-cream);
  padding: 48px 0;
}

.page-hero h1 {
  max-width: 760px;
}

.page-hero p {
  max-width: 700px;
  color: var(--color-muted);
  font-size: 1.06rem;
}

.page-hero-grid > img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-page-hero .contact-phone {
  color: var(--color-yellow-dark);
}

.service-detail-card span {
  display: block;
  margin-top: 14px;
  color: var(--color-yellow-dark);
  font-weight: 850;
}

.contact-method h2 {
  font-size: 1.22rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.84);
  background: #0b111d;
  padding: 46px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.footer-logo,
.footer-logo span:last-child,
.site-footer h2 {
  color: var(--color-white);
}

.site-footer h2 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.footer-brand p {
  max-width: 420px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.footer-list a {
  margin: 0;
  color: var(--color-white);
}

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

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
}

.mobile-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1200;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid rgba(17, 24, 39, 0.12);
  box-shadow: 0 -12px 30px rgba(17, 24, 39, 0.16);
}

.mobile-cta a {
  min-width: 0;
  min-height: 56px;
  display: grid;
  place-items: center;
  padding: 8px 6px;
  color: var(--color-ink);
  background: var(--color-yellow);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1.15;
  text-align: center;
  overflow-wrap: anywhere;
}

.mobile-cta a:nth-child(2) {
  color: var(--color-white);
  background: #15803d;
}

.mobile-cta a:nth-child(3) {
  color: var(--color-white);
  background: var(--color-ink);
}

.mobile-cta span {
  display: block;
  font-size: 0.72rem;
  opacity: 0.85;
}

@media (min-width: 640px) {
  .trust-grid,
  .card-grid,
  .contact-method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 900px) {
  body {
    padding-bottom: 0;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    min-height: 650px;
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .hero h1 {
    font-size: 3.45rem;
  }

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

  .three-columns,
  .service-detail-grid,
  .contact-method-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .split-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 46px;
  }

  .page-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
    gap: 48px;
  }

  .page-hero-grid > img {
    height: 430px;
  }

  .image-band-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .image-band img {
    height: 390px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.7fr 0.9fr;
    align-items: start;
  }

  .mobile-cta {
    display: none;
  }
}

@media (max-width: 1020px) {
  .site-nav.container {
    width: 100%;
    max-width: 100%;
    padding-right: 12px;
    padding-left: 12px;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 44px;
    margin-left: auto;
  }

  .site-menu {
    position: absolute;
    top: calc(var(--header-height) - 2px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 18px;
    background: var(--color-white);
    border: 1px solid rgba(17, 24, 39, 0.1);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
  }

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

  .nav-links {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links a {
    width: 100%;
    justify-content: center;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .header-phone {
    display: inline-flex;
    justify-content: center;
    padding: 10px;
    background: var(--color-cream);
    border-radius: var(--radius);
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  .container,
  .content-narrow {
    width: 100%;
    max-width: 100%;
    padding-right: 12px;
    padding-left: 12px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  h1,
  .hero h1 {
    font-size: 2.1rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-grid {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .section {
    padding: 52px 0;
  }

  .hero-actions,
  .cta-inline {
    width: 100%;
  }

  .hero-actions .btn,
  .cta-inline .btn {
    width: 100%;
  }

  .hero-phone,
  .contact-phone {
    font-size: 1.55rem;
  }

  .service-card,
  .region-card,
  .service-detail-card,
  .contact-method,
  .contact-card,
  .cta-panel {
    padding: 18px;
  }

  .page-hero-grid > img,
  .image-band img,
  .framed-image img,
  .framed-image.landscape img {
    height: 300px;
  }
}
