:root {
  --bg: #ffffff;
  --surface: #fdfdfd;
  --surface-2: #f7f9fd;
  --surface-3: #eef3fb;
  --text: #11264f;
  --muted: #61708a;
  --border: rgba(17, 38, 79, 0.09);
  --border-strong: rgba(17, 38, 79, 0.15);
  --accent: #e4c328;
  --accent-dark: #b58b13;
  --accent-soft: rgba(228, 195, 40, 0.14);
  --brand-blue: #112b67;
  --brand-blue-deep: #0a1d49;
  --brand-blue-soft: rgba(17, 43, 103, 0.08);
  --brand-gold: #e4c328;
  --brand-gold-deep: #b58b13;
  --brand-gold-soft: rgba(228, 195, 40, 0.16);
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 22px 64px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 30px 90px rgba(15, 23, 42, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(228, 195, 40, 0.12), transparent 24%),
    radial-gradient(circle at right 12%, rgba(17, 43, 103, 0.06), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  font-family: "Noto Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 24, 39, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 39, 0.015) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 80%);
  z-index: -2;
}

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

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h1 {
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.9rem);
  font-weight: 600;
}

h2 {
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(2.15rem, 4vw, 4rem);
  font-weight: 600;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -120px;
  left: 16px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 81;
  background: rgba(252, 251, 248, 0.98);
  border-bottom: 1px solid rgba(16, 24, 39, 0.04);
  backdrop-filter: blur(14px);
}

.topbar__inner {
  width: min(100% - 48px, 1320px);
  min-height: 34px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-inline: auto;
}

.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #6d7481;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.topbar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: #8c6425;
  flex: 0 0 auto;
}

.topbar__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.topbar__link--center {
  justify-self: center;
}

.topbar__social {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.topbar__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #7f6743;
  border: 1px solid rgba(16, 24, 39, 0.05);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  flex: 0 0 auto;
}

.topbar__social svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
}

.site-header {
  position: sticky;
  top: 34px;
  z-index: 80;
  background: rgba(255, 255, 255, 0.9);
  transition: background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, backdrop-filter 0.28s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 155, 106, 0.88), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}

.site-header--scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(16, 24, 39, 0.05);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.035);
}

.site-header--scrolled::after {
  transform: scaleX(1);
}

.site-header .container {
  width: min(100% - 48px, 1320px);
}

.header-bar {
  min-height: 82px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 26px;
  position: relative;
  border-bottom: 1px solid rgba(16, 24, 39, 0.05);
}

.header-bar::before {
  content: "";
  position: absolute;
  left: 180px;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(16, 24, 39, 0.07), rgba(16, 24, 39, 0.02) 32%, transparent 72%);
  transform: translateY(-50%);
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
  padding-right: 18px;
}

.brand__logo {
  width: 176px;
  height: 176px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand__text strong {
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.brand__text small {
  color: var(--muted);
  font-size: 0.83rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: 0;
  position: relative;
  z-index: 1;
  justify-self: center;
  background: rgba(255, 255, 255, 0.92);
  padding-inline: 14px;
}

.site-nav > a,
.nav-trigger {
  position: relative;
  color: #2c3444;
  font-weight: 500;
  font-size: 0.88rem;
  text-transform: uppercase;
  padding: 8px 18px;
  letter-spacing: 0.16em;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.site-nav > a + .nav-item,
.nav-item + .nav-item,
.nav-item + a {
  position: relative;
}

.site-nav > a + .nav-item::before,
.nav-item + .nav-item::before,
.nav-item + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 18px;
  background: rgba(16, 24, 39, 0.08);
  transform: translateY(-50%);
}

.site-nav > a::after,
.nav-trigger::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.site-nav > a:hover::after,
.nav-item:hover > .nav-trigger::after,
.nav-item:focus-within > .nav-trigger::after {
  transform: scaleX(1);
}

.nav-item {
  position: static;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.nav-trigger::before {
  content: "";
  width: 4px;
  height: 4px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.6;
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  transform: translateX(-50%) translateY(14px);
  width: min(1120px, calc(100vw - 72px));
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1.25fr;
  gap: 22px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(252, 250, 246, 0.98));
  border: 1px solid rgba(16, 24, 39, 0.07);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.mega-menu--regions {
  width: min(760px, calc(100vw - 56px));
  grid-template-columns: 1fr 1fr 280px;
}

.nav-item:hover > .mega-menu,
.nav-item:focus-within > .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu--compact {
  grid-template-columns: 0.9fr 0.9fr 1.2fr;
}

.mega-menu--small {
  width: 320px;
  left: 50%;
  transform: translateX(-50%) translateY(14px);
  grid-template-columns: 1fr;
}

.nav-item:hover > .mega-menu--small,
.nav-item:focus-within > .mega-menu--small {
  transform: translateX(-50%) translateY(0);
}

.mega-menu--districts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mega-menu__links {
  display: grid;
  gap: 8px;
  align-content: start;
}

.mega-menu__links a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: #233041;
  font-weight: 600;
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(16, 24, 39, 0.05);
  transition: background 0.2s ease, transform 0.2s ease;
}

.mega-menu__links a:hover {
  background: rgba(184, 155, 106, 0.12);
  transform: translateX(3px);
}

.mega-menu__links--stacked a {
  background: transparent;
  padding: 10px 2px;
  border-radius: 0;
  border-bottom: 1px solid rgba(16, 24, 39, 0.06);
}

.mega-menu__promo {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #fbfaf6;
  border: 1px solid rgba(16, 24, 39, 0.06);
}

.mega-menu__promo img {
  width: 100%;
  height: 196px;
  object-fit: cover;
}

.mega-menu__promo-content {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.mega-menu__promo-content span {
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  font-weight: 800;
}

.mega-menu__promo-content strong {
  font-size: 1.05rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.mega-menu__promo-content a {
  color: var(--accent-dark);
  font-weight: 800;
}

.district-mini-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(248, 246, 241, 0.7);
  border: 1px solid rgba(16, 24, 39, 0.06);
  transition: transform 0.2s ease, background 0.2s ease;
}

.district-mini-card:hover {
  transform: translateY(-2px);
  background: rgba(184, 155, 106, 0.1);
}

.district-mini-card__icon {
  color: var(--accent-dark);
  font-size: 1rem;
}

.district-mini-card strong {
  font-size: 1rem;
}

.district-mini-card small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.98));
  padding-left: 18px;
}

.header-call {
  min-height: 46px;
  padding: 0 18px;
  border-color: rgba(16, 24, 39, 0.08);
  background: rgba(251, 250, 246, 0.98);
  font-size: 0.88rem;
}

.header-cta {
  min-height: 46px;
  padding: 0 20px;
  background: #b89b6a;
  box-shadow: 0 12px 26px rgba(184, 155, 106, 0.18);
  font-size: 0.88rem;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(184, 155, 106, 0.22);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(16, 24, 39, 0.06);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  padding: 0;
  cursor: pointer;
  flex: 0 0 auto;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 79;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

body.nav-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu__inner {
  width: min(100% - 40px, 1320px);
  height: 100%;
  margin-inline: auto;
  padding: 112px 0 40px;
  display: grid;
  align-content: start;
  gap: 28px;
  overflow-y: auto;
}

.mobile-menu__brand {
  display: inline-flex;
}

.mobile-menu__logo {
  width: 170px;
  height: 170px;
  object-fit: contain;
}

.mobile-menu__nav {
  display: grid;
  gap: 18px;
}

.mobile-menu__nav > a,
.mobile-menu__group summary {
  list-style: none;
  color: var(--text);
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.mobile-menu__group summary {
  cursor: pointer;
}

.mobile-menu__group summary::-webkit-details-marker {
  display: none;
}

.mobile-menu__submenu {
  display: grid;
  gap: 10px;
  padding: 12px 0 0 8px;
}

.mobile-menu__submenu a {
  color: #5f6775;
  font-size: 1rem;
  font-weight: 600;
}

.mobile-menu__meta {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.mobile-menu__meta > a:not(.mobile-menu__cta) {
  color: #5f6775;
  font-weight: 600;
}

.mobile-menu__cta {
  width: min(360px, 100%);
  min-height: 52px;
  background: #b89b6a;
  box-shadow: 0 12px 26px rgba(184, 155, 106, 0.18);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.94rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), #d0aa63);
  color: #fff;
  box-shadow: 0 16px 40px rgba(182, 138, 60, 0.24);
}

.btn--primary:hover {
  box-shadow: 0 22px 50px rgba(182, 138, 60, 0.30);
}

.btn--secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--border);
}

