


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

:root {
  --red:      #C8102E;
  --red-dark: #9e0c24;
  --navy:     #0B1D3A;
  --navy-mid: #152d59;
  --navy-light: #1e3f73;
  --white:    #FFFFFF;
  --off-white:#F5F6F8;
  --grey-100: #F0F1F4;
  --grey-200: #E0E2E8;
  --grey-400: #9098AA;
  --grey-600: #5A6070;
  --grey-800: #2C3140;

  --font-head: 'Trebuchet MS', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --header-h:  68px;

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 14px;

  --shadow-card: 0 2px 12px rgba(11,29,58,.12);
  --shadow-hover: 0 8px 28px rgba(11,29,58,.20);
  --shadow-red: 0 4px 18px rgba(200,16,46,.30);

  --transition: .22s cubic-bezier(.4,0,.2,1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--grey-800);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--red);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--red-dark); }

ul, ol { list-style: none; }


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(1.9rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.05rem, 2.5vw, 1.45rem); }
h4 { font-size: 1.1rem; }
h5 { font-size: .95rem; }
h6 { font-size: .875rem; }

p {
  margin-bottom: 1rem;
  color: var(--grey-600);
  font-size: .97rem;
  line-height: 1.72;
}
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; color: var(--grey-800); }


.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section {
  padding-block: 4.5rem;
}

.section--dark {
  background: var(--navy);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }
.section--dark p   { color: rgba(255,255,255,.72); }

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

.section--red {
  background: var(--red);
}
.section--red h2,
.section--red h3,
.section--red p  { color: var(--white); }


.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--navy);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.30);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand img {
  height: 44px;
  width: auto;
}
.brand-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1;
}
.brand-text span { color: var(--red); }


.burger-toggle {
  display: none;
}
.burger-label {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.burger-label span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}


.main-nav {
  display: flex;
  align-items: center;
  gap: .15rem;
}

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

.main-nav > li > a,
.main-nav > li > span.nav-toggle {
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: .45rem .72rem;
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: rgba(255,255,255,.88);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.main-nav > li > a:hover,
.main-nav > li:hover > span.nav-toggle {
  background: rgba(255,255,255,.10);
  color: var(--white);
}
.main-nav > li > a.active {
  color: var(--red);
}


.nav-toggle::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--transition);
}
.main-nav > li:hover .nav-toggle::after {
  transform: rotate(-135deg) translateY(-2px);
}


.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 230px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  border: 1px solid var(--grey-200);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 100;
}
.main-nav > li:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: .6rem 1.1rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--grey-800);
  border-radius: 0;
  transition: background var(--transition), color var(--transition);
}
.dropdown a:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.dropdown a:last-child  { border-radius: 0 0 var(--radius) var(--radius); }
.dropdown a:hover {
  background: var(--grey-100);
  color: var(--red);
}


.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: .45rem 1.1rem;
  background: var(--red);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .01em;
  margin-left: .4rem;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav-cta:hover {
  background: var(--red-dark);
  box-shadow: var(--shadow-red);
}


.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #1a3366 100%);
  padding-block: 5rem 4.5rem;
  position: relative;
  overflow: hidden;
}


.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(200,16,46,.18) 0%, transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(200,16,46,.10) 0%, transparent 40%);
  pointer-events: none;
}


.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-content {}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(200,16,46,.20);
  border: 1px solid rgba(200,16,46,.40);
  color: #ff6b80;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}
.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  letter-spacing: -.03em;
  margin-bottom: 1.2rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
}

.hero-desc {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

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


.hero-service-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  margin-top: 2.5rem;
}

.hero-service-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
}
.hero-service-item:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(200,16,46,.40);
}
.hero-service-icon {
  width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-service-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}
.hero-service-name {
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .72rem 1.6rem;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), box-shadow var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-outline:hover {
  background: rgba(255,255,255,.10);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-sm {
  padding: .5rem 1.1rem;
  font-size: .82rem;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}


.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--red);
  background: rgba(200,16,46,.08);
  padding: .2rem .6rem;
  border-radius: 100px;
  margin-bottom: .75rem;
}

