.plan-a {
  --a-ink: #171717;
  --a-charcoal: #20211f;
  --a-warm: #f5f2ec;
  --a-bronze: #9a7a4f;
  --a-line: #d9d8d3;
  color: var(--a-ink);
}

.a-header {
  position: relative;
  z-index: 50;
  display: grid;
  height: 104px;
  grid-template-columns: 1fr minmax(320px, 440px) 1fr;
  align-items: center;
  padding-inline: clamp(28px, 5.5vw, 80px);
  background: #fff;
}

.a-left-nav,
.a-utilities {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 12px;
}

.a-left-nav a,
.a-utilities a,
.a-utilities button {
  white-space: nowrap;
}

.a-left-nav a,
.a-utilities button {
  padding: 8px 0;
  background: transparent;
}

.a-brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .05em;
  text-align: center;
}

.a-utilities {
  justify-content: flex-end;
}

.a-utilities .a-estimate {
  padding: 10px 18px;
  color: #fff;
  background: var(--a-charcoal);
}

.a-menu-button,
.a-mobile-search,
.a-mobile-strip {
  display: none;
}

.a-hero-shell {
  padding: 40px;
  background: var(--a-warm);
}

.a-carousel {
  position: relative;
  width: 100%;
  height: min(660px, calc(100vh - 144px));
  min-height: 560px;
  overflow: hidden;
  background: #ded8cd;
}

.a-hero-slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 1s ease, visibility 1s ease;
}

.a-hero-slide.is-active {
  visibility: visible;
  opacity: 1;
}

.a-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.025);
  transition: transform 6s ease-out;
}

.a-hero-slide.is-active img {
  transform: scale(1);
}

.a-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,21,19,.83) 0 44%, rgba(20,21,19,.18) 72%, rgba(20,21,19,.05));
}

.a-hero-copy {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  width: min(50%, 680px);
  flex-direction: column;
  justify-content: flex-end;
  padding: 58px 5.2vw 96px;
  color: #fff;
}

.a-image-label {
  margin-bottom: auto;
  font-size: 10px;
  letter-spacing: .12em;
}

.a-hero-copy h1,
.a-hero-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: .03em;
  line-height: 1.42;
}

.a-hero-copy > p:last-child {
  max-width: 560px;
  margin-bottom: 0;
  font-size: 15px;
}

.a-carousel-ui {
  position: absolute;
  right: 60px;
  bottom: 32px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.a-carousel-ui button {
  color: inherit;
  background: transparent;
}

.a-dots {
  display: flex;
  gap: 8px;
}

.a-dots button {
  width: 22px;
  height: 4px;
  padding: 0;
  border-radius: 4px;
  background: rgba(255,255,255,.5);
  transition: width .3s ease, background .3s ease;
}

.a-dots button.is-active {
  width: 48px;
  background: #fff;
}

.a-carousel-ui span {
  margin-left: 8px;
  font-size: 10px;
}

.a-purpose {
  text-align: center;
}

.a-purpose-inner {
  display: grid;
  justify-items: center;
}

.a-purpose .eyebrow,
.a-company .eyebrow {
  color: var(--a-bronze);
}

.a-purpose > .container > p:not(.eyebrow) {
  max-width: 840px;
  color: #656565;
}

.a-purpose .button {
  margin-top: 10px;
}

.a-news {
  background: var(--a-warm);
}

.a-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.a-heading-row h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
}

.a-heading-row a {
  font-size: 12px;
  font-weight: 600;
}

.a-news-list {
  border-bottom: 1px solid var(--a-line);
}

.a-news-list a {
  display: grid;
  min-height: 72px;
  grid-template-columns: 120px 110px 1fr;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--a-line);
}

.a-news-list time {
  color: #656565;
  font-size: 12px;
}

.a-news-list span {
  color: var(--a-bronze);
  font-size: 11px;
  font-weight: 600;
}

.a-news-list strong {
  font-size: 14px;
  font-weight: 400;
}

.a-service-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 40px;
}

.a-service-heading > div > p {
  margin-bottom: 4px;
  font-size: 30px;
  font-weight: 600;
}

.a-service-heading h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 600;
}

.a-service-heading > p {
  max-width: 460px;
  margin: 0;
  color: #656565;
  font-size: 13px;
  text-align: right;
}

.a-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.a-service-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 28px;
  background: var(--a-warm);
}

.a-service-card span {
  color: var(--a-bronze);
  font-size: 10px;
  font-weight: 600;
}

.a-service-card h3 {
  margin: 18px 0 10px;
  font-size: 23px;
  font-weight: 600;
}

.a-service-card p {
  color: #656565;
  font-size: 13px;
}

.a-service-card a {
  margin-top: auto;
  font-size: 12px;
  font-weight: 600;
}

.a-service-dark {
  color: #fff;
  background: var(--a-charcoal);
}

.a-service-dark span,
.a-service-dark p {
  color: #d7d2c9;
}

