:root {
  --blue-950: #03162f;
  --blue-900: #052451;
  --blue-800: #073c87;
  --blue-700: #0754b8;
  --blue-600: #1268d3;
  --blue-100: #dcecff;
  --blue-50: #f3f8ff;
  --ink: #07182e;
  --muted: #5e6d81;
  --line: #d7e3f2;
  --white: #ffffff;
  --green: #25d366;
  --telegram: #229ed9;
  --facebook: #1877f2;
  --shadow-sm: 0 14px 35px rgba(5, 36, 81, 0.09);
  --shadow-lg: 0 30px 80px rgba(3, 22, 47, 0.22);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shell: min(1240px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  color: var(--ink);
  background: var(--blue-50);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body > .site-header,
body > main {
  flex-shrink: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background-image: radial-gradient(rgba(7, 84, 184, 0.09) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue-950);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(215, 227, 242, 0.88);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--blue-950);
  text-decoration: none;
}

.brand__logo-wrap {
  display: grid;
  width: 50px;
  height: 50px;
  overflow: hidden;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--blue-700);
  box-shadow: 0 6px 20px rgba(7, 84, 184, 0.2), 0 0 0 1px var(--line);
}

.brand__logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.brand__name {
  display: grid;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand__name strong {
  margin-top: 3px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav__link {
  padding: 11px 16px;
  color: #42526a;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__link.is-active {
  color: var(--blue-700);
  background: var(--blue-50);
}

.site-nav__cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  color: var(--white);
  border-radius: 999px;
  background: var(--blue-700);
  box-shadow: 0 8px 20px rgba(7, 84, 184, 0.2);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.site-nav__cta:hover,
.site-nav__cta:focus-visible {
  background: var(--blue-800);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 0;
  border-radius: 50%;
  background: var(--blue-50);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--blue-950);
}

.home-intro,
.directory-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 50%, rgba(36, 129, 235, 0.42), transparent 32%),
    linear-gradient(120deg, var(--blue-950), var(--blue-800) 58%, var(--blue-700));
}

.home-intro::after,
.directory-hero::after {
  position: absolute;
  inset: auto -12% -48% 38%;
  height: 430px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.home-intro__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 430px;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 18px 64px;
  padding-block: 40px 24px;
}

.home-intro__copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #a9d4ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow--blue {
  color: var(--blue-700);
}

.home-intro h1,
.directory-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.7rem, 5.8vw, 5.2rem);
  font-weight: 820;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.home-intro__lead,
.directory-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 19px 0 22px;
  color: #dceaff;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.primary-link,
.light-link,
.secondary-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-link {
  color: var(--blue-950);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.primary-link:hover,
.light-link:hover,
.secondary-link:hover {
  transform: translateY(-2px);
}

.home-intro__mark {
  position: relative;
  display: grid;
  min-height: 270px;
  place-items: center;
}

.home-intro__mark img {
  position: relative;
  z-index: 2;
  width: min(220px, 60vw);
  aspect-ratio: 1;
  object-fit: cover;
  border: 10px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 34px 75px rgba(0, 0, 0, 0.32);
}

.home-intro__orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
}

.home-intro__orbit--one {
  width: 280px;
  height: 280px;
  animation: orbit 18s linear infinite;
}

.home-intro__orbit--one::before,
.home-intro__orbit--two::before {
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 50%;
  background: #8ed1ff;
  box-shadow: 0 0 24px #8ed1ff;
}

.home-intro__orbit--two {
  width: 330px;
  height: 190px;
  transform: rotate(28deg);
  animation: orbit-reverse 22s linear infinite;
}

