:root {
  --ac-red: #8f1d21;
  --ac-red-dark: #681316;
  --ac-charcoal: #1f1f1f;
  --ac-muted: #666;
  --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-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ac-menu > ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ac-menu li {
  position: relative;
}

.ac-menu a {
  display: block;
  padding: 12px 14px;
  color: #252525;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  transition: .2s ease;
}

.ac-menu a:hover {
  color: var(--ac-red);
  background: rgba(143,29,33,.08);
}
/*
.ac-menu li ul {
  min-width: 245px;
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--ac-border);
  border-radius: 18px;
  box-shadow: var(--ac-shadow);
}

.ac-menu li:hover > ul {
  display: block;
}

.ac-menu li ul a {
  border-radius: 12px;
  white-space: nowrap;
}
*/
.ac-phone {
  padding: 11px 18px;
  color: #fff;
  background: var(--ac-red);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

.ac-phone:hover {
  color: #fff;
  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: #fff;
  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: #fff;
  background: var(--ac-red);
}

.ac-btn-primary:hover {
  color: #fff;
  background: var(--ac-red-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

.ac-btn-secondary {
  color: #fff;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.35);
}

.ac-btn-secondary:hover {
  color: #fff;
  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: #fff;
  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: #ddd;
}

.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: #fff;
  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;
}

/* 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: #fff;
}

.ac-callout h2 {
  color: #fff;
}

.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: #fff;
  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;
}

/* Footer compatibility */

.footer,
.footer * {
  box-sizing: border-box;
}

/* Responsive */

@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: #fff;
    border: 1px solid var(--ac-border);
    border-radius: 22px;
    box-shadow: var(--ac-shadow);
  }

  .ac-menu-open .ac-menu > ul {
    display: block;
  }

  .ac-menu li ul {
    position: static;
    display: block;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 14px;
    background: transparent;
  }

  .ac-two-col,
  .ac-card-grid,
  .ac-feature-grid,
  .ac-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .ac-hero {
    min-height: auto;
  }

  .ac-hero-content {
    padding: 70px 0;
  }
}

@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-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 > li > a {
  display: block;
  padding: 12px 15px;
  color: #222;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  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: 720px;
  display: none;
  grid-template-columns: 1fr 1.4fr 1.5fr;
  align-items: start;
  gap: 24px;
  padding: 26px;
  background: #fff;
  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 10px;
  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 a,
.ac-dropdown-menu li a {
  display: block;
  padding: 9px 10px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  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: #fff;
  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;
}

@media (max-width: 980px) {
  .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-mega-menu .ac-mega-col ul,
.ac-mega-menu .ac-mega-col li,
.ac-mega-menu .ac-mega-col a {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.ac-mega-menu .ac-mega-col ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.ac-mega-menu .ac-mega-col li a {
  padding: 9px 10px !important;
  color: #333 !important;
  text-decoration: none !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

.ac-mega-menu .ac-mega-col li a:hover {
  color: var(--ac-red) !important;
  background: rgba(143, 29, 33, .08) !important;
}

.ac-mega-menu {
  overflow: visible !important;
}

.ac-mega-menu .ac-mega-col {
  display: block !important;
}

.ac-mega-menu .ac-mega-col > ul {
  display: block !important;
  position: static !important;
  width: auto !important;
  min-width: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 12px 0 0 0 !important;
}

.ac-mega-menu .ac-mega-col > ul > li {
  display: block !important;
  position: static !important;
}

.ac-mega-menu .ac-mega-col > ul > li > a {
  display: block !important;
  padding: 8px 10px !important;
  color: #333 !important;
  background: transparent !important;
  white-space: normal !important;
}

.ac-no-items {
  display: block;
  padding: 8px 10px;
  color: #777;
  font-size: 14px;
  font-weight: 700;
}

.footer {
	padding: 72px 0 28px;
	color: #f7f1ea;
	background: #161616;
}

.footer h3 {
	margin: 0 0 22px;
	color: #fff;
	font-size: 26px;
	font-weight: 900;
}

.footer a {
	color: #f5d7a1;
	text-decoration: none;
}

.footer a:hover {
	color: #fff;
	text-decoration: underline;
}

.footer-grid {
	font-size: 15px;
	line-height: 1.75;
}

.footer input,
.footer select,
.footer textarea {
	width: 100%;
	margin-bottom: 14px;
	padding: 13px 15px;
	color: #222;
	background: #fff;
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 14px;
	outline: none;
}

.footer textarea {
	min-height: 130px;
	resize: vertical;
}

.footer input[type="submit"],
#sendText {
	width: auto;
	padding: 13px 22px;
	color: #fff;
	background: var(--ac-red);
	border: 0;
	border-radius: 999px;
	font-weight: 900;
}

.footer input[type="submit"]:hover,
#sendText:hover {
	background: var(--ac-red-dark);
}

.footer-grids {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
}

.footer .col-md-6 {
	width: auto;
	float: none;
}

.footer-grids1 {
	margin-top: 46px;
	padding-top: 22px;
	border-top: 1px solid rgba(255,255,255,.14);
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
}

.footer-grids1 ul {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-grids1 p {
	margin: 0;
	color: rgba(255,255,255,.65);
}

.footer .clearfix {
	display: none;
}

@media (max-width: 800px) {
	.footer-grids {
		grid-template-columns: 1fr;
	}

	.footer-grids1 {
		display: block;
	}

	.footer-grids1-right {
		margin-top: 18px;
	}
}

body .footer {
	padding: 72px 0 28px !important;
	background: #161616 !important;
	color: #f7f1ea !important;
}

body .footer h3 {
	color: #ffffff !important;
	font-size: 26px !important;
	font-weight: 900 !important;
}

body .footer a {
	color: #f5d7a1 !important;
}

body .footer-grids {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 56px !important;
}

body .footer .col-md-6 {
	width: auto !important;
	float: none !important;
}

body .footer input,
body .footer select,
body .footer textarea {
	width: 100% !important;
	margin-bottom: 14px !important;
	padding: 13px 15px !important;
	border-radius: 14px !important;
}

body #sendText {
	width: auto !important;
	padding: 13px 22px !important;
	background: var(--ac-red) !important;
	color: #ffffff !important;
	border: 0 !important;
	border-radius: 999px !important;
	font-weight: 900 !important;
}

body .footer-grids1 ul {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 14px !important;
	list-style: none !important;
	padding: 0 !important;
}

body .footer-grids1 {
	margin-top: 46px !important;
	padding-top: 22px !important;
	border-top: 1px solid rgba(255,255,255,.14) !important;
}
.footer {
  background: #161616;
  color: #f7f1ea;
  padding: 70px 0 30px;
}

.footer .container {
  max-width: 1200px;
  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;
}

.footer h3 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer a {
  color: #f5d7a1;
  text-decoration: none;
}

.footer a:hover {
  color: #ffffff;
}

.footer input,
.footer select,
.footer textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  border: 1px solid #444;
  border-radius: 10px;
  background: #ffffff;
  color: #222222;
}

#sendText {
  background: #8f1d21;
  color: #ffffff;
  border: 0;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: bold;
  cursor: pointer;
}

#sendText:hover {
  background: #73171a;
}

.footer-grids1 {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
}

.footer-grids1 ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-grids1 li {
  margin: 0;
  padding: 0;
}

.footer-grids1-right p {
  color: #aaaaaa;
}

.footer .clearfix {
  display: none;
}

@media (max-width: 768px) {
  .footer-grids {
    grid-template-columns: 1fr;
  }
}
.test{
}