.btn--secondary:hover,
.btn--ghost:hover {
  border-color: var(--border-strong);
  background: rgba(16, 24, 39, 0.02);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 46px 0 18px;
  min-height: calc(100vh - 134px);
  display: flex;
  align-items: center;
}

.hero__backdrop {
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.75;
  pointer-events: none;
}

.hero__backdrop--one {
  width: 320px;
  height: 320px;
  top: 16px;
  right: -120px;
  background: rgba(182, 138, 60, 0.15);
}

.hero__backdrop--two {
  width: 420px;
  height: 420px;
  left: -180px;
  bottom: 0;
  background: rgba(17, 24, 39, 0.05);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 1;
  padding: 18px 0;
}

.hero__copy h1 {
  max-width: 11ch;
}

.hero__copy p {
  max-width: 62ch;
  margin-top: 22px;
  font-size: 1.06rem;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.stat {
  padding: 18px 18px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
}

.stat strong {
  display: block;
  font-size: 1.35rem;
  letter-spacing: -0.05em;
}

.stat span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero__visual {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.hero__stack {
  display: grid;
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 212px;
  border-radius: 28px;
  overflow: clip;
  background: #fff;
  border: 1px solid rgba(16, 24, 39, 0.08);
  box-shadow: var(--shadow-md);
}

.feature-card--large {
  min-height: 452px;
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(9, 11, 18, 0.72));
  pointer-events: none;
}

.feature-card__label {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 4px;
  color: #fff;
}

.feature-card__label span {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.8);
}

.feature-card__label strong {
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}

.trust-strip {
  padding: 18px 0 0;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-sm);
}

.trust-strip__item {
  padding: 12px 8px;
}

.trust-strip__item span {
  display: block;
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.trust-strip__item strong {
  display: block;
  margin-top: 6px;
  font-size: 1.02rem;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.premium-badges {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.premium-badges div {
  flex: 1 1 180px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
  color: var(--text);
  font-weight: 700;
  text-align: center;
}

.section {
  padding: 96px 0;
}

.section--soft {
  background:
    linear-gradient(180deg, rgba(245, 241, 233, 0.55), rgba(245, 241, 233, 0.25));
  border-block: 1px solid rgba(16, 24, 39, 0.04);
}

.section-head {
  display: grid;
  gap: 6px;
  max-width: 720px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 62ch;
}

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

.service-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 22px;
}

.service-card p {
  margin-top: 8px;
}

.service-card--accent {
  background:
    linear-gradient(160deg, rgba(182, 138, 60, 0.12), rgba(255, 255, 255, 0.86)),
    rgba(255, 255, 255, 0.96);
  display: flex;
  align-items: end;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--accent-dark);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  gap: 30px;
  align-items: stretch;
}

.split--alt {
  grid-template-columns: 0.88fr 1.12fr;
}

.benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.benefit {
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.benefit strong {
  display: block;
  font-size: 1.02rem;
}

.benefit span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.feature-panel,
.gallery-panel,
.faq-panel {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.feature-panel {
  display: grid;
  gap: 18px;
}

.feature-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.feature-panel__top span {
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
}

.feature-panel__top strong {
  font-size: 1rem;
}

.feature-panel__image {
  width: 100%;
  min-height: 760px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  overflow: clip;
  padding: 12px;
  background: var(--surface-2);
}

.feature-panel__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.feature-panel__grid > div {
  padding: 14px 16px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.feature-panel__grid span {
  display: block;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  font-weight: 800;
}

.feature-panel__grid strong {
  display: block;
  margin-top: 6px;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.feature-panel__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.feature-panel__steps {
  display: grid;
  gap: 10px;
  align-content: start;
}

.feature-step {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.feature-step span {
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  font-weight: 800;
}

.feature-step strong {
  font-size: 0.94rem;
  line-height: 1.45;
}

.gallery-panel,
.faq-panel {
  display: grid;
  gap: 12px;
  align-content: start;
}

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

.use-case-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.use-case-card strong {
  font-size: 1rem;
  letter-spacing: -0.03em;
  color: var(--brand-blue);
}

.use-case-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.keyword-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.keyword-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(17, 43, 103, 0.06);
  color: var(--brand-blue);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  grid-auto-rows: 170px;
}

.gallery-masonry img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-masonry img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.masonry-tall {
  grid-row: span 2;
}

.masonry-wide {
  grid-column: span 2;
}

.faq {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--surface);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--accent-dark);
  font-size: 1.2rem;
  line-height: 1;
}

.faq[open] summary::after {
  content: "–";
}

.faq p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .faq {
    width: 100%;
  }

  .service-detail__hero,
  .service-detail__grid {
    grid-template-columns: 1fr;
  }

  .service-detail__hero {
    padding: 22px;
  }

  .service-detail__content h2 {
    font-size: clamp(2.1rem, 8vw, 3.3rem);
  }

  .service-detail__media .feature-panel__image {
    aspect-ratio: 4 / 3;
  }

  .feature-panel__body {
    grid-template-columns: 1fr;
  }

  .use-case-grid {
    grid-template-columns: 1fr;
  }
}

.section-head--compact {
  max-width: 520px;
  margin-bottom: 14px;
}

.section-head--compact p {
  font-size: 0.94rem;
  line-height: 1.55;
}

.service-detail {
  display: grid;
  gap: 22px;
}

.service-detail__hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.22fr);
  gap: 28px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(228, 195, 40, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.92));
  box-shadow: var(--shadow-lg);
}

.service-detail__content {
  display: grid;
  gap: 18px;
  align-content: start;
  padding-right: 10px;
}

.service-detail__content h2 {
  font-size: clamp(2.4rem, 4.6vw, 4.6rem);
  line-height: 0.95;
}

.service-detail__content p {
  max-width: 58ch;
  font-size: 1.02rem;
  line-height: 1.7;
}

.service-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.service-detail__media {
  min-width: 0;
}

.service-detail__media .feature-panel__image {
  min-height: 0;
  aspect-ratio: 16 / 10;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 30px;
  overflow: hidden;
  background: var(--surface-2);
  box-shadow: var(--shadow-lg);
}

.service-detail__media .feature-panel__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.service-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 22px;
}

.service-detail__card {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-md);
}

.service-detail__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.service-detail__card-head span {
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
}

.service-detail__card-head strong {
  font-size: 0.96rem;
  color: var(--text);
}

.service-detail__steps {
  display: grid;
  gap: 12px;
}

.service-detail__card--faq {
  gap: 14px;
}

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

.district-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
  min-height: 200px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.district-card span {
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 800;
}

.district-card strong {
  font-size: 1.24rem;
}

.district-card--feature {
  background:
    linear-gradient(165deg, rgba(182, 138, 60, 0.14), rgba(255, 255, 255, 0.94)),
    rgba(255, 255, 255, 0.96);
}

.cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 241, 233, 0.92));
  box-shadow: var(--shadow-md);
}

.cta-block h2 {
  max-width: 14ch;
}

.cta-block p {
  max-width: 56ch;
  margin-top: 14px;
}

