Replace your entire modern-2026.css with this cleaned version:

:root {
  --ac-red: #8f1d21;
  --ac-red-dark: #681316;
  --ac-charcoal: #1f1f1f;
  --ac-muted: #666666;
  --ac-cream: #f6f1ea;
  --ac-soft: #fffaf4;
  --ac-border: rgba(0,0,0,.1);
  --ac-shadow: 0 24px 70px rgba(0,0,0,.14);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ac-charcoal);
  background: var(--ac-soft);
}
img {
  max-width: 100%;
  display: block;
}
.ac-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
/* Header */
.ac-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--ac-border);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.ac-nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.ac-logo img {
  width: min(280px, 54vw);
  height: auto;
}
.ac-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}
.ac-main-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ac-main-menu > li {
  position: relative;
}
.ac-main-menu a {
  text-decoration: none;
}
.ac-main-menu > li > a {
  display: block;
  padding: 12px 15px;
  color: #222222;
  font-size: 15px;
  font-weight: 800;
  border-radius: 999px;
}
.ac-main-menu > li > a:hover,
.ac-main-menu > li.active > a {
  color: var(--ac-red);
  background: rgba(143,29,33,.08);
}
.ac-mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 760px;
  display: none;
  grid-template-columns: 1fr 1.4fr 1.5fr;
  gap: 24px;
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--ac-border);
  border-radius: 24px;
  box-shadow: var(--ac-shadow);
  transform: translateX(-50%);
  z-index: 9999;
}
.ac-has-menu:hover .ac-mega-menu {
  display: grid;
}
.ac-mega-col h4 {
  margin: 0 0 12px;
  color: var(--ac-red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ac-mega-col ul,
.ac-dropdown-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ac-mega-col li,
.ac-dropdown-menu li {
  position: static;
}
.ac-mega-col li a,
.ac-dropdown-menu li a {
  display: block;
  padding: 9px 10px;
  color: #333333;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
}
.ac-mega-col li a:hover,
.ac-dropdown-menu li a:hover {
  color: var(--ac-red);
  background: rgba(143,29,33,.08);
}
.ac-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  display: none;
  padding: 12px;
  background: #ffffff;
  border: 1px solid var(--ac-border);
  border-radius: 18px;
  box-shadow: var(--ac-shadow);
  z-index: 9999;
}
.ac-has-menu:hover .ac-dropdown-menu {
  display: block;
}
.ac-no-items {
  display: block;
  padding: 8px 10px;
  color: #777777;
  font-size: 14px;
  font-weight: 700;
}
.ac-phone {
  padding: 11px 18px;
  color: #ffffff;
  background: var(--ac-red);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}
.ac-phone:hover {
  color: #ffffff;
  background: var(--ac-red-dark);
  text-decoration: none;
}
.ac-menu-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 0;
}
.ac-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  background: var(--ac-charcoal);
  border-radius: 999px;
}
/* Hero */
.ac-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.ac-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0,0,0,.68), rgba(0,0,0,.28), rgba(0,0,0,.1)),
    url("../images/eagle_ridge_pano2.jpg") center / cover no-repeat;
  transform: scale(1.02);
}
.ac-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 190px;
  z-index: -1;
  background: linear-gradient(transparent, var(--ac-soft));
}
.ac-hero-content {
  padding: 110px 0;
}
.ac-hero-card {
  max-width: 760px;
  padding: clamp(30px, 5vw, 58px);
  color: #ffffff;
  background: rgba(20,20,20,.42);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 34px;
  box-shadow: 0 30px 100px rgba(0,0,0,.36);
}
.ac-eyebrow {
  margin: 0 0 16px;
  color: #f5d7a1;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.ac-eyebrow.dark {
  color: var(--ac-red);
}
.ac-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(46px, 7vw, 84px);
  line-height: .92;
  letter-spacing: -.06em;
  font-weight: 900;
}
.ac-hero p {
  max-width: 650px;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}
