/* =====================================================================
   Flora Health Pavilion — Global Stylesheet
   A calm, trustworthy Canadian hospital design system
   ===================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  --brand: #12726b;
  /* deep teal */
  --brand-2: #0d5b55;
  --brand-3: #0a4742;
  --brand-soft: #e5f2f0;
  --brand-soft-2: #d0e8e5;
  --accent: #e63946;
  /* maple red */
  --accent-dark: #c72b38;
  --gold: #f2a541;

  --ink: #10221f;
  --body: #384a47;
  --muted: #6b7b78;
  --line: #e2e9e8;
  --bg: #f5f9f8;
  --surface: #ffffff;
  --surface-2: #f0f6f5;
  --dark: #0c2b28;

  --success: #2a9d5c;
  --warn: #e9a23b;

  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(16, 34, 31, .06);
  --shadow: 0 10px 30px rgba(16, 34, 31, .09);
  --shadow-lg: 0 24px 60px rgba(16, 34, 31, .16);
  --ring: 0 0 0 4px rgba(18, 114, 107, .15);

  --container: 1180px;
  --header-h: 78px;

  --font-head: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  overflow-x: hidden;
}

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

a {
  color: var(--brand);
  text-decoration: none;
  transition: color .2s var(--ease);
}

a:hover {
  color: var(--accent);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.18;
  font-weight: 700;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
}

h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
}

button {
  font-family: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(56px, 8vw, 104px) 0;
}

.section-sm {
  padding: clamp(40px, 5vw, 64px) 0;
}

.bg-soft {
  background: var(--surface-2);
}

.bg-brand {
  background: var(--brand);
  color: #eafffb;
}

.bg-dark {
  background: var(--dark);
  color: #d6e6e3;
}

.text-center {
  text-align: center;
}

.grid {
  display: grid;
  gap: 26px;
}

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

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

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

.flow>*+* {
  margin-top: 1rem;
}

/* ---------- Section heading ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.bg-brand .eyebrow,
.bg-dark .eyebrow {
  background: rgba(255, 255, 255, .12);
  color: #bff3ec;
}

.section-head {
  max-width: 660px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}

.section-head.text-center {
  margin-inline: auto;
}

.section-head p {
  color: var(--muted);
  font-size: 1.06rem;
  margin-bottom: 0;
}

.bg-brand .section-head p,
.bg-dark .section-head p {
  color: #bfe0dc;
}

.lead {
  font-size: 1.16rem;
  color: var(--body);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .96rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: all .25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 20px rgba(18, 114, 107, .28);
}

.btn-primary:hover {
  background: var(--brand-2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(18, 114, 107, .36);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(230, 57, 70, .28);
}

.btn-accent:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand-soft-2);
}

.btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-soft);
}

.btn-white {
  background: #fff;
  color: var(--brand);
}

.btn-white:hover {
  color: var(--brand-2);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.02rem;
}

.btn-block {
  width: 100%;
}

/* =====================================================================
   HEADER / NAVIGATION
   ===================================================================== */
.topbar {
  background: var(--brand-3);
  color: #cfeae6;
  font-size: .86rem;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.topbar a {
  color: #cfeae6;
}

.topbar a:hover {
  color: #fff;
}

.topbar-left {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar-item svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
}

.topbar-social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.topbar-social a {
  display: inline-flex;
}

.topbar-social svg {
  width: 16px;
  height: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, .98);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

.brand-mark svg {
  width: 26px;
  height: 26px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--ink);
}

.brand-name b {
  color: var(--brand);
}