.cta-block__actions {
  display: grid;
  gap: 12px;
  min-width: 240px;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.process-step {
  padding: 22px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.process-step strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.24em;
  color: var(--accent-dark);
}

.process-step span {
  display: block;
  margin-top: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.site-footer {
  padding: 44px 0 56px;
  border-top: 1px solid var(--border);
}

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

.brand--footer {
  margin-bottom: 14px;
}

.site-footer h3 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.site-footer a,
.site-footer span {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
}

.site-footer a:hover {
  color: var(--text);
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  display: grid;
  gap: 10px;
  width: min(200px, calc(100vw - 40px));
}

.floating-action {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(23, 30, 43, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.floating-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(23, 30, 43, 0.28);
}

.floating-action__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.floating-action__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.floating-action--call {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-deep));
}

.floating-action--call:hover {
  background: linear-gradient(135deg, #102a63, #08183d);
}

.floating-action--whatsapp {
  background: linear-gradient(135deg, #25d366, #1ea952);
}

.floating-action--whatsapp:hover {
  background: linear-gradient(135deg, #1ec35c, #189845);
}

@media (max-width: 720px) {
  .floating-actions {
    right: 16px;
    bottom: 16px;
    width: min(180px, calc(100vw - 32px));
  }

  .floating-action {
    min-height: 48px;
    padding: 0 14px;
    font-size: 0.92rem;
  }
}

@media (max-width: 1080px) {
  .topbar {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .header-bar {
    grid-template-columns: auto 1fr auto;
  }

  .header-bar::before {
    display: none;
  }

  .brand,
  .header-actions {
    background: transparent;
    padding: 0;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    position: relative;
    z-index: 81;
  }

  .site-nav {
    display: none;
  }

  .hero__grid,
  .split,
  .split--alt,
  .footer-grid,
  .district-grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    grid-template-columns: 1fr;
  }

  .feature-card--large {
    min-height: 360px;
  }

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

  .trust-strip__grid,
  .hero__stats,
  .feature-panel__grid,
  .gallery-grid,
  .process-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .cta-block__actions {
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header .container {
    width: min(100% - 24px, 1320px);
  }

  .header-bar {
    min-height: 76px;
    gap: 14px;
  }

  .brand__logo {
    width: 126px;
    height: 126px;
  }

  .mobile-menu__inner {
    width: min(100% - 24px, 1320px);
    padding: 96px 0 28px;
  }

  .mobile-menu__logo {
    width: 136px;
    height: 136px;
  }

  .mobile-menu__nav > a,
  .mobile-menu__group summary {
    font-size: 2rem;
  }

  .hero {
    padding-top: 26px;
  }

  .hero__copy h1 {
    max-width: 100%;
  }

  .hero__stats,
  .trust-strip__grid,
  .service-grid,
  .gallery-grid,
  .gallery-masonry,
  .feature-panel__grid,
  .process-line,
  .cta-block__actions {
    grid-template-columns: 1fr;
  }

  .premium-badges {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .service-card img {
    height: 200px;
  }

  .cta-block {
    padding: 22px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header Reset */
.topbar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-deep));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.topbar__inner {
  width: min(100% - 48px, 1320px);
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-inline: auto;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-wrap: wrap;
}

.topbar__meta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.76rem;
  font-weight: 500;
}

.topbar__meta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  color: var(--brand-gold);
  flex: 0 0 auto;
}

.topbar__meta-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.topbar__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  flex: 0 0 auto;
}

.topbar__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  color: #ffffff;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: translateY(-2px);
  padding: 0;
}

.topbar__social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.topbar__meta--address {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.82);
}

.site-header {
  position: sticky;
  top: 36px;
  z-index: 89;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(17, 38, 79, 0.07);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.22s ease, background 0.22s ease;
}

.site-header--scrolled {
  box-shadow: 0 14px 34px rgba(17, 43, 103, 0.08);
}

.site-header .container {
  width: min(100% - 48px, 1320px);
}

.header-bar {
  min-height: 82px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  position: relative;
  margin-top: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.header-bar::before {
  content: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.brand__logo {
  width: 196px;
  max-height: 128px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-width: 0;
  white-space: nowrap;
  justify-self: end;
  padding-right: 0;
}

.site-nav > a,
.nav-trigger {
  position: relative;
  padding: 8px 0;
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 600;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
}

.site-nav > a::after,
.nav-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav > a:hover::after,
.nav-item:hover > .nav-trigger::after,
.nav-item:focus-within > .nav-trigger::after {
  transform: scaleX(1);
}

.nav-item {
  position: static;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-direction: row-reverse;
}

.nav-trigger::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.6;
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 18px);
  transform: translateX(-50%) translateY(12px);
  width: min(920px, calc(100vw - 56px));
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 280px;
  gap: 26px;
  padding: 30px 32px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #fbfcff);
  border: 1px solid rgba(17, 38, 79, 0.08);
  box-shadow: 0 18px 40px rgba(17, 43, 103, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.nav-item:hover > .mega-menu,
.nav-item:focus-within > .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu__column {
  display: grid;
  align-content: start;
  gap: 8px;
}

.mega-menu__column h3 {
  margin-bottom: 8px;
  color: var(--brand-blue);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.mega-menu__column a {
  display: block;
  padding: 1px 0;
  border-radius: 0;
  color: #4f617f;
  font-size: 0.8rem;
  font-weight: 500;
  background: transparent;
  border: 0;
  transition: color 0.2s ease, transform 0.2s ease;
  line-height: 1.35;
}

.mega-menu__column a:hover {
  color: var(--brand-blue);
  transform: translateX(2px);
}

.mega-menu__feature {
  position: relative;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  min-height: 292px;
  background: linear-gradient(180deg, #f7f9fd, #eef3fb);
}

.mega-menu__feature--small {
  min-height: 250px;
}

.mega-menu--regions {
  width: min(1080px, calc(100vw - 56px));
  max-width: 1080px;
  grid-template-columns: repeat(4, minmax(0, 1fr)) 240px;
  gap: 22px;
}

.mega-menu--regions .mega-menu__column a {
  font-size: 0.77rem;
  line-height: 1.3;
}

.mega-menu__feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mega-menu__feature-overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(17, 38, 79, 0.06);
}

.mega-menu__feature-overlay span {
  color: var(--brand-blue);
  font-size: 0.82rem;
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 10px;
  min-width: 0;
}

.header-call {
  min-height: 52px;
  padding: 0 18px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-deep));
  color: #fff;
  border: 1px solid rgba(10, 29, 73, 0.9);
  box-shadow: 0 14px 28px rgba(17, 43, 103, 0.18);
  white-space: nowrap;
  font-size: 0.8rem;
}

.header-call:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(17, 43, 103, 0.24);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 18px;
  background: linear-gradient(135deg, #20c45a, #25d366);
  color: #fff;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.22);
  white-space: nowrap;
  font-size: 0.8rem;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.28);
}

.header-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.header-cta__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(17, 38, 79, 0.08);
  border-radius: 16px;
  background: #fff;
  color: var(--brand-blue);
  box-shadow: 0 10px 24px rgba(17, 43, 103, 0.07);
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 88;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 0.26s ease, transform 0.26s ease;
}

body.nav-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.mobile-menu__inner {
  width: min(100% - 32px, 560px);
  height: 100%;
  margin-left: auto;
  padding: 26px 0 28px;
  display: grid;
  align-content: start;
  gap: 24px;
  overflow-y: auto;
}

.mobile-menu__top {
  display: grid;
  gap: 12px;
}

.mobile-menu__logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.mobile-menu__top p {
  max-width: 28ch;
  color: var(--muted);
}

.mobile-menu__nav {
  display: grid;
  gap: 14px;
}

