
:root {
  --navy: #1a2a3a;
  --navy-dark: #111e2b;
  --red: #cc2200;
  --red-hover: #a81c00;
  --white: #ffffff;
  --grey-mid: #666666;
  --grey-light: #f4f4f4;
  --grey-border: #e0e0e0;

  --font-head: 'Open Sans', sans-serif;
  --font-sub: 'Quicksand', sans-serif;

  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2.5vw, 1.5rem);
  --space-lg: clamp(1.5rem, 4vw, 2.5rem);
  --space-xl: clamp(2.5rem, 6vw, 4.5rem);
  --space-2xl: clamp(3.5rem, 8vw, 6rem);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-card: 0 2px 12px rgba(26,42,58,0.10);
  --shadow-hover: 0 6px 24px rgba(26,42,58,0.18);

  --max-w: 1200px;
  --header-h: 68px;
}


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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-head);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

ul { list-style: none; }

.container {
  width: 92%;
  max-width: var(--max-w);
  margin-inline: auto;
}


h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); font-weight: 700; }

p { color: var(--grey-mid); }

.section-eyebrow {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.centered { text-align: center; }

.section-intro {
  max-width: 580px;
  margin-inline: auto;
  margin-top: 0.75rem;
  margin-bottom: var(--space-lg);
}


.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 0.75em 1.75em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  text-align: center;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

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

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

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

.btn-white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.btn-white:hover { background: var(--grey-light); border-color: var(--grey-light); }

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


.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  height: var(--header-h);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-md);
}

.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0.25em;
  flex-shrink: 0;
}
.logo-main { color: var(--white); }
.logo-accent { color: var(--red); }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.75rem);
}

.nav-link {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  border-bottom-color: var(--red);
}
.nav-link:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 2px; }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.45em 1.1em;
  border-radius: var(--radius-sm);
  border-bottom: none !important;
}
.nav-cta:hover { background: var(--red-hover); }

@media (max-width: 640px) {
  .main-nav ul { gap: 0.6rem; }
  .nav-link { font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .main-nav { display: none; }
}


.hero {
  position: relative;
  min-height: clamp(480px, 75vh, 700px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26,42,58,0.92) 0%, rgba(26,42,58,0.70) 55%, rgba(26,42,58,0.35) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding-block: var(--space-2xl);
}

.hero-eyebrow {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.hero-sub {
  color: rgba(255,255,255,0.80);
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin-bottom: var(--space-lg);
  max-width: 500px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.hero-badge {
  display: inline-flex;
  flex-direction: column;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-md);
  padding: 0.6em 1.2em;
  gap: 0.1em;
}
.badge-label {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.badge-time {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}


.welcome {
  padding-block: var(--space-2xl);
  background: var(--white);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

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

.welcome-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.welcome-img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-hover);
}

.welcome-badge-float {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 20px rgba(204,34,0,0.35);
}
.float-num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.float-label {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
  margin-top: 0.2rem;
  opacity: 0.9;
  max-width: 80px;
}

.welcome-text { padding-block: var(--space-sm); }

.welcome-text h2 { margin-bottom: var(--space-md); }

.welcome-text p {
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}

.welcome-text .btn { margin-top: var(--space-md); }


.services {
  padding-block: var(--space-2xl);
  background: var(--grey-light);
}

.services h2 { margin-bottom: var(--space-xs); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s;
}

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

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

.service-icon-wrap {
  background: var(--navy);
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--space-md) var(--space-md) 0;
  flex-shrink: 0;
  color: var(--red);
}

.service-icon-wrap svg {
  width: 1.1rem;
  height: 1.1rem;
}

.service-card-body {
  padding: var(--space-sm) var(--space-md) var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.service-card-body p {
  font-size: 0.9rem;
  flex: 1;
  margin-bottom: var(--space-sm);
}

.card-link {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--red);
  transition: color 0.2s, gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
}
.card-link:hover { color: var(--red-hover); letter-spacing: 0.02em; }
.card-link:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; border-radius: 2px; }

.services-cta {
  text-align: center;
  margin-top: var(--space-xl);
}


.why-us {
  padding-block: var(--space-2xl);
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (max-width: 820px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-img-wrap { order: -1; }
}

.why-img-wrap img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-hover);
}

.why-text h2 { margin-bottom: var(--space-lg); }