.brand-tag {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu>li {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .96rem;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 10px;
  transition: all .2s var(--ease);
}

.nav-link:hover,
.nav-item.open>.nav-link {
  color: var(--brand);
  background: var(--brand-soft);
}

.nav-item.active>.nav-link {
  color: var(--brand);
}

.nav-item.active>.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.caret {
  width: 14px;
  height: 14px;
  transition: transform .25s var(--ease);
}

.nav-item.open .caret {
  transform: rotate(180deg);
}

/* dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 250px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .22s var(--ease);
  z-index: 50;
}

.dropdown.wide {
  min-width: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.nav-item:hover>.dropdown,
.nav-item.open>.dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--body);
  font-size: .93rem;
  font-weight: 500;
}

.dropdown a:hover {
  background: var(--brand-soft);
  color: var(--brand);
}

.dropdown a .di {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  flex-shrink: 0;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
}

.dropdown a .di svg {
  width: 18px;
  height: 18px;
}

.dropdown a small {
  display: block;
  color: var(--muted);
  font-weight: 400;
  font-size: .78rem;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 130;
  cursor: pointer;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

/* mobile */
@media (max-width: 992px) {

  /* backdrop-filter makes the header a containing block for the fixed
     drawer, trapping it inside the header box — disable it on mobile so
     the drawer can size to the full viewport. */
  .site-header {
    backdrop-filter: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(88%, 380px);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 90px 18px 30px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform .32s var(--ease);
    overflow-y: auto;
    z-index: 120;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-link {
    justify-content: space-between;
    padding: 14px 14px;
    font-size: 1.02rem;
  }

  .nav-item.active>.nav-link::after {
    display: none;
  }

  .dropdown,
  .dropdown.wide {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    min-width: 0;
    display: none;
    grid-template-columns: 1fr;
    padding: 2px 6px 8px 12px;
    background: var(--surface-2);
    border-radius: 10px;
    margin: 2px 0 6px;
  }

  .nav-item.open>.dropdown,
  .nav-item.open>.dropdown.wide {
    display: block;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 43, 40, .5);
    z-index: 95;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s;
  }

  .nav-overlay.show {
    opacity: 1;
    visibility: visible;
  }

  .nav-cta .btn:not(.nav-toggle) {
    display: none;
  }
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  color: #eafffb;
  overflow: hidden;
  background: linear-gradient(120deg, var(--brand-3) 0%, var(--brand) 55%, var(--brand-2) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&w=1600&q=70") center/cover;
  opacity: .14;
  mix-blend-mode: luminosity;
}

.hero::after {
  content: "";
  position: absolute;
  right: -160px;
  top: -160px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(242, 165, 65, .25), transparent 65%);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
  padding: clamp(50px, 8vw, 96px) 0;
}

.hero h1 {
  color: #fff;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--gold);
}

.hero-lead {
  font-size: 1.16rem;
  color: #cdeae6;
  max-width: 540px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 11px;
}

.hero-badge .n {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.7rem;
  color: #fff;
  line-height: 1;
}

.hero-badge .l {
  font-size: .84rem;
  color: #a9d5cf;
}

.hero-media {
  position: relative;
}

.hero-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/4.4;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.hero-card.a {
  bottom: 26px;
  left: -26px;
}

.hero-card.b {
  top: 26px;
  right: -20px;
}

.hero-card .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}

.hero-card .ico.g {
  background: var(--success);
}

.hero-card .ico.r {
  background: var(--accent);
}

.hero-card .ico svg {
  width: 24px;
  height: 24px;
}

.hero-card b {
  display: block;
  font-family: var(--font-head);
  font-size: .98rem;
}

.hero-card small {
  color: var(--muted);
  font-size: .8rem;
}

/* quick action strip */
.quickbar {
  margin-top: -46px;
  position: relative;
  z-index: 5;
}

.quickbar-inner {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.quick {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 24px 26px;
  border-right: 1px solid var(--line);
  transition: background .2s;
}

.quick:last-child {
  border-right: none;
}

.quick:hover {
  background: var(--surface-2);
}

.quick .qi {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.quick .qi svg {
  width: 26px;
  height: 26px;
}

.quick h4 {
  margin: 0 0 3px;
  font-size: 1.02rem;
}

.quick p {
  margin: 0;
  font-size: .84rem;
  color: var(--muted);
}

/* =====================================================================
   PAGE HERO (interior pages)
   ===================================================================== */
.page-hero {
  position: relative;
  color: #eafffb;
  text-align: center;
  background: linear-gradient(120deg, var(--brand-3), var(--brand-2));
  padding: clamp(56px, 9vw, 104px) 0 clamp(50px, 7vw, 84px);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1538108149393-fbbd81895907?auto=format&fit=crop&w=1600&q=70") center/cover;
  opacity: .12;
  mix-blend-mode: luminosity;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 12px;
}

.page-hero p {
  color: #cdeae6;
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.08rem;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: .88rem;
  color: #a9d5cf;
}

.breadcrumb a {
  color: #cdeae6;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span {
  opacity: .6;
}

/* =====================================================================
   CARDS
   ===================================================================== */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--brand-soft-2);
}

