:root {
  --red: #b51231;
  --red-dark: #981027;
  --text: #3f3d3f;
  --muted: #6b686b;
  --hero-text: rgba(255, 255, 255, 0.98);
  --header-shell: 1440px;
  --content-shell: 1440px;
  --hero-shell: 1440px;
  --footer-shell: 1440px;
  --page-gutter: 48px;
  --font: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: var(--font);
  font-size: 20px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
address { font-style: normal; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10000;
  transform: translateY(-160%);
  background: #111;
  color: #fff;
  padding: 9px 14px;
}
.skip-link:focus { transform: none; }

.header-shell,
.content-shell,
.home-shell,
.hero-title-shell,
.footer-shell {
  margin-inline: auto;
}
.header-shell { width: min(calc(100% - (var(--page-gutter) * 2)), var(--header-shell)); }
.content-shell { width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-shell)); }
.home-shell { width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-shell)); }
.hero-title-shell,
.home-hero-copy { width: min(calc(100% - (var(--page-gutter) * 2)), var(--hero-shell)); }
.footer-shell { width: min(calc(100% - (var(--page-gutter) * 2)), var(--footer-shell)); }

/* Header */
.site-header {
  height: 116px;
  background: #fff;
  border-bottom: 5px solid var(--red);
  position: relative;
  z-index: 1000;
}
.header-shell {
  height: 111px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}
.site-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 106px;
  text-decoration: none;
  flex: 0 0 auto;
}
.site-logo img {
  width: 94px;
  height: auto;
  max-height: 94px;
  object-fit: contain;
}
.primary-nav {
  display: flex;
  align-items: stretch;
  height: 111px;
  gap: 54px;
}
.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  color: #5a575a;
  font-size: 17px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.nav-link:hover,
