:root {
  color-scheme: light;
  --navy: #071a33;
  --navy-2: #09264a;
  --blue: #1f6fd1;
  --blue-2: #0f5fbf;
  --red: #df1f28;
  --red-2: #bf141c;
  --text: #07152c;
  --muted: #5e6a7a;
  --line: #dce5ef;
  --line-strong: #c8d6e4;
  --soft: #f4f8fd;
  --white: #ffffff;
  --shadow: 0 18px 46px rgba(7, 26, 51, 0.14);
  --shadow-soft: 0 8px 24px rgba(7, 26, 51, 0.08);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: hidden;
}

[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(31, 111, 209, 0.28);
  outline-offset: 3px;
}

img,
svg {
  display: block;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

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

input,
select,
textarea {
  width: 100%;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.08;
}

.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: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.4rem;
  min-height: 74px;
  padding: 0 3rem;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 160ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 26px rgba(7, 26, 51, 0.08);
}

.brand {
  width: 180px;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.7rem;
  font-size: 0.91rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  padding: 1.7rem 0;
  color: var(--text);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.95rem;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}

.phone-link svg {
  width: 23px;
  height: 23px;
  color: var(--navy);
  fill: currentColor;
  stroke: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.8rem 1.4rem;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(7, 26, 51, 0.14);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(7, 26, 51, 0.18);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.66;
  transform: none;
  box-shadow: none;
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
}

.btn-red {
  background: var(--red);
}

.btn-red:hover,
.btn-red:focus-visible {
  background: var(--red-2);
}

.btn-navy {
  background: var(--navy-2);
}

.btn-navy:hover,
.btn-navy:focus-visible {
  background: var(--navy);
}

.btn-small {
  min-height: 42px;
  padding: 0.68rem 1.25rem;
}

.hero {
  position: relative;
  min-height: 612px;
  display: grid;
  grid-template-columns: minmax(22rem, 0.9fr) minmax(20rem, 0.9fr) minmax(24rem, 0.86fr);
  align-items: center;
  gap: 1.4rem;
  padding: 2rem 3rem 2.2rem;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 31%, rgba(255, 255, 255, 0.86) 47%, rgba(255, 255, 255, 0.25) 69%, rgba(255, 255, 255, 0.08) 100%),
    #ffffff;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 108px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 76%);
  z-index: -1;
}

.hero-copy {
  max-width: 610px;
  min-width: 0;
  z-index: 2;
}