.why-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.why-list li {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.why-dot {
  width: 12px;
  height: 12px;
  min-width: 12px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 0.45rem;
}

.why-list strong {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.why-list p {
  font-size: 0.92rem;
  margin: 0;
}


.cta-strip {
  background: var(--red);
  padding-block: var(--space-xl);
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.cta-strip-text h2 {
  color: var(--white);
  margin-bottom: 0.3rem;
}

.cta-strip-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
}

.cta-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}


.contact-strip {
  padding-block: var(--space-2xl);
  background: var(--grey-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

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

.contact-info h2 { margin-bottom: var(--space-lg); }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.98rem;
  color: var(--grey-mid);
}

.contact-details svg {
  width: 1.1rem;
  height: 1.1rem;
  min-width: 1.1rem;
  color: var(--red);
  margin-top: 0.2rem;
}

.contact-details a {
  color: var(--grey-mid);
  transition: color 0.2s;
}
.contact-details a:hover { color: var(--red); }
.contact-details a:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; border-radius: 2px; }

.contact-map-img img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-card);
}


.site-footer {
  background: var(--navy-dark);
  padding-top: var(--space-xl);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

.footer-brand .logo {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  max-width: 280px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  font-family: var(--font-sub);
  font-weight: 600;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-nav a:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; border-radius: 2px; }

.footer-contact p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
}

.footer-contact a {
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  padding-block: var(--space-md);
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  text-align: center;
}


.svc-hero {
  position: relative;
  min-height: clamp(320px, 50vh, 500px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.svc-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.svc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26,42,58,0.93) 0%, rgba(26,42,58,0.72) 55%, rgba(26,42,58,0.4) 100%);
  z-index: 1;
}

.svc-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding-block: var(--space-2xl);
}

.svc-hero-content h1 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.svc-hero-content .hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 2vw, 1.12rem);
  margin-bottom: var(--space-lg);
  max-width: 480px;
}

.svc-nav-strip {
  background: var(--navy);
  padding-block: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.svc-jump-list {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  padding-block: 0;
}

.svc-jump-link {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.68);
  padding: 0.9em 1.1em;
  display: block;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  text-transform: uppercase;
}

.svc-jump-link:hover {
  color: var(--white);
  border-bottom-color: var(--red);
}

.svc-jump-link:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: -2px;
}

.svc-detail {
  padding-block: var(--space-2xl);
  background: var(--white);
}

.svc-detail--alt {
  background: var(--grey-light);
}

.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.svc-detail-grid--rev .svc-detail-img-wrap {
  order: 2;
}

.svc-detail-grid--rev .svc-detail-body {
  order: 1;
}

@media (max-width: 820px) {
  .svc-detail-grid {
    grid-template-columns: 1fr;
  }
  .svc-detail-grid--rev .svc-detail-img-wrap {
    order: 0;
  }
  .svc-detail-grid--rev .svc-detail-body {
    order: 0;
  }
}

.svc-detail-img-wrap img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-hover);
  width: 100%;
  height: 100%;
}

.svc-detail-body {
  padding-block: var(--space-sm);
}

.svc-detail-body h2 {
  margin-bottom: var(--space-md);
}

.svc-detail-body p {
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}

.svc-feature-list {
  list-style: none;
  margin-block: var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}

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

.svc-feature-list li {
  font-size: 0.9rem;
  color: var(--grey-mid);
  padding-left: 1.2em;
  position: relative;
}

.svc-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
}

.svc-promise {
  padding-block: var(--space-2xl);
  background: var(--navy);
}

.svc-promise .section-eyebrow {
  color: var(--red);
}

.svc-promise h2 {
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.svc-promise .section-intro {
  color: rgba(255,255,255,0.68);
  margin-bottom: var(--space-xl);
}

.svc-promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-md);
}

.promise-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  transition: background 0.22s, transform 0.22s;
}

.promise-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-3px);
}

.promise-icon {
  width: 2.8rem;
  height: 2.8rem;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--white);
}

.promise-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.promise-card h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.promise-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin: 0;
}



.about-hero {
  position: relative;
  min-height: clamp(360px, 55vh, 520px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.about-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(26,42,58,0.92) 0%, rgba(26,42,58,0.72) 55%, rgba(26,42,58,0.40) 100%);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-block: var(--space-2xl);
}

.about-hero-content h1 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.about-intro {
  padding-block: var(--space-2xl);
  background: var(--white);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (max-width: 820px) {
  .about-intro-grid { grid-template-columns: 1fr; }
}

.about-intro-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-intro-img-wrap img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-hover);
}

.about-intro-text h2 { margin-bottom: var(--space-md); }

.about-intro-text p {
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}