/* service card */
.service-card {
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
}

.service-card .s-ico {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand-soft), var(--brand-soft-2));
  color: var(--brand);
  margin-bottom: 18px;
  transition: all .3s var(--ease);
}

.service-card:hover .s-ico {
  background: var(--brand);
  color: #fff;
  transform: rotate(-6deg) scale(1.05);
}

.service-card .s-ico svg {
  width: 30px;
  height: 30px;
}

.service-card h3 {
  margin-bottom: 8px;
}

.service-card p {
  color: var(--muted);
  font-size: .94rem;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-card .s-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card .s-link svg {
  width: 16px;
  height: 16px;
  transition: transform .2s;
}

.service-card:hover .s-link svg {
  transform: translateX(4px);
}

/* feature / why-choose */
.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature .f-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
}

.feature .f-ico svg {
  width: 26px;
  height: 26px;
}

.feature h3 {
  font-size: 1.12rem;
  margin-bottom: 5px;
}

.feature p {
  color: var(--muted);
  font-size: .93rem;
  margin: 0;
}

.bg-brand .feature .f-ico,
.bg-dark .feature .f-ico {
  background: rgba(255, 255, 255, .12);
  color: var(--gold);
}

.bg-brand .feature p,
.bg-dark .feature p {
  color: #bfe0dc;
}

.bg-brand .feature h3,
.bg-dark .feature h3 {
  color: #fff;
}

/* stat */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.stat {
  text-align: center;
  padding: 10px;
}

.stat .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.1rem);
  color: var(--gold);
  line-height: 1;
}

.stat .lab {
  color: #cbe6e2;
  font-size: .95rem;
  margin-top: 8px;
}

/* =====================================================================
   ABOUT / IMAGE + TEXT
   ===================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}

.split-media {
  position: relative;
}

.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.split-media .badge-float {
  position: absolute;
  bottom: -24px;
  right: -18px;
  background: var(--brand);
  color: #fff;
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.split-media .badge-float .n {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  color: var(--gold);
}

.split-media .badge-float .l {
  font-size: .82rem;
  color: #cbe6e2;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 26px;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .98rem;
}

.check-list li svg {
  width: 22px;
  height: 22px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

/* mission vision cards */
.mv-card {
  padding: 34px 30px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.mv-card .mv-ico {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: #fff;
}

.mv-card .mv-ico svg {
  width: 32px;
  height: 32px;
}

.mv-card.brand {
  background: var(--brand);
  color: #dff5f2;
}

.mv-card.brand h3 {
  color: #fff;
}

.mv-card.brand .mv-ico {
  background: rgba(255, 255, 255, .15);
}

.mv-card.light {
  background: var(--surface);
  border: 1px solid var(--line);
}

.mv-card.light .mv-ico {
  background: var(--brand-soft);
  color: var(--brand);
}

.mv-card.accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #ffe9eb;
}

.mv-card.accent h3 {
  color: #fff;
}

.mv-card.accent .mv-ico {
  background: rgba(255, 255, 255, .18);
}

/* =====================================================================
   STAFF
   ===================================================================== */
.staff-card {
  text-align: center;
  padding-bottom: 24px;
}

.staff-photo {
  position: relative;
  overflow: hidden;
}

.staff-photo img {
  aspect-ratio: 1/1.05;
  object-fit: cover;
  width: 100%;
  transition: transform .5s var(--ease);
}

.staff-card:hover .staff-photo img {
  transform: scale(1.06);
}

.staff-social {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: linear-gradient(transparent, rgba(12, 43, 40, .7));
  transform: translateY(100%);
  transition: transform .3s var(--ease);
}

.staff-card:hover .staff-social {
  transform: translateY(0);
}

