:root {
  --ink: #111827;
  --muted: #5b6472;
  --line: #dde3ea;
  --paper: #ffffff;
  --soft: #f4f6f8;
  --night: #0b111b;
  --night-2: #151d2a;
  --accent: #d71920;
  --gold: #f5b301;
  --green: #1f7a5a;
  --max: 1180px;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: var(--accent);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: rgba(11, 17, 27, 0.96);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(var(--max), calc(100% - 36px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

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

.brand-logo {
  width: 94px;
  height: 44px;
  object-fit: contain;
  border-radius: 4px;
  background: #050505;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: #fff;
}

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

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
}

.button-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 16px 34px rgba(215, 25, 32, 0.28);
}

.button-dark {
  color: #fff;
  background: var(--night);
}

.button-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

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

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--night);
}

.hero {
  min-height: calc(96vh - 76px);
  display: grid;
  align-items: end;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 9, 15, 0.86), rgba(5, 9, 15, 0.46), rgba(5, 9, 15, 0.82)),
    url("https://cdn.tagbox.io/assets/679926e59dc9490011086236/d0e23379-97e2-4982-a2de-b61b831ba496---ak-2.jpg") center / cover;
  transform: scale(1.02);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 17, 27, 0.12), rgba(11, 17, 27, 0.84)),
    radial-gradient(circle at 22% 44%, rgba(215, 25, 32, 0.28), transparent 30%);
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.hero-content {
  padding: 110px 0 44px;
}

.page-hero-content {
  padding: 88px 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--gold);
}

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

h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.hero-copy,
.page-hero-copy {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 990px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.hero-stats div {
  padding: 20px;
  background: rgba(7, 12, 20, 0.42);
}

.hero-stats dt {
  font-size: 18px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  background: var(--night);
}

.trust-strip span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-muted {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background: var(--soft);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

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

.booking-section {
  padding-top: 54px;
  padding-bottom: 54px;
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.18fr);
  gap: 34px;
  align-items: center;
}

.booking-section-compact .booking-shell {
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 1.28fr);
}

.booking-copy h2 {
  max-width: 560px;
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 42px);
}

.booking-copy p:last-child {
  max-width: 610px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.booking-panel {
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.09);
}

.booking-frame {
  display: block;
  width: 100%;
}

.text-link {
  flex: 0 0 auto;
  color: var(--accent);
  font-weight: 900;
}

.intro-grid,
.feature,
.reviews,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 58px;
  align-items: center;
}

.intro-copy,
.feature-copy p,
.premium-content p,
.local-seo p,
.reviews-copy > p,
.page-copy p {
  color: var(--muted);
  font-size: 18px;
}

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

.service-card,
.value-card,
.contact-panel,
.review-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.service-card {
  min-height: 250px;
  padding: 28px;
}

.service-card p,
.value-card p,
.review-card p,
.contact-panel p {
  color: var(--muted);
}

.service-icon {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.feature-image img,
.review-image img,
.media-image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list,
.plain-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 32px;
  color: var(--ink);
  font-weight: 750;
}

.check-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 4px #dff4ec;
}

.premium {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 46px;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background:
    linear-gradient(120deg, rgba(11, 17, 27, 0.96), rgba(21, 29, 42, 0.82)),
    url("https://cdn.tagbox.io/assets/679926e59dc9490011086236/da18ca47-44e6-423e-9474-9ec075bdcb47---ak-1.jpg") center / cover;
}

.premium .section-kicker {
  color: var(--gold);
}

.premium-content p {
  color: rgba(255, 255, 255, 0.74);
}

.premium-panel {
  align-self: end;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.premium-panel ul {
  display: grid;
  gap: 12px;
  padding-left: 18px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.process-grid,
.values-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-grid article {
  padding: 26px;
  border-top: 4px solid var(--accent);
  background: var(--soft);
}

.process-grid span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--night);
  font-weight: 900;
}

.value-card,
.review-card,
.contact-panel {
  padding: 26px;
}

.quote {
  padding: 28px;
  border-left: 4px solid var(--accent);
  background: var(--soft);
}

.quote p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  font-weight: 750;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.mini-grid div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mini-grid strong,
.mini-grid span {
  display: block;
}

.mini-grid span {
  color: var(--muted);
}

.local-seo {
  text-align: center;
}

.local-seo p {
  max-width: 880px;
  margin-inline: auto;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.area-list span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

summary {
  padding: 20px 22px;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-card {
  padding: 36px;
  border-radius: 8px;
  color: #fff;
  background: var(--night);
}

.contact-card .section-kicker {
  color: var(--gold);
}

.contact-card p,
.contact-card address {
  color: rgba(255, 255, 255, 0.74);
}

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

.contact-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.contact-list a {
  color: var(--accent);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cdd5df;
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(215, 25, 32, 0.16);
  border-color: var(--accent);
}

.contact-form .button {
  width: fit-content;
}

.form-frame {
  width: 100%;
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.map-link {
  display: block;
  margin-top: 18px;
  padding: 20px;
  border-radius: 8px;
  color: #fff;
  background: var(--night-2);
}

.site-footer {
  color: #fff;
  background: #34445a;
}

.footer-main {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 66px 0 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 1.1fr 1.35fr;
  gap: 56px;
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.footer-logo {
  width: 260px;
  max-width: 100%;
  border-radius: 6px;
  background: #050505;
}

.footer-title {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.15;
}

.footer-column h2,
.footer-column h3 {
  margin: 0 0 26px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

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

.footer-column a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #fff;
}

.footer-contact li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.footer-icon {
  color: #70b3ff;
  font-weight: 900;
}

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

.footer-bottom {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.cta-band p,
.wide-copy {
  max-width: 880px;
  color: var(--muted);
  font-size: 18px;
}

.cta-actions {
  display: grid;
  gap: 12px;
}

.button-light.on-white {
  color: var(--night);
  border-color: var(--line);
  background: #fff;
}

.highlight-card {
  min-height: 315px;
}

.service-card a {
  display: block;
  height: 100%;
}

.service-card a:focus-visible,
.link-card:focus-visible,
.blog-card a:focus-visible {
  outline: 3px solid rgba(215, 25, 32, 0.28);
  outline-offset: 4px;
}

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

.link-card,
.blog-card {
  display: block;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  font-weight: 900;
}

.blog-card p {
  color: var(--muted);
  font-weight: 500;
}

.blog-card time {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.number-list {
  display: grid;
  gap: 12px;
  padding-left: 24px;
  margin: 28px 0;
}

.number-list li {
  padding-left: 6px;
  font-weight: 750;
}

.article-body {
  max-width: 820px;
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 18px;
}

.map-frame {
  width: 100%;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.mobile-call-bar {
  display: none;
}

@media (max-width: 1020px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    width: 46px;
    height: 46px;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border-radius: 8px;
    background: rgba(11, 17, 27, 0.98);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .header-actions {
    display: none;
  }

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

  .hero-stats,
  .booking-shell,
  .intro-grid,
  .feature,
  .reviews,
  .premium,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .value-grid,
  .link-grid,
  .blog-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 84px;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-stats,
  .service-grid,
  .process-grid,
  .values-grid,
  .review-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .booking-section {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .section-muted,
  .premium {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

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

  .footer-grid,
  .footer-bottom {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: flex;
  }

  .mobile-call-bar {
    position: sticky;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 -10px 24px rgba(0, 0, 0, 0.18);
  }

  .mobile-call-bar a {
    display: grid;
    min-height: 54px;
    place-items: center;
    color: #fff;
    background: var(--accent);
    font-weight: 900;
  }

  .mobile-call-bar a + a {
    background: var(--night);
  }
}