.mobile-menu__nav > a,
.mobile-menu__group summary {
  list-style: none;
  color: var(--brand-blue);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mobile-menu__group summary {
  cursor: pointer;
}

.mobile-menu__group summary::-webkit-details-marker {
  display: none;
}

.mobile-menu__submenu {
  display: grid;
  gap: 10px;
  padding: 12px 0 0 10px;
}

.mobile-menu__submenu a {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
}

.mobile-menu__meta {
  display: grid;
  gap: 12px;
  padding-top: 10px;
}

.mobile-menu__meta > a:not(.mobile-menu__cta) {
  color: var(--brand-blue);
  font-weight: 600;
}

.mobile-menu__cta {
  min-height: 52px;
}

.header-preview {
  min-height: calc(100vh - 126px);
  background:
    radial-gradient(circle at top right, rgba(228, 195, 40, 0.14), transparent 22%),
    radial-gradient(circle at left 14%, rgba(17, 43, 103, 0.08), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.header-preview__stage {
  width: min(100% - 32px, 1320px);
  margin-inline: auto;
  padding: 90px 0 120px;
}

.header-preview__card {
  max-width: 760px;
  padding: 34px;
  border: 1px solid rgba(17, 38, 79, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 64px rgba(17, 43, 103, 0.08);
}

.header-preview__card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
}

.site-footer--new {
  position: relative;
  padding: 74px 0 24px;
  background:
    radial-gradient(circle at top left, rgba(228, 195, 40, 0.11), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f4f7fc 100%);
  border-top: 1px solid rgba(17, 38, 79, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.footer-grid--new {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 30px;
  padding-bottom: 22px;
}

.footer-grid--new a,
.footer-grid--new span {
  display: block;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 16px;
}

.footer-brand__logo {
  width: 220px;
  max-width: 100%;
  height: auto;
}

.footer-brand p {
  max-width: 40ch;
  color: var(--muted);
  line-height: 1.7;
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact a,
.footer-contact span {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  color: #4f617f;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-contact a::before,
.footer-contact span::before {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background-color: var(--brand-blue);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.footer-contact a[href^="tel:"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8a15.7 15.7 0 0 0 6.6 6.6l2.2-2.2a1.5 1.5 0 0 1 1.5-.37c1.17.39 2.4.58 3.67.58A1.4 1.4 0 0 1 22 16.83V21a1.4 1.4 0 0 1-1.4 1.4C10.33 22.4 1.6 13.67 1.6 3.4A1.4 1.4 0 0 1 3 2h4.17a1.4 1.4 0 0 1 1.4 1.4c0 1.27.2 2.5.58 3.67a1.5 1.5 0 0 1-.37 1.5z'/%3E%3C/svg%3E");
}

.footer-contact a[href^="mailto:"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 5.5A2.5 2.5 0 0 1 5.5 3h13A2.5 2.5 0 0 1 21 5.5v13a2.5 2.5 0 0 1-2.5 2.5h-13A2.5 2.5 0 0 1 3 18.5zm2.1-.7 6.9 5.3 6.9-5.3zm14.1 1.82-6.66 5.13a.9.9 0 0 1-1.1 0L4.8 6.62V18.5a.7.7 0 0 0 .7.7h13a.7.7 0 0 0 .7-.7z'/%3E%3C/svg%3E");
}

.footer-contact span::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c-4.42 0-8 3.58-8 8 0 5.25 8 12 8 12s8-6.75 8-12c0-4.42-3.58-8-8-8zm0 11.2A3.2 3.2 0 1 1 12 6.8a3.2 3.2 0 0 1 0 6.4z'/%3E%3C/svg%3E");
}

.site-footer--new h3 {
  margin-bottom: 14px;
  color: var(--brand-blue);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-footer--new a,
.site-footer--new span {
  color: #5f6f89;
  font-size: 0.94rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.site-footer--new a:hover {
  color: var(--brand-blue);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(17, 38, 79, 0.08);
  color: #6b7891;
  font-size: 0.88rem;
}

.footer-bottom__links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-bottom__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(17, 43, 103, 0.06);
  color: transparent;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}

.footer-bottom__links a::before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: var(--brand-blue);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.footer-bottom__links a[href*="facebook"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13.5 22v-8.2h2.77l.42-3.2H13.5V8.56c0-.93.26-1.56 1.59-1.56h1.7V4.14c-.83-.09-1.67-.13-2.5-.12-2.47 0-4.16 1.51-4.16 4.29v2.39H7.35v3.2h2.78V22z'/%3E%3C/svg%3E");
}

.footer-bottom__links a[href*="instagram"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.5 2h9A5.5 5.5 0 0 1 22 7.5v9a5.5 5.5 0 0 1-5.5 5.5h-9A5.5 5.5 0 0 1 2 16.5v-9A5.5 5.5 0 0 1 7.5 2m0 1.8A3.7 3.7 0 0 0 3.8 7.5v9a3.7 3.7 0 0 0 3.7 3.7h9a3.7 3.7 0 0 0 3.7-3.7v-9a3.7 3.7 0 0 0-3.7-3.7zm9.45 1.35a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2M12 6.6A5.4 5.4 0 1 1 6.6 12 5.4 5.4 0 0 1 12 6.6m0 1.8A3.6 3.6 0 1 0 15.6 12 3.6 3.6 0 0 0 12 8.4'/%3E%3C/svg%3E");
}

.footer-bottom__links a[href*="wa.me"]::before,
.footer-bottom__links a[href^="https://wa"]::before,
.footer-bottom__links a[href^="http://wa"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12.04 2C6.51 2 2.02 6.48 2.02 12c0 1.77.46 3.5 1.34 5.02L2 22l5.13-1.34A9.97 9.97 0 0 0 12.04 22c5.53 0 10.01-4.48 10.01-10S17.57 2 12.04 2m0 18.18a8.12 8.12 0 0 1-4.14-1.13l-.3-.18-3.04.79.81-2.96-.2-.31A8.12 8.12 0 1 1 12.04 20.18m4.45-5.98c-.24-.12-1.43-.71-1.65-.79s-.38-.12-.53.12-.6.79-.74.95-.27.18-.5.06a6.61 6.61 0 0 1-1.95-1.21 7.32 7.32 0 0 1-1.37-1.71c-.14-.24-.01-.37.1-.49s.24-.27.36-.41a1.56 1.56 0 0 0 .24-.4.45.45 0 0 0-.02-.43c-.06-.12-.53-1.29-.73-1.76-.19-.46-.39-.4-.53-.41h-.45c-.15 0-.4.06-.61.29a2.66 2.66 0 0 0-.83 1.98 4.62 4.62 0 0 0 .96 2.39 10.51 10.51 0 0 0 4.03 3.56c.57.25 1.02.4 1.37.51.58.18 1.11.15 1.53.09.47-.07 1.43-.58 1.63-1.13.2-.56.2-1.04.14-1.14-.05-.1-.22-.17-.46-.29'/%3E%3C/svg%3E");
}

.footer-bottom__links a:hover {
  background: rgba(17, 43, 103, 0.1);
}

.footer-bottom__links a:focus-visible {
  outline: 2px solid rgba(17, 43, 103, 0.22);
  outline-offset: 2px;
}

.footer-regions {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(17, 38, 79, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 248, 252, 0.98) 100%);
  box-shadow: 0 18px 50px rgba(17, 38, 79, 0.04);
}

.footer-regions__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.footer-regions__title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-blue);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.footer-regions__title::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-blue), #4f79c8);
  box-shadow: 0 8px 18px rgba(28, 63, 136, 0.22);
}

.footer-regions__intro {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-regions__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px 12px;
}

.footer-regions__list a {
  display: block;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: #4f617f;
  margin-bottom: 0;
  min-height: 0;
  text-decoration: none;
}

.footer-regions__list a:hover {
  background: transparent;
  color: var(--brand-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.header-preview__card h1 {
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.05;
}

.header-preview__card p {
  max-width: 54ch;
  margin-top: 16px;
  font-size: 1rem;
}

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

.contact-main {
  padding-bottom: 40px;
}

.home-main {
  padding-bottom: 40px;
}

.home-hero,
.gallery-hero {
  padding: 72px 0 28px;
}

.home-hero__inner,
.gallery-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 24px;
  align-items: center;
}

.home-hero--showcase .home-hero__inner {
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  gap: 28px;
  align-items: stretch;
}

.home-hero--showcase {
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}

.home-hero--showcase::before,
.home-hero--showcase::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.home-hero--showcase::before {
  width: 360px;
  height: 360px;
  right: -120px;
  top: -100px;
  background: rgba(228, 195, 40, 0.1);
  filter: blur(4px);
}

.home-hero--showcase::after {
  width: 260px;
  height: 260px;
  left: -100px;
  bottom: 10px;
  background: rgba(17, 43, 103, 0.06);
  filter: blur(4px);
}

.home-hero__copy,
.home-hero__visual,
.gallery-hero__copy,
.gallery-hero__stats,
.final-cta,
.service-overview__card,
.process-steps article,
.region-highlight article,
.gallery-card {
  border: 1px solid rgba(17, 38, 79, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 48px rgba(17, 43, 103, 0.07);
}

.home-hero__copy,
.gallery-hero__copy,
.gallery-hero__stats {
  padding: 38px;
}

.home-hero--showcase .home-hero__copy {
  position: relative;
  z-index: 1;
}

.home-hero__copy h1,
.gallery-hero__copy h1,
.final-cta h2,
.section-heading h2 {
  margin: 14px 0 12px;
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(2.2rem, 4.3vw, 4.2rem);
  line-height: 1.08;
}

.home-hero__copy h1 {
  max-width: 11ch;
}

.home-hero__copy p {
  max-width: 52ch;
}

.final-cta__title {
  font-family: "Noto Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.hero-metrics__item {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(17, 38, 79, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(17, 43, 103, 0.06);
}

.hero-metrics__item strong {
  display: block;
  color: var(--brand-blue);
  font-size: 1.08rem;
  margin-bottom: 4px;
}

.hero-metrics__item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-slider {
  position: relative;
  min-height: 100%;
  padding: 18px;
  border-radius: 32px;
  border: 1px solid rgba(17, 38, 79, 0.08);
  background:
    radial-gradient(circle at top left, rgba(228, 195, 40, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 253, 0.96));
  box-shadow: 0 24px 64px rgba(17, 43, 103, 0.1);
}

.hero-slider__viewport {
  position: relative;
  min-height: 474px;
  overflow: hidden;
  border-radius: 24px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.45s ease, transform 0.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 16, 42, 0.05), rgba(6, 16, 42, 0.36) 72%, rgba(6, 16, 42, 0.64)),
    radial-gradient(circle at top right, rgba(228, 195, 40, 0.14), transparent 28%);
}

.hero-slide__overlay {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 1;
  padding: 22px 22px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  color: #fff;
}

.hero-slide__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(228, 195, 40, 0.18);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-slide__overlay h3 {
  margin: 12px 0 8px;
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(1.3rem, 2.6vw, 2.1rem);
  line-height: 1.08;
  color: #fff;
}

.hero-slide__overlay p {
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
}

.hero-slider__controls {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}

.hero-slider__button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(17, 38, 79, 0.08);
  border-radius: 14px;
  background: #fff;
  color: var(--brand-blue);
  box-shadow: 0 10px 24px rgba(17, 43, 103, 0.08);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.hero-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: rgba(17, 43, 103, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, width 0.2s ease;
}

.hero-slider__dot.is-active {
  width: 28px;
  background: var(--brand-blue);
}

.hero-slider__button:hover,
.hero-slider__dot:hover {
  transform: translateY(-1px);
}

.gallery-card img,
.service-overview__card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.home-strip {
  padding: 18px 0 0;
}

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

.home-strip__grid > div {
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(17, 43, 103, 0.04), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(17, 38, 79, 0.06);
  box-shadow: 0 14px 34px rgba(17, 43, 103, 0.05);
}

.home-strip__grid strong {
  display: block;
  color: var(--brand-blue);
  font-size: 1rem;
  margin-bottom: 6px;
}

.home-strip__grid span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-showcase {
  position: relative;
  width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background: #07162f;
}

.hero-showcase__slider {
  position: relative;
  min-height: 800px;
  height: 800px;
}

.hero-showcase__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
  transition: opacity 0.55s ease;
}

.hero-showcase__slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.hero-showcase__media {
  position: absolute;
  inset: 0;
}

.hero-showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-showcase__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 14, 30, 0.82) 0%, rgba(7, 14, 30, 0.62) 38%, rgba(7, 14, 30, 0.26) 70%, rgba(7, 14, 30, 0.52) 100%),
    linear-gradient(180deg, rgba(7, 14, 30, 0.06), rgba(7, 14, 30, 0.36));
}