.network-summary {
  display: flex;
  grid-column: 1 / -1;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.network-summary div {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 13px 28px 0 0;
}

.network-summary div + div {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.network-summary dt {
  font-size: 1.6rem;
  font-weight: 850;
}

.network-summary dd {
  margin: 0;
  color: #b9d4f6;
  font-size: 0.86rem;
}

.network-section,
.directory-browser {
  padding: 68px 0 76px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 24px;
}

.section-heading h2,
.national-section h2,
.directory-teaser h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.section-heading > p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
}

.province-tabs {
  display: flex;
  gap: 9px;
  margin-bottom: 14px;
  padding: 5px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  scrollbar-width: thin;
}

.province-tab {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 14px;
  color: #516077;
  border: 0;
  border-radius: 12px;
  background: transparent;
  font-size: 0.86rem;
  font-weight: 760;
  cursor: pointer;
}

.province-tab:hover,
.province-tab:focus-visible {
  color: var(--blue-700);
  background: var(--blue-50);
}

.province-tab.is-active {
  color: var(--white);
  background: var(--blue-700);
  box-shadow: 0 8px 20px rgba(7, 84, 184, 0.24);
}

.network-explorer {
  display: grid;
  min-height: 590px;
  grid-template-columns: minmax(300px, 0.38fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.area-browser {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 15px 13px 13px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
}

.search-field {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 11px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--blue-50);
}

.search-field:focus-within {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(18, 104, 211, 0.12);
}

.search-field svg {
  width: 20px;
  fill: none;
  stroke: var(--blue-700);
  stroke-linecap: round;
  stroke-width: 2;
}

.search-field input {
  min-width: 0;
  flex: 1;
  color: var(--ink);
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 0.93rem;
}

.search-field input::placeholder {
  color: #7b899c;
}

.area-browser__meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 6px 10px;
}

.area-browser__meta div {
  display: grid;
}

.area-browser__meta span:not(.area-count) {
  color: #7a8797;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.area-browser__meta strong {
  margin-top: 2px;
  font-size: 1.12rem;
}

.area-count {
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
}

.area-list {
  min-height: 0;
  flex: 1;
  padding-right: 4px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: #b8cce6 transparent;
  scrollbar-width: thin;
}

.area-group + .area-group {
  margin-top: 14px;
}

.area-group h3 {
  margin: 0 6px 8px;
  color: #8692a2;
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.area-item {
  display: grid;
  width: 100%;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  padding: 6px;
  color: var(--ink);
  border: 0;
  border-radius: 14px;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.area-item + .area-item {
  margin-top: 3px;
}

.area-item:hover,
.area-item:focus-visible {
  background: var(--blue-50);
}

.area-item.is-active {
  color: var(--blue-700);
  background: var(--blue-100);
}

.area-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  object-position: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--blue-700);
  box-shadow: 0 3px 12px rgba(5, 36, 81, 0.12);
}

.area-item > span:not(.area-item__arrow) {
  display: grid;
  min-width: 0;
}

.area-item strong {
  overflow: hidden;
  font-size: 0.9rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.area-item small {
  margin-top: 3px;
  overflow: hidden;
  color: #78869a;
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.area-item__arrow {
  color: #91a0b2;
  font-size: 1.45rem;
}

.area-empty {
  margin: 50px 10px;
  color: var(--muted);
  text-align: center;
}

.network-profile {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 590px;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--blue-800);
}

.network-profile__backdrop,
.network-profile__wash {
  position: absolute;
  inset: 0;
}

.network-profile__backdrop {
  z-index: -3;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 650ms ease, transform 900ms ease;
}

.network-profile__backdrop.is-active {
  opacity: 1;
  transform: scale(1);
}

.network-profile__wash {
  z-index: -2;
  background:
    linear-gradient(to top, rgba(3, 17, 40, 0.98) 0%, rgba(4, 32, 73, 0.88) 45%, rgba(6, 56, 126, 0.44) 100%),
    linear-gradient(100deg, rgba(3, 22, 47, 0.48), transparent 70%);
}

.network-profile__content {
  width: 100%;
  padding: clamp(28px, 4.4vw, 52px);
  color: var(--white);
}

.network-profile__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: #c7ddfa;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.network-profile__identity {
  display: flex;
  align-items: center;
  gap: 24px;
}

.network-profile__avatar {
  width: 110px;
  height: 110px;
  flex: 0 0 110px;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  background: var(--blue-700);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

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

.network-profile__avatar.is-fallback img {
  transform: scale(1.08);
}

.network-profile__overline {
  margin: 0 0 5px;
  color: #a9d4ff;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.network-profile h3 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.network-profile__identity p:last-child {
  max-width: 560px;
  margin: 14px 0 0;
  color: #d6e6fa;
}

.network-profile__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  margin-top: 26px;
}

.network-action {
  display: grid;
  min-height: 54px;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 9px 15px 9px 10px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.network-action:hover,
.network-action:focus-visible {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.network-action__mark,
.platform-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 900;
}

.network-action--facebook .network-action__mark,
.platform-mark--facebook {
  background: var(--facebook);
}

.network-action--whatsapp .network-action__mark,
.network-action--channel .network-action__mark {
  background: var(--green);
}

.network-action--telegram .network-action__mark {
  background: var(--telegram);
}

.network-action__arrow {
  color: #c4daf5;
}

.network-profile__notice {
  margin: 18px 2px 0;
  color: #a9c2e1;
  font-size: 0.8rem;
}

.national-section {
  padding: 0 0 68px;
}

.national-section__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 70px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.national-links a {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-weight: 800;
  text-decoration: none;
}

.national-links a:hover,
.national-links a:focus-visible {
  border-color: var(--blue-600);
  background: var(--blue-50);
}

.directory-teaser {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-700);
}

.directory-teaser::before {
  position: absolute;
  inset: -100px auto auto 47%;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.directory-teaser__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 250px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding-block: 44px;
}

.directory-teaser__inner > div {
  max-width: 720px;
}

.directory-teaser p:not(.eyebrow) {
  max-width: 570px;
  color: #d8eaff;
}

.light-link {
  flex: 0 0 auto;
  color: var(--blue-700);
  background: var(--white);
}

.directory-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 360px;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  padding-block: 42px;
}

