:root {
  --red: #9f1d24;
  --red-2: #c62b34;
  --blue: #102171;
  --blue-2: #1b3a8a;

  --accent: var(--red);
  --accent-2: var(--blue);

  --ink: #111820;
  --ink-2: #1f2933;
  --muted: #5d6875;
  --line: #e6e8ec;
  --bg: #f6f7f9;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(17, 24, 32, .12);
  --radius: 22px;
  --header-height: 82px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img, svg { max-width: 100%; }

a { color: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 1000;
  background: var(--red);
  color: var(--white);
  padding: .7rem 1rem;
  font-weight: 800;
}

.skip-link:focus { left: 10px; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad { padding: 90px 0; }

h1, h2, h3 {
  font-family: Barlow, Inter, sans-serif;
  margin: 0;
  line-height: .98;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.2rem);
  max-width: 850px;
}

h2 { font-size: clamp(2.2rem, 4vw, 4rem); }

h3 { font-size: 1.55rem; }

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

.eyebrow {
  color: var(--red-2);
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.material-symbols-outlined {
  font-size: 1.35em;
  line-height: 1;
  vertical-align: -.2em;
}

.site-header {
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 12, 16, .95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .08);
}

.navbar {
  width: min(1240px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  color: var(--white);
}

.brand-mark {
  width: 56px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red), var(--blue));
  color: var(--white);
  flex: 0 0 auto;
}

.brand-mark img {
  width: 45px;
  height: auto;
}

.logo-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-fill { fill: currentColor; }

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-family: Barlow, Inter, sans-serif;
  font-size: 1.65rem;
  letter-spacing: -.04em;
}

.brand-text small {
  font-size: .76rem;
  color: rgba(255,255,255,.72);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: .95rem;
  padding: 1rem .9rem;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}

.nav-links a:hover {
  background: rgba(255,255,255,.08);
}

.nav-links .nav-cta {
  background: var(--red);
  color: var(--white);
  padding-inline: 1.25rem;
  margin-left: .5rem;
}

.nav-links .nav-cta:hover {
  background: var(--blue);
}

.nav-toggle { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #0b1219;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 18%, rgba(159, 29, 36, .38), transparent 28%),
    radial-gradient(circle at 16% 84%, rgba(16, 33, 113, .34), transparent 30%),
    linear-gradient(90deg, rgba(8,12,16,.96), rgba(8,12,16,.88) 46%, rgba(8,12,16,.72)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 1px, transparent 1px 18px);
}

.hero-bg::after {

}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 3rem;
}

.hero-copy { padding: 2rem 0; }

.hero-text {
  color: rgba(255,255,255,.78);
  max-width: 650px;
  font-size: 1.1rem;
  margin-top: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 54px;
  padding: .9rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .88rem;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background: var(--blue);
}

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

