:root {
  --navy: #0a2342;
  --navy-2: #07182f;
  --orange: #f97316;
  --orange-dark: #d85d0c;
  --blue: #1d4ed8;
  --cream: #fffaf3;
  --bg: #f7f8fa;
  --white: #ffffff;
  --ink: #111827;
  --muted: #5f6b7a;
  --line: #d9e1ea;
  --soft-line: #edf1f5;
  --green: #15803d;
  --gold: #f4b000;
  --radius: 8px;
  --shadow-sm: 0 10px 26px rgba(10, 35, 66, .08);
  --shadow-md: 0 24px 60px rgba(10, 35, 66, .16);
  --shadow-hard: 0 18px 0 rgba(10, 35, 66, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.72;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

h1, h2, h3, h4 {
  margin: 0 0 16px;
  color: var(--navy);
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 700;
  line-height: .98;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 { font-size: clamp(52px, 7vw, 94px); max-width: 10.6ch; }
h2 { font-size: clamp(38px, 4.8vw, 64px); }
h3 { font-size: clamp(25px, 2.4vw, 34px); }
h4 { font-size: 21px; }
p { margin: 0 0 18px; }

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

.section { padding: clamp(70px, 8vw, 116px) 0; }
.section-tight { padding: 52px 0; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}
.section-head.center {
  display: block;
  max-width: 780px;
  margin: 0 auto 36px;
  text-align: center;
}
.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.62;
}
.eyebrow {
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.3;
  text-transform: uppercase;
}
.kicker {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.muted { color: var(--muted); }

.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.bg-navy .lead, .bg-navy p { color: rgba(255,255,255,.78); }

.topbar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--navy-2);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
}
.topbar a { color: #ffb36d; text-decoration: underline; text-underline-offset: 3px; }
.topbar-trust {
  display: flex;
  gap: 16px;
  color: rgba(255,255,255,.76);
  white-space: nowrap;
}
.topbar button {
  display: none;
  color: var(--white);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.header {
  position: sticky;
  top: 42px;
  z-index: 80;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--soft-line);
  box-shadow: 0 8px 30px rgba(10, 35, 66, .08);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.logo-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--navy);
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: inset 0 -4px 0 rgba(249,115,22,.55);
}
.logo-mark svg { width: 28px; height: 28px; }
.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #2d3748;
  font-size: 14px;
  font-weight: 900;
}
.menu a {
  position: relative;
  padding: 32px 0;
}
.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
.menu a:hover::after, .menu a.active::after { transform: scaleX(1); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.phone-link {
  color: var(--navy);
  font-weight: 950;
  white-space: nowrap;
}
.hamb {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}
.hamb span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(249,115,22,.28);
}
.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 16px 34px rgba(249,115,22,.34); }
.btn-secondary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(10,35,66,.22);
}
.btn-outline {
  border-color: rgba(10,35,66,.18);
  background: var(--white);
  color: var(--navy);
}
.bg-navy .btn-outline {
  border-color: rgba(255,255,255,.28);
  background: transparent;
  color: var(--white);
}
.btn-wide { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 820px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7,24,47,.94) 0%, rgba(10,35,66,.86) 47%, rgba(10,35,66,.32) 100%),
    url("../assets/hero.png") center/cover;
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 72%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .74fr);
  gap: 56px;
  align-items: center;
  padding: 76px 0;
}
.hero h1 { color: var(--white); }
.hero .lead {
  max-width: 640px;
  color: rgba(255,255,255,.82);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 26px;
}
.rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
}
.stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: .06em;
}
.review-copy { color: rgba(255,255,255,.78); font-weight: 800; }
.hero-badges, .badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge, .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.pill.dark {
  border-color: var(--line);
  background: var(--white);
  color: var(--navy);
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(249,115,22,.14);
}

.booking-card {
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 12px;
  padding: 10px;
  background: rgba(255,255,255,.18);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}