.about-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.values {
  padding-block: var(--space-2xl);
  background: var(--grey-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: transform 0.22s, box-shadow 0.22s;
}

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

.value-icon-wrap {
  width: 2.8rem;
  height: 2.8rem;
  min-width: 2.8rem;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}

.value-icon-wrap svg {
  width: 1.2rem;
  height: 1.2rem;
}

.value-card h3 {
  color: var(--navy);
  margin-bottom: 0.1rem;
}

.value-card p {
  font-size: 0.92rem;
  margin: 0;
}

.experience-strip {
  background: var(--navy);
  padding-block: var(--space-xl);
}

.experience-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.exp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.3rem;
}

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

.exp-label {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
  max-width: 140px;
  text-align: center;
}

.exp-divider {
  width: 1px;
  height: 3rem;
  background: rgba(255,255,255,0.12);
}

@media (max-width: 640px) {
  .exp-divider { display: none; }
  .experience-strip-inner { gap: var(--space-xl); }
}

.about-services {
  padding-block: var(--space-2xl);
  background: var(--white);
}

.about-services-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (max-width: 820px) {
  .about-services-inner { grid-template-columns: 1fr; }
  .about-services-img { order: -1; }
}

.about-services-text h2 { margin-bottom: var(--space-md); }

.about-services-text > p {
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.services-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--navy);
}

.about-services-img img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-hover);
}



.contact-page-hero {
  position: relative;
  min-height: clamp(320px, 50vh, 480px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-page-hero-img-wrap {
  position: absolute;
  inset: 0;
}

.contact-page-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.contact-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26,42,58,0.93) 0%, rgba(26,42,58,0.72) 60%, rgba(26,42,58,0.40) 100%);
}

.contact-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-block: var(--space-2xl);
}

.contact-page-hero-content .section-eyebrow {
  color: var(--red);
}

.contact-page-hero-content h1 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.contact-hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 2vw, 1.12rem);
  margin-bottom: var(--space-lg);
  max-width: 500px;
}

.contact-cards-section {
  padding-block: var(--space-2xl);
  background: var(--grey-light);
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-md);
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  transition: transform 0.22s, box-shadow 0.22s;
  border-top: 3px solid var(--red);
}

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

.contact-card-icon {
  background: var(--navy);
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.contact-card h3 {
  color: var(--navy);
  font-size: 1.05rem;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--grey-mid);
  flex: 1;
  margin: 0;
}

.contact-card-cta {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--red);
  transition: color 0.2s;
  margin-top: 0.25rem;
  word-break: break-all;
}

.contact-card-cta:hover { color: var(--red-hover); }
.contact-card-cta:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; border-radius: 2px; }

.contact-card-cta--plain {
  color: var(--navy);
  cursor: default;
}

.contact-detail-section {
  padding-block: var(--space-2xl);
  background: var(--white);
}

.contact-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (max-width: 820px) {
  .contact-detail-grid { grid-template-columns: 1fr; }
  .contact-detail-photo { order: -1; }
}

.contact-detail-intro {
  font-size: 1rem;
  margin-bottom: var(--space-lg);
  margin-top: 0.5rem;
}

.contact-detail-info h2 {
  margin-bottom: var(--space-xs);
}

.contact-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.contact-detail-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.contact-detail-photo img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-hover);
  width: 100%;
  height: 100%;
}

.contact-detail-badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 20px rgba(204,34,0,0.35);
}

.contact-map-section {
  padding-block: var(--space-2xl);
  background: var(--grey-light);
}

.contact-map-img-full {
  margin-top: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.contact-map-img-full img {
  aspect-ratio: 21/7;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 600px) {
  .contact-map-img-full img {
    aspect-ratio: 4/3;
  }
  .contact-detail-badge {
    bottom: -1rem;
    right: -0.5rem;
    padding: 0.75rem 1rem;
  }
}



.shop-hero {
  position: relative;
  min-height: clamp(360px, 55vh, 520px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.shop-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.shop-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26,42,58,0.94) 0%, rgba(26,42,58,0.72) 55%, rgba(26,42,58,0.40) 100%);
  z-index: 1;
}

.shop-hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding-block: var(--space-2xl);
}

.shop-hero-content h1 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.shop-intro {
  padding-block: var(--space-2xl);
  background: var(--white);
}

.shop-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (max-width: 820px) {
  .shop-intro-inner { grid-template-columns: 1fr; }
}

.shop-intro-text h2 { margin-bottom: var(--space-md); }

