:root {
  --bg: #f6f7f8;
  --ink: #14171a;
  --muted: #59616a;
  --graphite: #101214;
  --line: #dde2e7;
  --metal: #c4cbd2;
  --accent: #b5121b;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 24px 60px rgba(16, 18, 20, 0.12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(18px, 4vw, 64px);
  color: #fff;
  background: rgba(16, 18, 20, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
}

.brand img {
  width: 150px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: #cbd1d8;
  font-size: 14px;
}

.main-nav a:hover,
.phone-link:hover { color: #fff; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.phone-link {
  color: #e7ebef;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  color: #fff;
  background: var(--accent);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(181, 18, 27, 0.22);
}

.button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(181, 18, 27, 0.28);
  outline-offset: 3px;
}

.button-small { min-height: 38px; padding: 0 14px; font-size: 14px; }
.button-ghost { color: var(--graphite); background: #fff; border-color: #fff; }
.button-secondary { color: var(--graphite); background: #fff; border-color: var(--line); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(48px, 7vw, 96px) clamp(18px, 5vw, 72px) 38px;
  min-height: calc(100vh - 72px);
}

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

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

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 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: 20px;
  line-height: 1.2;
}

.lead {
  max-width: 660px;
  color: #38404a;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
}

.hero-points span,
.service-grid article,
.insight-grid article,
.package-card,
.case-grid article,
details,
.contact-card,
.map-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-points span {
  padding: 12px 14px;
  color: #303840;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #dfe3e7;
}

.hero-media img {
  width: 100%;
  height: min(64vh, 620px);
  object-fit: cover;
}

.hero-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(320px, calc(100% - 36px));
  padding: 18px;
  color: #fff;
  background: rgba(16, 18, 20, 0.82);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
}

.hero-note strong,
.hero-note span { display: block; }
.hero-note span { color: #d7dde3; font-size: 14px; }

.section {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 850px;
}

.section-lead {
  max-width: 920px;
  color: var(--muted);
  font-size: 20px;
}

.intro {
  border-top: 1px solid var(--line);
}

.insight-grid,
.service-grid,
.package-grid,
.case-grid,
.faq-grid,
.contact-grid {
  display: grid;
  gap: 16px;
}

.insight-grid { grid-template-columns: repeat(3, 1fr); margin-top: 28px; }
.service-grid { grid-template-columns: repeat(3, 1fr); }
.package-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.case-grid { grid-template-columns: repeat(4, 1fr); }
.faq-grid { grid-template-columns: repeat(2, 1fr); }
.contact-grid { grid-template-columns: 1fr 1fr; }

.insight-grid article,
.service-grid article,
.package-card,
.case-grid article,
details,
.contact-card {
  padding: 24px;
}

.card-number {
  display: block;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.compare,
.booking {
  color: #fff;
  background: var(--graphite);
}

.compare .eyebrow,
.booking .eyebrow { color: #f15d65; }
.compare .quiet-note,
.booking p { color: #d0d6dc; }

.table-wrap {
  overflow-x: auto;
  background: #fff;
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  color: var(--ink);
}

th, td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #eef1f4;
  font-size: 13px;
  text-transform: uppercase;
}

.quiet-note {
  max-width: 920px;
  margin: 22px 0 0;
  color: var(--muted);
}

.package-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.package-card.featured {
  border-color: rgba(181, 18, 27, 0.45);
  box-shadow: 0 18px 44px rgba(16,18,20,0.1);
}

.package-name {
  margin: 0;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.price {
  margin: 0;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

ul { padding-left: 20px; }
.package-card ul { margin: 0 0 auto; color: #3b444d; }

.price-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  min-height: 74px;
  padding: 20px;
  background: #fff;
}

.price-list strong { white-space: nowrap; }

.case-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin: -8px -8px 18px;
  overflow: hidden;
  border-radius: 6px;
  background: #dfe4e8;
}

.case-visual figure {
  position: relative;
  min-width: 0;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #cfd6dd;
}

.case-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-visual figcaption {
  position: absolute;
  left: 8px;
  bottom: 8px;
  padding: 4px 7px;
  color: #fff;
  background: rgba(16, 18, 20, 0.76);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-grid article {
  min-height: 380px;
}

.case-grid strong {
  display: inline-block;
  margin-top: 8px;
  color: var(--accent);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding: 54px 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  counter-increment: step;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--accent);
  font-weight: 900;
}

.steps strong,
.steps span { display: block; }
.steps span { margin-top: 8px; color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.split p {
  color: var(--muted);
  font-size: 20px;
}

.check-list {
  margin: 0;
  padding: 24px 24px 24px 44px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

details summary {
  font-weight: 900;
  cursor: pointer;
}

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

.booking-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: start;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 24px;
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: #323a43;
  font-weight: 800;
}

.booking-form label:nth-child(5),
.booking-form .consent,
.booking-form button,
.form-status {
  grid-column: 1 / -1;
}

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

textarea { resize: vertical; }

.consent {
  grid-template-columns: 18px 1fr !important;
  align-items: start;
  font-weight: 600 !important;
}

.consent input { width: 18px; height: 18px; margin-top: 4px; }

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
}

.website-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-card p {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
}

.contact-card strong { color: var(--muted); font-size: 13px; text-transform: uppercase; }
.contact-card span, .contact-card a { font-size: 20px; font-weight: 800; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.map-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: #dfe4e8;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.map-overlay-link {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 10px 14px;
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(16, 18, 20, 0.14);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: #d4dae0;
  background: var(--graphite);
  border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 1180px) {
  .site-header { grid-template-columns: auto auto; }
  .main-nav { display: none; }
  .header-actions { justify-content: end; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-media img { height: 480px; }
  .case-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px 16px;
  }

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

  .phone-link,
  .button-small { justify-content: center; font-size: 13px; }

  .hero {
    padding-top: 34px;
  }

  h1 { font-size: 40px; }
  h2 { font-size: 31px; }

  .hero-points,
  .insight-grid,
  .service-grid,
  .package-grid,
  .case-grid,
  .faq-grid,
  .contact-grid,
  .price-list,
  .split,
  .booking-panel,
  .booking-form,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-media img { height: 360px; }
  .hero-note { position: static; width: auto; border-radius: 0; }
  .hero-actions .button { width: 100%; }
  .section { padding-left: 16px; padding-right: 16px; }
  .price-list div { min-height: auto; }
  .booking-form { padding: 18px; }
  .contact-actions .button { width: 100%; }
  .site-footer { flex-direction: column; }
}

@media (max-width: 420px) {
  .header-actions { grid-template-columns: 1fr; }
  h1 { font-size: 34px; }
  .lead, .section-lead, .split p { font-size: 17px; }
  .hero-media img { height: 300px; }
  .map-overlay-link {
    left: 12px;
    right: 12px;
    text-align: center;
  }
}