.nav-link:focus,
.nav-link.is-active,
.nav-parent.is-active > .nav-link { color: var(--red); }
.nav-link.is-active::after,
.nav-parent.is-active > .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--red);
}
.nav-caret { margin-left: 6px; font-size: 13px; color: #777; }
.nav-parent { position: relative; display: flex; }
.nav-dropdown {
  position: absolute;
  top: 111px;
  left: -25px;
  width: 330px;
  background: #fff;
  border-top: 3px solid var(--red);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(7px);
  transition: 0.16s ease;
  z-index: 20;
}
.nav-dropdown a {
  display: block;
  padding: 12px 22px;
  font-size: 16px;
  line-height: 1.4;
  text-decoration: none;
}
.nav-dropdown a:hover,
.nav-dropdown a:focus { color: var(--red); background: #f7f7f7; }
.nav-parent:hover .nav-dropdown,
.nav-parent:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: none; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span:not(.sr-only) { display: block; width: 27px; height: 2px; background: #333; margin: 6px auto; }

/* Shared hero */
.hero {
  position: relative;
  overflow: hidden;
  background-image: var(--hero-image);
  background-position: var(--hero-position, center center);
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 25, 28, 0.22) 0%, rgba(20, 25, 28, 0.11) 48%, rgba(20, 25, 28, 0.03) 100%);
}
.hero-home { height: clamp(580px, 33.7vw, 690px); }
.home-hero-copy {
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  padding-bottom: 58px;
}
.hero h1 {
  margin: 0;
  color: var(--hero-text);
  font-size: clamp(52px, 3.15vw, 64px);
  line-height: 1.08;
  letter-spacing: -1.7px;
  font-weight: 700;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}
.hero-inner { height: clamp(520px, 31vw, 640px); }
.hero-title-shell {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 58px;
}
.hero-inner h1 { max-width: 920px; font-size: clamp(48px, 3vw, 62px); line-height: 1.1; }
.hero-title-mobile { display: none; }

.section-white { background: #fff; }
.textured-panel { background: #dde0e2 url('/assets/images/common/soft-gradient.jpg') center top / cover no-repeat; }
.divider { height: 2px; background: var(--red); }

/* Home */
.home-intro { padding: 105px 0 118px; }
.home-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(100px, 11.7vw, 240px);
  align-items: start;
  margin-bottom: 52px;
}
.home-intro-grid p { max-width: 600px; margin: 0; font-size: 22px; line-height: 1.76; }
.home-intro-grid img { width: 100%; height: 660px; object-fit: cover; object-position: center center; }
.mission-panel { padding: 0; min-height: 570px; }
.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(100px, 11.7vw, 240px);
  align-items: start;
  padding-block: 0 92px;
}
.mission-grid img { width: 100%; height: 455px; object-fit: cover; object-position: center center; }
.mission-grid p { margin: 0; padding-top: 72px; font-size: 25px; line-height: 1.72; font-weight: 700; }

/* Footer */
.site-footer { padding: 72px 0 48px; background: #fff; color: #4d4a4d; text-align: center; }
.footer-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 72px;
  align-items: start;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 700;
}
.footer-contact-grid a { text-decoration: none; }
.footer-contact-grid a:hover,
.footer-contact-grid a:focus { color: var(--red); }
.copyright { max-width: 1100px; margin: 8px auto 0; font-size: 14px; line-height: 1.6; font-weight: 400; color: #707070; }

/* About */
.about-overview { padding: 98px 0 110px; }
.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(100px, 11.7vw, 240px);
  align-items: start;
  margin-bottom: 88px;
}
.about-intro-grid p { max-width: 600px; margin: 0; font-size: 22px; line-height: 1.74; }
.about-intro-grid img { width: 100%; height: 245px; object-fit: cover; }
.values-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(100px, 11.7vw, 240px);
  align-items: start;
  padding-top: 78px;
}
.values-card { background: rgba(255, 255, 255, 0.92); padding: 34px 58px 42px; color: #858285; min-height: 350px; }
.values-card h2 { margin: 0 0 12px; font-size: 36px; line-height: 1.28; color: #8b888b; font-weight: 700; }
.values-card ul { margin: 0; padding-left: 28px; font-size: 20px; line-height: 1.9; }
.values-statement { margin: 0; padding-top: 4px; font-size: 31px; line-height: 1.58; font-weight: 700; color: #3f3c3f; }
.team-section { padding: 112px 0 0; }
.team-intro { max-width: 1440px; }
.team-intro h2 { margin: 0 0 22px; font-size: 46px; line-height: 1.18; font-weight: 700; }
.team-intro p { max-width: 680px; margin: 0; font-size: 21px; line-height: 1.75; }
.team-section > .divider { margin-top: 52px; }
.profile-list { padding-top: 0; }
.profile-row {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 140px;
  align-items: start;
  padding: 82px 0;
  border-bottom: 2px solid var(--red);
}
.profile-row:last-child { border-bottom: 0; }
.profile-photo { width: 360px; height: 517px; overflow: hidden; background: #f1f1f1; }
.profile-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.25s ease; }
.profile-row:hover .profile-photo img { transform: scale(1.012); }
.profile-copy { max-width: 800px; padding-top: 4px; }
.profile-copy h3 { margin: 0; font-size: 36px; line-height: 1.2; font-weight: 700; }
.profile-role { margin: 4px 0 30px !important; font-size: 19px !important; line-height: 1.35 !important; }
.profile-copy p { margin: 0; font-size: 21px; line-height: 1.72; }

/* Services overview */
.services-overview { padding: 100px 0 115px; }
.services-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 44px; align-items: start; }
.service-card { background: rgba(255, 255, 255, 0.9); }
.service-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.service-card > div { padding: 32px 32px 38px; }
.service-card h2 { margin: 0 0 18px; font-size: 28px; line-height: 1.3; }
.service-card p { font-size: 19px; line-height: 1.68; margin: 0 0 20px; }
.service-card a { color: var(--red); font-weight: 700; font-size: 18px; }

/* Service detail pages */
.service-detail { padding: 96px 0 100px; }
.service-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(100px, 11.7vw, 240px);
  align-items: start;
  margin-bottom: 96px;
}
.service-intro-grid p { max-width: 600px; margin: 0; font-size: 22px; line-height: 1.73; }
.service-intro-grid img { width: 100%; height: 245px; object-fit: cover; }
.service-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 130px;
  padding-top: 92px;
}
.text-block { margin: 0 0 34px; }
.text-block h2,
.ownership-grid h2 { margin: 0 0 5px; font-size: 23px; line-height: 1.45; font-weight: 700; }
.text-block p,
.ownership-grid p { margin: 0; font-size: 21px; line-height: 1.72; }
.text-block ul { margin: 8px 0 0; padding-left: 31px; font-size: 21px; line-height: 1.72; }
.service-bottom-divider { margin-top: 28px; }
.ownership-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 130px; padding-top: 72px; }