.shop-intro-text p {
  font-size: 1rem;
  line-height: 1.7;
}

.inline-link {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.inline-link:hover { color: var(--red-hover); }

.shop-intro-badges {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.info-badge {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  background: var(--grey-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border-left: 4px solid var(--red);
}

.info-badge-icon {
  background: var(--navy);
  color: var(--red);
  width: 2.4rem;
  height: 2.4rem;
  min-width: 2.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.info-badge-icon svg {
  width: 1rem;
  height: 1rem;
}

.info-badge strong {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}

.info-badge p {
  font-size: 0.88rem;
  margin: 0;
}

.shop-products {
  padding-block: var(--space-2xl);
  background: var(--grey-light);
}

.shop-products h2 { margin-bottom: var(--space-xs); }

.shop-category {
  margin-top: var(--space-xl);
}

.shop-cat-heading {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--navy);
  padding-bottom: 0.6rem;
  border-bottom: 3px solid var(--red);
  margin-bottom: var(--space-md);
  display: inline-block;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-md);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s;
}

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

.product-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--grey-light);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.04);
}

.product-body {
  padding: var(--space-sm) var(--space-md) var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-body h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.product-body p {
  font-size: 0.88rem;
  flex: 1;
  margin-bottom: var(--space-sm);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: var(--space-xs);
  border-top: 1px solid var(--grey-border);
}

.product-price {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}

.shop-note {
  padding-block: var(--space-2xl);
  background: var(--white);
}

.shop-note-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (max-width: 820px) {
  .shop-note-inner { grid-template-columns: 1fr; }
  .shop-note-img-wrap { order: -1; }
}

.shop-note-img-wrap img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-hover);
}

.shop-note-text h2 { margin-bottom: var(--space-md); }

.shop-note-text p {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.shop-note-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}


/* pn-injected styles (links block, social bar, image fallback, photo credit) */

.pn-links-rail { box-sizing: border-box; width: 100%; max-width: 100%; margin: 0; padding: 1.1rem 1.25rem 1rem; border: 1px solid rgba(0,0,0,.14); border-top: 3px solid currentColor; background: rgba(0,0,0,.015); font-family: inherit; }
.pn-links-rail__head { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .8; margin: 0 0 .65rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(0,0,0,.1); }
.pn-links-rail__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.pn-links-rail__list li { line-height: 1.35; }
.pn-links-rail__list a { font-size: .92rem; color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.pn-links-rail__list a:hover { opacity: .75; }
@media (min-width: 1024px) {
  main:has(> .pn-links-rail) {
    max-width: min(1280px, calc(100vw - 3rem));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: 2.5rem;
    align-items: start;
    box-sizing: border-box;
  }
  main > .pn-links-rail {
    grid-column: 2;
    grid-row: 1 / span 999;
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
  main > .pn-links-hidden { grid-column: 1; grid-row: 1; }
}
@media (max-width: 1023px) {
  main > .pn-links-rail { margin: 1.5rem 0 1rem; }
}
.pn-links-hidden { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.pn-social { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.pn-social__link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: inherit; opacity: .82; transition: opacity .15s ease, transform .15s ease; text-decoration: none; }
.pn-social__link:hover { opacity: 1; transform: translateY(-1px); }
.pn-social__icon { display: block; width: 22px; height: 22px; }
.pn-social--header { justify-content: flex-end; margin: .35rem 1.25rem; }
.pn-social--footer { justify-content: center; margin: 0 auto .85rem; }
.pn-social--sidebar { justify-content: flex-start; margin: 0 0 1.25rem; }
@media (max-width: 720px) { .pn-social--header { justify-content: center; } }

.pn-links-rail{max-width:none;width:auto;margin:1.5rem auto .25rem;padding:0;border:none;background:none;text-align:center;}
.pn-links-rail__head{border:none;padding:0;margin:0 0 .5rem;font-size:.66rem;letter-spacing:.14em;opacity:.5;}
.pn-links-rail__list{flex-direction:row;justify-content:center;flex-wrap:wrap;gap:.35rem 1.15rem;}

.pn-photo{background-color:#e6e1d6;}

.pn-img-fallback{background:repeating-linear-gradient(135deg,#e6e1d6 0,#e6e1d6 10px,#efe9dd 10px,#efe9dd 20px);display:block;min-height:200px;width:100%;}

.pn-photo-credits{font-size:11px;line-height:1.5;opacity:.55;text-align:center;padding:10px 16px;}.pn-photo-credits a{color:inherit;}
