.at-site {
  --at-navy: #002e49;
  --at-navy-light: #0b4968;
  --at-sand: #f9bf8f;
  --at-red: #d62828;
  --at-white: #ffffff;
  --at-paper: #f7f4ef;
  --at-ink: #102938;
  --at-muted: #5a6c75;
  --at-line: rgba(0, 46, 73, 0.16);
  margin: 0;
  color: var(--at-ink);
  background: var(--at-white);
  font-family: Arial, Helvetica, sans-serif;
}

.at-site,
.at-site * {
  box-sizing: border-box;
}

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

.at-site a {
  color: inherit;
}

.at-page {
  padding-top: 0;
  overflow: clip;
}

.at-container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.at-eyebrow,
.at-section-label,
.at-card__label {
  margin: 0;
  color: var(--at-red);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
}

.at-hero {
  position: relative;
  min-height: 640px;
  display: grid;
  color: var(--at-white);
  background: var(--at-navy);
  isolation: isolate;
}

.at-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 10, 14, 0.8) 0%, rgba(3, 10, 14, 0.52) 48%, rgba(3, 10, 14, 0.1) 100%),
    linear-gradient(180deg, rgba(3, 10, 14, 0.14), rgba(3, 10, 14, 0.44));
}

.at-hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.at-hero__inner {
  position: relative;
  display: flex;
  align-items: center;
  padding-block: 94px 116px;
}

.at-hero__copy {
  max-width: 810px;
}

.at-hero .at-eyebrow {
  color: var(--at-sand);
}

.at-hero h1,
.at-intro h2,
.at-catalogue h2,
.at-help h2,
.at-card h3,
.at-empty h3 {
  margin: 0;
  color: var(--at-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.at-hero h1 {
  max-width: 790px;
  margin-top: 18px;
  color: var(--at-white);
  font-size: 72px;
  line-height: 0.98;
}

.at-hero__copy > p:not(.at-eyebrow) {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.6;
}

.at-hero__actions,
.at-help__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.at-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 23px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease-out, border-color 180ms ease-out, color 180ms ease-out, transform 180ms ease-out;
}

.at-button:hover {
  transform: translateY(-1px);
}

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

.at-button--primary:hover {
  background: #b91f1f;
}

.at-button--ghost {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--at-white);
  background: rgba(0, 46, 73, 0.22);
}

.at-button--ghost:hover {
  border-color: var(--at-sand);
  color: var(--at-navy);
  background: var(--at-sand);
}

.at-hero__note {
  position: absolute;
  right: 0;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--at-white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.at-hero__note span {
  display: inline-flex;
  align-items: center;
}

.at-hero__note span:not(:last-child)::after {
  width: 54px;
  height: 1px;
  margin-inline: 14px;
  content: "";
  background: var(--at-sand);
}

.at-intro {
  padding-block: 96px 0;
  background: var(--at-white);
}

.at-intro__grid,
.at-catalogue__head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: end;
  gap: 64px;
}

.at-intro h2,
.at-catalogue h2 {
  max-width: 700px;
  margin-top: 14px;
  font-size: 52px;
  line-height: 1.06;
}

.at-intro__grid > p,
.at-catalogue__head > p {
  margin: 0;
  color: var(--at-muted);
  font-size: 17px;
  line-height: 1.7;
}

.at-region-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 48px;
  border-block: 1px solid var(--at-line);
}

.at-region-rail a {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  padding: 24px;
  text-decoration: none;
  transition: background-color 180ms ease-out, color 180ms ease-out;
}

.at-region-rail a + a {
  border-left: 1px solid var(--at-line);
}

.at-region-rail a:hover {
  background: rgba(249, 191, 143, 0.28);
}

.at-region-rail strong {
  color: var(--at-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}

.at-region-rail span {
  color: var(--at-muted);
  font-size: 13px;
  line-height: 1.5;
}

.at-catalogue {
  scroll-margin-top: 190px;
  padding-block: 104px 112px;
  background: var(--at-paper);
}

.at-catalogue__head {
  align-items: end;
}

.at-filters {
  margin-top: 46px;
  padding: 24px;
  border: 1px solid var(--at-line);
  border-radius: 8px;
  background: var(--at-white);
}

.at-search,
.at-filter-group {
  display: grid;
  gap: 9px;
}

.at-search {
  position: relative;
}

.at-search > span,
.at-filter-group > span {
  color: var(--at-navy);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.at-search input {
  width: 100%;
  height: 50px;
  padding: 0 48px 0 15px;
  border: 1px solid var(--at-line);
  border-radius: 6px;
  color: var(--at-ink);
  background: var(--at-white);
  font: inherit;
}

.at-search svg {
  position: absolute;
  right: 16px;
  bottom: 14px;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--at-navy);
  stroke-linecap: round;
  stroke-width: 1.7;
  pointer-events: none;
}

.at-filter-group {
  margin-top: 20px;
}

.at-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.at-filter-buttons button,
.at-results-bar button {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--at-line);
  border-radius: 6px;
  color: var(--at-navy);
  background: var(--at-white);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 160ms ease-out, background-color 160ms ease-out, color 160ms ease-out;
}

.at-filter-buttons button:hover,
.at-filter-buttons button.is-active {
  border-color: var(--at-navy);
  color: var(--at-white);
  background: var(--at-navy);
}

.at-results-bar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.at-results-bar p {
  margin: 0;
  color: var(--at-muted);
  font-size: 14px;
  font-weight: 700;
}