.staff-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  display: grid;
  place-items: center;
}

.staff-social a:hover {
  background: var(--brand);
  color: #fff;
}

.staff-social svg {
  width: 16px;
  height: 16px;
}

.staff-card h3 {
  margin: 18px 0 3px;
  font-size: 1.16rem;
}

.staff-role {
  color: var(--accent);
  font-weight: 600;
  font-family: var(--font-head);
  font-size: .9rem;
}

.staff-dept {
  color: var(--muted);
  font-size: .84rem;
  margin-top: 4px;
}

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.testi-slider {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.testi-track {
  overflow: hidden;
}

.testi-viewport {
  display: flex;
  transition: transform .5s var(--ease);
}

.testi-slide {
  min-width: 100%;
  padding: 6px;
}

.testi-quote {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 46px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  border: 1px solid var(--line);
}

.testi-quote .qmark {
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--brand-soft-2);
  line-height: .5;
  height: 40px;
}

.testi-quote p {
  font-size: 1.18rem;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 24px;
}

.testi-stars {
  color: var(--gold);
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 20px;
}

.testi-stars svg {
  width: 20px;
  height: 20px;
}

.testi-person {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testi-person img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-person b {
  font-family: var(--font-head);
  color: var(--ink);
  display: block;
}

.testi-person small {
  color: var(--muted);
}

.testi-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.testi-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand);
  display: grid;
  place-items: center;
  transition: all .2s;
}

.testi-btn:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.testi-btn svg {
  width: 20px;
  height: 20px;
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.testi-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-soft-2);
  border: none;
  padding: 0;
  transition: all .2s;
}

.testi-dot.active {
  background: var(--brand);
  width: 26px;
  border-radius: 5px;
}

.testi-grid-card {
  padding: 28px;
}

.testi-grid-card .testi-stars {
  justify-content: flex-start;
  margin-bottom: 14px;
}

.testi-grid-card p {
  font-style: italic;
  color: var(--body);
}

.testi-grid-card .testi-person {
  justify-content: flex-start;
}

/* =====================================================================
   BLOG / EVENTS
   ===================================================================== */
.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-thumb {
  position: relative;
  overflow: hidden;
}

.blog-thumb img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
  transition: transform .5s var(--ease);
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.06);
}

.blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .74rem;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.blog-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-meta svg {
  width: 14px;
  height: 14px;
  color: var(--brand);
}

.blog-body h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.blog-body h3 a {
  color: var(--ink);
}

.blog-body h3 a:hover {
  color: var(--brand);
}

.blog-body p {
  color: var(--muted);
  font-size: .93rem;
  flex-grow: 1;
}

.blog-readmore {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

.blog-readmore svg {
  width: 16px;
  height: 16px;
  transition: transform .2s;
}

.blog-card:hover .blog-readmore svg {
  transform: translateX(4px);
}

/* event list */
.event-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 24px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
  transition: all .3s var(--ease);
}

.event-item:hover {
  box-shadow: var(--shadow);
  border-color: var(--brand-soft-2);
  transform: translateX(4px);
}

.event-date {
  text-align: center;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 12px;
  padding: 12px 6px;
  width: 96px;
}

.event-date .d {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1;
}

.event-date .m {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

.event-info h3 {
  font-size: 1.16rem;
  margin-bottom: 6px;
}

.event-info .em {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .84rem;
  color: var(--muted);
}

.event-info .em span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.event-info .em svg {
  width: 15px;
  height: 15px;
  color: var(--brand);
}

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(30px, 5vw, 56px);
  align-items: start;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all .3s var(--ease);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.contact-info-card .ci {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-info-card .ci svg {
  width: 24px;
  height: 24px;
}

.contact-info-card h4 {
  margin: 0 0 4px;
  font-size: 1.02rem;
}

.contact-info-card p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .88rem;
  color: var(--ink);
  margin-bottom: 7px;
}

.field label .req {
  color: var(--accent);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .96rem;
  color: var(--ink);
  background: var(--surface-2);
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: var(--ring);
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.field.error input,
.field.error select,
.field.error textarea {
  border-color: var(--accent);
}

.field .err-msg {
  color: var(--accent);
  font-size: .8rem;
  margin-top: 5px;
  display: none;
}

.field.error .err-msg {
  display: block;
}

.form-note {
  font-size: .82rem;
  color: var(--muted);
  margin-top: 6px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: #e7f6ee;
  color: #1b6b41;
  border: 1px solid #b9e3ca;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 18px;
  font-weight: 500;
}

.form-success.show {
  display: flex;
}

.form-success svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.map-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* =====================================================================
   FAQ / ACCORDION
   ===================================================================== */
.accordion {
  max-width: 820px;
  margin: 0 auto;
}

.acc-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow .2s;
}

.acc-item.open {
  box-shadow: var(--shadow-sm);
  border-color: var(--brand-soft-2);
}

.acc-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.acc-q .acc-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all .3s var(--ease);
}

