:root {
  --ash26-blue: #123f8c;
  --ash26-blue-2: #245ec2;
  --ash26-green: #158a55;
  --ash26-green-dark: #0b5b35;
  --ash26-ink: #172033;
  --ash26-muted: #56647a;
  --ash26-line: #d8e3ef;
  --ash26-blue-soft: #f1f6ff;
  --ash26-green-soft: #edf9f3;
  --ash26-white: #ffffff;
}

.ash26,
.ash26 * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.ash26 {
  color: var(--ash26-ink);
  font-size: 17px;
  line-height: 1.65;
}

.ash26 h1,
.ash26 h2,
.ash26 h3 {
  color: var(--ash26-ink);
  line-height: 1.15;
  margin: 0 0 16px;
}

.ash26 h1 {
  color: var(--ash26-white) !important;
  font-size: clamp(38px, 6vw, 68px);
  max-width: 900px;
}

.ash26 h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.ash26 h3 {
  font-size: 23px;
}

.ash26 p {
  margin: 0 0 18px;
}

.ash26 a {
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.ash26-hero {
  align-items: center;
  background-color: var(--ash26-blue);
  background-position: center;
  background-size: cover;
  display: flex;
  min-height: 520px;
  padding: 72px 24px;
  position: relative;
}

.ash26-hero::before {
  background: linear-gradient(90deg, rgba(18, 63, 140, .96), rgba(11, 91, 53, .82) 62%, rgba(18, 63, 140, .35));
  content: "";
  inset: 0;
  position: absolute;
}

.ash26-hero__inner,
.ash26-band__inner {
  margin: 0 auto;
  max-width: 1180px;
  position: relative;
  width: 100%;
}

.ash26-eyebrow {
  color: #bfe5ff !important;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.ash26-hero p {
  color: var(--ash26-white) !important;
  font-size: 21px;
  max-width: 760px;
}

.ash26-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.ash26-btn {
  border: 2px solid transparent;
  border-radius: 6px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  padding: 12px 20px;
  text-decoration: none !important;
}

.ash26-btn--primary {
  background: var(--ash26-green);
  color: var(--ash26-white) !important;
}

.ash26-btn--secondary {
  background: var(--ash26-white);
  color: var(--ash26-blue) !important;
}

.ash26-btn--outline {
  border-color: var(--ash26-blue);
  color: var(--ash26-blue) !important;
}

.ash26-band {
  padding: 72px 24px;
}

.ash26-band--blue {
  background: var(--ash26-blue-soft);
}

.ash26-band--green {
  background: var(--ash26-green-soft);
}

.ash26-band--dark {
  background: var(--ash26-blue);
  color: var(--ash26-white);
}

.ash26-band--dark h2,
.ash26-band--dark h3 {
  color: var(--ash26-white) !important;
}

.ash26-band--dark p {
  color: var(--ash26-white);
}

.ash26-lead {
  color: var(--ash26-muted);
  font-size: 20px;
  max-width: 820px;
}

.ash26-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

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

.ash26-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ash26-card {
  background: var(--ash26-white);
  border: 1px solid var(--ash26-line);
  border-radius: 8px;
  min-width: 0;
  padding: 28px;
}

.ash26-card,
.ash26-card * {
  overflow-wrap: anywhere;
}

.ash26-card--accent {
  border-top: 5px solid var(--ash26-green);
}

.ash26-card__label {
  color: var(--ash26-blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.ash26-list {
  margin: 16px 0 0;
  padding-left: 22px;
}

.ash26-list li {
  margin-bottom: 9px;
}

.ash26-table-wrap {
  overflow-x: auto;
}

.ash26-table {
  border-collapse: collapse;
  margin-top: 28px;
  min-width: 720px;
  width: 100%;
}

.ash26-table th,
.ash26-table td {
  border: 1px solid var(--ash26-line);
  padding: 16px;
  text-align: left;
  vertical-align: top;
}

.ash26-table th {
  background: var(--ash26-blue);
  color: var(--ash26-white);
}

.ash26-steps {
  counter-reset: steps;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 32px;
}

.ash26-step {
  border-left: 4px solid var(--ash26-green);
  padding: 6px 18px;
}

.ash26-step::before {
  color: var(--ash26-blue);
  content: counter(steps, decimal-leading-zero);
  counter-increment: steps;
  display: block;
  font-size: 28px;
  font-weight: 900;
}

.ash26-faq {
  border-bottom: 1px solid var(--ash26-line);
  padding: 22px 0;
}

.ash26-faq summary {
  color: var(--ash26-blue);
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
}

.ash26-faq p {
  margin: 14px 0 0;
  max-width: 900px;
}

.ash26-notice {
  background: var(--ash26-blue-soft);
  border-left: 4px solid var(--ash26-green);
  border-radius: 6px;
  padding: 18px 20px;
}

.ash26-contact {
  font-style: normal;
}

.ash26 .frm-fluent-form {
  background: var(--ash26-white);
  border: 1px solid var(--ash26-line);
  border-radius: 8px;
  margin-top: 30px;
  padding: 28px;
}

.ash26-product-band {
  background: var(--ash26-blue);
  padding: 72px 24px;
}

.ash26-showcase {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1.65fr);
}

.ash26-showcase__copy h2,
.ash26-showcase__copy p {
  color: var(--ash26-white) !important;
}

.ash26-showcase__copy .ash26-eyebrow {
  color: #bfe5ff !important;
}

.ash26-showcase__products {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ash26-showcase__product {
  align-items: center;
  background: var(--ash26-white);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 8px;
  color: var(--ash26-ink) !important;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 800;
  justify-content: space-between;
  min-height: 190px;
  padding: 12px;
  text-align: center;
  text-decoration: none !important;
}

.ash26-showcase__product img {
  aspect-ratio: 4 / 3;
  height: 135px;
  object-fit: contain;
  width: 100%;
}

.ash26-location-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 32px;
}

.ash26-location-card {
  background: var(--ash26-white);
  border: 1px solid var(--ash26-line);
  border-radius: 8px;
  min-width: 0;
  overflow: hidden;
}

.ash26-location-card__photo {
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
}

.ash26-location-card__photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.ash26-location-card__placeholder {
  align-items: flex-start;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--ash26-blue), var(--ash26-green-dark));
  color: var(--ash26-white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.ash26-location-card__placeholder span {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.ash26-location-card__placeholder strong {
  font-size: 34px;
  line-height: 1.1;
}

.ash26-location-card__body {
  padding: 28px;
}

.ash26-location-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.ash26-location-card__meta span {
  background: var(--ash26-green-soft);
  border-radius: 999px;
  color: var(--ash26-green-dark);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 10px;
  text-transform: uppercase;
}

.ash26-location-card__description p:last-child {
  margin-bottom: 16px;
}

.ash26-section-heading {
  margin-top: 28px !important;
}

.ash26-news-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.ash26-news-card {
  background: var(--ash26-white);
  border: 1px solid var(--ash26-line);
  border-radius: 8px;
  min-width: 0;
  overflow: hidden;
}

.ash26-news-card__image {
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
}

.ash26-news-card__image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.ash26-news-card__body {
  padding: 24px;
}

.ash26-news-card__body h3 a {
  color: var(--ash26-ink);
  text-decoration: none;
}

.ash26-news-card__meta {
  color: var(--ash26-muted);
  font-size: 13px;
  font-weight: 700;
}

.ash26-archive {
  background: var(--ash26-white);
  border: 1px solid var(--ash26-line);
  border-radius: 8px;
  margin-top: 36px;
  padding: 28px;
}

.ash26-archive ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ash26-archive li {
  align-items: baseline;
  border-top: 1px solid var(--ash26-line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 14px 0;
}

.ash26-archive li span {
  color: var(--ash26-muted);
  flex: 0 0 auto;
  font-size: 14px;
}

.ash26-video {
  margin: 32px 0;
}

.ash26-video__frame {
  aspect-ratio: 16 / 9;
  background: var(--ash26-ink);
  overflow: hidden;
}

.ash26-video__frame iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

.ash26-video figcaption {
  color: var(--ash26-muted);
  font-size: 14px;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .ash26-grid,
  .ash26-grid--4,
  .ash26-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ash26-showcase {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .ash26-hero {
    min-height: 460px;
    padding: 56px 20px;
  }

  .ash26-hero p {
    font-size: 18px;
  }

  .ash26-band {
    padding: 52px 20px;
  }

  .ash26-product-band {
    padding: 52px 20px;
  }

  .ash26-grid,
  .ash26-grid--2,
  .ash26-grid--4,
  .ash26-steps,
  .ash26-location-grid,
  .ash26-news-grid {
    grid-template-columns: 1fr;
  }

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

  .ash26-showcase__product {
    min-height: 165px;
  }

  .ash26-showcase__product img {
    height: 112px;
  }

  .ash26-actions,
  .ash26-btn {
    width: 100%;
  }

  .ash26-card {
    padding: 22px;
  }

  .ash26-archive li {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .ash26 .frm-fluent-form .ff-btn.ff-btn-submit {
    display: block !important;
    max-width: 100% !important;
    white-space: normal !important;
    width: 100% !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ash26 * {
    scroll-behavior: auto !important;
  }
}
.ash-storefront-managed .rey-siteMain > .rey-pageHeader,
.elementor-element-559cd29,
[data-id="559cd29"] {
  display: none !important;
}
