:root {
  --brand-navy-deep: #072456;
  --brand-navy-mid: #133b73;
  --brand-navy-bright: #224c86;
  --brand-navy-cta-start: #20477c;
  --brand-navy-cta-end: #12376d;
  --brand-navy-footer-start: #1a3b6a;
  --brand-navy-footer-end: #0f2e5d;
  --brand-red: #c81d38;
  --brand-red-light: #e1455c;
  --navy-900: var(--brand-navy-deep);
  --navy-800: var(--brand-navy-mid);
  --red-600: #a3132b;
  --red-500: var(--brand-red);
  --red-400: var(--brand-red-light);
  --black-900: #090b10;
  --black-800: #171a20;
  --gold-500: var(--red-500);
  --gold-400: var(--red-400);
  --white: #ffffff;
  --gray-100: #f6f7f8;
  --gray-200: #eceef1;
  --gray-300: #d5d9df;
  --text-900: #101317;
  --text-700: #343a43;
  --error-500: var(--red-500);
  --error-100: #fdecef;
  --shadow-red-soft: rgba(200, 29, 56, 0.15);
  --shadow-red-ring: rgba(200, 29, 56, 0.2);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Lato', 'Roboto', Arial, sans-serif;
  color: var(--text-900);
  background-color: var(--white);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  font-family: 'Montserrat', 'Lato', sans-serif;
  color: var(--navy-900);
  line-height: 1.25;
}

p {
  margin: 0 0 1rem;
  color: var(--text-700);
}

a {
  color: var(--navy-800);
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--white);
  border-bottom: 1px solid var(--gray-300);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
}

.brand span {
  color: var(--navy-900);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--text-900);
  font-weight: 700;
  font-size: 0.94rem;
  padding: 0.35rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--navy-800);
  border-color: var(--gold-500);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--navy-900);
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
}

.hero {
  background: linear-gradient(135deg, var(--brand-navy-bright), var(--brand-navy-mid));
  color: var(--white);
  padding: 4.4rem 0 4rem;
}

.hero h1,
.hero h2,
.hero p,
.hero li,
.hero .eyebrow {
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--brand-red);
  border: 1px solid var(--red-600);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.4px;
  text-transform: none;
}

.eyebrow {
  margin-bottom: 0.45rem;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 700;
  font-size: 0.78rem;
}

h1 {
  font-size: clamp(1.9rem, 2.2vw + 1rem, 3rem);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.06rem;
  max-width: 68ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.hero-highlights {
  margin: 0;
  padding-left: 1.2rem;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  padding: 1.2rem;
  align-self: start;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.72rem 1.1rem;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid transparent;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-500), var(--red-400));
  color: var(--white);
  box-shadow: 0 10px 24px var(--shadow-red-soft);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--red-600), var(--red-500));
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--gray-100);
}

.section-title {
  margin-bottom: 0.9rem;
  font-size: clamp(1.5rem, 1vw + 1.1rem, 2rem);
}

.section-intro {
  margin-bottom: 1.4rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

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

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

.card,
.project-card,
.impact-panel,
.service-block {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.service-card {
  padding: 0;
  overflow: hidden;
}

.service-splash {
  width: 100%;
  height: 165px;
  object-fit: cover;
  border-bottom: 1px solid var(--gray-300);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.service-card-body {
  padding: 1rem 1.1rem 1.15rem;
}

.service-card .text-link {
  display: inline-block;
  margin-top: 0.2rem;
}

.text-link {
  font-weight: 700;
}

.detail-list {
  margin: 0;
  padding-left: 1.2rem;
}

.detail-list li {
  margin-bottom: 0.5rem;
}

.muted {
  color: var(--text-700);
  font-size: 0.92rem;
}

.page-hero {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-300);
  padding: 3.2rem 0 2.8rem;
}

.project-card {
  padding: 0;
  overflow: hidden;
}

.project-visual {
  height: 190px;
  background: linear-gradient(135deg, var(--navy-900), var(--gold-500));
}

.project-body {
  padding: 1.1rem;
}

.service-card:hover .service-splash,
.service-card:focus-within .service-splash {
  transform: scale(1.03);
  filter: saturate(1.08);
}

.service-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  gap: 2.2rem;
  align-items: center;
}

.service-detail-panel h2 {
  margin-bottom: 0.8rem;
}

.service-icon-wrap {
  width: 92px;
  height: 92px;
  border-radius: 18px;
  margin-bottom: 1.1rem;
  display: inline-flex;
}

.service-icon-wrap img {
  width: 100%;
  height: 100%;
}

.service-summary {
  margin: 0 0 1.35rem;
  max-width: 62ch;
}

.service-includes-title {
  margin-bottom: 0.75rem;
  font-size: 2rem;
}

.service-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.service-checklist li {
  position: relative;
  padding-left: 1.65rem;
  color: var(--text-700);
  font-size: 1.02rem;
}

.service-checklist li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0.04rem;
  color: var(--gold-500);
  font-weight: 700;
}

.service-media-shell {
  position: relative;
  border-radius: var(--radius);
  background: var(--navy-900);
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(11, 31, 58, 0.18);
}