.at-results-bar button {
  border: 0;
  color: var(--at-red);
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.at-card {
  grid-column: span 4;
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--at-line);
  border-radius: 5px;
  overflow: hidden;
  background: var(--at-white);
  box-shadow: 0 12px 32px rgba(0, 46, 73, 0.07);
  transition: border-color 180ms ease-out, box-shadow 180ms ease-out, transform 180ms ease-out;
}

.at-card:hover {
  border-color: rgba(0, 46, 73, 0.32);
  box-shadow: 0 18px 38px rgba(0, 46, 73, 0.12);
  transform: translateY(-2px);
}

.at-card__media {
  position: relative;
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #dfe6e9;
}

.at-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease-out;
}

.at-card:hover .at-card__media img {
  transform: scale(1.025);
}

.at-card__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.at-card__label {
  color: #8b5d26;
}

.at-card h3 {
  margin-top: 11px;
  font-size: 26px;
  line-height: 1.1;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.at-card h3 a {
  text-decoration: none;
}

.at-card__description {
  margin: 15px 0 0;
  color: var(--at-muted);
  font-size: 15px;
  line-height: 1.62;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.at-card__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  margin: 18px 0 0;
  padding: 15px 0;
  border-block: 1px solid var(--at-line);
}

.at-card__details div {
  min-width: 0;
}

.at-card__details dt {
  color: #8b5d26;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.at-card__details dd {
  margin: 5px 0 0;
  color: var(--at-ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.at-card__live {
  margin: 14px 0 0;
  color: var(--at-navy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.at-card__action {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--at-navy);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.at-card__action span:last-child {
  color: var(--at-red);
  font-size: 24px;
  font-weight: 400;
  transition: transform 180ms ease-out;
}

.at-card__action:hover span:last-child {
  transform: translateX(3px);
}

.at-empty {
  padding: 52px 24px;
  border: 1px solid var(--at-line);
  text-align: center;
  background: var(--at-white);
}

.at-empty h3 {
  font-size: 34px;
}

.at-empty p {
  color: var(--at-muted);
}

.at-empty a {
  color: var(--at-red);
  font-weight: 800;
}

.at-help {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  color: var(--at-white);
  background: var(--at-navy);
  isolation: isolate;
}

.at-help > img,
.at-help__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.at-help > img {
  z-index: -2;
  object-fit: cover;
  object-position: center 43%;
}

.at-help__overlay {
  z-index: -1;
  background: rgba(0, 31, 49, 0.72);
}

.at-help__content {
  padding-block: 90px;
}

.at-help .at-section-label {
  color: var(--at-sand);
}

.at-help h2 {
  max-width: 680px;
  margin-top: 15px;
  color: var(--at-white);
  font-size: 58px;
  line-height: 1.02;
}

.at-help__content > p:not(.at-section-label) {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.65;
}

.at-site :focus-visible {
  outline: 3px solid var(--at-sand);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .at-page {
    padding-top: 0;
  }

  .at-hero h1 {
    font-size: 62px;
  }

  .at-region-rail {
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(210px, 1fr));
    scrollbar-width: thin;
  }

  .at-card {
    grid-column: span 6;
  }

}

@media (max-width: 760px) {
  .at-container {
    width: min(100% - 32px, 680px);
  }

  .at-hero {
    min-height: 610px;
  }

  .at-hero__inner {
    align-items: flex-start;
    padding-block: 74px 114px;
  }

  .at-hero h1 {
    font-size: 51px;
  }

  .at-hero__copy > p:not(.at-eyebrow) {
    font-size: 18px;
  }

  .at-hero__note {
    right: auto;
    left: 0;
    display: grid;
    gap: 8px;
    overflow: visible;
    width: 100%;
    padding-bottom: 4px;
    white-space: normal;
  }

  .at-hero__note span {
    justify-content: center;
  }

  .at-hero__note span:not(:last-child)::after {
    display: none;
  }

  .at-intro,
  .at-catalogue {
    padding-block: 76px;
  }

  .at-intro__grid,
  .at-catalogue__head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .at-intro h2,
  .at-catalogue h2 {
    font-size: 43px;
  }

  .at-region-rail {
    margin-top: 36px;
  }

  .at-filters {
    margin-top: 34px;
    padding: 18px;
  }

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

  .at-card {
    grid-column: auto;
  }

  .at-card__media {
    aspect-ratio: 3 / 2;
  }

  .at-help h2 {
    font-size: 46px;
  }
}

@media (max-width: 520px) {
  .at-container {
    width: min(100% - 24px, 480px);
  }

  .at-hero {
    min-height: 590px;
  }

  .at-hero__inner {
    padding-block: 54px 105px;
  }

  .at-hero h1 {
    margin-top: 13px;
    font-size: 42px;
    line-height: 1.02;
  }

  .at-hero__copy > p:not(.at-eyebrow) {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.52;
  }

  .at-hero__actions,
  .at-help__actions {
    display: grid;
  }

  .at-button {
    width: 100%;
  }

  .at-hero__note {
    font-size: 10px;
  }

  .at-intro h2,
  .at-catalogue h2,
  .at-help h2 {
    font-size: 37px;
  }

  .at-intro {
    padding-top: 64px;
  }

  .at-region-rail {
    grid-template-columns: repeat(5, 190px);
  }

  .at-region-rail a {
    min-height: 126px;
    padding: 20px;
  }

  .at-filter-buttons {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: thin;
  }

  .at-filter-buttons button {
    flex: 0 0 auto;
  }

  .at-card__copy {
    padding: 20px;
  }

  .at-card h3 {
    font-size: 27px;
  }

  .at-help {
    min-height: 600px;
  }

  .at-help__content {
    padding-block: 72px 108px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .at-site *,
  .at-site *::before,
  .at-site *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