.ac-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
/* Buttons */
.ac-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: .2s ease;
}
.ac-btn-primary {
  color: #ffffff;
  background: var(--ac-red);
}
.ac-btn-primary:hover {
  color: #ffffff;
  background: var(--ac-red-dark);
  text-decoration: none;
  transform: translateY(-1px);
}
.ac-btn-secondary {
  color: #ffffff;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.35);
}
.ac-btn-secondary:hover {
  color: #ffffff;
  background: rgba(255,255,255,.24);
  text-decoration: none;
}
/* Sections */
.ac-section {
  padding: 86px 0;
}
.ac-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: start;
}
.ac-section h2,
.ac-intro h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -.04em;
  font-weight: 900;
}
.ac-section p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ac-muted);
}
.ac-section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}
.ac-section-head h2 {
  margin-bottom: 12px;
}
/* Spec Homes */
.ac-specs {
  background: var(--ac-cream);
}
.ac-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.ac-home-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--ac-border);
  border-radius: 28px;
  box-shadow: 0 16px 50px rgba(0,0,0,.08);
  transition: .2s ease;
}
.ac-home-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ac-shadow);
}
.ac-home-image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dddddd;
}
.ac-home-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s ease;
}
.ac-home-card:hover img {
  transform: scale(1.04);
}
.ac-home-body {
  padding: 24px;
}
.ac-home-community {
  margin: 0 0 8px;
  color: var(--ac-red) !important;
  font-size: 12px !important;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.ac-home-body h3 {
  margin: 0 0 4px;
  font-size: 23px;
  line-height: 1.15;
  font-weight: 900;
}
.ac-home-location {
  margin: 0 0 16px;
  font-size: 14px !important;
}
.ac-home-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.ac-home-meta span {
  padding: 7px 10px;
  background: var(--ac-cream);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}
.ac-text-link {
  color: var(--ac-red);
  font-weight: 900;
  text-decoration: none;
}
.ac-text-link:hover {
  color: var(--ac-red-dark);
  text-decoration: underline;
}
.ac-empty {
  grid-column: 1 / -1;
  text-align: center;
}
/* Feature Cards */
.ac-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ac-feature-card {
  padding: 34px;
  background: #ffffff;
  border: 1px solid var(--ac-border);
  border-radius: 28px;
  box-shadow: 0 14px 45px rgba(0,0,0,.07);
}
.ac-feature-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 900;
}
/* Page Hero */
.ac-page-hero {
  padding: 110px 0 90px;
  color: #ffffff;
  background:
    linear-gradient(rgba(0,0,0,.58), rgba(0,0,0,.58)),
    url("../images/eagle_ridge_pano2.jpg") center / cover no-repeat;
}
.ac-page-hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(46px, 7vw, 82px);
  line-height: .95;
  letter-spacing: -.05em;
  font-weight: 900;
}
.ac-page-hero p {
  max-width: 680px;
  font-size: 20px;
  line-height: 1.55;
}
/* Callout */
.ac-communities {
  background:
    linear-gradient(rgba(0,0,0,.68), rgba(0,0,0,.68)),
    url("../images/kitchen_pano1.jpg") center / cover no-repeat;
}
.ac-callout {
  max-width: 900px;
  text-align: center;
  color: #ffffff;
}
.ac-callout h2 {
  color: #ffffff;
}
.ac-callout p {
  color: rgba(255,255,255,.82);
}
/* Testimonials */
.ac-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ac-testimonial-grid blockquote {
  margin: 0;
  padding: 32px;
  background: #ffffff;
  border: 1px solid var(--ac-border);
  border-radius: 28px;
  box-shadow: 0 14px 45px rgba(0,0,0,.07);
}
.ac-testimonial-grid p {
  margin-top: 0;
  color: var(--ac-charcoal);
  font-size: 20px;
  line-height: 1.55;
}
.ac-testimonial-grid cite {
  color: var(--ac-red);
  font-style: normal;
  font-weight: 900;
}
/* Maps */
.ac-maps-section {
  background: #f6f1ea;
}
.ac-map-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.ac-map-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 26px;
  box-shadow: 0 16px 50px rgba(0,0,0,.08);
}
.ac-map-image {
  display: block;
  padding: 20px;
  background: #f8f8f8;
}
.ac-map-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.ac-map-body {
  padding: 22px;
}
.ac-map-body h3 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 900;
}
.ac-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ac-map-actions a {
  padding: 10px 14px;
  color: #ffffff;
  background: #8f1d21;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.ac-map-actions a:hover {
  background: #681316;
}
/* Contact */
.ac-contact-section {
  background: #f6f1ea;
}
.ac-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}
.ac-contact-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 16px 50px rgba(0,0,0,.08);
}
.ac-contact-card h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.04em;
}
.ac-contact-form label {
  display: block;
  margin: 16px 0 7px;
  font-weight: 900;
}
.ac-contact-form input,
.ac-contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,.16);
  border-radius: 14px;
  font-size: 16px;
  color: #222222;
  background: #ffffff;
}
.ac-contact-form textarea {
  min-height: 170px;
  resize: vertical;
}
.ac-contact-form #submitNow {
  width: auto;
  margin-top: 20px;
  border: 0;
}
.ac-contact-info a {
  color: #8f1d21;
  font-weight: 900;
}
.ac-map-embed {
  overflow: hidden;
  margin-top: 24px;
  border-radius: 22px;
}
/* Floor Plans */
.ac-floorplans-section {
  background: #f6f1ea;
}
.ac-plan-category {
  margin-top: 56px;
}
.ac-plan-category h2 {
  margin: 0 0 24px;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -.04em;
}
.ac-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ac-plan-card {
  display: block;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 24px;
  box-shadow: 0 16px 50px rgba(0,0,0,.08);
  text-decoration: none;
  transition: .2s ease;
}
.ac-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(0,0,0,.14);
  text-decoration: none;
}
.ac-plan-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eeeeee;
}
.ac-plan-card h3 {
  margin: 18px 18px 6px;
  color: #1f1f1f;
  font-size: 22px;
  font-weight: 900;
}
.ac-plan-card span {
  display: block;
  margin: 0 18px 20px;
  color: #8f1d21;
  font-weight: 900;
}
/* Gallery */
.ac-gallery-section {
  background: #f6f1ea;
}
.ac-gallery-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 360px;
  gap: 34px;
  align-items: start;
}
.ac-gallery-card,
.ac-gallery-filter {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 28px;
  box-shadow: 0 16px 50px rgba(0,0,0,.08);
}
.ac-gallery-card {
  overflow: hidden;
  padding: 18px;
}
.ac-royal-gallery {
  width: 100%;
  min-height: 520px;
  user-select: none;
}
.ac-gallery-filter {
  padding: 30px;
}
.ac-gallery-filter h2 {
  margin: 0 0 18px;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -.04em;
}
.ac-gallery-filter ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ac-gallery-filter li {
  margin-bottom: 9px;
}
.ac-gallery-filter a {
  display: block;
  padding: 11px 13px;
  color: #222222;
  background: #f6f1ea;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
}
.ac-gallery-filter a:hover {
  color: #ffffff;
  background: #8f1d21;
}
/* Commercial */
.ac-commercial-section {
  background: #f6f1ea;
}
.ac-commercial-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 420px;
  gap: 34px;
  align-items: start;
}
.ac-commercial-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 16px 50px rgba(0,0,0,.08);
}
.ac-commercial-card h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.04em;
}
.ac-commercial-card p {
  color: #666666;
  font-size: 17px;
  line-height: 1.75;
}
.ac-commercial-card .ac-btn {
  margin-top: 10px;
}
/* Footer */
.footer {
  background: #161616;
  color: #f7f1ea;
  padding: 70px 0 30px;
  overflow-x: hidden;
}
.footer,
.footer * {
  box-sizing: border-box;
}
.footer .container {
  width: min(1180px, calc(100% - 40px));
  max-width: 100%;
  margin: 0 auto;
}
.footer-grids {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.footer-grid,
.footer .col-md-6 {
  float: none !important;
  width: auto !important;
  max-width: 100%;
}
.footer h3 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 22px;
}
.footer a {
  color: #f5d7a1;
  text-decoration: none;
}
.footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer input,
.footer select,
.footer textarea,
.footer .input-group,
.footer .form-control {
  width: 100%;
  max-width: 100%;
}
.footer input,
.footer select,
.footer textarea {
  margin-bottom: 14px;
  padding: 13px 15px;
  color: #222222;
  background: #ffffff;
  border: 1px solid #444444;
  border-radius: 14px;
  outline: none;
}
.footer textarea {
  min-height: 150px;
  resize: vertical;
}
#sendText {
  width: auto;
  padding: 13px 24px;
  color: #ffffff;
  background: #8f1d21;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}