.service-media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.media-tile {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 260px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.35s ease, filter 0.35s ease;
  display: none;
}

.media-tile-a {
  object-position: left top;
}

.media-tile-b {
  object-position: right top;
}

.media-tile-c {
  object-position: center 30%;
}

.media-tile-d {
  object-position: center 60%;
}

.media-tile-e {
  object-position: left bottom;
}

.media-tile-f {
  object-position: right bottom;
}

.service-media-shell:hover .media-tile,
.service-media-shell:focus-within .media-tile {
  filter: saturate(1.06);
}

.media-tile:hover,
.media-tile:focus-visible {
  transform: scale(1.02);
}

.media-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  opacity: 0.75;
  pointer-events: auto;
  user-select: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.media-arrow:hover {
  opacity: 1;
}

.media-arrow-left {
  left: 1rem;
}

.media-arrow-right {
  right: 1rem;
}

.cta-band {
  background: linear-gradient(135deg, var(--brand-navy-cta-start), var(--brand-navy-cta-end));
  color: var(--white);
  padding: 2.7rem 0;
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta-wrap > div {
  display: grid;
  gap: 0.2rem;
  justify-items: center;
}

.cta-wrap p {
  max-width: 60ch;
  margin: 0 auto;
}

.home-metrics {
  padding: 2.2rem 0 1.6rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.85fr);
  gap: 1.5rem;
  align-items: start;
}

.contact-form-shell {
  padding: 2rem;
}

.contact-form-header {
  margin-bottom: 1.4rem;
}

.contact-kicker {
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 700;
  color: var(--navy-800);
  font-size: 0.78rem;
}

.contact-form-header h2 {
  font-size: clamp(1.5rem, 0.8vw + 1.05rem, 2rem);
  margin-bottom: 0.65rem;
}

.contact-form-header p {
  color: var(--gold-500);
  font-size: clamp(0.95rem, 0.25vw + 0.88rem, 1.05rem);
  max-width: 48ch;
}

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

.field-group {
  display: flex;
  flex-direction: column;
}

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

.field-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 700;
  color: var(--navy-900);
}

.field-group label span {
  color: var(--error-500);
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  padding: 0.72rem 0.8rem;
  font: inherit;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-group input,
.field-group select {
  min-height: 54px;
}

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

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px var(--shadow-red-ring);
}

.field-group .is-invalid {
  border-color: var(--error-500);
  background: var(--error-100);
}

.field-error {
  min-height: 1.05rem;
  margin-top: 0.25rem;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--error-500);
}

.contact-submit-row {
  margin-top: 0.6rem;
}

.contact-submit-row .btn {
  min-width: 190px;
}

.form-status {
  margin: 0.45rem 0 0;
  min-height: 1.1rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy-800);
}

.form-status.is-error {
  color: var(--error-500);
}

.form-status.is-success {
  color: var(--navy-800);
}

.contact-info-panel {
  background: var(--gray-100);
  border-color: var(--gray-300);
  padding: 1.8rem 1.4rem;
  display: grid;
  gap: 1.1rem;
  align-self: start;
}

.contact-info-block {
  border-bottom: 1px solid var(--gray-300);
  padding-bottom: 1.1rem;
}

.contact-info-block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-info-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.55rem;
}

.contact-info-head h3 {
  margin: 0;
  font-size: 1.25rem;
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.contact-info-block p {
  margin: 0.15rem 0;
  color: var(--gold-500);
  font-size: 1.02rem;
}

.contact-info-block a {
  color: var(--gold-500);
  text-decoration: none;
}

.contact-info-block a:hover,
.contact-info-block a:focus-visible {
  color: var(--navy-800);
}

.contact-note {
  color: var(--navy-800);
  font-weight: 700;
  font-size: 1rem;
}

.contact-note-response {
  color: var(--navy-800);
}

.contact-note-emergency {
  color: var(--error-500);
}

.contact-social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold-500);
  text-decoration: none;
  font-weight: 700;
}

.contact-social-link:hover,
.contact-social-link:focus-visible {
  color: var(--navy-800);
}

.contact-social-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.success-modal[hidden] {
  display: none;
}

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
}

.success-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 58, 0.56);
}

.success-modal-dialog {
  position: relative;
  width: min(92vw, 460px);
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 16px;
  padding: 1.7rem 1.2rem 1.35rem;
  text-align: center;
  box-shadow: 0 18px 36px rgba(11, 31, 58, 0.2);
}

