:root {
  --blue: #3256a7;
  --blue-dark: #24407c;
  --navy: #193e6e;
  --teal: #36a391;
  --teal-dark: #2a8274;
  --teal-soft: #e7f6f3;
  --ink: #333;
  --muted: #555;
  --line: #d9dee6;
  --paper: #f7f8fa;
  --white: #fff;
  --display: Syne, "Trebuchet MS", sans-serif;
  --sans: "Open Sans", "Segoe UI", sans-serif;
  --wrap: 1200px;
  --shadow: 0 12px 32px rgba(25, 62, 110, 0.12);
  --paper: #f7f8fa;
  --serif: var(--display);
  --teal-soft: #e7f6f3;
  --teal-soft: #e7f6f3;
  --line: #d9dee6;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--teal-dark); }
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 0.55em;
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }
button, input, select, textarea { font: inherit; }
.alc-wrap { width: min(var(--wrap), calc(100% - 40px)); margin-inline: auto; }
.screen-reader-text, .skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; z-index: 1000; background: #fff; padding: 8px 14px; }

.alc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 4px;
  padding: 12px 22px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}
.alc-btn--teal { background: var(--teal); color: #fff; }
.alc-btn--teal:hover { background: var(--teal-dark); color: #fff; }
.alc-btn--navy { background: var(--navy); color: #fff; }
.alc-btn--navy:hover { background: var(--blue); color: #fff; }
.alc-kicker {
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 10px;
}
.alc-icon-btn {
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  padding: 8px;
}

.alc-topbar { background: var(--teal); color: #fff; }
.alc-topbar__inner, .alc-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.alc-topbar__inner { min-height: 44px; }
.alc-topbar__phone {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
}
.alc-topbar__phone:hover { color: #fff; opacity: 0.9; }
.alc-topbar__right { display: flex; gap: 22px; align-items: center; }
.alc-topbar__right a { color: #fff; font-size: 14px; font-weight: 600; }
.alc-topbar__right a:hover { color: #fff; text-decoration: underline; }

.alc-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.alc-header.is-stuck { box-shadow: 0 4px 16px rgba(25, 62, 110, 0.08); }
.alc-header__inner { min-height: 86px; gap: 12px; }
.alc-logo { flex: 0 0 auto; }
.alc-logo img { height: 58px; width: auto; max-width: 280px; object-fit: contain; }
.alc-nav { margin-left: auto; }
.alc-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
  margin: 0;
}
.alc-menu > li { position: relative; }
.alc-menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 30px 13px;
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}
.alc-menu > li > a:hover,
.alc-menu .current-menu-item > a,
.alc-menu .current-menu-ancestor > a { color: var(--teal); }
.alc-caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  display: inline-block;
}
.alc-sub-toggle { display: none; }
.alc-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
  border-top: 3px solid var(--teal);
  padding: 8px 0;
  list-style: none;
  z-index: 30;
}
.alc-menu > li:hover > .sub-menu,
.alc-menu > li:focus-within > .sub-menu { display: block; }
.alc-menu .sub-menu a {
  display: block;
  padding: 9px 18px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}
.alc-menu .sub-menu a:hover { background: var(--teal-soft); color: var(--teal-dark); }
.alc-header__tools { display: flex; align-items: center; gap: 4px; margin-left: 6px; }
.alc-search-btn {
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  padding: 10px;
}
.alc-search-btn:hover { color: var(--teal); }
.alc-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  position: relative;
  cursor: pointer;
}
.alc-menu-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--navy);
  margin: 5px auto;
}
.alc-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.alc-search {
  position: fixed;
  inset: 0;
  background: rgba(27,47,92,0.55);
  z-index: 80;
  display: grid;
  place-items: start center;
  padding-top: 12vh;
}
.alc-search[hidden] { display: none; }
.alc-search__panel {
  width: min(640px, calc(100% - 32px));
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  position: relative;
}
.alc-search__label { font-weight: 700; letter-spacing: 0.08em; color: var(--navy); margin: 0 0 10px; }
.alc-search__panel form { display: flex; gap: 10px; }
.alc-search__panel input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
}
.alc-search__close { position: absolute; right: 12px; top: 12px; border: 0; background: none; cursor: pointer; }