.hero-showcase__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-showcase__content .container {
  width: min(100% - 48px, var(--container));
}

.hero-showcase__copy {
  max-width: 700px;
  color: #fff;
}

.hero-showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(228, 195, 40, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-showcase__title {
  margin: 16px 0 12px;
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

.hero-showcase__text {
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

.hero-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-showcase .btn--primary {
  background: linear-gradient(135deg, var(--accent), #d5ad55);
  color: var(--brand-blue-deep);
  box-shadow: 0 16px 36px rgba(228, 195, 40, 0.24);
}

.hero-showcase .btn--secondary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand-blue-deep);
  border-color: rgba(255, 255, 255, 0.1);
}

.hero-showcase__controls {
  position: absolute;
  right: 32px;
  bottom: 124px;
  z-index: 3;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: 10px;
  align-items: center;
}

.hero-showcase__button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand-blue-deep);
  box-shadow: 0 14px 28px rgba(7, 14, 30, 0.18);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.hero-showcase__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 10px;
}

.hero-showcase__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.hero-showcase__dot.is-active {
  width: 30px;
  background: var(--accent);
}

.hero-showcase__button:hover,
.hero-showcase__dot:hover {
  transform: translateY(-1px);
}

.hero-showcase__trust {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  z-index: 3;
}

.hero-trustbar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.hero-trustbar__item {
  display: flex;
  align-items: center;
  min-height: 60px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 38, 79, 0.08);
  box-shadow: 0 14px 30px rgba(7, 14, 30, 0.12);
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 800;
}

.home-hero--conversion {
  position: relative;
  padding: 44px 0 18px;
}

.home-hero--conversion .home-hero__inner {
  grid-template-columns: minmax(0, 0.97fr) minmax(330px, 1.03fr);
  gap: 18px;
  align-items: stretch;
}

.home-hero--conversion .home-hero__copy {
  display: grid;
  align-content: center;
  gap: 0;
  padding: 30px;
}

.hero-copy h1 {
  max-width: 12ch;
  margin: 12px 0 12px;
}

.hero-label {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(17, 43, 103, 0.08);
  color: var(--brand-blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-copy p {
  max-width: 58ch;
  font-size: 1.03rem;
}

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

.hero-trust {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-trust li {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(17, 38, 79, 0.08);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-visual {
  display: block;
}

.hero-visual__frame {
  position: relative;
  height: 100%;
  min-height: 460px;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(17, 38, 79, 0.08);
  box-shadow: var(--shadow-lg);
}

.hero-visual__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual__frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, rgba(4, 13, 34, 0), rgba(4, 13, 34, 0.56));
  pointer-events: none;
}

.hero-visual__note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  max-width: 340px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(17, 38, 79, 0.08);
  box-shadow: var(--shadow-md);
}

.hero-visual__note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brand-blue);
  font-size: 0.98rem;
}

.hero-visual__note span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.hero-service-card {
  position: relative;
  overflow: hidden;
  padding: 18px 18px 17px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(17, 38, 79, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.hero-service-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-blue), var(--accent));
}

.hero-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(17, 38, 79, 0.14);
}

.hero-service-card__eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-service-card h3 {
  color: var(--brand-blue);
  font-size: 1.08rem;
  line-height: 1.24;
}

.home-section,
.gallery-section {
  padding: 84px 0 0;
}

.gallery-hero--minimal {
  padding-bottom: 0;
}

.gallery-hero--minimal .gallery-hero__inner {
  grid-template-columns: 1fr;
}

.gallery-hero--minimal .gallery-hero__copy {
  padding: 42px 0 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.gallery-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  width: fit-content;
  margin-inline: auto;
}

.gallery-hero__eyebrow::before {
  content: none;
}

.gallery-hero--minimal .gallery-hero__copy h1 {
  margin-top: 14px;
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.08;
}

.gallery-hero--minimal .gallery-hero__copy p {
  max-width: 42ch;
  margin-top: 12px;
  margin-inline: auto;
}

.gallery-section--minimal {
  padding-top: 28px;
}

.home-section--soft,
.gallery-section--cta {
  background: linear-gradient(180deg, rgba(247, 249, 253, 0.65), rgba(255, 255, 255, 0));
  padding-bottom: 80px;
  margin-top: 60px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading p {
  color: var(--muted);
}

.section-heading--left {
  margin-bottom: 0;
}

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

.district-page .service-overview {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-overview__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.service-overview__card {
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 38, 79, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.district-page .service-overview__card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-overview__card img {
  height: 270px;
  width: 100%;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, rgba(245, 247, 251, 0.9), rgba(255, 255, 255, 0.98));
  padding: 18px 18px 0;
  box-sizing: border-box;
}

.district-page .service-overview__card img {
  height: 220px;
  padding: 16px 16px 0;
}

.service-overview__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(17, 43, 103, 0.12);
  border-color: rgba(17, 38, 79, 0.14);
}

.service-overview__link:hover .service-overview__card,
.service-overview__link:focus-visible .service-overview__card {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(17, 43, 103, 0.12);
  border-color: rgba(17, 38, 79, 0.14);
}

.service-overview__card h3,
.gallery-card strong,
.process-steps h3,
.region-highlight strong {
  color: var(--brand-blue);
}

.service-overview__body {
  display: grid;
  gap: 10px;
  padding: 24px 22px 22px;
}

.district-page .service-overview__card h3 {
  padding: 18px 22px 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.district-page .service-overview__card p {
  padding: 10px 22px 22px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 0;
}

.service-overview__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(17, 43, 103, 0.06);
  color: var(--brand-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-overview__body h3 {
  font-size: 1.14rem;
}

.service-overview__body p {
  min-height: 66px;
  color: var(--muted);
}

.service-overview__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 4px;
  color: var(--brand-blue);
  font-size: 0.84rem;
  font-weight: 700;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 24px;
  align-items: start;
}

.process-copy {
  display: grid;
  gap: 22px;
}

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

.process-steps article,
.region-highlight article {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 38, 79, 0.08);
  box-shadow: 0 18px 42px rgba(17, 43, 103, 0.06);
}

.process-steps article {
  position: relative;
  display: grid;
  gap: 12px;
  padding-top: 68px;
  overflow: hidden;
}

.process-steps article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--accent));
}