.btn-secondary:hover {
  background: rgba(255,255,255,.09);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.hero-card {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero-card h2 {
  font-size: 2rem;
  margin: 1.4rem 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: linear-gradient(135deg, var(--red), var(--blue));
  color: var(--white);
  border-radius: 999px;
  padding: .5rem .8rem;
  font-weight: 900;
  font-size: .9rem;
}

.quick-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.quick-list li {
  display: flex;
  gap: .85rem;
  color: rgba(255,255,255,.82);
}

.quick-list a {
  color: var(--white);
  font-weight: 800;
  text-decoration-color: var(--red-2);
}

.service-strip {
  background: linear-gradient(135deg, var(--blue), var(--red));
  color: var(--white);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.strip-grid a {
  min-height: 128px;
  display: grid;
  place-items: center;
  gap: .55rem;
  text-align: center;
  text-decoration: none;
  font-family: Barlow, Inter, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  border-right: 1px solid rgba(255,255,255,.18);
}

.strip-grid a:last-child {
  border-right: 0;
}

.strip-grid .material-symbols-outlined {
  font-size: 2.35rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  margin-bottom: 1rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.service-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 60px rgba(17,24,32,.06);
  min-height: 260px;
}

.service-card > .material-symbols-outlined {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: rgba(16, 33, 113, .10);
  color: var(--blue);
  border-radius: 18px;
  font-size: 2rem;
  margin-bottom: 1.3rem;
}

.service-card:nth-child(even) > .material-symbols-outlined {
  background: rgba(159, 29, 36, .10);
  color: var(--red);
}

.service-card h3 {
  margin-bottom: .75rem;
}

.service-card a,
.text-link {
  color: var(--ink);
  font-weight: 900;
  text-decoration-color: var(--red);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.accent-card {
  background: linear-gradient(135deg, var(--ink), #101b3f);
  color: var(--white);
}

.accent-card p {
  color: rgba(255,255,255,.72);
  margin-bottom: 1rem;
}

.accent-card a {
  color: #ff6b72;
}

.about-section,
.info-section {
  background: var(--bg);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr .82fr;
  align-items: center;
  gap: 4rem;
}

.split-grid p {
  margin-top: 1.25rem;
  font-size: 1.05rem;
}

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

.feature-list div {
  background: var(--white);
  border-radius: 18px;
  padding: 1.1rem;
  box-shadow: 0 14px 40px rgba(17,24,32,.06);
}

.feature-list .material-symbols-outlined {
  color: var(--red);
  font-size: 2rem;
}

.feature-list strong,
.feature-list small {
  display: block;
}

.feature-list strong {
  font-family: Barlow, Inter, sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
}

.feature-list small {
  color: var(--muted);
  margin-top: .2rem;
}

.graphic-panel {
  filter: drop-shadow(0 26px 70px rgba(17,24,32,.16));
}

.tools-section {
  background: var(--ink);
  color: var(--white);
}

.tools-section p {
  color: rgba(255,255,255,.72);
  margin-top: 1rem;
}

.tools-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}

.tool-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.tool-badges span {
  background: linear-gradient(135deg, var(--red), var(--blue));
  color: var(--white);
  border-radius: 999px;
  padding: 1rem 1.4rem;
  font-family: Barlow, Inter, sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  text-transform: uppercase;
}

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

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.info-card > .material-symbols-outlined {
  color: var(--blue);
  font-size: 2.4rem;
}

.info-card h2 {
  font-size: 2.4rem;
  margin: .75rem 0 1.25rem;
}

.hours-list {
  display: grid;
  gap: .8rem;
  margin: 0;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: .8rem;
}

.hours-list dt {
  font-weight: 900;
}

.hours-list dd {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.info-card p {
  margin-bottom: 1rem;
}

.cta-band {
  background: linear-gradient(135deg, var(--blue), var(--red));
  color: var(--white);
  padding: 2rem 0;
}

.cta-band .btn-dark {
  background: var(--white);
  color: var(--ink);
}

.cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-grid h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 3rem;
  align-items: start;
}

.contact-grid p {
  margin-top: 1.2rem;
  font-size: 1.05rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.contact-section .btn-secondary {
  color: var(--ink);
  border-color: var(--line);
}

.contact-section .btn-secondary:hover {
  background: var(--bg);
}

.contact-card {
  background: var(--ink);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin-bottom: 1rem;
}

.contact-card p {
  color: rgba(255,255,255,.72);
  margin: 0 0 1.2rem;
}

.contact-card a {
  color: var(--white);
}

.contact-card .text-link {
  color: #ff6b72;
}

.site-footer {
  background: #080c10;
  color: var(--white);
  padding: 64px 0 28px;
}

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

.footer-grid p {
  color: rgba(255,255,255,.66);
  margin-top: 1rem;
  max-width: 380px;
}

.footer-grid h2 {
  color: #ff6b72;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.footer-grid a {
  display: block;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  margin-bottom: .55rem;
}

.footer-grid a:hover {
  color: #ff6b72;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
}

.footer-bottom p {
  color: rgba(255,255,255,.55);
  font-size: .92rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

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

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

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

  .strip-grid a {
    border-bottom: 1px solid rgba(255,255,255,.18);
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    max-width: 560px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .section-pad {
    padding: 64px 0;
  }

  .brand-mark {
    width: 48px;
    height: 40px;
    border-radius: 12px;
  }

  .brand-text strong {
    font-size: 1.35rem;
  }

  .brand-text small {
    font-size: .66rem;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    background: transparent;
    border: 0;
    padding: 12px;
    cursor: pointer;
  }

  .nav-toggle span {
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 999px;
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: none;
    background: #080c10;
    border-top: 1px solid rgba(255,255,255,.12);
    padding: .75rem 1rem 1rem;
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    border-radius: 12px;
    padding: .85rem 1rem;
  }

  .nav-links .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3.1rem);
  }

  .hero::after {
    opacity: .4;
  }

  .hero-card {
    padding: 1.25rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

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

  .strip-grid a {
    min-height: 112px;
    font-size: 1.1rem;
  }

  .cards-grid,
  .info-grid,
  .feature-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: unset;
  }

  .cta-grid {
    display: grid;
    text-align: center;
  }

  .hours-list div {
    display: grid;
    gap: .15rem;
  }

  .hours-list dd {
    text-align: left;
  }
}