/* Properties */
.properties-overview { padding: 96px 0 105px; }
.properties-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(100px, 11.7vw, 240px);
  align-items: start;
}
.properties-intro-grid p { max-width: 600px; margin: 0; font-size: 22px; line-height: 1.74; }
.properties-intro-grid img { width: 100%; height: 245px; object-fit: cover; }
.properties-list-section { padding: 88px 0 0; }
.portfolio-intro { width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-shell)); margin-inline: auto; }
.portfolio-intro h2 { max-width: 600px; margin: 0 0 10px; font-size: 44px; line-height: 1.2; }
.portfolio-intro p { max-width: 650px; margin: 0 0 26px; font-size: 22px; line-height: 1.7; }
.portfolio-intro strong { display: block; max-width: 720px; font-size: 22px; line-height: 1.7; }
.properties-list-section > .divider { margin-top: 52px; }
.property-list { padding-top: 0; }
.property-row {
  display: grid;
  grid-template-columns: 600px minmax(0, 1fr);
  gap: 150px;
  align-items: center;
  padding: 82px 0;
  border-bottom: 2px solid var(--red);
}
.property-row:last-child { border-bottom: 0; }
.property-photo { width: 600px; height: 390px; overflow: hidden; background: #eee; }
.property-photo img { width: 100%; height: 100%; object-fit: cover; }
.property-copy { max-width: 640px; }
.property-copy h3 { margin: 0 0 30px; font-size: 27px; line-height: 1.35; font-weight: 700; }
.property-copy p { margin: 0; font-size: 21px; line-height: 1.7; }
.property-copy .property-meta { margin-bottom: 3px; }

/* Contact */
.contact-panel { padding: 92px 0 105px; }
.contact-grid { display: grid; grid-template-columns: 460px minmax(0, 1fr); gap: 155px; align-items: start; }
.contact-copy .contact-kicker { margin: 0; color: var(--red); font-size: 22px; font-weight: 700; }
.contact-copy h1 { margin: 3px 0 18px; font-size: 48px; line-height: 1.04; font-weight: 700; color: #2e2b2e; }
.contact-copy > p:last-child { margin: 0; font-size: 22px; line-height: 1.68; }
.contact-form { display: grid; gap: 26px; }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.contact-form input,
.contact-form textarea { width: 100%; border: 1px solid #c6c6c6; background: #fff; color: #333; border-radius: 0; outline: 0; padding: 14px 17px; font-size: 20px; }
.contact-form input { height: 58px; }
.contact-form textarea { height: 190px; resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #b66f7e; opacity: 1; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 1px var(--red); }
.contact-form button { width: 250px; height: 58px; border: 0; background: #fff; color: #9f9f9f; font-weight: 700; cursor: pointer; }
.contact-form button span { margin-left: 10px; font-size: 27px; vertical-align: -2px; }
.contact-form button:hover,
.contact-form button:focus { color: var(--red); }
.contact-form button:disabled { opacity: 0.6; cursor: wait; }
.honeypot { position: absolute !important; left: -10000px !important; }
.form-status { margin: 0; font-size: 15px; line-height: 1.4; min-height: 21px; }
.form-status.is-error { color: #8e1029; }
.form-status.is-success { color: #2f6b45; }
.contact-image-strip { height: 380px; overflow: hidden; background: #ddd; }
.contact-image-strip img { width: 100%; height: 100%; object-fit: cover; }

/* Privacy and utility pages */
.plain-page { padding: 105px 0 130px; min-height: 600px; }
.plain-page h1 { margin: 0 0 34px; font-size: 52px; line-height: 1.18; }
.plain-page h2 { margin: 42px 0 10px; font-size: 30px; }
.plain-page p { margin: 0 0 18px; max-width: 1000px; }
.privacy-policy { padding-top: 86px; }
.policy-content { max-width: var(--content-shell); }
.policy-content h1 { margin-bottom: 42px; font-size: 40px; line-height: 1.2; text-transform: none; }
.policy-content h2 { margin: 44px 0 12px; font-size: 21px; line-height: 1.35; }
.policy-content p,
.policy-content li { font-size: 17px; line-height: 1.68; }
.policy-content p { max-width: 1220px; margin-bottom: 16px; }
.policy-content ul { max-width: 1180px; margin: 0 0 20px; padding-left: 28px; }
.policy-content a { color: var(--red-dark); text-decoration-thickness: 1px; text-underline-offset: 2px; overflow-wrap: anywhere; }
.policy-table-wrap { width: 100%; overflow-x: auto; margin: 24px 0 32px; border: 1px solid #bcbcbc; background: #fff; }
.policy-table { width: 100%; min-width: 1120px; border-collapse: collapse; table-layout: fixed; font-size: 15px; line-height: 1.5; }
.policy-table th,
.policy-table td { padding: 13px 14px; border: 1px solid #c9c9c9; text-align: left; vertical-align: top; }
.policy-table th { background: #e8e9ea; color: #353235; font-weight: 700; }
.policy-table th:nth-child(1) { width: 12%; }
.policy-table th:nth-child(2) { width: 31%; }
.policy-table th:nth-child(3) { width: 12%; }
.policy-table th:nth-child(4) { width: 20%; }
.policy-table th:nth-child(5) { width: 25%; }

/* Tablet */
@media (max-width: 1199px) {
  :root { --page-gutter: 34px; }
  body { font-size: 18px; }
  .site-header { height: 100px; }
  .header-shell { height: 95px; }
  .site-logo { width: 92px; height: 90px; }
  .site-logo img { width: 88px; max-height: 88px; }
  .primary-nav { height: 95px; gap: 38px; }
  .nav-dropdown { top: 95px; }
  .hero-home { height: clamp(520px, 48vw, 620px); }
  .hero-inner { height: clamp(470px, 46vw, 580px); }
  .hero h1 { font-size: clamp(46px, 5.2vw, 58px); }
  .home-intro-grid,
  .mission-grid,
  .about-intro-grid,
  .values-grid,
  .service-intro-grid,
  .properties-intro-grid { gap: clamp(60px, 7vw, 100px); }
  .home-intro-grid p,
  .about-intro-grid p,
  .service-intro-grid p,
  .properties-intro-grid p { font-size: 20px; }
  .home-intro-grid img { height: 540px; }
  .mission-grid img { height: 390px; }
  .mission-grid p { font-size: 22px; padding-top: 48px; }
  .values-statement { font-size: 27px; }
  .profile-row { grid-template-columns: 300px 1fr; gap: 86px; }
  .profile-photo { width: 300px; height: 431px; }
  .profile-copy p { font-size: 19px; }
  .service-columns,
  .ownership-grid { gap: 80px; }
  .property-row { grid-template-columns: minmax(420px, 48%) 1fr; gap: 85px; }
  .property-photo { width: 100%; height: 330px; }
  .contact-grid { grid-template-columns: 370px 1fr; gap: 90px; }
}

/* Mobile navigation and stacked layouts */
@media (max-width: 900px) {
  :root { --page-gutter: 24px; }
  body { font-size: 17px; }
  .site-header { height: 84px; border-bottom-width: 4px; }
  .header-shell { height: 80px; width: calc(100% - 36px); }
  .site-logo { width: 76px; height: 76px; }
  .site-logo img { width: 72px; max-height: 73px; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed;
    inset: 84px 0 0;
    background: #fff;
    height: auto;
    padding: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: auto;
    border-top: 1px solid #ddd;
  }
  .primary-nav.is-open { display: flex; }
  .nav-link { padding: 16px 2px; font-size: 18px; }
  .nav-link.is-active::after,
  .nav-parent.is-active > .nav-link::after { bottom: 7px; }
  .nav-parent { display: block; }
  .nav-dropdown {
    position: static;
    width: auto;
    box-shadow: none;
    border: 0;
    padding: 0 0 8px 14px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: block;
  }
  .nav-dropdown a { padding: 9px 8px; font-size: 16px; }
  .hero-home { height: min(72vh, 650px); min-height: 500px; }
  .home-hero-copy { padding-bottom: 42px; }
  .hero h1 { font-size: clamp(39px, 10.5vw, 52px); line-height: 1.08; letter-spacing: -1px; }
  .hero-title-desktop { display: none; }
  .hero-title-mobile { display: inline; }
  .home-page .hero h1 { font-size: clamp(36px, 10vw, 43px); }
  .hero-inner { height: 430px; }
  .hero-title-shell { padding-bottom: 38px; }
  .hero-inner h1 { font-size: clamp(39px, 9vw, 50px); }
  .home-intro,
  .about-overview,
  .service-detail,
  .properties-overview { padding: 68px 0 76px; }
  .home-intro-grid,
  .mission-grid,
  .about-intro-grid,
  .values-grid,
  .service-intro-grid,
  .service-columns,
  .ownership-grid,
  .properties-intro-grid,
  .contact-grid,
  .profile-row,
  .property-row { grid-template-columns: 1fr; gap: 34px; }
  .home-intro-grid { margin-bottom: 40px; }
  .home-intro-grid p,
  .about-intro-grid p,
  .service-intro-grid p,
  .properties-intro-grid p { font-size: 18px; line-height: 1.72; }
  .home-intro-grid img,
  .mission-grid img,
  .about-intro-grid img,
  .service-intro-grid img,
  .properties-intro-grid img,
  .profile-photo,
  .property-photo { width: 100%; height: auto; max-height: none; aspect-ratio: auto; }
  .mission-grid { padding-bottom: 62px; }
  .mission-grid p { padding-top: 0; font-size: 21px; }
  .about-intro-grid,
  .service-intro-grid { margin-bottom: 52px; }
  .values-grid { padding-top: 48px; }
  .values-card { min-height: 0; padding: 28px 32px; }
  .values-card h2 { font-size: 31px; }
  .values-statement { font-size: 24px; }
  .team-section { padding-top: 72px; }
  .team-intro h2 { font-size: 38px; }
  .team-intro p { font-size: 18px; }
  .team-section > .divider,
  .properties-list-section > .divider { margin-top: 38px; }
  .profile-row,
  .property-row { padding: 52px 0; }
  .profile-photo { max-width: 360px; }
  .profile-copy { max-width: none; }
  .profile-copy h3 { font-size: 31px; }
  .profile-copy p { font-size: 18px; }
  .services-cards { grid-template-columns: 1fr; }
  .service-columns { padding-top: 58px; }
  .ownership-grid { padding-top: 48px; }
  .text-block p,
  .text-block ul,
  .ownership-grid p { font-size: 18px; }
  .portfolio-intro h2 { font-size: 38px; }
  .portfolio-intro p,
  .portfolio-intro strong { font-size: 18px; }
  .property-copy h3 { margin-bottom: 20px; font-size: 25px; }
  .property-copy p { font-size: 18px; }
  .contact-panel { padding: 62px 0 72px; }
  .contact-grid { gap: 45px; }
  .contact-copy h1 { font-size: 42px; }
  .contact-copy > p:last-child { font-size: 18px; }
  .form-two { grid-template-columns: 1fr; gap: 24px; }
  .contact-form button { width: 100%; }
  .contact-image-strip { height: 230px; }
  .privacy-policy { padding: 62px 0 84px; }
  .policy-content h1 { font-size: 36px; margin-bottom: 34px; }
  .policy-content h2 { margin-top: 36px; font-size: 20px; }
  .policy-content p,
  .policy-content li { font-size: 16px; line-height: 1.65; }
  .policy-table { font-size: 14px; }
  .footer-contact-grid { grid-template-columns: 1fr; gap: 17px; }
  .site-footer { padding: 48px 24px 36px; }
}

@media (max-width: 520px) {
  :root { --page-gutter: 18px; }
  .hero-home { min-height: 470px; }
  .hero h1 { font-size: clamp(36px, 10.8vw, 46px); }
  .home-hero-copy { padding-bottom: 34px; }
  .values-card { padding-inline: 24px; }
  .plain-page h1 { font-size: 40px; }
}

@media print {
  .site-header { position: static; }
  .menu-toggle { display: none !important; }
  .primary-nav { display: flex !important; }
}

@media (min-width: 901px) {
  .footer-contact-grid > a { white-space: nowrap; }
}

/* Homepage property slideshow */
.hero-slideshow {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #4a5053;
}
.hero-slideshow .hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--slide-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: var(--slide-position, center center);
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 1.4s ease-in-out;
  will-change: opacity, transform;
}
.hero-slideshow .hero-slide.is-active {
  opacity: 1;
  animation: ames-hero-zoom-in 8s ease-in-out both;
}
.hero-slideshow .hero-slide.is-active.is-zoom-out {
  animation-name: ames-hero-zoom-out;
}
.hero-slideshow .hero-wash,
.hero-slideshow .home-hero-copy {
  position: relative;
  z-index: 2;
}
@keyframes ames-hero-zoom-in {
  from { transform: scale(1.01); }
  to { transform: scale(1.065); }
}
@keyframes ames-hero-zoom-out {
  from { transform: scale(1.065); }
  to { transform: scale(1.01); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slideshow .hero-slide,
  .hero-slideshow .hero-slide.is-active,
  .hero-slideshow .hero-slide.is-active.is-zoom-out {
    animation: none;
    transition-duration: 0.01ms;
    transform: none;
  }
}