.a-company {
  background: #eef0ee;
}

.a-company-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(36px, 5vw, 70px);
}

.a-company figure {
  height: 416px;
  margin: 0;
  overflow: hidden;
}

.a-company img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.a-company h2 {
  margin-bottom: 22px;
  font-size: 32px;
  font-weight: 600;
}

.a-company p:not(.eyebrow) {
  max-width: 600px;
  color: #656565;
}

.a-company .button {
  margin-top: 10px;
}

.a-contact {
  padding-block: 62px;
  color: #fff;
  background: var(--a-charcoal);
  text-align: center;
}

.a-contact h2 {
  margin-bottom: 12px;
  font-size: 30px;
  font-weight: 600;
}

.a-contact p {
  color: #c9cac7;
  font-size: 13px;
}

.a-contact .container > div {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.a-contact .button {
  width: 204px;
}

.a-bronze {
  border-color: var(--a-bronze);
  color: #fff;
  background: var(--a-bronze);
}

.a-footer {
  padding-block: 56px 44px;
  background: #fff;
  text-align: center;
}

.a-footer-brand {
  font-size: 21px;
  font-weight: 600;
}

.a-footer nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-block: 28px;
  color: #656565;
  font-size: 11px;
}

.a-footer nav button {
  padding: 0;
  color: inherit;
  background: transparent;
}

.a-footer-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--a-line);
  color: #656565;
  font-size: 10px;
}

@media (max-width: 1100px) {
  .a-header {
    grid-template-columns: 1fr auto 1fr;
  }

  .a-left-nav {
    display: none;
  }

  .a-menu-button {
    display: inline-flex;
    width: max-content;
    padding: 10px 0;
    background: transparent;
    font-size: 11px;
  }

  .a-utilities > :first-child {
    display: none;
  }
}

@media (max-width: 767px) {
  .a-header {
    height: 116px;
    align-items: start;
    padding: 18px 20px 0;
  }

  .a-menu-button {
    margin-top: 0;
  }

  .a-brand {
    padding-top: 2px;
    font-size: 14px;
  }

  .a-utilities {
    display: none;
  }

  .a-mobile-search {
    display: grid;
    width: 28px;
    height: 28px;
    justify-self: end;
  }

  .a-mobile-search img {
    width: 18px;
    height: 18px;
  }

  .a-mobile-strip {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 44px;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    background: var(--a-warm);
    text-align: center;
  }

  .a-mobile-strip button,
  .a-mobile-strip a {
    padding: 8px 4px;
    background: transparent;
    font-size: 11px;
  }

  .a-hero-shell {
    padding: 40px 20px 20px;
  }

  .a-carousel {
    height: 500px;
    min-height: 0;
  }

  .a-hero-slide img {
    object-position: center;
  }

  .a-hero-shade {
    background: linear-gradient(180deg, rgba(20,21,19,.04) 0 38%, rgba(20,21,19,.9) 62% 100%);
  }

  .a-hero-copy {
    width: 100%;
    padding: 24px 24px 54px;
  }

  .a-hero-copy h1,
  .a-hero-copy h2 {
    margin-bottom: 12px;
    font-size: 30px;
    line-height: 1.46;
  }

  .a-hero-copy > p:last-child {
    font-size: 12px;
    line-height: 1.9;
  }

  .a-carousel-ui {
    right: 18px;
    bottom: 14px;
  }

  .a-carousel-ui > button,
  .a-dots {
    display: none;
  }

  .a-purpose {
    padding-block: 64px;
  }

  .a-purpose .section-heading {
    font-size: 27px;
  }

  .a-heading-row h2 {
    font-size: 22px;
  }

  .a-news-list a {
    min-height: 88px;
    grid-template-columns: 1fr;
    gap: 3px;
    padding-block: 12px;
  }

  .a-news-list time,
  .a-news-list span {
    display: inline;
  }

  .a-news-list span {
    margin-top: -30px;
    margin-left: 92px;
  }

  .a-service-heading {
    display: grid;
    gap: 22px;
  }

  .a-service-heading > div > p,
  .a-service-heading h2 {
    font-size: 26px;
  }

  .a-service-heading > p {
    text-align: left;
  }

  .a-service-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .a-service-card {
    min-height: 205px;
    padding: 22px;
  }

  .a-service-card h3 {
    margin: 12px 0 5px;
    font-size: 21px;
  }

  .a-company-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .a-company figure {
    height: 260px;
  }

  .a-company h2 {
    font-size: 24px;
  }

  .a-contact {
    padding-block: 54px;
  }

  .a-contact h2 {
    font-size: 22px;
    line-height: 1.6;
  }

  .a-contact .container > div {
    display: grid;
  }

  .a-contact .button {
    width: 100%;
  }

  .a-footer nav {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .a-footer-meta {
    display: grid;
    gap: 8px;
    justify-content: center;
  }
}
