* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #151719;
  --muted: #5d6570;
  --line: #d9dde3;
  --paper: #f5f6f8;
  --white: #ffffff;
  --black: #07080a;
  --red: #c51620;
  --red-dark: #9f1018;
  --steel: #a9b0b8;
  --shadow: 0 22px 60px rgba(7, 8, 10, 0.18);
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid #ffd34d;
  outline-offset: 4px;
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--black);
  border-radius: 4px;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(7, 8, 10, 0.08);
  backdrop-filter: blur(14px);
}

.top-strip {
  text-align: center;
  color: var(--white);
  background: var(--red);
}

.top-strip a {
  display: inline-block;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  min-height: 76px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand img {
  width: 180px;
}

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

.nav-menu a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 4px;
  color: #24282d;
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
}

.nav-menu a:hover {
  color: var(--red);
  background: #f1f2f4;
}

.nav-menu .nav-cta {
  color: var(--white);
  background: var(--red);
}

.nav-menu .nav-cta:hover {
  color: var(--white);
  background: var(--red-dark);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(680px, 92vh, 860px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-image: url("assets/detailz-header.png");
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 12px;
  content: "";
  background: linear-gradient(90deg, var(--red), #f0f2f4, var(--steel));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 8, 10, 0.92) 0%,
      rgba(7, 8, 10, 0.72) 42%,
      rgba(7, 8, 10, 0.28) 100%
    ),
    linear-gradient(0deg, rgba(7, 8, 10, 0.82), rgba(7, 8, 10, 0.1));
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 84px 0 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ff515c;
}

.hero-logo {
  width: min(360px, 82vw);
  margin-bottom: 28px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 650px;
  margin: 0 0 30px;
  color: #eef1f5;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 42px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: var(--red);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
}

.button-secondary:hover {
  background: #e7eaee;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 850px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(7, 8, 10, 0.54);
  box-shadow: var(--shadow);
}

.hero-facts div {
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts dt {
  color: #cfd5dc;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 4px 0 0;
  font-size: 1.05rem;
  font-weight: 900;
}

.section {
  padding: clamp(64px, 9vw, 112px) 24px;
}

.section-light {
  background: linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(197, 22, 32, 0.18), transparent 34%),
    var(--black);
}

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

.section-dark p {
  color: #dfe4ea;
}

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

.section-heading p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.service-card {
  min-height: 290px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(7, 8, 10, 0.08);
}

.service-card.featured {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

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

.service-card.featured p {
  color: #e5e9ee;
}

.icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 4px;
  font-weight: 950;
}

.price {
  margin-top: 24px;
  color: var(--red) !important;
  font-size: 1.05rem;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.split > div:first-child p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 28px;
  font-size: 1.12rem;
}

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

.price-card {
  position: relative;
  padding: 24px;
  background: #181b20;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.price-card.highlight {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-12px);
}

.price-card.highlight p,
.price-card.highlight li {
  color: var(--ink);
}

.package-price {
  margin: 8px 0 16px;
  color: var(--white);
  font-size: 2rem;
  font-weight: 950;
}

.price-card ul {
  margin: 0;
  padding-left: 20px;
}

.price-card li {
  margin: 8px 0;
  color: #dfe4ea;
}

.badge {
  display: inline-block;
  margin: 0 0 12px;
  padding: 4px 9px;
  color: var(--white) !important;
  background: var(--red);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.about-media,
.about-copy {
  width: min(100%, 580px);
}

.about-media {
  justify-self: end;
  background: var(--black);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-contact {
  background:
    linear-gradient(180deg, rgba(7, 8, 10, 0.82), rgba(7, 8, 10, 0.92)),
    url("assets/detailz-header.png") center / cover;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 70px);
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px);
  color: var(--white);
  background: rgba(7, 8, 10, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  color: var(--white);
}

address {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  font-style: normal;
}

address a,
address span {
  color: #f1f4f7;
}

.hours {
  display: grid;
  gap: 8px;
  max-width: 360px;
}

.hours p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.booking-form {
  display: grid;
  gap: 16px;
}

.booking-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 850;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 4px;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: #ffd34d;
  outline: 0;
}

#form-note,
.form-status {
  margin: 0;
  color: #dfe4ea;
  font-size: 0.94rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 28px;
  align-items: start;
  padding: 42px 24px 28px;
  color: #dfe4ea;
  background: var(--black);
}

.site-footer > * {
  width: min(100%, 1180px);
}

.site-footer img {
  width: 170px;
  margin-bottom: 14px;
}

.site-footer p {
  max-width: 420px;
  margin: 0;
}

.site-footer nav,
.social-links {
  display: grid;
  gap: 10px;
}

.site-footer a {
  color: #f5f6f8;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #b9c0c8;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 116px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .nav-menu a {
    justify-content: center;
  }

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

  .split,
  .about,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .about-media {
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .nav {
    min-height: 70px;
    padding: 0 16px;
  }

  .brand img {
    width: 152px;
  }

  .nav-menu {
    top: 108px;
  }

  .hero {
    min-height: 720px;
    background-position: 62% center;
  }

  .hero-content {
    width: min(100% - 32px, 1180px);
    padding-top: 58px;
  }

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

  .hero-facts,
  .service-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-facts div:last-child {
    border-bottom: 0;
  }

  .price-card.highlight {
    transform: none;
  }

  .section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .contact-panel {
    min-width: 0;
    padding: 22px;
  }

  .hours p {
    display: grid;
    gap: 2px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

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