.eyebrow {
  margin-bottom: 1.1rem;
  color: var(--blue-2);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero h1 {
  max-width: 620px;
  margin-bottom: 1rem;
  font-size: 3.45rem;
  font-weight: 900;
  color: var(--text);
}

.hero-lede {
  max-width: 530px;
  margin-bottom: 1.75rem;
  color: #39465b;
  font-size: 1.09rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.offer-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  max-width: 470px;
}

.offer-item {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.8rem;
  row-gap: 0.12rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.offer-item svg {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  color: var(--blue);
}

.offer-item span {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
}

.offer-item strong {
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1;
}

.offer-item small {
  display: inline-block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.hero-media {
  position: absolute;
  inset: 0 0 auto auto;
  z-index: -2;
  width: 68%;
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.booking-card {
  z-index: 3;
  align-self: center;
  max-width: 365px;
  min-width: 0;
  margin-left: auto;
  background: var(--white);
  border: 1px solid rgba(7, 26, 51, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero .booking-card {
  width: 100%;
  max-width: 430px;
}

.booking-card h2 {
  margin: 0;
  padding: 1.05rem 1.25rem;
  background: linear-gradient(180deg, #0b3c70 0%, #062447 100%);
  color: var(--white);
  font-size: 1.25rem;
  text-align: center;
}

.booking-form {
  display: grid;
  gap: 0.7rem;
  padding: 1rem 1.15rem 1.1rem;
}

.booking-form label {
  display: grid;
  gap: 0.28rem;
}

.booking-form span {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  min-height: 42px;
  padding: 0.68rem 0.75rem;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  background: var(--white);
  color: var(--text);
  font-size: 0.89rem;
}

.booking-form textarea {
  resize: vertical;
}

.captcha-field {
  gap: 0.45rem;
}

.captcha-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem;
  align-items: stretch;
  min-width: 0;
}

.booking-form .captcha-question {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 42px;
  padding: 0.62rem 0.75rem;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  background: #f7fbff;
  color: var(--navy);
  font-size: 0.89rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.captcha-refresh {
  min-height: 42px;
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  background: var(--white);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  cursor: pointer;
}

.captcha-refresh:hover,
.captcha-refresh:focus-visible {
  border-color: var(--blue);
  background: var(--soft);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 3px solid rgba(31, 111, 209, 0.18);
  border-color: var(--blue);
}

.btn-form {
  width: 100%;
  margin-top: 0.18rem;
  box-shadow: none;
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

.secure-note svg {
  width: 14px;
  height: 14px;
}

.form-status {
  min-height: 1rem;
  margin: 0;
  color: var(--blue-2);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.form-status.is-error {
  color: var(--red-2);
}

.honey {
  position: absolute;
  left: -10000px;
  opacity: 0;
}

.section-inner {
  width: min(100% - 3rem, var(--max));
  margin: 0 auto;
}

.services-band {
  padding: 1.85rem 0 2.2rem;
  background: var(--white);
}

.services-band h2,
.trust-section h2,
.process-section h2 {
  margin-bottom: 1.35rem;
  color: var(--navy);
  font-size: 1.7rem;
  font-weight: 900;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0.8rem;
  align-items: start;
}

.service-item {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  min-height: 96px;
  padding: 0.75rem 0.25rem;
  border-radius: 6px;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 850;
  text-align: center;
  transition: background 150ms ease, transform 150ms ease;
}

.service-item:hover,
.service-item:focus-visible {
  background: var(--soft);
  transform: translateY(-1px);
}

.service-item svg {
  width: 42px;
  height: 42px;
  color: var(--blue);
}

.text-link {
  display: flex;
  justify-content: center;
  margin-top: 0.7rem;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.trust-section {
  padding: 2.1rem 0;
  background: linear-gradient(180deg, #f4f8fd 0%, #eef5fc 100%);
}

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

.trust-item {
  min-height: 166px;
  padding: 0.8rem 1.6rem 0.6rem;
  border-right: 1px solid var(--line-strong);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item svg {
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  color: var(--blue);
}

.trust-item h3 {
  margin-bottom: 0.45rem;
  color: var(--navy);
  font-size: 1.05rem;
}

.trust-item p {
  margin: 0;
  color: #35445a;
  font-size: 0.92rem;
}

.process-section {
  padding: 2.1rem 0 2.2rem;
  background: var(--white);
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 9%;
  right: 9%;
  height: 1px;
  background: var(--line-strong);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  background: var(--white);
  padding: 0 0.5rem;
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 0.6rem;
  border-radius: 999px;
  background: var(--navy-2);
  color: var(--white);
  font-weight: 900;
}

.process-step h3 {
  margin-bottom: 0.3rem;
  color: var(--navy);
  font-size: 1rem;
}

.process-step p {
  margin: 0;
  color: #35445a;
  font-size: 0.9rem;
}

.pricing-areas {
  padding: 0 0 2.2rem;
  background: var(--white);
}

.pricing-areas-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.72fr;
  gap: 1rem;
  align-items: stretch;
}

.pricing-panel {
  padding: 1.25rem;
  border-radius: 8px;
  background: linear-gradient(180deg, #06335f 0%, #061f3d 100%);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.pricing-panel h2 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  text-align: center;
}

.price-list {
  overflow: hidden;
  border-radius: 6px;
  background: var(--white);
  color: var(--text);
}

.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--line);
}

.price-list div:last-child {
  border-bottom: 0;
}

.price-list span {
  color: #314055;
  font-size: 0.92rem;
}

.price-list strong {
  color: var(--navy);
  font-size: 1.05rem;
  white-space: nowrap;
}

.price-list small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: right;
}

.check-list {
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.55rem;
  font-size: 0.9rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.42rem;
  width: 0.5rem;
  height: 0.85rem;
  border-right: 2px solid #68a8ff;
  border-bottom: 2px solid #68a8ff;
  transform: rotate(40deg);
}

.areas-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.9fr);
  gap: 1rem;
  padding: 1.3rem 1.25rem;
  border-radius: 8px;
  background: linear-gradient(90deg, #ffffff 0%, #f5f9fd 52%, #dcefff 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.areas-panel h2 {
  margin-bottom: 0.5rem;
  color: var(--navy);
  font-size: 1.3rem;
}

.areas-panel p {
  max-width: 550px;
  margin-bottom: 0.95rem;
  color: #35445a;
  font-size: 0.92rem;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 750;
}

.area-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 9px;
  height: 9px;
  border: 2px solid var(--blue);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.city-card {
  align-self: end;
  min-height: 170px;
  display: block;
  border-radius: 8px;
  background: #dcefff;
  color: var(--navy);
  overflow: hidden;
  margin: 0;
}

.city-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center;
}

.city-card figcaption {
  margin: 0;
  padding: 0.65rem 0.8rem;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: right;
}

.city-skyline {
  display: flex;
  align-items: end;
  gap: 8px;
  min-height: 115px;
  border-bottom: 5px solid rgba(7, 26, 51, 0.24);
}

.city-skyline span {
  display: block;
  width: 15%;
  background: linear-gradient(180deg, #164a7a 0%, #08294b 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.city-skyline span:nth-child(1) { height: 42px; }
.city-skyline span:nth-child(2) { height: 76px; }
.city-skyline span:nth-child(3) { height: 58px; }
.city-skyline span:nth-child(4) { height: 96px; border-radius: 10px 10px 0 0; }
.city-skyline span:nth-child(5) { height: 118px; width: 10%; background: linear-gradient(180deg, #d9242e 0 12%, #0b2d4e 12% 100%); }
.city-skyline span:nth-child(6) { height: 66px; }

.page-hero {
  padding: 3.6rem 0;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.88fr);
  gap: 2rem;
  align-items: center;
}

.page-hero h1 {
  max-width: 720px;
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: 3rem;
  font-weight: 900;
  overflow-wrap: break-word;
}

.page-hero p:not(.eyebrow) {
  max-width: 650px;
  color: #35445a;
  font-size: 1.05rem;
  overflow-wrap: break-word;
}

.page-hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.compact-hero {
  padding: 3rem 0;
}

.compact-hero h1 {
  max-width: 820px;
}

.content-section {
  padding: 3rem 0;
  background: #ffffff;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 1.6rem;
  text-align: center;
}

.section-heading h2,
.split-section h2,
.contact-panel h2 {
  margin-bottom: 0.6rem;
  color: var(--navy);
  font-size: 1.8rem;
  font-weight: 900;
}

.section-heading p,
.split-section p,
.contact-panel p {
  color: #35445a;
}

.service-detail-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.detail-card {
  display: grid;
  gap: 0.65rem;
  align-content: start;
  min-height: 210px;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.detail-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
}

.detail-card p {
  margin: 0;
  color: #35445a;
  font-size: 0.94rem;
}

.detail-card a {
  align-self: end;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.detail-card a:hover {
  text-decoration: underline;
}

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

.issue-card {
  min-height: 170px;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.issue-card h3 {
  margin-bottom: 0.45rem;
  color: var(--navy);
  font-size: 1.05rem;
}

.issue-card p {
  margin: 0;
  color: #35445a;
  font-size: 0.94rem;
}

.service-seo-panel {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
  box-shadow: var(--shadow-soft);
}

.service-seo-panel h2,
.service-seo-panel h3 {
  margin-bottom: 0.55rem;
  color: var(--navy);
}

.service-seo-panel p {
  color: #35445a;
}

.service-seo-panel .check-list li {
  color: #263750;
}

.related-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.related-services a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

.related-services a:hover,
.related-services a:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
}

.cta-band {
  padding: 2rem 0;
  background: linear-gradient(90deg, #06335f 0%, #08294d 100%);
  color: #ffffff;
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-row h2 {
  margin-bottom: 0.35rem;
  font-size: 1.6rem;
}

.cta-row p {
  margin: 0;
  color: #d7e6f9;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.95fr);
  gap: 1.5rem;
  align-items: center;
}

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

.area-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.area-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.area-photo figcaption {
  padding: 0.8rem 1rem;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 850;
}

.pricing-page-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
  gap: 1rem;
  align-items: start;
}

.pricing-panel-large {
  position: sticky;
  top: 90px;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(20rem, 1fr);
  gap: 1.2rem;
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 0.6rem;
  min-width: 0;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
  box-shadow: var(--shadow-soft);
}

.contact-panel a {
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

.contact-panel img {
  width: 100%;
  height: 230px;
  margin-top: 0.6rem;
  border-radius: 8px;
  object-fit: cover;
}

.booking-card-page {
  max-width: none;
  width: 100%;
}

.legal-page {
  min-height: 70vh;
  padding: 4rem 0;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.legal-page .section-inner {
  max-width: 840px;
}

.legal-page h1 {
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: 2.6rem;
  font-weight: 900;
}

.legal-page h2 {
  margin-top: 1.8rem;
  margin-bottom: 0.45rem;
  color: var(--navy);
  font-size: 1.2rem;
}

.legal-page p {
  color: #35445a;
}

.thank-you-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
}

.thank-you-logo {
  width: 220px;
  margin-bottom: 2rem;
}

.site-footer {
  background: linear-gradient(180deg, #06335f 0%, #041c37 100%);
  color: var(--white);
}

.footer-inner {
  width: min(100% - 3rem, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.2fr;
  gap: 3rem;
  padding: 2.6rem 0 2rem;
}

.footer-brand img {
  width: 190px;
  height: auto;
  margin-bottom: 0.9rem;
  border-radius: 3px;
}

.footer-brand p {
  max-width: 270px;
  margin-bottom: 1rem;
  color: #d7e6f9;
  font-size: 0.91rem;
}

.social-row {
  display: flex;
  gap: 0.55rem;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.footer-nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 0.35rem;
}

.footer-nav h2,
.footer-contact h2 {
  margin-bottom: 0.4rem;
  color: var(--white);
  font-size: 0.98rem;
}

.footer-nav a,
.footer-contact a,
.footer-contact span {
  color: #e4efff;
  font-size: 0.9rem;
  font-style: normal;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-contact a:hover {
  text-decoration: underline;
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 0.62rem;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: #a9d1ff;
  flex: 0 0 auto;
}

.footer-bottom {
  width: min(100% - 3rem, var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  color: #c9ddf4;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: #e4efff;
  text-decoration: none;
}

.footer-bottom em {
  margin: 0 0.65rem;
  color: rgba(255, 255, 255, 0.45);
  font-style: normal;
}

@media (max-width: 1180px) {
  .site-header {
    padding: 0 1.5rem;
    gap: 1rem;
  }

  .site-nav {
    gap: 1rem;
  }

  .hero {
    grid-template-columns: minmax(20rem, 1fr) minmax(24rem, 0.86fr);
    padding: 2rem 1.5rem 2.3rem;
    background:
      linear-gradient(90deg, #ffffff 0%, #ffffff 42%, rgba(255, 255, 255, 0.92) 56%, rgba(255, 255, 255, 0.32) 78%, rgba(255, 255, 255, 0.1) 100%),
      #ffffff;
  }

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

  .hero-media {
    width: 50%;
  }

  .booking-card {
    grid-column: 2;
  }

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 74px 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0.6rem 1.5rem 1.3rem;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }

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

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after,
  .site-nav a[aria-current="page"]::after {
    display: none;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 0.8rem;
  }

  .site-header {
    min-height: auto;
    padding-top: 0.7rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 2rem;
    background: #ffffff;
  }

  .hero-media {
    position: relative;
    width: 100%;
    height: 360px;
    grid-row: 2;
    border-radius: 8px;
    overflow: hidden;
  }

  .booking-card {
    grid-column: auto;
    max-width: 100%;
    width: 100%;
    margin: 0;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(n + 3) {
    border-top: 1px solid var(--line-strong);
  }

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

  .process-line::before {
    display: none;
  }

  .pricing-areas-grid,
  .areas-panel,
  .page-hero-grid,
  .split-section,
  .pricing-page-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .pricing-panel-large {
    position: static;
  }

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

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: stretch;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .brand {
    width: 155px;
  }

  .header-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.65rem;
    align-items: center;
    max-width: 358px;
  }

  .phone-link span {
    font-size: 0.9rem;
  }

  .phone-link {
    min-width: 0;
  }

  .header-actions .btn-small {
    width: 100%;
    min-width: 0;
    white-space: nowrap;
  }

  .btn-small {
    padding: 0.62rem 0.9rem;
  }

  .hero {
    padding: 1.5rem 1rem 2rem;
  }

  .hero-copy {
    width: 100%;
    max-width: 358px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 1.9rem;
    overflow-wrap: normal;
  }

  .page-hero h1,
  .legal-page h1 {
    font-size: 1.65rem;
  }

  .page-hero .section-inner,
  .compact-hero .section-inner {
    max-width: 100%;
  }

  .compact-hero h1 {
    max-width: 16ch;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions,
  .offer-row {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .offer-row {
    width: 100%;
  }

  .hero-media {
    height: 270px;
  }

  .section-inner,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 2rem, var(--max));
  }

  .service-grid,
  .service-detail-grid,
  .issue-grid,
  .service-seo-grid,
  .trust-grid,
  .process-line,
  .area-list,
  .area-list-large,
  .faq-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-top: 1px solid var(--line-strong);
    padding-left: 0;
    padding-right: 0;
  }

  .trust-item:first-child {
    border-top: 0;
  }

  .price-list div {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-list small {
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .cta-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .captcha-row {
    grid-template-columns: 1fr;
  }

  .captcha-refresh {
    width: 100%;
  }
}

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