.card-title {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: .6rem;
  line-height: 1.3;
}
.card-title a {
  color: inherit;
}
.card-title a:hover { color: var(--red); }

.card-text {
  color: var(--grey-600);
  font-size: .9rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}


.service-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(200,16,46,.25);
}

.service-card-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--red) 0%, #e8324a 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-card-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}

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

.service-card p {
  font-size: .9rem;
  color: var(--grey-600);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--red);
  margin-top: auto;
}
.service-card-link:hover { color: var(--red-dark); }
.service-card-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}
.service-card-link:hover svg { transform: translateX(3px); }


.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }


.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header-left {
  margin-bottom: 2.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--red);
  margin-bottom: .65rem;
}
.section-tag::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.section-header h2 {
  margin-bottom: .75rem;
}
.section-header p {
  max-width: 620px;
  margin-inline: auto;
  font-size: 1rem;
}


.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.75rem 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
}

.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: .35rem;
  letter-spacing: -.03em;
}
.stat-label {
  font-size: .88rem;
  color: rgba(255,255,255,.72);
  font-weight: 500;
}


.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--red);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: .85rem;
}
.star-svg {
  width: 16px;
  height: 16px;
}

.testimonial-text {
  font-size: .95rem;
  color: var(--grey-600);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.testimonial-text::before { content: '\201C'; }
.testimonial-text::after  { content: '\201D'; }

.testimonial-author {
  font-weight: 700;
  font-size: .88rem;
  color: var(--navy);
}
.testimonial-role {
  font-size: .8rem;
  color: var(--grey-400);
}


.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding-block: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,16,46,.22) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: .75rem; }
.cta-banner p  { color: rgba(255,255,255,.75); margin-bottom: 1.75rem; font-size: 1rem; }


.contact-grid {
  display: grid;
  gap: 2.5rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  background: rgba(200,16,46,.10);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--red);
}

.contact-info-label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--grey-400);
  margin-bottom: .15rem;
}
.contact-info-value {
  font-size: .97rem;
  font-weight: 600;
  color: var(--navy);
}


.site-footer {
  background: var(--navy);
  padding-block: 3.5rem 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand {}
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.60);
  line-height: 1.65;
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.68);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--red); }

.footer-contact-item {
  font-size: .88rem;
  color: rgba(255,255,255,.68);
  margin-bottom: .5rem;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.footer-contact-item svg {
  width: 14px;
  height: 14px;
  fill: var(--red);
  flex-shrink: 0;
  margin-top: .15rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-copy {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}


.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding-block: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 50%, rgba(200,16,46,.18) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.7rem, 4.5vw, 2.8rem);
  margin-bottom: .75rem;
}
.page-hero .hero-desc {
  max-width: 600px;
  font-size: .97rem;
}


.breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.breadcrumb a,
.breadcrumb span {
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep {
  color: rgba(255,255,255,.30);
  font-size: .7rem;
}
.breadcrumb .current { color: rgba(255,255,255,.88); }


.article-layout {
  display: grid;
  gap: 3rem;
  padding-block: 4rem;
}

.article-body h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: .75rem;
  padding-top: .5rem;
  border-top: 2px solid var(--grey-100);
}
.article-body h2:first-child { border-top: none; margin-top: 0; }
.article-body h3 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  color: var(--navy-mid);
}
.article-body p { margin-bottom: 1.1rem; }
.article-body ul,
.article-body ol {
  margin-bottom: 1.1rem;
  padding-left: 1.4rem;
}
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li {
  font-size: .97rem;
  color: var(--grey-600);
  margin-bottom: .4rem;
  line-height: 1.65;
}
.article-body img {
  border-radius: var(--radius);
  margin-block: 1.5rem;
  width: 100%;
}