.process-step__index {
  position: absolute;
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border-radius: 14px;
  background: rgba(17, 43, 103, 0.08);
  color: var(--brand-blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-step__label {
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.process-steps h3 {
  color: var(--brand-blue);
  font-size: 1.02rem;
  line-height: 1.35;
}

.process-steps p {
  color: var(--muted);
  font-size: 0.95rem;
}

.process-visual {
  display: grid;
  gap: 16px;
  align-self: stretch;
}

.process-visual__frame {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(17, 38, 79, 0.08);
  background: #fff;
  box-shadow: 0 24px 64px rgba(17, 43, 103, 0.1);
}

.process-visual__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-visual__frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(7, 14, 30, 0), rgba(7, 14, 30, 0.52));
  pointer-events: none;
}

.process-visual__card {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(17, 38, 79, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(17, 43, 103, 0.06);
}

.process-visual__eyebrow {
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.process-visual__card strong {
  color: var(--brand-blue);
  font-size: 1.02rem;
  line-height: 1.45;
}

.process-visual__card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.process-steps strong {
  color: var(--accent-dark);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
}

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

.gallery-preview-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(17, 38, 79, 0.08);
  box-shadow: 0 18px 40px rgba(17, 43, 103, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gallery-preview-grid img:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(17, 43, 103, 0.12);
}

.gallery-carousel {
  position: relative;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.gallery-carousel__viewport {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.gallery-carousel__track {
  display: flex;
  align-items: stretch;
  gap: var(--gallery-carousel-gap, 18px);
  width: max-content;
  animation: gallery-carousel-scroll var(--gallery-carousel-duration, 34s) linear infinite;
  will-change: transform;
}

.gallery-carousel:hover .gallery-carousel__track,
.gallery-carousel:focus-within .gallery-carousel__track {
  animation-play-state: paused;
}

.gallery-carousel__item {
  position: relative;
  flex: 0 0 auto;
  width: var(--gallery-carousel-item-width, 280px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(17, 38, 79, 0.08);
  box-shadow: 0 18px 40px rgba(17, 43, 103, 0.08);
  background: #fff;
}

.gallery-carousel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-carousel__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 16, 42, 0.04), rgba(6, 16, 42, 0.18) 72%, rgba(6, 16, 42, 0.42)),
    radial-gradient(circle at top right, rgba(228, 195, 40, 0.12), transparent 28%);
}

.section-cta {
  margin-top: 24px;
}

@keyframes gallery-carousel-scroll {
  to {
  transform: translateX(calc(-1 * var(--gallery-carousel-scroll-distance, 0px)));
  }
}

.review-carousel {
  position: relative;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.review-carousel__viewport {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.review-carousel__track {
  display: flex;
  align-items: stretch;
  gap: var(--review-carousel-gap, 18px);
  width: max-content;
  animation: review-carousel-scroll var(--review-carousel-duration, 36s) linear infinite;
  will-change: transform;
}

.review-carousel:hover .review-carousel__track,
.review-carousel:focus-within .review-carousel__track {
  animation-play-state: paused;
}

.review-card {
  position: relative;
  flex: 0 0 auto;
  width: var(--review-carousel-item-width, 360px);
  min-height: 240px;
  overflow: hidden;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(17, 38, 79, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(17, 43, 103, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--accent));
}

.review-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.review-card__identity {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.review-card__identity strong {
  color: var(--brand-blue);
  font-size: 1rem;
  line-height: 1.25;
}

.review-card__identity span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-card__rating {
  display: grid;
  justify-items: end;
  gap: 4px;
  flex: 0 0 auto;
}

.review-card__score {
  color: var(--brand-blue);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.review-card__stars {
  color: var(--accent);
  font-size: 1.02rem;
  letter-spacing: 0.04em;
}

.review-card p {
  margin-top: 18px;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}

.review-card:hover {
  box-shadow: 0 24px 56px rgba(17, 43, 103, 0.12);
  transform: translateY(-2px);
}

@keyframes review-carousel-scroll {
  to {
    transform: translateX(calc(-1 * var(--review-carousel-scroll-distance, 0px)));
  }
}

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

.region-highlight article {
  display: grid;
  gap: 8px;
}

.region-highlight span {
  color: var(--muted);
}

.final-cta {
  padding: 32px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(17, 43, 103, 0.06), rgba(255, 255, 255, 0.96));
}

.final-cta p {
  max-width: 58ch;
}

.gallery-main {
  padding-bottom: 40px;
}

.district-main {
  padding-bottom: 40px;
}

.district-hero {
  padding: 72px 0 28px;
}

.district-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 24px;
}

.district-hero__copy,
.district-hero__aside {
  padding: 38px;
  border: 1px solid rgba(17, 38, 79, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 48px rgba(17, 43, 103, 0.07);
}

.district-hero__copy h1 {
  margin: 14px 0 12px;
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
}

.district-hero__aside {
  display: grid;
  gap: 14px;
}

.gallery-hero__stats {
  display: grid;
  gap: 14px;
}

.gallery-section__heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.gallery-masonry--page {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  grid-auto-rows: auto;
}

.gallery-card {
  overflow: hidden;
  margin-bottom: 0;
  height: 100%;
}

.gallery-card--photo-only {
  border-radius: 24px;
  background: transparent;
  aspect-ratio: 1.18 / 1;
}

.gallery-card--photo-only img {
  width: 100%;
  display: block;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  border-radius: inherit;
  border: 0;
  box-shadow: 0 8px 18px rgba(17, 43, 103, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  filter: saturate(1.04) contrast(1.03);
  cursor: zoom-in;
}

.gallery-card__label {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(7, 20, 53, 0.84), rgba(7, 20, 53, 0.52));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
  pointer-events: none;
  opacity: 0.96;
}

.gallery-card--photo-only:hover img {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(17, 43, 103, 0.08);
  filter: saturate(1.06) contrast(1.05);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(6, 16, 42, 0.84);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox__figure {
  position: relative;
  width: min(1120px, 100%);
  max-height: 90vh;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
}

.gallery-lightbox__image {
  width: 100%;
  max-height: calc(90vh - 60px);
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 22px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
}

.gallery-lightbox__caption {
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.gallery-lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.gallery-lightbox__nav--prev {
  left: 18px;
}

.gallery-lightbox__nav--next {
  right: 18px;
}

.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus-visible,
.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

body.is-gallery-lightbox-open {
  overflow: hidden;
}

.gallery-card figcaption {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.gallery-card figcaption span {
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-cta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.region-highlight article a {
  color: var(--brand-blue);
  font-weight: 600;
}

.contact-hero {
  padding: 72px 0 28px;
}

.contact-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.contact-hero__copy,
.contact-hero__meta,
.contact-panel,
.map-card {
  border: 1px solid rgba(17, 38, 79, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 48px rgba(17, 43, 103, 0.07);
}

.contact-hero__copy {
  padding: 40px;
}

.contact-hero__copy h1,
.contact-panel h2 {
  margin: 14px 0 12px;
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 1.08;
}

.contact-hero__copy p,
.contact-panel p {
  color: var(--muted);
}

.page-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(228, 195, 40, 0.12);
  color: var(--brand-blue);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-pill--soft {
  background: rgba(17, 43, 103, 0.06);
}

.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-hero__meta {
  padding: 26px;
  display: grid;
  gap: 16px;
  background:
    radial-gradient(circle at top right, rgba(228, 195, 40, 0.15), transparent 28%),
    rgba(255, 255, 255, 0.92);
}

.hero-note {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(247, 249, 253, 0.92);
  border: 1px solid rgba(17, 38, 79, 0.07);
}

.hero-note strong {
  color: var(--brand-blue);
  font-size: 1rem;
}

.hero-note span {
  color: var(--muted);
  font-size: 0.94rem;
}

.contact-section {
  padding: 20px 0;
}

.contact-layout,
.contact-map-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: start;
}

.contact-panel {
  padding: 32px;
}

.contact-panel--form {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 253, 0.92));
}

.contact-info-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.contact-info-item {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(247, 249, 253, 0.9);
  border: 1px solid rgba(17, 38, 79, 0.06);
}

.contact-info-item strong {
  color: var(--brand-blue);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-info-item a,
.contact-info-item span {
  color: #4f617f;
  font-weight: 500;
}

.contact-mini-card {
  margin-top: 22px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(17, 43, 103, 0.05), rgba(228, 195, 40, 0.08));
  border: 1px solid rgba(17, 38, 79, 0.07);
}

.contact-mini-card h3 {
  margin-bottom: 10px;
  color: var(--brand-blue);
}

.status-banner {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 600;
}

.status-banner--success {
  background: rgba(37, 211, 102, 0.12);
  color: #17713c;
  border: 1px solid rgba(37, 211, 102, 0.22);
}

.status-banner--error {
  background: rgba(220, 38, 38, 0.1);
  color: #9f1d1d;
  border: 1px solid rgba(220, 38, 38, 0.18);
}

.contact-form-v2 {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: var(--brand-blue);
  font-size: 0.88rem;
  font-weight: 600;
}

.field input,
.field select,
.field textarea,
.admin-form input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(17, 38, 79, 0.1);
  border-radius: 18px;
  background: #fff;
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.field textarea {
  min-height: 160px;
  padding: 16px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.admin-form input:focus {
  outline: none;
  border-color: rgba(17, 43, 103, 0.24);
  box-shadow: 0 0 0 4px rgba(17, 43, 103, 0.08);
}

.verify-widget {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(17, 38, 79, 0.08);
  border-radius: 22px;
  background: rgba(247, 249, 253, 0.76);
}

.verify-widget.has-error {
  border-color: rgba(220, 38, 38, 0.24);
}

.verify-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(17, 38, 79, 0.12);
  background: #fff;
  padding: 0;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
}

.verify-box__mark {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid rgba(17, 38, 79, 0.22);
  position: relative;
}

.verify-widget.is-loading .verify-box__mark::after {
  content: "";
  position: absolute;
  inset: 2px;
  border: 2px solid rgba(17, 43, 103, 0.14);
  border-top-color: var(--brand-blue);
  border-radius: 50%;
  animation: verify-spin 0.8s linear infinite;
}

.verify-widget.is-verified .verify-box {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.3);
}

.verify-widget.is-verified .verify-box__mark {
  border-color: transparent;
}

.verify-widget.is-verified .verify-box__mark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 7px;
  height: 12px;
  border-right: 2px solid #17964c;
  border-bottom: 2px solid #17964c;
  transform: rotate(45deg);
}

.verify-widget__copy {
  display: grid;
  gap: 4px;
}

.verify-widget__copy strong {
  color: var(--brand-blue);
}

.verify-widget__copy span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-form__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.contact-form__footer p {
  max-width: 38ch;
  font-size: 0.9rem;
}

.contact-form__submit {
  min-width: 210px;
}

.map-card {
  min-height: 100%;
  overflow: hidden;
}

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

.contact-panel--aside {
  min-height: 100%;
}

.admin-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(228, 195, 40, 0.12), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}

.admin-login,
.admin-shell {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.admin-login__card,
.admin-panel {
  border: 1px solid rgba(17, 38, 79, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(17, 43, 103, 0.08);
}

.admin-login__card {
  width: min(100%, 460px);
  padding: 34px;
}

.admin-login__logo {
  width: 220px;
  max-width: 100%;
  margin-bottom: 18px;
}

.admin-login__card h1,
.admin-shell h1 {
  margin-bottom: 10px;
  color: var(--brand-blue);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-family: "Noto Serif", Georgia, serif;
}

.admin-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.admin-form__submit {
  min-height: 54px;
}

.admin-login__hint {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 42px 16px;
  box-sizing: border-box;
}

.admin-shell--layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.admin-sidebar {
  position: sticky;
  top: 28px;
  padding: 24px;
  border: 1px solid rgba(17, 38, 79, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 255, 0.94));
  box-shadow: 0 24px 60px rgba(17, 43, 103, 0.08);
  text-align: left;
}

.admin-sidebar__logo {
  width: 190px;
  max-width: 100%;
  margin-bottom: 18px;
}

.admin-sidebar__nav {
  display: grid;
  gap: 10px;
  justify-items: stretch;
}

.admin-sidebar__link {
  display: block;
  padding: 14px 16px;
  border-radius: 18px;
  color: #50637e;
  font-weight: 600;
  border: 1px solid rgba(17, 38, 79, 0.06);
  background: rgba(247, 249, 253, 0.72);
  text-align: left;
}

.admin-sidebar__link.is-active,
.admin-sidebar__link:hover {
  color: var(--brand-blue);
  background: rgba(17, 43, 103, 0.08);
}

.admin-sidebar__footer {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.admin-content {
  min-width: 0;
}

.admin-shell__header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  margin-bottom: 22px;
}

.admin-shell__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--brand-blue);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-shell__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-panel {
  padding: 24px;
}

.admin-panel--soft {
  padding: 28px;
}

.admin-gallery-page__stack {
  display: grid;
  gap: 18px;
}

.admin-panel__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.admin-dashboard__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.85fr);
  gap: 24px;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17, 43, 103, 0.04), rgba(228, 195, 40, 0.06)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 253, 0.95));
}