.acc-q .acc-icon svg {
  width: 18px;
  height: 18px;
}

.acc-item.open .acc-icon {
  background: var(--brand);
  color: #fff;
  transform: rotate(45deg);
}

.acc-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}

.acc-a-inner {
  padding: 0 24px 22px;
  color: var(--muted);
}

/* =====================================================================
   CTA BANNER
   ===================================================================== */
.cta-banner {
  background: linear-gradient(120deg, var(--brand-2), var(--brand-3));
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 66px);
  text-align: center;
  color: #eafffb;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(242, 165, 65, .22), transparent 65%);
  border-radius: 50%;
}

.cta-banner>* {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: #fff;
}

.cta-banner p {
  color: #c8e6e1;
  max-width: 560px;
  margin: 0 auto 26px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================================================================
   SERVICE DETAIL PAGE
   ===================================================================== */
.svc-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}

.svc-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  display: grid;
  gap: 24px;
}

.svc-nav {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow-sm);
}

.svc-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 15px;
  border-radius: 10px;
  color: var(--body);
  font-weight: 500;
  font-size: .93rem;
}

.svc-nav a svg {
  width: 16px;
  height: 16px;
  opacity: 0;
  transition: all .2s;
}

.svc-nav a:hover {
  background: var(--brand-soft);
  color: var(--brand);
}

.svc-nav a:hover svg {
  opacity: 1;
}

.svc-nav a.active {
  background: var(--brand);
  color: #fff;
}

.svc-nav a.active svg {
  opacity: 1;
}

.svc-help {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #eafffb;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}

.svc-help .ico {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .15);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}

.svc-help .ico svg {
  width: 28px;
  height: 28px;
}

.svc-help h4 {
  color: #fff;
  margin-bottom: 8px;
}

.svc-help p {
  color: #c8e6e1;
  font-size: .9rem;
  margin-bottom: 18px;
}

.svc-help .phone {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
}

.svc-content img.svc-hero-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 30px;
  aspect-ratio: 16/8;
  object-fit: cover;
  width: 100%;
}

.svc-content h2 {
  margin-top: 34px;
}

.svc-content h2:first-child {
  margin-top: 0;
}

.svc-content ul.svc-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0 24px;
}

.svc-content ul.svc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .96rem;
}

.svc-content ul.svc-list li svg {
  width: 20px;
  height: 20px;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 3px;
}

.svc-highlight {
  background: var(--brand-soft);
  border-left: 4px solid var(--brand);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.svc-highlight p {
  margin: 0;
  color: var(--brand-3);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0;
}

.mini-stat {
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
}

.mini-stat .n {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--brand);
  line-height: 1;
}

.mini-stat .l {
  font-size: .84rem;
  color: var(--muted);
  margin-top: 6px;
}

/* =====================================================================
   TIMELINE (history)
   ===================================================================== */
.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding-left: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--brand-soft-2);
}

.tl-item {
  position: relative;
  padding: 0 0 38px 40px;
}

.tl-item::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand);
  border: 4px solid var(--brand-soft);
}