.article-sidebar {}
.sidebar-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.sidebar-card h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.sidebar-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.72);
  padding: .4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color var(--transition), padding-left var(--transition);
}
.sidebar-links a:last-child { border-bottom: none; }
.sidebar-links a:hover {
  color: var(--red);
  padding-left: .3rem;
}


.portfolio-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}
.portfolio-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.portfolio-item-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.portfolio-item-body {
  padding: 1.25rem;
}
.portfolio-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: .75rem;
}
.tag-pill {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--grey-600);
  background: var(--grey-100);
  padding: .2rem .55rem;
  border-radius: 100px;
}


.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-title {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: .6rem;
  line-height: 1.35;
}
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--red); }
.blog-card-excerpt {
  font-size: .9rem;
  color: var(--grey-600);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}
.blog-card-meta {
  font-size: .78rem;
  color: var(--grey-400);
  margin-bottom: .75rem;
}
.read-more {
  font-size: .85rem;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.read-more:hover { color: var(--red-dark); }


.form-notice {
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
}
.form-notice p {
  font-size: .95rem;
  color: var(--grey-600);
  margin-bottom: .75rem;
}
.form-notice .contact-direct {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.form-notice a { color: var(--red); }


.text-center { text-align: center; }
.text-red    { color: var(--red); }
.text-navy   { color: var(--navy); }
.text-white  { color: var(--white); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mt-2 { margin-top: 2rem; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


.divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  border-radius: 3px;
  margin-block: 1rem;
}
.divider-center { margin-inline: auto; }


.accent-head {
  padding-left: 1rem;
  border-left: 4px solid var(--red);
}


@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }

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

  .stats-row { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr 300px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .hero-service-strip { grid-template-columns: repeat(2, 1fr); }
}


@media (max-width: 767px) {
  .burger-label {
    display: flex;
    z-index: 1100;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: calc(var(--header-h) + 1rem) 1.25rem 2rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    z-index: 1050;
  }

  .burger-toggle:checked ~ .main-nav {
    transform: translateX(0);
  }

  
  .burger-toggle:checked ~ .burger-label span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger-toggle:checked ~ .burger-label span:nth-child(2) {
    opacity: 0;
  }
  .burger-toggle:checked ~ .burger-label span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav > li > a,
  .main-nav > li > span.nav-toggle {
    padding: .9rem .5rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    border-radius: 0;
  }

  .dropdown {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,.05);
    border-radius: var(--radius-sm);
    margin-top: .25rem;
    margin-bottom: .5rem;
  }
  .dropdown a {
    color: rgba(255,255,255,.72);
    padding: .5rem 1rem;
    border-radius: 0;
  }
  .dropdown a:hover { background: rgba(255,255,255,.08); color: var(--red); }

  .nav-cta {
    margin-left: 0;
    margin-top: 1rem;
    justify-content: center;
    padding: .9rem 1.6rem;
    font-size: 1rem;
  }

  .hero { padding-block: 3.5rem 3rem; }
  .section { padding-block: 3rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }

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


.about-intro {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
.about-pillars {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}
.pillar-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.pillar-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,16,46,.10);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--red);
}
.pillar-item h4 { font-size: 1rem; margin-bottom: .35rem; }
.pillar-item p { font-size: .9rem; margin: 0; }

@media (min-width: 768px) {
  .about-intro { grid-template-columns: 1fr 1fr; }
  .about-pillars { grid-template-columns: repeat(2, 1fr); }
}


.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: .4rem .9rem;
  font-size: .82rem;
  font-weight: 600;
  border: 1px solid var(--grey-200);
  border-radius: 100px;
  color: var(--grey-600);
  cursor: default;
  background: var(--white);
}


.hero-contact-details {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-top: 1.75rem;
}
.hero-contact-item {
  display: flex;
  align-items: center;
  gap: .65rem;
}
.hero-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--red);
  flex-shrink: 0;
}
.hero-contact-item span {
  font-size: .92rem;
  color: rgba(255,255,255,.80);
}