.alc-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: #fff;
}
.alc-hero__copy {
  display: flex;
  align-items: center;
  padding: 72px 48px 72px max(24px, calc((100vw - var(--wrap)) / 2 + 8px));
}
.alc-hero__copy-inner { max-width: 560px; }
.alc-hero h1 {
  color: var(--navy);
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.alc-hero__sub {
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 22px;
  font-weight: 500;
}
.alc-finder { max-width: 500px; }
.alc-finder__form { display: flex; align-items: stretch; }
.alc-finder input {
  flex: 1;
  border: 1px solid #cfd6de;
  border-right: 0;
  border-radius: 4px 0 0 4px;
  padding: 14px 16px;
  min-width: 0;
}
.alc-finder .alc-btn {
  border-radius: 0 4px 4px 0;
  padding-inline: 22px;
  white-space: nowrap;
}
.alc-finder__note { margin: 12px 0 0; font-size: 0.92rem; color: var(--muted); }
.alc-hero__media {
  background: var(--navy) center/cover no-repeat;
  min-height: 420px;
}

.alc-intro {
  padding: 72px 0 40px;
}
.alc-intro__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
}
.alc-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.alc-mosaic__tall { grid-row: span 2; }
.alc-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  min-height: 160px;
}
.alc-mosaic__tall img { min-height: 340px; }
.alc-intro h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--navy); }
.alc-intro p { font-size: 18px; line-height: 1.7; }
.alc-intro__call { font-weight: 700; }
.alc-service-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  margin-top: 8px;
}
.alc-service-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 600;
}
.alc-service-list a:hover { color: var(--teal); }
.alc-service-list__all { grid-column: 1 / -1; }
.alc-service-list__all a { border: 0; color: var(--teal); padding-top: 16px; }

.alc-steps, .alc-approach, .alc-faq, .alc-articles, .alc-contact-band, .alc-page-body, .alc-archive { padding: 84px 0; }
.alc-approach__grid, .alc-contact-band__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}
.alc-steps h2, .alc-approach h2, .alc-faq h2, .alc-articles h2 { font-size: clamp(2rem, 4vw, 3rem); }
.alc-intro__call a { font-weight: 700; font-size: 1.15rem; }

.alc-steps { background: var(--paper); }
.alc-steps__head { max-width: 720px; margin-bottom: 40px; }
.alc-steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.alc-step { background: #fff; border-radius: 18px; padding: 28px; box-shadow: 0 10px 30px rgba(27,47,92,0.06); }
.alc-step__num { font-family: var(--serif); font-size: 2.4rem; color: var(--teal); display: block; margin-bottom: 8px; }

.alc-stats { background: var(--blue); color: #fff; }
.alc-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; padding: 48px 0; gap: 16px; }
.alc-stats strong { display: block; font-family: var(--serif); font-size: 3rem; line-height: 1; }
.alc-stats span { opacity: 0.9; }

.alc-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
.alc-split__image { background: var(--navy) center/cover no-repeat; min-height: 320px; }
.alc-split__copy { padding: 72px 8vw 72px 56px; background: var(--teal-soft); }

.alc-approach__photos { display: grid; gap: 16px; }
.alc-approach__photos img { border-radius: 18px; height: 240px; width: 100%; object-fit: cover; }

.alc-accordion { display: grid; gap: 10px; }
.alc-acc { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 4px 18px; }
.alc-acc summary { cursor: pointer; font-weight: 600; color: var(--navy); padding: 16px 0; list-style: none; }
.alc-acc summary::-webkit-details-marker { display: none; }
.alc-acc__body { color: var(--muted); padding-bottom: 16px; }

.alc-articles { background: var(--paper); }
.alc-articles__head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 32px; gap: 20px; }
.alc-cards, .alc-cards--3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.alc-card { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 10px 30px rgba(27,47,92,0.06); }
.alc-card__image img, .alc-card img { width: 100%; height: 210px; object-fit: cover; }
.alc-card h3, .alc-card p, .alc-card__meta { padding: 0 20px; }
.alc-card h3 { font-size: 1.4rem; margin: 16px 0 12px; }
.alc-card p { padding-bottom: 20px; color: var(--muted); }
.alc-card__meta { color: var(--teal); font-size: 0.85rem; font-weight: 600; margin-top: 14px; }