.form-card {
  border: 1px solid var(--soft-line);
  border-radius: 10px;
  padding: 28px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-md);
}
.form-card h3 { color: var(--navy); }
.form-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--soft-line);
}
.step-number {
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 99px;
  background: var(--navy);
  color: var(--white);
  font-weight: 950;
}
.availability {
  border-radius: 999px;
  padding: 7px 11px;
  background: #ecfdf3;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
}
.field {
  width: 100%;
  min-height: 52px;
  margin-bottom: 12px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfe;
  color: var(--ink);
  outline: 0;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
.field:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(29,78,216,.1);
}
textarea.field { min-height: 124px; resize: vertical; }
.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}
.success {
  margin-top: 14px;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
  padding: 12px;
  background: #f0fdf4;
  color: #166534;
  font-weight: 900;
}

.proof-strip {
  margin-top: -48px;
  position: relative;
  z-index: 10;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--soft-line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.proof-item {
  min-height: 132px;
  padding: 24px;
  border-right: 1px solid var(--soft-line);
}
.proof-item:last-child { border-right: 0; }
.proof-item strong {
  display: block;
  color: var(--navy);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 42px;
  line-height: .95;
}
.proof-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
  gap: 52px;
  align-items: center;
}
.split.reverse { grid-template-columns: minmax(320px, .86fr) minmax(0, 1fr); }

.card {
  position: relative;
  height: 100%;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 330px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-grid .service-card {
  display: grid;
  grid-template-rows: 56px 76px 116px 22px 20px;
  gap: 14px;
  min-height: 360px;
}
.service-grid .service-card .icon-box,
.service-grid .service-card h3,
.service-grid .service-card p,
.service-grid .service-card a {
  margin: 0;
}
.service-grid .service-card h3 {
  display: flex;
  align-items: flex-start;
}
.service-grid .service-card > p:not(.price) {
  line-height: 1.58;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249,115,22,.42);
  box-shadow: var(--shadow-md);
}
.icon-box {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #eaf1ff, #fff3e8);
  color: var(--navy);
}
.icon-box svg { width: 30px; height: 30px; stroke: currentColor; }
.service-card p { color: var(--muted); }
.price {
  margin-top: auto;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.text-link {
  color: var(--navy);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.text-link:hover { color: var(--orange-dark); }

.trust-card {
  border-left: 4px solid var(--orange);
}
.trust-card p { color: var(--muted); }
.image-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}
.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.image-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(7,24,47,.82);
  color: var(--white);
  backdrop-filter: blur(10px);
}
.image-caption strong {
  display: block;
  font-family: "Oswald", Impact, sans-serif;
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
}

.pricing-grid {
  display: grid;
  grid-template-columns: .95fr 1.15fr;
  gap: 28px;
  align-items: stretch;
}
.price-panel {
  background: var(--navy);
  color: var(--white);
  border-color: rgba(255,255,255,.08);
}
.price-panel h3 { color: var(--white); font-size: 44px; }
.price-panel p { color: rgba(255,255,255,.78); }
.comparison {
  display: grid;
  gap: 12px;
}
.comparison-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--white);
}
.comparison-row strong { color: var(--navy); }

.finance-box {
  border: 1px solid var(--soft-line);
  border-radius: 12px;
  padding: 30px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.range-wrap {
  margin: 22px 0;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--bg);
}
input[type="range"] { width: 100%; accent-color: var(--orange); }
.monthly {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  border-top: 1px solid var(--soft-line);
  padding-top: 18px;
}
.monthly strong {
  color: var(--orange-dark);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 44px;
  line-height: 1;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
}
.avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 950;
}
.review-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--soft-line);
}
.review-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}
.platform {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.city-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy);
  font-size: 13px;
  font-weight: 950;
}
.map-shell {
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.map {
  width: 100%;
  height: 420px;
  display: block;
  border: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  color: var(--navy);
  padding: 18px 22px;
  font-weight: 950;
  text-align: left;
  cursor: pointer;
}
.faq-q::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--orange);
  font-size: 26px;
  line-height: 1;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  padding: 0 22px;
  transition: max-height .24s ease, padding .24s ease;
}
.faq-item.open .faq-a {
  max-height: 220px;
  padding: 0 22px 22px;
}
.faq-item.open .faq-q::after { content: "-"; }

.cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10,35,66,.96), rgba(10,35,66,.86)),
    url("../assets/hero.png") center/cover;
  color: var(--white);
  text-align: center;
}
.cta h2 { color: var(--white); }
.cta p { color: rgba(255,255,255,.8); }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}

.footer {
  padding: 64px 0 108px;
  background: var(--navy-2);
  color: rgba(255,255,255,.76);
}
.footer .logo { color: var(--white); margin-bottom: 18px; }
.footer h4 { color: var(--white); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .8fr .8fr 1fr;
  gap: 32px;
}
.footer-credit {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  color: rgba(255,255,255,.54);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-credit a {
  color: rgba(255,255,255,.74);
}
.footer a:hover { color: #ffb36d; }
.footer-form {
  display: grid;
  gap: 10px;
}
.footer-form input {
  min-height: 46px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255,255,255,.07);
  color: var(--white);
}

.hero-page {
  position: relative;
  overflow: hidden;
  padding: 108px 0 88px;
  background:
    linear-gradient(90deg, rgba(7,24,47,.94), rgba(10,35,66,.72)),
    url("../assets/hero.png") center/cover;
  color: var(--white);
}
.hero-page h1 { color: var(--white); max-width: 820px; }
.hero-page .lead { color: rgba(255,255,255,.82); }

.service-band {
  border-top: 1px solid var(--soft-line);
}
.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.check-list li {
  position: relative;
  margin: 10px 0;
  padding-left: 28px;
  color: var(--muted);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--orange);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.gallery img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 15px;
  background: var(--white);
  color: var(--navy);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.masonry {
  columns: 3 280px;
  column-gap: 20px;
}
.masonry .card {
  break-inside: avoid;
  margin-bottom: 20px;
}
.contact-card {
  display: grid;
  gap: 16px;
}
.contact-line {
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--white);
}
.emergency-strip {
  padding: 18px 0;
  background: var(--orange);
  color: var(--white);
  font-weight: 950;
  text-align: center;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-card {
  display: grid;
  grid-template-rows: 22px 112px 112px 22px 20px;
  gap: 14px;
  min-height: 366px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249,115,22,.42);
  box-shadow: var(--shadow-md);
}
.blog-card h3,
.blog-card p { margin: 0; }
.blog-card h3 {
  display: flex;
  align-items: flex-start;
}
.blog-card p {
  color: var(--muted);
  line-height: 1.6;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 22px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 800;
}
.breadcrumb a { text-decoration: underline; text-underline-offset: 3px; }
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 320px;
  gap: 46px;
  align-items: start;
}
.article-content {
  color: #243244;
  font-size: 18px;
  line-height: 1.82;
}
.article-content h2 {
  margin-top: 44px;
  font-size: clamp(31px, 3.4vw, 44px);
}
.article-content p { margin-bottom: 20px; }
.article-content a {
  color: var(--blue);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-sidebar {
  position: sticky;
  top: 150px;
  display: grid;
  gap: 18px;
}
.toc {
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.toc strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}
.toc a {
  display: block;
  padding: 8px 0;
  border-top: 1px solid var(--soft-line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}
.advisory-box,
.article-cta-box {
  border-radius: 10px;
  padding: 24px;
  margin: 34px 0;
  box-shadow: var(--shadow-sm);
}
.advisory-box {
  border: 1px solid rgba(249,115,22,.3);
  border-left: 5px solid var(--orange);
  background: #fff7ed;
}
.advisory-box strong,
.article-cta-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
}
.article-cta-box {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(10,35,66,.16);
  background: var(--navy);
  color: var(--white);
}
.article-cta-box strong { color: var(--white); }
.article-cta-box p { color: rgba(255,255,255,.78); margin: 0; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.offer {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 75;
  width: min(340px, calc(100% - 44px));
  display: none;
  border: 1px solid rgba(249,115,22,.42);
  border-radius: 10px;
  padding: 18px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.offer.show { display: block; }
.offer button {
  float: right;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 20px;
}
.offer strong {
  display: block;
  color: var(--navy);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
}
.mobile-bar { display: none; }

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .52s ease, transform .52s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1060px) {
  .menu, .nav-actions { display: none; }
  .hamb { display: block; }
  .menu.open {
    position: fixed;
    inset: 126px 0 auto;
    display: grid;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--soft-line);
    box-shadow: var(--shadow-md);
  }
  .menu.open a {
    padding: 18px 24px;
    border-top: 1px solid var(--soft-line);
    font-size: 18px;
  }
  .menu.open a::after { display: none; }
  .hero-grid, .split, .split.reverse, .pricing-grid, .section-head, .service-detail {
    grid-template-columns: 1fr;
  }
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-sidebar {
    position: static;
    order: -1;
  }
  .hero { min-height: 0; }
  .hero-grid { padding: 56px 0 86px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(n+3) { border-top: 1px solid var(--soft-line); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 15px; }
  .container { width: min(100% - 28px, 1180px); }
  .topbar { overflow: hidden; }
  .topbar-inner {
    min-height: 48px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    padding: 8px 0;
    font-size: 12px;
    line-height: 1.35;
  }
  .topbar-inner > span {
    display: block;
    max-width: 100%;
  }
  .topbar-trust { display: none; }
  .header { top: 48px; }
  .nav { min-height: 72px; }
  .logo { font-size: 25px; }
  .logo-mark { width: 42px; height: 42px; }
  .menu.open { inset: 120px 0 auto; }
  h1 { font-size: clamp(48px, 16vw, 68px); }
  h2 { font-size: clamp(36px, 12vw, 48px); }
  .section { padding: 58px 0; }
  .hero {
    background:
      linear-gradient(180deg, rgba(7,24,47,.96) 0%, rgba(10,35,66,.88) 62%, rgba(10,35,66,.68) 100%),
      url("../assets/hero.png") center/cover;
  }
  .hero-grid { gap: 30px; padding: 42px 0 72px; }
  .hero-actions, .cta-actions { display: grid; }
  .btn { width: 100%; min-height: 54px; }
  .booking-card { padding: 6px; }
  .form-card { padding: 20px; }
  .proof-strip { margin-top: 0; }
  .proof-grid, .grid-2, .grid-3, .grid-4, .footer-grid, .gallery, .related-grid {
    grid-template-columns: 1fr;
  }
  .footer-credit {
    margin-top: 32px;
    padding-top: 18px;
  }
  .proof-item {
    border-right: 0;
    border-top: 1px solid var(--soft-line);
  }
  .proof-item:first-child { border-top: 0; }
  .service-card { min-height: auto; }
  .service-grid .service-card {
    grid-template-rows: 56px auto auto 22px 20px;
    min-height: auto;
  }
  .blog-card {
    grid-template-rows: auto auto auto 22px 20px;
    min-height: auto;
  }
  .article-content {
    font-size: 16px;
    line-height: 1.78;
  }
  .image-panel, .image-panel img { min-height: 360px; }
  .map { height: 330px; }
  .monthly { align-items: flex-start; flex-direction: column; }
  .offer { display: none !important; }
  .mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 -12px 28px rgba(10,35,66,.2);
  }
  .mobile-bar a {
    min-height: 60px;
    display: grid;
    place-items: center;
    color: var(--white);
    padding: 0 8px;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .04em;
    line-height: 1.15;
    text-transform: uppercase;
  }
  .mobile-bar a:first-child { background: var(--navy); }
  .mobile-bar a:last-child { background: var(--orange); }
}