.admin-dashboard__hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -42% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 43, 103, 0.12), transparent 68%);
  pointer-events: none;
}

.admin-dashboard__intro {
  display: grid;
  align-content: start;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.admin-dashboard__intro h1 {
  margin-bottom: 6px;
}

.admin-dashboard__hero p {
  max-width: 64ch;
}

.admin-dashboard__hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-width: min(100%, 420px);
  position: relative;
  z-index: 1;
}

.admin-dashboard__hero-meta > div,
.admin-status-card,
.admin-stat-card,
.admin-quick-card {
  border: 1px solid rgba(17, 38, 79, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 253, 0.92));
  box-shadow: 0 18px 44px rgba(17, 43, 103, 0.06);
}

.admin-dashboard__hero-meta > div {
  padding: 18px;
}

.admin-dashboard__hero-meta strong {
  display: block;
  color: var(--brand-blue);
  font-size: 1.05rem;
  font-weight: 800;
}

.admin-dashboard__hero-meta span,
.admin-stat-card p,
.admin-quick-card p,
.admin-status-card span {
  color: var(--muted);
}

.admin-dashboard__metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.admin-stat-card {
  padding: 22px;
  display: grid;
  gap: 8px;
}

.admin-stat-card--accent {
  background:
    linear-gradient(145deg, rgba(17, 43, 103, 0.96), rgba(23, 63, 133, 0.92));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
}

.admin-stat-card--accent span,
.admin-stat-card--accent p,
.admin-stat-card--accent strong {
  color: #fff;
}

.admin-stat-card span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-stat-card strong {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1;
}

.admin-dashboard__content {
  display: grid;
  gap: 18px;
}

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

.admin-quick-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
  overflow: hidden;
}

.admin-quick-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(17, 43, 103, 0.12);
  border-color: rgba(17, 38, 79, 0.14);
}

.admin-quick-card::after {
  content: "";
  position: absolute;
  inset: auto -14px -14px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 43, 103, 0.07), transparent 70%);
  pointer-events: none;
}

.admin-quick-card__label {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(17, 43, 103, 0.08);
  color: var(--brand-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-quick-card strong {
  font-size: 1.15rem;
  color: var(--brand-blue);
}

.admin-quick-card p {
  margin: 0;
  line-height: 1.5;
}

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

.admin-status-card {
  padding: 18px 20px;
  display: grid;
  gap: 8px;
}

.admin-status-card strong {
  color: var(--brand-blue);
  font-size: 1rem;
}

.admin-module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.admin-module-card {
  padding: 24px;
  border: 1px solid rgba(17, 38, 79, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 48px rgba(17, 43, 103, 0.07);
}

.admin-module-card h2 {
  margin: 14px 0 10px;
  color: var(--brand-blue);
  font-size: 1.4rem;
}

.admin-module-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.admin-stats {
  display: grid;
  gap: 16px;
  margin-top: 14px;
}

.admin-stats strong {
  display: block;
  color: var(--brand-blue);
  font-size: 2rem;
}

.admin-stats span {
  color: var(--muted);
}

.admin-gallery-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.admin-gallery-preview img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 16px;
}

.admin-gallery-manage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.admin-gallery-manage__item {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(17, 38, 79, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 252, 0.98));
}

.admin-gallery-manage__item img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 16px;
}