#sendText:hover {
  background: #681316;
}
.footer-grids1 {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.footer-grids1 ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-grids1 li {
  margin: 0;
  padding: 0;
}
.footer-grids1-right p {
  margin: 14px 0 0;
  color: #aaaaaa;
}
.footer .clearfix {
  display: none;
}
/* Facebook */
.social {
  margin-top: 24px;
}
.social-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
.social-nav li {
  display: inline-block;
}
.social-nav a.facebook {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #ffffff !important;
  background: #1877f2 !important;
  border-radius: 999px;
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
}
.social-nav a.facebook::before {
  content: "f";
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}
.social-nav a.facebook i {
  display: none;
}
/* Responsive */
@media (max-width: 1000px) {
  .ac-plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 980px) {
  .ac-nav {
    min-height: 76px;
  }
  .ac-menu-toggle {
    display: block;
  }
  .ac-menu,
  .ac-phone {
    display: none;
  }
  .ac-menu-open .ac-menu {
    display: block;
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid var(--ac-border);
    border-radius: 22px;
    box-shadow: var(--ac-shadow);
  }
  .ac-main-menu {
    display: block;
  }
  .ac-main-menu > li > a {
    border-radius: 12px;
  }
  .ac-mega-menu,
  .ac-dropdown-menu {
    position: static;
    display: block;
    width: 100%;
    padding: 10px 0 10px 16px;
    box-shadow: none;
    border: 0;
    transform: none;
  }
  .ac-mega-menu {
    grid-template-columns: 1fr;
  }
  .ac-two-col,
  .ac-card-grid,
  .ac-feature-grid,
  .ac-testimonial-grid,
  .ac-contact-grid,
  .ac-gallery-layout,
  .ac-commercial-layout {
    grid-template-columns: 1fr;
  }
  .ac-map-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ac-hero {
    min-height: auto;
  }
  .ac-hero-content {
    padding: 70px 0;
  }
  .ac-royal-gallery {
    min-height: 420px;
  }
}
@media (max-width: 800px) {
  .footer {
    padding: 52px 0 28px;
  }
  .footer .container {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    padding-left: 0;
    padding-right: 0;
  }
  .footer-grids {
    display: grid;
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .footer-grid,
  .footer .col-md-6 {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    display: block !important;
  }
  .footer input,
  .footer select,
  .footer textarea,
  .footer .input-group,
  .footer .form-control {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
  .footer textarea {
    min-height: 140px;
  }
  #sendText {
    width: 100%;
  }
  .footer-grids1 ul {
    display: block;
  }
  .footer-grids1 li {
    margin-bottom: 10px;
  }
}
@media (max-width: 620px) {
  .ac-map-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .ac-container {
    width: min(100% - 24px, 1180px);
  }
  .ac-hero-card {
    border-radius: 24px;
  }
  .ac-section {
    padding: 64px 0;
  }
  .ac-hero h1 {
    font-size: 44px;
  }
  .ac-btn {
    width: 100%;
  }
  .ac-plan-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .ac-menu-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-left: auto;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    z-index: 10001;
  }

  .ac-menu-toggle span {
    display: block !important;
    width: 30px;
    height: 3px;
    margin: 4px 0;
    background: #1f1f1f !important;
    border-radius: 999px;
  }

  .ac-logo {
    max-width: calc(100% - 64px);
  }

  .ac-logo img {
    width: min(260px, 70vw);
  }
}
.ac-btn-primary {
  background: var(--ac-red) !important;
  color: #ffffff !important;
}

.ac-btn-primary:hover {
  background: var(--ac-red-dark) !important;
}

.ac-btn-secondary {
  background: var(--ac-red) !important;
  color: #ffffff !important;
  border: 0 !important;
}

.ac-btn-secondary:hover {
  background: var(--ac-red-dark) !important;
}

.ac-hero-actions a.ac-btn.ac-btn-primary,
.ac-hero-actions a.ac-btn.ac-btn-primary:link,
.ac-hero-actions a.ac-btn.ac-btn-primary:visited {
  display: inline-flex !important;
  background-color: #8f1d21 !important;
  color: #ffffff !important;
  border: 0 !important;
  padding: 13px 22px !important;
  border-radius: 999px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

.ac-hero-actions a.ac-btn.ac-btn-primary:hover {
  background-color: #681316 !important;
}

.ac-hero-actions a.ac-btn.ac-btn-secondary,
.ac-hero-actions a.ac-btn.ac-btn-secondary:link,
.ac-hero-actions a.ac-btn.ac-btn-secondary:visited {
  display: inline-flex !important;
  background-color: transparent !important;
  color: #ffffff !important;
  border: 2px solid rgba(255,255,255,.65) !important;
  padding: 13px 22px !important;
  border-radius: 999px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

.ac-communities .ac-btn-primary {
    background: #8f1d21 !important;
    color: #ffffff !important;
    border: 0 !important;
}

.ac-communities .ac-btn-primary:hover {
    background: #681316 !important;
}

.ac-header .ac-phone {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 11px 18px !important;
  color: #ffffff !important;
  background: #8f1d21 !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.ac-header .ac-phone:hover {
  background: #681316 !important;
  color: #ffffff !important;
}

@media (max-width: 700px) {
  .ac-header .ac-phone {
    display: none !important;
  }
}

/* Center spec home cards horizontally */
.ac-specs .ac-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 360px));
  gap: 28px;
  justify-content: center;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
}

.ac-specs .ac-home-card {
  width: 100%;
  max-width: 360px;
}

@media (max-width: 767px) {
  .ac-specs .ac-card-grid {
    grid-template-columns: minmax(0, 360px);
  }
}