.success-modal-close {
  position: absolute;
  top: 0.55rem;
  right: 0.6rem;
  border: 0;
  background: transparent;
  color: var(--navy-800);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.success-modal-icon {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  margin: 0 auto 0.85rem;
  background: rgba(8, 27, 61, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.success-modal-icon svg {
  width: 36px;
  height: 36px;
  color: var(--navy-800);
}

.success-modal-dialog h3 {
  margin-bottom: 0.35rem;
}

.success-modal-dialog p {
  margin: 0 auto 1rem;
  max-width: 34ch;
}

body.modal-open {
  overflow: hidden;
}

.site-footer {
  background: linear-gradient(135deg, var(--brand-navy-footer-start), var(--brand-navy-footer-end));
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.4rem;
  padding: 3.4rem 0 2.1rem;
}

.footer-col h3 {
  margin-bottom: 0.9rem;
  font-size: 1.2rem;
  color: var(--white);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 36px;
  height: 36px;
}

.footer-brand span {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
}

.footer-description {
  margin: 0 0 1.3rem;
  color: var(--white);
  max-width: 36ch;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-btn img {
  width: 20px;
  height: 20px;
}

.social-btn:hover,
.social-btn:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.footer-list,
.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.footer-list a,
.footer-legal a {
  color: var(--white);
  text-decoration: none;
}

.footer-list a:hover,
.footer-list a:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--gold-400);
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
}

.footer-contact-list img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: var(--white);
  text-decoration: none;
}

.footer-contact-list a:hover,
.footer-contact-list a:focus-visible {
  color: var(--gold-400);
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0 2rem;
}

.footer-bottom p {
  margin: 0;
  color: var(--white);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .card-grid.three,
  .card-grid.two {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
  }

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

  .footer-legal {
    gap: 1.2rem;
  }

  .service-showcase {
    grid-template-columns: 1fr;
    gap: 1.45rem;
  }

  .service-icon-wrap {
    width: 82px;
    height: 82px;
  }

  .service-media-shell {
    padding: 1rem 1.05rem;
  }

  .media-arrow {
    display: none;
  }

  .cta-wrap {
    align-items: center;
    text-align: center;
  }

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

  .contact-form-shell {
    padding: 1.5rem;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-300);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8rem 4vw 1rem;
    gap: 0.55rem;
  }

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

@media (max-width: 640px) {
  .hero {
    padding: 3.4rem 0 3rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    padding: 2.8rem 0 1.8rem;
  }

  .footer-bottom {
    padding: 1.2rem 0 1.6rem;
  }

  .service-includes-title {
    font-size: 1.8rem;
  }

  .service-media-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .page-hero {
    padding: 2.8rem 0;
  }

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

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

  .contact-submit-row .btn {
    width: 100%;
  }

  .contact-info-panel {
    padding: 1.4rem 1.1rem;
  }

  .contact-info-block p,
  .contact-note {
    font-size: 0.98rem;
  }

}

/* Icon and visual enhancements */
.icon-box {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  margin-bottom: 1rem;
  box-shadow: 0 8px 16px var(--shadow-red-soft);
}

.icon-box img,
.icon-box svg {
  width: 48px;
  height: 48px;
}

.card .icon-box {
  margin-top: -1rem;
  margin-left: -1rem;
  border-radius: 16px 0 16px 0;
}

.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(11, 31, 58, 0.12);
}

.quote-icon {
  font-size: 2.4rem;
  color: var(--gold-500);
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.4rem;
}

.testimonial-meta {
  flex: 1;
}

.testimonial-meta h4 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
  color: var(--navy-900);
}

.testimonial-meta p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-700);
}

.star-rating {
  display: flex;
  gap: 0.3rem;
  margin-top: 0.8rem;
  color: var(--gold-500);
}

.star-rating span {
  font-size: 1.1rem;
}

.project-visual-img {
  height: 190px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-900), var(--gold-500));
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-visual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card:hover .project-visual-img img {
  transform: scale(1.05);
}

.project-tag {
  display: inline-block;
  background: rgba(200, 29, 56, 0.12);
  color: var(--black-900);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 0.8rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.feature-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--gray-100);
  border-radius: 12px;
  transition: background 0.3s ease;
}

.feature-item:hover {
  background: rgba(200, 29, 56, 0.08);
}

.feature-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-500);
  margin-bottom: 0.3rem;
}

.feature-label {
  font-size: 0.9rem;
  color: var(--text-700);
  margin: 0;
}

.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  margin: 2.5rem 0;
  opacity: 0.6;
}

.founder-section {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.founder-visual {
  width: 200px;
  height: 200px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-800), var(--gold-500));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 12px 32px rgba(11, 31, 58, 0.18);
}

.founder-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--gray-100);
  border-radius: 12px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-method:hover {
  background: rgba(200, 29, 56, 0.08);
  transform: translateX(4px);
}

.contact-method-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-method-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.contact-method-content h4 {
  margin: 0 0 0.3rem;
  color: var(--navy-900);
}

.contact-method-content p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-700);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease-out;
}

.animate-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.animate-in-right {
  animation: slideInRight 0.6s ease-out;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .founder-section {
    flex-direction: column;
  }

  .founder-visual {
    width: 180px;
    height: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-splash,
  .media-tile,
  .card-hover,
  .contact-method,
  .animate-in,
  .animate-in-left,
  .animate-in-right {
    transition: none;
    animation: none;
  }

  .service-card:hover .service-splash,
  .service-card:focus-within .service-splash,
  .service-media-shell:hover .media-tile,
  .service-media-shell:focus-within .media-tile,
  .media-tile:hover,
  .media-tile:focus-visible,
  .card-hover:hover {
    transform: none;
    filter: none;
  }
}