.tl-year {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.tl-item h3 {
  font-size: 1.14rem;
  margin-bottom: 6px;
}

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

/* =====================================================================
   DEPARTMENT PILLS / VALUES
   ===================================================================== */
.value-card {
  padding: 28px 26px;
  text-align: center;
}

.value-card .v-ico {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}

.value-card .v-ico svg {
  width: 30px;
  height: 30px;
}

.value-card h3 {
  font-size: 1.1rem;
}

.value-card p {
  color: var(--muted);
  font-size: .92rem;
  margin: 0;
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer {
  background: var(--dark);
  color: #a9c4c0;
  padding: clamp(56px, 7vw, 84px) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand .brand-name {
  color: #fff;
}

.footer-brand .brand-tag {
  color: #7fa8a2;
}

.footer-about {
  margin: 18px 0 20px;
  font-size: .93rem;
  color: #9dbdb8;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .07);
  color: #cfe6e2;
  display: grid;
  place-items: center;
  transition: all .2s;
}

.footer-social a:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.02rem;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 11px;
}

.footer-col ul a {
  color: #9dbdb8;
  font-size: .93rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
  transition: all .2s;
}

.footer-col ul a:hover {
  color: #fff;
}

.footer-col ul a:hover::before {
  background: var(--gold);
  transform: scale(1.6);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .93rem;
  color: #9dbdb8;
}

.footer-contact li svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-news p {
  font-size: .9rem;
  color: #9dbdb8;
  margin-bottom: 14px;
}

.footer-news form {
  display: flex;
  gap: 8px;
}

.footer-news input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-family: inherit;
  font-size: .9rem;
}

.footer-news input::placeholder {
  color: #7fa8a2;
}

.footer-news input:focus {
  outline: none;
  border-color: var(--brand);
}

.footer-news button {
  width: 46px;
  border-radius: 10px;
  border: none;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background .2s;
}

.footer-news button:hover {
  background: var(--brand-2);
}

.footer-news button svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .86rem;
  color: #7fa8a2;
}

.footer-bottom a {
  color: #9dbdb8;
}

.footer-bottom .fb-links {
  display: flex;
  gap: 20px;
}

/* =====================================================================
   FLOATING / MISC
   ===================================================================== */
.float-emergency {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 13px 20px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(230, 57, 70, .4);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  transition: all .25s var(--ease);
}

.float-emergency:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-3px);
}

.float-emergency svg {
  width: 20px;
  height: 20px;
}

.float-emergency .pulse {
  position: relative;
  display: inline-flex;
}

.float-emergency .pulse::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .6);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(.8);
    opacity: 1;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.tag-pill {
  display: inline-block;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: .8rem;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 999px;
  font-family: var(--font-head);
}

/* =====================================================================
   REVEAL ANIMATION
   ===================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal.d1 {
  transition-delay: .08s;
}

.reveal.d2 {
  transition-delay: .16s;
}

.reveal.d3 {
  transition-delay: .24s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }

  .float-emergency .pulse::after {
    animation: none;
  }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-media {
    max-width: 460px;
    margin: 0 auto;
  }

  .quickbar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick:nth-child(2) {
    border-right: none;
  }

  .quick:nth-child(1),
  .quick:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

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

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

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

  .split-media {
    max-width: 520px;
  }

  .split.reverse .split-media {
    order: -1;
  }

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

  .svc-layout {
    grid-template-columns: 1fr;
  }

  .svc-sidebar {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .quickbar-inner {
    grid-template-columns: 1fr;
  }

  .quick {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .quick:last-child {
    border-bottom: none;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

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

  .svc-content ul.svc-list {
    grid-template-columns: 1fr;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }

  .svc-sidebar {
    grid-template-columns: 1fr;
  }

  .event-item {
    grid-template-columns: 72px 1fr;
  }

  .event-item .btn {
    grid-column: 1 / -1;
  }

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

  .topbar-left {
    gap: 14px;
  }

  .topbar .topbar-item:nth-child(n+3) {
    display: none;
  }

  .hero-card.a {
    left: 8px;
  }

  .hero-card.b {
    right: 8px;
  }

  .split-media .badge-float {
    right: 8px;
  }
}

@media (max-width: 400px) {
  .hero-badges {
    gap: 16px;
  }

  .testi-quote {
    padding: 32px 24px;
  }
}