@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/source-sans-3.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --navy: #28255c;
  --navy-deep: #1b1840;
  --navy-mid: #322e6e;
  --accent-soft: #c8c4e6;
  --gray: #727676;
  --ink: #1c1c28;
  --muted: #5c5d68;
  --line: #e4e5ec;
  --paper: #f5f6fa;
  --white: #fff;
  --radius: 18px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow: 0 18px 40px rgba(27, 24, 64, 0.1);
  --shadow-lg: 0 28px 60px rgba(27, 24, 64, 0.18);
  --font: "Source Sans 3", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 108px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
address { font-style: normal; }
::selection { background: #d9d7ea; }

.wrap { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--navy);
  color: #fff;
  padding: 8px 12px;
  z-index: 40;
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.topbar {
  background: var(--navy-deep);
  color: #c9cad4;
  font-size: 13px;
}
.topbar-inner,
.topbar-links {
  display: flex;
  gap: 18px;
  align-items: center;
}
.topbar-inner {
  min-height: 38px;
  justify-content: space-between;
}
.topbar a:hover { color: #fff; }
.topbar-links a { text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  box-shadow: 0 10px 30px rgba(27, 24, 64, 0.06);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img {
  width: 176px;
  height: auto;
}
.menu {
  display: flex;
  align-items: center;
  gap: 26px;
}
.menu a {
  text-decoration: none;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.menu a:hover { color: var(--navy-mid); }
.menu a.menu-cta,
.menu a.btn-navy {
  color: #fff;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 14px;
}
.menu a.menu-cta:hover,
.menu a.btn-navy:hover {
  color: #fff;
  background: var(--navy-deep);
}
.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 10px;
}
.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover { background: var(--navy-deep); }
.btn-ghost {
  border-color: var(--line);
  background: #fff;
  color: var(--navy);
}
.btn-ghost:hover { border-color: var(--navy); }
.btn-light {
  background: #fff;
  color: var(--navy);
}
.btn-light:hover { background: #ececf3; }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}
.menu-cta {
  min-height: 42px;
  padding: 8px 18px;
  color: #fff;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 620px;
  min-height: min(82vh, 740px);
  display: flex;
  align-items: center;
  padding: 72px 0 96px;
  color: #fff;
  background-color: var(--navy-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 70% center;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 80% 20%, rgba(90, 84, 160, 0.22), transparent 36%),
    linear-gradient(105deg, rgba(27, 24, 64, 0.94) 0%, rgba(27, 24, 64, 0.78) 44%, rgba(27, 24, 64, 0.4) 100%);
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 62%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 62%, transparent);
  pointer-events: none;
}
.hero-grid,
.split,
.band-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 56px;
  align-items: center;
}
.hero-grid {
  position: relative;
  z-index: 3;
  grid-template-columns: 1fr;
}
.hero-copy { max-width: 40rem; }
.split,
.band-grid,
.contact-grid { grid-template-columns: 1.05fr 0.95fr; }
.split { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7ddea8;
}
.kicker {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.kicker-light { color: #c5c6d4; }
h1, h2, h3 { margin: 0 0 14px; line-height: 1.15; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.15rem, 4.2vw, 3.35rem); font-weight: 800; max-width: none; }
h2 { font-size: clamp(1.7rem, 3vw, 2.45rem); font-weight: 800; }
h3 { font-size: 1.08rem; font-weight: 700; }
.accent { color: var(--accent-soft); }
.lead, .hero-copy p, .split p, .section-head p, .band p {
  color: var(--muted);
}
.hero .lead,
.hero-copy p { color: rgba(255, 255, 255, 0.78); }
.lead { font-size: 1.1rem; margin: 0 0 28px; max-width: 42ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-photo {
  position: relative;
}
.hero-photo img,
.photo-frame img,
.band figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.hero-photo img {
  min-height: 440px;
  max-height: 520px;
  object-position: 70% center;
  box-shadow: var(--shadow-lg);
}
.hero-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: 240px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(27, 24, 64, 0.88);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}
.photo-frame img {
  min-height: 420px;
  max-height: 500px;
  box-shadow: var(--shadow);
}
.split-photo { order: 0; }

.highlights {
  margin-top: -44px;
  position: relative;
  z-index: 2;
  padding-bottom: 64px;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.highlights article {
  padding: 22px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.highlights .card-title {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.highlights p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.section { padding: 88px 0; }
.section-alt { background: var(--paper); }
.section-head { max-width: 40rem; margin-bottom: 40px; }
.section-head h2 { margin-bottom: 10px; }
.note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.steps li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  counter-increment: step;
}
.steps li::before {
  content: counter(step);
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
}
.steps p { margin: 0; color: var(--muted); font-size: 15px; }
.quote {
  margin: 28px 0 0;
  color: var(--navy);
  font-weight: 600;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card img {
  width: 100%;
  height: 168px;
  object-fit: cover;
}
.service-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 24px;
}
.service-card h3 { margin-bottom: 8px; color: var(--navy); }
.service-card h3 a {
  color: inherit;
  text-decoration: none;
}
.service-card h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  flex: 1;
}
.service-more {
  display: inline-block;
  margin-top: 18px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.page-hero {
  padding: 40px 0 28px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}
.breadcrumb a {
  color: var(--navy);
  text-decoration: none;
}

.svc-hero {
  position: relative;
  isolation: isolate;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background-color: var(--navy-deep);
  background-size: cover;
  background-position: center;
}
.svc-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.svc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(27, 24, 64, 0.92) 0%, rgba(27, 24, 64, 0.62) 46%, rgba(27, 24, 64, 0.18) 100%),
    linear-gradient(0deg, rgba(27, 24, 64, 0.35), transparent 45%);
  pointer-events: none;
}
.svc-hero-copy {
  position: relative;
  z-index: 2;
  padding: 80px 0 72px;
  max-width: 740px;
}
.svc-hero .breadcrumb,
.svc-hero .breadcrumb a { color: rgba(255, 255, 255, 0.82); }
.svc-hero .kicker { color: var(--accent-soft); }
.svc-hero h1 { margin-bottom: 16px; }
.svc-hero .lead {
  max-width: 54ch;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
}
.svc-hero .btn-light { color: var(--navy); }
.svc-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.svc-intro img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.svc-intro .lead { max-width: none; }
.svc-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.svc-point {
  padding: 28px 24px;
  background: var(--paper);
  border-radius: var(--radius);
  border-top: 3px solid var(--navy);
}
.svc-point span {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.svc-point h3 { margin-bottom: 8px; font-size: 1.08rem; }
.svc-point p { margin: 0; color: var(--muted); font-size: 15px; }
.svc-cta {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
}
.svc-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
  align-items: stretch;
  gap: 32px;
}
.svc-cta-copy { padding: 64px 12px 64px 0; }
.svc-cta-copy h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.svc-cta-copy p { color: #d5d6e0; }
.svc-cta-copy .btn { margin: 8px 0 18px; }
.svc-cta-copy .btn-light { color: var(--navy); }
.cta-meta { margin: 0; font-size: 14px; color: #c5c6d4; }
.svc-cta-photo { min-height: 320px; }
.svc-cta-photo img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.related-card {
  display: block;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  color: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.related-card img {
  width: 100%;
  height: 128px;
  object-fit: cover;
}
.related-card span {
  display: block;
  padding: 14px 14px 16px;
  font-size: 14px;
  font-weight: 700;
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.service-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}
.service-layout .lead { max-width: none; font-size: 1.05rem; }
.points {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.points li { margin-bottom: 8px; }
.cta-panel {
  background: var(--navy);
  color: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
}
.cta-panel h2 { color: #fff; font-size: 1.45rem; }
.cta-panel p { color: #d5d6e0; }
.cta-panel .btn { margin: 8px 0 16px; }
.cta-panel .btn-light { color: var(--navy); }
.related {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.related a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-pill);
}
.related a:hover { border-color: var(--navy); }

.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 40px;
}
.reviews-head .section-head { margin-bottom: 0; }
.reviews-score {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.reviews-score strong {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.04em;
}
.reviews-score p { margin: 0; color: var(--muted); font-size: 14px; }
.reviews-stars {
  margin: 0 0 6px;
  color: #e0a100;
  letter-spacing: 0.12em;
  font-size: 15px;
  line-height: 1;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  display: flex;
  flex-direction: column;
  padding: 26px 24px 24px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.review-card blockquote {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  flex: 1;
}
.review-card footer cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--navy);
}
.review-card footer small {
  display: block;
  margin-top: 4px;
  color: var(--gray);
  font-size: 13px;
}
.reviews-more {
  margin: 32px 0 0;
  text-align: center;
}

.faq-wrap { max-width: 860px; }
.faq details {
  margin-bottom: 10px;
  padding: 0 22px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(27, 24, 64, 0.05);
}
.faq summary {
  cursor: pointer;
  position: relative;
  padding: 20px 36px 20px 0;
  font-weight: 700;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 18px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 400;
}
.faq details[open] summary::after { content: "–"; }
.faq p {
  margin: 0 0 20px;
  max-width: 70ch;
  color: var(--muted);
}

.mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.mv article,
.values article {
  padding: 26px 24px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.mv article { border-top: 3px solid var(--navy); }
.mv h3,
.values .card-title { color: var(--navy); }
.values .card-title {
  margin: 0 0 14px;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.mv p,
.values p { margin: 0; color: var(--muted); font-size: 15px; }
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.band {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: 80px 0;
}
.band p, .band address { color: #d5d6e0; }
.band a { color: #fff; }
.band .btn-light { color: var(--navy); }
.band figure img,
.map-embed {
  min-height: 340px;
  max-height: 420px;
  box-shadow: var(--shadow-lg);
}
.map-embed {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy-deep);
  max-height: none;
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}
.band-contacts { margin-top: 18px; }
.band-contacts a { text-decoration: none; font-weight: 600; }

.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }

.contact-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.contact-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.contact-list span { color: var(--gray); font-weight: 600; }
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.contact-form label {
  display: block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 10px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--navy);
  outline-offset: 1px;
}
.contact-form .btn { width: 100%; }
.form-hint { margin: 12px 0 0; color: var(--gray); font-size: 13px; }

.site-footer {
  background: var(--navy-deep);
  color: #c5c6d0;
  padding: 56px 0 18px;
}
.footer-grid {
  grid-template-columns: 1.3fr 1fr 1.1fr;
  align-items: start;
  padding-bottom: 32px;
}
.footer-logo { width: 190px; margin-bottom: 14px; }
.footer-title {
  margin: 0 0 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-grid a { display: block; text-decoration: none; margin-bottom: 8px; }
.footer-grid a:hover { color: #fff; }
.footer-grid p { margin: 0 0 8px; font-size: 14px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}
.footer-bottom a { color: #fff; text-decoration: none; }

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: #1fa855;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(31, 168, 85, 0.35);
}
.wa-float svg { width: 26px; height: 26px; }

@media (max-width: 1100px) {
  .values { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .band-grid,
  .contact-grid,
  .service-layout,
  .svc-intro,
  .svc-cta-grid,
  .svc-points,
  .related-grid,
  .steps,
  .services,
  .mv,
  .values,
  .highlights-grid,
  .reviews-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .reviews-head { flex-direction: column; align-items: flex-start; }
  .steps { gap: 12px; }
  h1 { max-width: none; }
  .svc-hero { min-height: 420px; }
  .svc-cta-copy { padding: 48px 0; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .hero {
    padding: 48px 0 88px;
    min-height: 620px;
  }
  .hero::after {
    background:
      linear-gradient(180deg, rgba(27, 24, 64, 0.5) 0%, rgba(27, 24, 64, 0.82) 48%, rgba(27, 24, 64, 0.94) 100%);
  }
  .hero-bg { object-position: 75% 22%; }
  .hero-photo img { min-height: 280px; }
  .svc-hero::after {
    background:
      linear-gradient(180deg, rgba(27, 24, 64, 0.32) 0%, rgba(27, 24, 64, 0.72) 42%, rgba(27, 24, 64, 0.94) 100%);
  }
  .highlights { margin-top: -48px; }
}

@media (max-width: 720px) {
  .topbar-inner { justify-content: center; }
  .topbar-inner > span { display: none; }
  .menu-btn { display: block; }
  .menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 120px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }
  .menu.is-open { display: flex; }
  .menu a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    text-transform: none;
    letter-spacing: 0;
    font-size: 15px;
  }
  .menu-cta {
    margin-top: 12px;
    color: #fff;
    border: 0;
    text-align: center;
  }
  .menu a.menu-cta { color: #fff; }
  .hero {
    min-height: 78vh;
    padding: 48px 0 80px;
    align-items: flex-end;
  }
  .svc-hero {
    min-height: 560px;
    align-items: flex-end;
  }
  .svc-hero-copy { padding: 56px 0 48px; }
  .hero-caption { display: none; }
  .map-embed iframe { min-height: 280px; }
  .highlights { margin-top: -28px; padding-bottom: 28px; }
  .section, .band { padding: 56px 0; }
  .contact-list li { grid-template-columns: 1fr; gap: 2px; }
  .footer-bottom { flex-direction: column; }
  .highlights-grid,
  .related-grid { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn,
  .service-card,
  .related-card { transition: none; }
  .btn:hover,
  .service-card:hover,
  .related-card:hover { transform: none; }
}