.admin-gallery-manage__item figcaption {
  display: grid;
  gap: 4px;
}

.admin-gallery-manage__item figcaption strong {
  color: var(--brand-blue);
  font-size: 0.98rem;
}

.admin-gallery-manage__item figcaption span {
  color: var(--muted);
  font-size: 0.86rem;
  word-break: break-word;
}

.admin-gallery-manage__action {
  display: flex;
  justify-content: flex-end;
}

.admin-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.admin-status-pill--pending {
  color: #8c5e10;
  background: rgba(184, 155, 106, 0.14);
}

.admin-status-pill--read {
  color: #1f6a43;
  background: rgba(54, 153, 107, 0.14);
}

.admin-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-row-actions__form {
  margin: 0;
}

.admin-row-actions__delete {
  color: #9a2b2b;
  border-color: rgba(154, 43, 43, 0.22);
}

.admin-row-actions__delete:hover {
  background: rgba(154, 43, 43, 0.06);
  border-color: rgba(154, 43, 43, 0.34);
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
}

.admin-table th,
.admin-table td {
  padding: 16px 14px;
  border-bottom: 1px solid rgba(17, 38, 79, 0.08);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--brand-blue);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-table td {
  color: #42546f;
  font-size: 0.94rem;
}

.admin-empty {
  padding: 28px;
  text-align: center;
}

.admin-empty--compact {
  padding: 22px;
}

@keyframes verify-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1080px) {
  .topbar {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .header-bar {
    grid-template-columns: auto 1fr auto;
    min-height: 82px;
    gap: 18px;
  }

  .brand__logo {
    width: 190px;
    max-height: 152px;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    position: relative;
    z-index: 91;
  }

  .header-preview {
    min-height: calc(100vh - 82px);
  }

  .contact-hero__inner,
  .contact-layout,
  .contact-map-layout,
  .home-hero__inner,
  .gallery-hero__inner,
  .district-hero__inner,
  .process-grid,
  .final-cta,
  .gallery-cta,
  .admin-shell--layout {
    grid-template-columns: 1fr;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .service-overview,
  .gallery-preview-grid,
  .region-highlight,
  .home-strip__grid,
  .admin-module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .admin-dashboard__hero {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .admin-dashboard__hero-meta {
    min-width: 0;
    width: 100%;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-visual__frame {
    min-height: 340px;
  }

  .service-overview__card img {
    height: 200px;
  }

  .home-hero--showcase .home-hero__copy {
    padding-bottom: 0;
  }

  .home-hero--conversion {
    padding-top: 34px;
  }

  .home-hero--conversion .home-hero__inner {
    grid-template-columns: 1fr;
  }

  .home-hero--conversion .home-hero__copy {
    padding: 26px;
  }

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

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

  .hero-visual__frame {
    min-height: 380px;
  }

  .hero-showcase__slider {
    min-height: 720px;
    height: 720px;
  }

  .hero-showcase__controls {
    right: 24px;
    bottom: 112px;
  }

  .hero-trustbar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-slider {
    padding: 16px;
  }

  .admin-shell__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-sidebar {
    position: static;
  }

  .admin-dashboard__status,
  .admin-quick-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header .container {
    width: min(100% - 24px, 1320px);
  }

  .header-bar {
    min-height: 76px;
    gap: 14px;
  }

  .brand__logo {
    width: 156px;
    max-height: 124px;
  }

  .mobile-menu__inner {
    width: min(100% - 24px, 560px);
  }

  .mobile-menu__logo {
    width: 126px;
    height: 126px;
  }

  .header-preview__stage {
    padding: 56px 0 80px;
  }

  .header-preview__card {
    padding: 24px;
  }

  .contact-hero {
    padding-top: 34px;
  }

  .home-hero,
  .gallery-hero,
  .district-hero {
    padding-top: 34px;
  }

  .contact-hero__copy,
  .contact-panel,
  .home-hero__copy,
  .gallery-hero__copy,
  .gallery-hero__stats,
  .district-hero__copy,
  .district-hero__aside {
    padding: 24px;
  }

  .admin-gallery-manage__item img {
    height: 150px;
  }

  .admin-gallery-manage {
    grid-template-columns: 1fr;
  }

  .home-hero__visual {
    padding: 14px;
  }

  .home-hero--showcase {
    padding-top: 34px;
  }

  .home-hero--conversion {
    padding-top: 28px;
  }

  .home-hero--conversion .home-hero__copy {
    padding: 22px;
  }

  .home-hero--showcase::before,
  .home-hero--showcase::after {
    display: none;
  }

  .home-hero__copy,
  .gallery-hero__copy,
  .gallery-hero__stats {
    padding: 26px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .hero-visual__frame {
    min-height: 320px;
  }

  .hero-visual__note {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

  .hero-service-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-showcase__slider {
    min-height: 0;
    height: auto;
  }

  .hero-showcase__slide {
    position: relative;
    display: none;
    flex-direction: column;
  }

  .hero-showcase__slide.is-active {
    display: flex;
  }

  .hero-showcase__media {
    position: relative;
    height: 290px;
    flex: 0 0 auto;
  }

  .hero-showcase__content {
    height: auto;
    align-items: flex-start;
    padding: 24px 0 0;
  }

  .hero-showcase__content .container {
    width: min(100% - 24px, var(--container));
  }

  .hero-showcase__title {
    max-width: 100%;
    font-size: clamp(2.2rem, 10vw, 3.1rem);
  }

  .hero-showcase__text {
    font-size: 0.98rem;
  }

  .hero-showcase__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-showcase .btn {
    width: 100%;
  }

  .hero-showcase__controls {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    width: calc(100% - 24px);
    margin: 14px auto 0;
    grid-template-columns: 40px minmax(0, 1fr) 40px;
  }

  .hero-showcase__button {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .hero-showcase__trust {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 12px;
  }

  .hero-trustbar {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-trustbar__item {
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 0.9rem;
  }

  .hero-slider {
    padding: 12px;
    border-radius: 26px;
  }

  .hero-slider__viewport {
    min-height: 420px;
  }

  .hero-slide__overlay {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px 18px 16px;
  }

  .hero-slider__controls {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 8px;
  }

  .hero-slider__button {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .gallery-slider {
    padding: 12px;
    border-radius: 26px;
  }

  .gallery-slider__viewport {
    min-height: 320px;
  }

  .gallery-slider__controls {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 8px;
  }

  .gallery-slider__button {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .service-overview,
  .gallery-preview-grid,
  .region-highlight,
  .home-strip__grid,
  .admin-module-grid,
  .admin-gallery-preview {
    grid-template-columns: 1fr;
  }

  .admin-dashboard__metrics {
    grid-template-columns: 1fr;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-grid {
    gap: 18px;
  }

  .process-copy {
    gap: 18px;
  }

  .process-visual__frame {
    min-height: 280px;
  }

  .process-visual__card {
    padding: 18px;
  }

  .service-overview__footer {
    font-size: 0.8rem;
  }

  .service-overview__body {
    padding: 20px 18px 18px;
  }

  .district-page .service-overview {
    grid-template-columns: 1fr;
  }

  .district-page .service-overview__card img {
    height: 200px;
  }

  .district-page .service-overview__card h3 {
    padding: 16px 18px 0;
  }

  .district-page .service-overview__card p {
    padding: 10px 18px 18px;
    -webkit-line-clamp: 4;
  }

  .admin-panel--soft {
    padding: 20px;
  }

  .admin-panel,
  .admin-module-card,
  .admin-stat-card,
  .admin-quick-card {
    border-radius: 22px;
  }

  .admin-dashboard__hero-meta {
    grid-template-columns: 1fr;
  }

  .admin-table {
    min-width: 860px;
  }

  .verify-widget {
    grid-template-columns: 1fr;
  }

  .contact-form__footer {
    align-items: stretch;
  }

  .contact-form__submit {
    width: 100%;
  }

  .map-card iframe {
    height: 360px;
  }

  .gallery-masonry--page {
    grid-template-columns: 1fr;
  }

  .site-footer--new {
    padding: 56px 0 22px;
  }

  .footer-grid--new {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-brand__logo {
    width: 180px;
  }

  .footer-regions {
    padding: 20px;
  }

  .footer-regions__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom__links {
    flex-wrap: wrap;
    gap: 12px;
  }
}