.alc-contact-band { background: linear-gradient(180deg, #fff, var(--paper)); }
.alc-contact-band img { border-radius: 18px; margin-top: 18px; height: 240px; width: 100%; object-fit: cover; }

.alc-form {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.alc-form__title { font-size: 1.8rem; }
.alc-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.alc-field { display: grid; gap: 6px; margin-bottom: 14px; font-size: 0.92rem; font-weight: 600; color: var(--navy); }
.alc-field input, .alc-field select, .alc-field textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-weight: 400;
  width: 100%;
}
.alc-check { display: flex; gap: 10px; align-items: start; font-size: 0.88rem; color: var(--muted); margin: 8px 0 18px; font-weight: 400; }
.alc-form__notice { padding: 12px 14px; border-radius: 10px; }
.alc-form__notice--ok { background: #e7f8f0; color: #176b45; }
.alc-form__notice--err { background: #fdecec; color: #9b1c1c; }

.alc-page-hero {
  background: linear-gradient(120deg, var(--navy), var(--blue) 58%, var(--teal));
  color: #fff;
  padding: 72px 0 56px;
}
.alc-page-hero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 4rem); }
.alc-page-hero p { color: #e8fff9; }
.alc-prose { max-width: 760px; }
.alc-prose h2 { font-size: 2rem; margin-top: 1.4em; }
.alc-bullets { margin: 16px 0 24px; padding-left: 0; list-style: none; }
.alc-bullets li { padding: 8px 0 8px 28px; position: relative; }
.alc-bullets li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  position: absolute;
  left: 0;
  top: 14px;
}
.alc-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.alc-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  color: inherit;
  transition: 0.2s ease;
}
.alc-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); color: inherit; }
.alc-tile img { height: 160px; width: 100%; object-fit: cover; }
.alc-tile h3 { font-size: 1.3rem; padding: 16px 18px 4px; }
.alc-tile p { padding: 0 18px 18px; color: var(--muted); font-size: 0.95rem; }

.alc-cta-strip { background: var(--teal-soft); padding: 48px 0; text-align: center; }
.alc-cta-strip .alc-btn { margin: 6px; }
.alc-article__heroimg img { width: 100%; max-height: 460px; object-fit: cover; border-radius: 18px; margin: -28px auto 32px; }
.alc-article__body, .alc-page-body { padding-bottom: 72px; }
.alc-search-list { list-style: none; display: grid; gap: 18px; }
.alc-search-list a { font-family: var(--serif); font-size: 1.6rem; color: var(--navy); }
.alc-pagination { margin-top: 32px; }

.alc-footer { background: #13233f; color: #d5deea; }
.alc-footer a { color: #fff; }
.alc-footer__cta { background: var(--blue); color: #fff; padding: 56px 0; }
.alc-footer__cta h2 { color: #fff; }
.alc-footer__cta-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; }
.alc-checks { list-style: none; display: grid; gap: 8px; }
.alc-checks li { display: flex; gap: 8px; align-items: center; }
.alc-newsletter { background: rgba(255,255,255,0.12); border-radius: 16px; padding: 24px; }
.alc-newsletter h3 { color: #fff; }
.alc-newsletter__form { display: grid; gap: 8px; }
.alc-newsletter__form input { border: 0; border-radius: 999px; padding: 12px 16px; }
.alc-footer__main { padding: 56px 0; }
.alc-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.alc-footer__brand img { height: 52px; width: auto; margin-bottom: 16px; }
.alc-footer h3 { color: #fff; font-size: 1.2rem; }
.alc-footer__links { list-style: none; display: grid; gap: 8px; }
.alc-footer__legal { border-top: 1px solid rgba(255,255,255,0.12); padding: 20px 0 28px; font-size: 0.85rem; color: #9eabc0; }

@media (max-width: 1100px) {
  .alc-menu > li > a { padding: 28px 9px; font-size: 14px; }
}
@media (max-width: 980px) {
  .alc-topbar__right { display: none; }
  .alc-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    padding: 8px 20px 24px;
    box-shadow: var(--shadow);
    max-height: calc(100vh - 130px);
    overflow: auto;
  }
  .alc-nav.is-open { display: block; }
  .alc-menu { display: block; }
  .alc-menu > li > a { padding: 14px 44px 14px 0; white-space: normal; }
  .alc-menu .sub-menu {
    position: static;
    box-shadow: none;
    display: none;
    min-width: 0;
    border-top: 0;
    padding-left: 12px;
  }
  .alc-menu .menu-item-has-children.is-open > .sub-menu { display: block; }
  .alc-sub-toggle {
    display: block;
    position: absolute;
    right: 0;
    top: 6px;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .alc-sub-toggle::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--navy);
  }
  .alc-menu-toggle { display: block; }
  .alc-hero,
  .alc-intro__grid,
  .alc-mosaic,
  .alc-service-list,
  .alc-steps__grid,
  .alc-stats__grid,
  .alc-split,
  .alc-approach__grid,
  .alc-contact-band__grid,
  .alc-cards,
  .alc-cards--3,
  .alc-form__grid,
  .alc-footer__cta-inner,
  .alc-footer__grid,
  .alc-services-grid {
    grid-template-columns: 1fr;
  }
  .alc-hero__copy { padding: 40px 20px 24px; }
  .alc-hero__media { min-height: 280px; }
  .alc-mosaic__tall img { min-height: 220px; }
  .alc-split__copy { padding: 40px 20px; }
}