.directory-hero h1 {
  max-width: 720px;
  font-size: clamp(2.8rem, 5.3vw, 4.6rem);
}

.directory-hero__logo {
  width: min(220px, 30vw);
  aspect-ratio: 1;
  object-fit: cover;
  border: 9px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.directory-controls {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.search-field--wide {
  min-height: 58px;
}

.select-field select {
  width: 100%;
  height: 58px;
  padding: 0 42px 0 16px;
  color: #778499;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--blue-50);
}

.directory-controls :disabled {
  cursor: not-allowed;
  opacity: 0.78;
}

.directory-results-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 4px 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.directory-results-meta button {
  padding: 4px 0;
  color: var(--blue-700);
  border: 0;
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

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

.business-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.business-card__image {
  display: grid;
  min-height: 190px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-600), var(--blue-900));
  font-size: 4rem;
  font-weight: 850;
}

.business-card__image img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.business-card__content {
  padding: 24px;
}

.business-card__content h3 {
  margin: 5px 0 4px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.business-card__location,
.business-card__category {
  margin: 0;
  color: var(--blue-700);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.business-card__category {
  color: var(--muted);
}

.business-card__content > p:not(.business-card__location):not(.business-card__category) {
  color: var(--muted);
}

.business-card__content a {
  color: var(--blue-700);
  font-weight: 800;
}

.directory-empty {
  max-width: 730px;
  margin: 30px auto 0;
  padding: 40px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.directory-empty__icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  place-items: center;
  color: var(--blue-700);
  border-radius: 50%;
  background: var(--blue-100);
}

.directory-empty__icon svg {
  width: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.directory-empty h3 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  letter-spacing: -0.035em;
}

.directory-empty > p:not(.eyebrow) {
  max-width: 570px;
  margin: 18px auto 26px;
  color: var(--muted);
}

.enquiry-section,
.listing-section {
  padding: 78px 0;
}

.enquiry-section {
  background: var(--white);
}

.listing-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 13% 30%, rgba(29, 118, 218, 0.55), transparent 34%),
    var(--blue-950);
}

.listing-section::after {
  position: absolute;
  right: -180px;
  bottom: -280px;
  width: 620px;
  height: 620px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.enquiry-section__grid,
.listing-section__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  align-items: start;
  gap: clamp(48px, 7vw, 100px);
}

.enquiry-section__copy,
.listing-section__copy {
  position: sticky;
  top: 120px;
}

.enquiry-section__copy h2,
.listing-section__copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.enquiry-section__copy > p:not(.eyebrow),
.listing-section__copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.listing-section__copy > p:not(.eyebrow) {
  color: #bfd2eb;
}

.enquiry-benefits {
  display: grid;
  gap: 0;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.enquiry-benefits li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 750;
}

.enquiry-benefits span {
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.enquiry-form {
  position: relative;
  padding: clamp(24px, 4vw, 38px);
  color: var(--white);
  border-radius: 28px;
  background: linear-gradient(145deg, var(--blue-800), var(--blue-950));
  box-shadow: 0 28px 70px rgba(5, 36, 81, 0.22);
}

.enquiry-form--light {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.enquiry-form__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.enquiry-form__heading span {
  font-size: 1.2rem;
  font-weight: 850;
}

.enquiry-form__heading strong {
  padding: 6px 10px;
  color: #cbe3ff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.enquiry-form--light .enquiry-form__heading strong {
  color: var(--blue-700);
  border-color: var(--line);
  background: var(--blue-50);
}

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

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

.form-field--full {
  grid-column: 1 / -1;
}

.form-field > span {
  color: #c7ddfa;
  font-size: 0.76rem;
  font-weight: 800;
}

.enquiry-form--light .form-field > span {
  color: #596a80;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-width: 0;
  padding: 0 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  outline: none;
  background: rgba(255, 255, 255, 0.09);
  font-size: 0.9rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field input,
.form-field select {
  height: 50px;
}

.form-field textarea {
  min-height: 128px;
  padding-block: 13px;
  resize: vertical;
}

.form-field select option {
  color: var(--ink);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9eb4cf;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #7ec3ff;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 0 0 3px rgba(126, 195, 255, 0.15);
}

.enquiry-form--light .form-field input,
.enquiry-form--light .form-field select,
.enquiry-form--light .form-field textarea {
  color: var(--ink);
  border-color: var(--line);
  background: var(--blue-50);
}

.enquiry-form--light .form-field input::placeholder,
.enquiry-form--light .form-field textarea::placeholder {
  color: #8794a5;
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 19px;
  color: #bdd1ea;
  font-size: 0.76rem;
}

.enquiry-form--light .consent-field {
  color: var(--muted);
}

.consent-field input {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin-top: 2px;
  accent-color: var(--blue-600);
}

.enquiry-form__footer {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.form-submit {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  color: var(--blue-900);
  border: 0;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
  font-weight: 850;
  cursor: pointer;
}

.form-submit--dark {
  color: var(--white);
  background: var(--blue-700);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.62;
}

.form-status {
  flex: 1;
  margin: 0;
  color: #c6d9ef;
  font-size: 0.78rem;
}

.enquiry-form--light .form-status {
  color: var(--muted);
}

.form-status.is-success {
  color: #7ee8a8;
  font-weight: 800;
}

.enquiry-form--light .form-status.is-success {
  color: #087d3b;
}

.form-status.is-error,
.enquiry-form--light .form-status.is-error {
  color: #ffaca9;
  font-weight: 800;
}

.enquiry-form--light .form-status.is-error {
  color: #b42318;
}

.secondary-link {
  color: var(--white);
  background: var(--blue-700);
}

.site-footer {
  flex: 1 0 auto;
  color: #b9cce4;
  background: var(--blue-950);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  padding-block: 34px;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-footer__brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
}

.site-footer__brand strong {
  display: block;
  color: var(--white);
}

.site-footer__brand p {
  margin: 3px 0 0;
  font-size: 0.82rem;
}

.site-footer__nav {
  display: flex;
  gap: 22px;
}

.site-footer__nav a {
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 760;
  text-decoration: none;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  text-decoration: underline;
}

.site-footer__legal {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.76rem;
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

@keyframes orbit-reverse {
  from { transform: rotate(28deg); }
  to { transform: rotate(-332deg); }
}

@media (max-width: 980px) {
  .home-intro__grid {
    min-height: auto;
    grid-template-columns: 1fr 0.7fr;
    padding-top: 58px;
  }

  .home-intro__mark {
    min-height: 290px;
  }

  .home-intro__mark img {
    width: 230px;
  }

  .home-intro__orbit--one {
    width: 290px;
    height: 290px;
  }

  .home-intro__orbit--two {
    width: 330px;
    height: 210px;
  }

  .network-explorer {
    grid-template-columns: 290px minmax(0, 1fr);
  }

  .network-profile__identity {
    align-items: flex-start;
    flex-direction: column;
  }

  .network-profile__avatar {
    width: 108px;
    height: 108px;
    flex-basis: 108px;
  }

  .network-profile__actions {
    grid-template-columns: 1fr;
  }

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

  .enquiry-section__grid,
  .listing-section__grid {
    grid-template-columns: 1fr;
  }

  .enquiry-section__copy,
  .listing-section__copy {
    position: static;
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 28px, 680px);
  }

  .site-header__inner {
    min-height: 74px;
  }

  .brand__logo-wrap {
    width: 50px;
    height: 50px;
  }

  .brand__name span {
    display: none;
  }

  .brand__name strong {
    max-width: 175px;
    font-size: 0.78rem;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 14px;
    left: 14px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
  }

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

  .site-nav__link {
    border-radius: 10px;
  }

  .site-nav__cta {
    min-height: 46px;
    justify-content: center;
    border-radius: 10px;
  }

  .home-intro__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 48px 28px;
  }

  .home-intro h1,
  .directory-hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.8rem);
  }

  .home-intro__mark {
    min-height: 285px;
  }

  .network-summary {
    justify-content: space-between;
  }

  .network-summary div,
  .network-summary div + div {
    display: grid;
    gap: 0;
    padding: 16px 10px 0;
    border-left: 0;
  }

  .network-section,
  .directory-browser {
    padding-block: 72px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }

  .network-explorer {
    grid-template-columns: 1fr;
    border-radius: 26px;
  }

  .area-browser {
    min-height: 480px;
    max-height: 560px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .network-profile {
    min-height: 600px;
  }

  .network-profile__content {
    padding: 30px 24px;
  }

  .network-profile__identity {
    gap: 18px;
  }

  .network-profile h3 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .network-profile__actions {
    margin-top: 28px;
  }

  .national-section__inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 30px 22px;
  }

  .directory-teaser__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .directory-hero__inner {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding-block: 56px;
  }

  .directory-hero__logo {
    width: 210px;
  }

  .directory-controls {
    grid-template-columns: 1fr;
  }

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

  .enquiry-section,
  .listing-section {
    padding-block: 76px;
  }

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

  .form-field--full {
    grid-column: auto;
  }

  .enquiry-form__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit {
    width: 100%;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__nav {
    flex-wrap: wrap;
  }

  .site-footer__legal {
    grid-column: auto;
  }
}

@media (max-width: 460px) {
  .brand__name strong {
    max-width: 145px;
    font-size: 0.7rem;
  }

  .home-intro__mark {
    min-height: 250px;
  }

  .home-intro__mark img {
    width: 200px;
  }

  .home-intro__orbit--one {
    width: 250px;
    height: 250px;
  }

  .home-intro__orbit--two {
    width: 280px;
    height: 170px;
  }

  .network-summary dt {
    font-size: 1.35rem;
  }

  .network-summary dd {
    font-size: 0.7rem;
  }

  .network-profile__topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .network-action {
    font-size: 0.84rem;
  }
}

/* Compact network workspace and shared advertising window. */
.network-intro {
  color: var(--white);
  background: linear-gradient(110deg, var(--blue-900), var(--blue-700));
}
.network-intro__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
}
.network-intro h1 { margin: 0; font-size: clamp(1.3rem, 2.3vw, 1.8rem); letter-spacing: -0.035em; line-height: 1.2; }
.network-intro p { margin: 4px 0 0; color: #c9dff9; font-size: 0.875rem; }
.network-intro .network-summary { flex-shrink: 0; border: 0; }
.network-intro .network-summary div { padding: 0 18px; gap: 6px; }
.network-intro .network-summary dt { font-size: 1.45rem; }
.network-intro .network-summary dd { font-size: 0.8rem; }
.page-home .network-section { padding: 18px 0 12px; }
.network-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 12px; }
.network-toolbar h2 { margin: 0; font-size: 1.15rem; letter-spacing: -0.025em; }
.province-select { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--muted); }
.province-select select, .mobile-area-select select { min-height: 44px; max-width: 100%; padding: 0 30px 0 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); color: var(--ink); font-size: 0.875rem; }
.province-select select:focus-visible, .mobile-area-select select:focus-visible { outline: 2px solid var(--blue-600); outline-offset: 2px; }
.page-home .network-explorer { min-height: 0; height: clamp(370px, calc(100dvh - 300px), 460px); grid-template-columns: 290px minmax(0, 1fr); border-radius: 20px; box-shadow: 0 12px 32px rgba(3, 22, 47, 0.13); }
.page-home .area-browser { min-height: 0; max-height: none; padding: 12px; overflow: hidden; }
.page-home .search-field { min-height: 42px; flex-shrink: 0; padding-inline: 10px; border-radius: 10px; }
.page-home .search-field input { font-size: 0.875rem; }
.page-home .area-browser__meta { padding: 10px 4px 8px; }
.page-home .area-browser__meta strong { font-size: 0.95rem; }
.page-home .area-browser__meta span:not(.area-count) { display: none; }
.page-home .area-item { grid-template-columns: 32px minmax(0, 1fr) auto; gap: 8px; min-height: 44px; padding: 5px; border-radius: 9px; }
.page-home .area-item img { width: 32px; height: 32px; }
.page-home .area-item small { margin: 1px 0 0; font-size: 0.75rem; }
.page-home .area-group h3 { font-size: 0.75rem; letter-spacing: 0.03em; }
.page-home .area-empty { margin: 16px 4px; }
.mobile-area-select { display: none; }
.page-home .network-profile { min-height: 0; align-items: center; overflow-y: auto; }
.page-home .network-profile__content { padding: 24px 28px; max-height: 100%; }
.page-home .network-profile__topline { gap: 12px; flex-direction: row; margin-bottom: 18px; padding-bottom: 10px; font-size: 0.75rem; letter-spacing: 0.045em; }
.page-home .network-profile__identity { flex-direction: row; align-items: center; gap: 16px; }
.page-home .network-profile__avatar { width: 76px; height: 76px; flex-basis: 76px; border-width: 3px; }
.page-home .network-profile h3 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); line-height: 1.08; overflow-wrap: anywhere; }
.page-home .network-profile__overline { font-size: 0.75rem; letter-spacing: 0.05em; }
.page-home .network-profile__identity p:last-child { margin-top: 7px; font-size: 0.875rem; }
.page-home .network-profile__actions { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 20px; }
.page-home .network-action { grid-template-columns: 28px minmax(0, 1fr) auto; min-height: 46px; gap: 8px; padding: 8px 10px; border-radius: 10px; font-size: 0.875rem; }
.page-home .network-action__mark { width: 28px; height: 28px; }
.network-action__mark img { display: block; width: 100%; height: 100%; }
.network-action--facebook .network-action__mark { background: transparent; }
.network-action--whatsapp .network-action__mark img,
.network-action--channel .network-action__mark img { width: 20px; height: 20px; }
.page-home .network-profile__notice { margin-top: 10px; font-size: 0.75rem; }
.national-quick-links { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 14px; padding-top: 10px; font-size: 0.8rem; }
.national-quick-links > span { color: var(--muted); }
.national-quick-links a { color: var(--blue-700); text-decoration: none; font-weight: 700; }
.national-quick-links a:hover { text-decoration: underline; }
.site-header__inner { min-height: 64px; }
.site-footer__grid { padding-block: 16px; gap: 10px 20px; }
.site-footer__brand { gap: 10px; }
.site-footer__brand img { width: 36px; height: 36px; border-width: 2px; }
.site-footer__brand strong { font-size: 0.8rem; }
.site-footer__brand p { display: none; }
.site-footer__legal { padding-top: 8px; }
.dialog-is-open { overflow: hidden; }
.advertise-dialog { width: min(980px, calc(100% - 32px)); max-height: calc(100dvh - 40px); padding: 0; border: 0; border-radius: 20px; color: var(--ink); background: var(--white); box-shadow: 0 28px 100px #00163166; }
.advertise-dialog::backdrop { background: rgba(3, 18, 42, 0.65); backdrop-filter: blur(5px); }
.advertise-dialog__heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 24px; border-bottom: 1px solid var(--line); }
.advertise-dialog__heading h2 { margin: 0; font-size: 1.45rem; letter-spacing: -0.03em; }
.advertise-dialog__heading p { margin: 3px 0 0; color: var(--muted); font-size: 0.875rem; }
.dialog-close { flex-shrink: 0; width: 44px; height: 44px; border: 0; border-radius: 50%; color: var(--ink); background: var(--blue-50); font-size: 1.8rem; cursor: pointer; }
.advertise-dialog__grid { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 0; padding: 18px; }
.contact-card { padding: 24px 20px; border-radius: 14px; color: white; background: linear-gradient(150deg, var(--blue-700), var(--blue-950)); }
.contact-card > img { border-radius: 50%; border: 3px solid #ffffff88; }
.contact-card h3 { margin: 16px 0 3px; font-size: 1.5rem; }
.contact-card > p { margin: 0; color: #c9dff9; font-size: 0.875rem; }
.contact-card dl { margin: 24px 0 0; }
.contact-card dl > div + div { margin-top: 18px; }
.contact-card dt { color: #b9d4f6; font-size: 0.75rem; }
.contact-card dd { margin: 4px 0 0; font-size: 0.875rem; overflow-wrap: anywhere; }
.contact-card a { text-decoration-color: #ffffff66; text-underline-offset: 3px; }
.advertise-dialog .enquiry-form { padding: 4px 6px 4px 22px; box-shadow: none; border-radius: 0; }
.advertise-dialog .enquiry-form__heading { margin-bottom: 14px; }
.advertise-dialog .enquiry-form__heading span { font-size: 1rem; }
.advertise-dialog .form-grid { gap: 12px; }
.advertise-dialog .form-field { gap: 4px; }
.advertise-dialog .form-field > span { font-size: 0.875rem; }
.advertise-dialog .form-field input, .advertise-dialog .form-field select { height: 42px; }
.advertise-dialog .form-field textarea { min-height: 84px; }
.advertise-dialog .consent-field { margin-top: 14px; }
.advertise-dialog .enquiry-form__footer { margin-top: 16px; }
@media (max-width: 980px) {
  .network-intro .network-summary div { padding-inline: 10px; }
  .page-home .network-explorer { grid-template-columns: 250px minmax(0, 1fr); }
  .page-home .network-profile__content { padding: 20px; }
}
@media (max-width: 760px) {
  .network-intro__inner { flex-wrap: wrap; gap: 10px; padding-block: 12px; }
  .network-intro .network-summary { width: 100%; justify-content: flex-start; }
  .network-intro .network-summary div { display: flex; padding: 0 16px 0 0; }
  .network-intro .network-summary div + div { padding-left: 16px; border-left: 1px solid #ffffff33; }
  .network-intro .network-summary dt { font-size: 1.15rem; }
  .network-intro .network-summary dd { font-size: 0.75rem; }
  .network-toolbar { gap: 8px; }
  .network-toolbar h2 { font-size: 1rem; }
  .province-select > span { display: none; }
  .province-select select { max-width: 180px; }
  .page-home .network-section { padding-top: 12px; }
  .page-home .network-explorer { grid-template-columns: 1fr; height: auto; border-radius: 16px; }
  .page-home .area-browser { padding: 10px; }
  .page-home .area-list { display: none; }
  .mobile-area-select { display: block; }
  .mobile-area-select select { width: 100%; }
  .page-home .area-browser__meta { padding: 6px 2px; }
  .page-home .network-profile { min-height: 280px; }
  .page-home .network-profile__content { padding: 18px; }
  .page-home .network-profile__topline { margin-bottom: 12px; font-size: 0.75rem; }
  .page-home .network-profile__avatar { width: 58px; height: 58px; flex-basis: 58px; }
  .page-home .network-profile__identity { gap: 12px; }
  .page-home .network-profile__overline { display: none; }
  .page-home .network-profile h3 { font-size: 1.8rem; }
  .page-home .network-profile__actions { margin-top: 14px; }
  .site-footer__grid { gap: 8px; padding-block: 12px; }
  .site-footer__nav { gap: 16px; }
  .site-footer__nav a { font-size: 0.8rem; }
  .advertise-dialog { width: calc(100% - 20px); max-height: calc(100dvh - 20px); }
  .advertise-dialog__heading { padding: 14px 16px; }
  .advertise-dialog__grid { grid-template-columns: 1fr; padding: 12px; gap: 16px; }
  .contact-card { padding: 16px; }
  .contact-card > img { float: right; width: 48px; height: 48px; }
  .contact-card h3 { margin-top: 0; font-size: 1.25rem; }
  .contact-card dl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 16px; }
  .contact-card dl > div + div { margin-top: 0; }
  .advertise-dialog .enquiry-form { padding: 0 4px 4px; }
  .advertise-dialog .form-field input, .advertise-dialog .form-field select, .advertise-dialog .form-field textarea { font-size: 1rem; }
}
@media (max-width: 380px) {
  .page-home .network-profile__actions { grid-template-columns: 1fr; }
  .network-toolbar { align-items: stretch; flex-direction: column; }
  .province-select select { width: 100%; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
