:root {
  color-scheme: light;
  --ink: #3d3a32;
  --rs_dark: #194646;
  --rs_light: #8CD7CB;
  --rs_offwhite: #F2F3E9;
  --lightFont:#F2F0E3;
  --max-width: 1380px;
  --Moret: "Moret-Book", serif;
  --Inter: "Inter", sans-serif;
}

@font-face {
  font-family: "Moret-Book";
  src: url("../fonts/Moret-Book.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GT America Regular";
  src: url("../fonts/GT-America-Standard-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GT America Medium";
  src: url("../fonts/GT-America-Standard-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--rs_offwhite);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

main {
  
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.full-container {
  width: 95%;
  margin: 0 auto;
}

.center {
  text-align: center;
}

.lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  line-height: 40px;
  margin: 0 auto 70px;
  max-width: 1060px;
  color: #2D2B28;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: 1px solid transparent;
}

.button-watch {
  width : 360px;
}

.width1052 {
  width: 1052px;
  margin: 0 auto;
}

h1 {
  font-family: var(--Moret);
  font-size: clamp(28px, 4vw, 48px);
  line-height: clamp(28px, 4vw, 55px);
  letter-spacing: 0%;
  font-weight: 300;
  margin-bottom: 60px;
  color: var(--rs_dark);
}

h2 {
  font-family: var(--Moret);
  font-size: clamp(28px, 4vw, 48px);
  line-height: clamp(28px, 4vw, 55px);
  letter-spacing: 0%;
  font-weight: 300;
  margin-bottom: 60px;
  color: var(--rs_dark);
}

p {
  font-family: var(--Inter);
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 100%;
  color: var(--rs_dark);
  
}

.button-light {
  background: var(--rs_light);
  color: var(--rs_dark);
  font-family: var(--Inter) !important;
  border-color: var(--rs_light);
  margin-bottom: 0px;
}

.button-light:hover {
  background:  var(--rs_dark);
  color: var(--rs_light);
  border-color: var(--rs_light);
}

.button-dark {
  background: var(--rs_dark) !important;
  color: var(--lightFont) !important;
  font-family: var(--Inter) !important;
  width: 365px;
}

.button-dark:hover {
  background: transparent !important;
  color: var(--rs_dark) !important;
  border-color: var(--rs_dark) !important;
}

.button-cream {
  background: var(--form-cream);
  color: #7B96B3;
  border-color: #e2dac5;
}

.button-cream:hover {
  background: transparent;
  color: #e2dac5;
  border-color:  #e2dac5;
}

.button-cream-footer {
  background: transparent;
  color: #f2f0e3;
  border-color: #e2dac5;
}

.button-cream-footer:hover {
  background: #fff;
  color: #333;
}


.site-header {
  background: var(--rs_dark);
  padding: 20px 0;
}

.header-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand img {
  width: 450px;
  height: 54px;
}

.header-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero {
  background: url("../img/hero.jpg") center/cover no-repeat;
  padding: 70px 0;
  min-height: 85vh;
  position: relative;
  
}

.page-ticker {
  background-color: var(--rs_light);
  color: var(--rs_dark) ;
  
  overflow: hidden;
}
.page-ticker .marquee {
  position: relative;
  display: flex;
  animation: marquee 100s linear infinite;
}
.page-ticker .marquee .marquee__inner {
  white-space: nowrap;
  min-width: 100%;
  text-align: center;
  font-size: 25px;
  line-height: 35px;
  font-weight: 400;
  font-family: var(--Moret);
  letter-spacing: 0;
  display: flex;
  padding: 4px 0;
}
.page-ticker .marquee .marquee__inner span {
  padding: 10px;
  padding-right: 40px;
}

@keyframes marquee {
  0% {
    transform: translatex(0%);
  }
  100% {
    transform: translatex(-3000px);
  }
}

.garden-lead {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 40px;
  margin: 0 auto 30px;
  text-transform: uppercase !important;
  max-width: 1060px;
  color: #2D2B28;
}

.garden-sublead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  line-height: 40px;
  margin: 0 auto 40px;
  
  max-width: 1060px;
  color: #2D2B28;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
}

.hero-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-text {
  max-width: 680px;
  text-align:  center;
  color: var(--rs_dark);
}

.hero-text p {
  font-family: var(--Moret);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 60px);
  line-height: clamp(42px, 4vw, 65px);
  margin: 0;
}

.hero-inner--centered {
  justify-content: center;
  align-items: center;
  height: 100%;
}


.thank-form {
  background: #F2F0E3;
  color:#6B6C50;
  padding: 34px 32px;
  width: min(100%, 580px);
  box-shadow: 0 20px 40px rgba(35, 35, 35, 0.25);
  text-align: center;
}

.thank-form h1 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 40px;
  margin: 0 0 20px;
}

.thank-form h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  line-height: 32px;
  margin: 30px 0 12px; 
  margin-bottom: 60px;

}

.thank-form p {
  margin: 0;
  margin-bottom: 20px;
  font-size: 16px; 
}

.thank-form .notes {
  font-size: 14px; 
  opacity: 0.75;
}


.hero-form {
  background: var(--rs_dark);
  color: var(--rs_light);
  padding: 34px 32px;
  width: min(100%, 380px);
  box-shadow: 0 20px 40px rgba(35, 35, 35, 0.25);
}

.hero-form h2 {
  font-family: var(--Moret);
  
  font-weight: 300;
  font-size: 35px;
  line-height: 100%;
  margin: 0 0 20px;
}

label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: rgb(242, 240, 227)
}

input:not([type="submit"]),
select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding: 8px 4px 12px;
  color: var(--rs_light);
  font-family: var(--Inter);
  
  margin-bottom: 18px;
  font-size: 0.95rem;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

input:not([type="submit"])::placeholder {
  color:var(--rs_light);
  padding-bottom: 2px;
}

input[type="submit"] {
  cursor: pointer;
  font-family: var(--Inter);
}



input::placeholder {
  color: rgba(255, 255, 255, 0.65);
  
}

[type="text"]:focus {
 
  
}

select {
  color: var(--white);
  appearance: none;
  background-image: url("../img/down.svg");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 12px;
  padding-right: 24px;
}


select option {
  background: #e7e5d0 !important;
  color: #525438 !important;
}

.hero-form .button {
  width: 100%;
  margin-top: 10px;
}

.section {
  padding: 70px 0;
}

.section-cream {
  background: var(--cream);
}

.section-sand {
  background: var(--sand);
}

.section-light {
  background: var(--rs_light);
  color:var(--rs_dark)
}

.media-frame {
  position: relative;
  border: 0px solid #ebe7d8;
  background: #ebe7d8;
}

.media-frame img {
  width: 100%;
  height: auto;
}

.carousel-wrap {
  position: relative;
  margin-top: 30px;
}

.fade_gallery {
  position: relative;
  line-height: 0;
}

.fade_gallery img {
  width: 100%;
}

.fade_gallery > div {
  position: relative;
}

.fade_gallery .slick-slide > div {
  position: relative;
}

.fade_gallery .caption {
  font-family: var(--serif);
  font-style: italic;
  color: #f1eddf;
  position: absolute;
  bottom: 15px;
  left: 15px;
  margin: 0;
  font-size: 0.95rem;
  z-index: 5;
}

.fade_gallery.slick-initialized .caption {
  visibility: hidden;
  opacity: 0;
}

.fade_gallery .slick-slide.slick-active .caption {
  visibility: visible;
  opacity: 1;
}

.fade_gallery .slick-cloned .caption {
  display: none !important;
}

.fade_gallery .slick-dots {
  position: absolute;
  bottom: 10px;
  width: 100%;
  padding: 0;
  margin: 0;
  left: inherit;
  right: 10px;
  list-style: none;
  text-align: right;
  z-index: 10;
}

.fade_gallery .slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 1px;
  padding: 0;
  cursor: pointer;
  vertical-align: top;
}

.fade_gallery .slick-dots li button::before {
  content: "•";
  font-size: 9px;
  color: #f6f0ea;
  opacity: 0.5;
}

.fade_gallery .slick-dots li.slick-active button::before {
  color: #f6f0ea;
  opacity: 1;
}

.fade_gallery .slick-prev,
.fade_gallery .slick-next {
  z-index: 20;
}

.fade_gallery .slick-prev {
  left: 15px;
}

.fade_gallery .slick-next {
  right: 15px;
}

.fade_gallery .slick-prev:before,
.fade_gallery .slick-next:before {
  font-size: 30px;
  color: #f1eddf;
}

#autoplay-toggle {
  transition: opacity 0.5s ease-out;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20%;
  height: 20%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60px;
  background-image: url('../img/pause.svg');
  border: none;
  outline: none;
  cursor: pointer;
  background-color: transparent;
  z-index: 10;
  font-size: 0;
  padding: 0;
}

#autoplay-toggle:hover {
  opacity: 1;
}

#autoplay-toggle.playing {
  background-image: url('../img/pause.svg');
}

#autoplay-toggle.paused {
  background-image: url('../img/play.svg');
}

.play-button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
}

.play-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -50%);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #7d7a6e;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 46px;
}

.image-grid figure {
  margin: 0;
  border: 12px solid #efe9da;
  background: #efe9da;
}

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


.residence-grid article,.amenties-grid article {
  text-align: center;
}

.residence-grid img,.amenties-grid img {
  border: 0px solid #efe9da;
  width: 100%;
  height: 524px;
  object-fit: cover;
  background: #efe9da;
  margin-bottom: 18px;
}

.residence-grid h3 {
  font-family: var(--Moret);
  font-weight: 300;
  font-style: normal;
  font-size: 30px;
  line-height: 100%;
  margin: 30px 0 12px;
  color: var(--rs_dark);
}

.amenties-grid h3 {
  font-family: var(--Moret);
  font-weight: 300;
  font-style: normal;
  font-size: 30px;
  line-height: 100%;
  margin: 30px 0 12px;
  color: var(--rs_dark);
}

.residence-grid p,.amenties-grid p {
  margin: 0;
  font-size: 0.9rem;
}

.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
}

.slider-control.prev {
  left: 16px;
  background-image: url("../img/prev.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

.slider-control.next {
  right: 16px;
  background-image: url("../img/next.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}



.faq {
  border-top: 1px solid rgba(80, 76, 66, 0.3);
}

.faq details {
  border-bottom: 1px solid rgba(80, 76, 66, 0.3);
  padding: 18px 0;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding-right: 24px;
  font-family: var(--Moret);
  font-weight: 300;
  font-style: normal;
  font-size: 30px;
  line-height: 100%;
  color: var(--rs_dark);
  padding-bottom: 20px;
}

.faq summary::-webkit-details-marker {
  display: none;
}


.accordion-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.accordion-h,
.accordion-v {
  position: absolute;
  background-color: var(--rs_dark);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.accordion-h {
  width: 100%;
  height: 1px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.accordion-v {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq details.is-open .accordion-h {
  transform: translateY(-50%) rotate(180deg);
}

.faq details.is-open .accordion-v {
  transform: translateX(-50%) rotate(270deg);
  opacity: 0;
}

.faq .faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-bottom:30px;
  will-change: max-height, opacity;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}

.faq details[open] .faq-content {
  opacity: 1;
}

.faq p {
  margin: 14px 0 0;
  
  font-family: var(--Inter);
  font-size: 15px;
  line-height: 22px;
  width: 830px;
}

.appointment {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.appointment-info h2 {
  font-family: var(--Moret);
  font-size: 48px;
  line-height: 55px;
  letter-spacing: 0%;
  margin: 0 0 20px;
  margin-bottom: 40px;
}

.appointment-info p {
   font-size: 28px;
   line-height  : 40px;
  margin: 0 0 16px;
}

.notes {
  font-size: 0.85rem;
  opacity: 0.75;
}

.appointment-form label {
  color: rgba(239, 233, 218, 0.85);
}

.appointment-form input,
.appointment-form select {
  border-bottom: 1px solid var(--rs_dark);
  margin-bottom: 16px;
}

.appointment-form input:focus,
.appointment-form select {
  border-bottom: 1px solid var(--rs_dark);
  margin-bottom: 16px;
}

.appointment-form input::placeholder,.appointment-form input {
  color: var(--rs_dark);
  
}

.appointment-form .button {
  width: 200px;
  margin-top: 12px;
}

.site-footer {
  background-color: var(--rs_dark);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.footer-brand {
  width: 50%;
}
.footer-brand img {
  height: 110px;
  width: auto;
}

.footer-cols {
  display: flex;
  gap: 60px;
  flex: 1;
  justify-content: center;
}

.footer-col h5 {
  font-family: var(--Moret);
  font-weight: 300;
  font-style: normal;
  font-size: 30px;
  line-height: 100%;
  margin: 30px 0 12px;
  color: var(--rs_light);
}

.footer-col p {
  font-family: var(--Inter);
  font-size: 15px;
  line-height: 22px;
  color: var(--rs_light);
  margin: 0;
}

.footer-col img {
  max-height: 76px;
  width: auto;
  opacity: 0.9;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  align-self: stretch;
  gap: 4px;
}

.footer-legal a,
.footer-legal span {
  font-family: var(--Inter);
  font-size: 0.75rem;
  color: var(--rs_light);
  opacity: 0.75;
  text-decoration: none;
  white-space: nowrap;
}

.footer-legal a:hover {
  opacity: 1;
}

.earl-logo {
  display: block;
  text-align: center;
  position: relative;
  z-index: 1;
}

.earl-logo img {
  height: 40px;
  width: auto;
  margin: 0 auto;
  opacity: 0.8;
}

.earl-logo:hover img {
  opacity: 1;
}

/* Garden Feature Split */
.garden-feature-split {
  display: grid;
  grid-template-columns: 400px 80px 1fr;
  align-items: center;
  gap: 0;
  padding-left: 160px;
  padding-right: 160px;
}



.garden-feature-video {
  padding-right: 20px;
}

.video-thumb {
  position: relative;
  display: block;
}

.video-thumb img {
  width: 100%;
  display: block;
}

.video-thumb-vertical {
  padding-bottom: 177.78%;
}

.video-thumb-vertical iframe,
.video-thumb-vertical .video-play-trigger {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-thumb-vertical iframe {
  border: 0;
}

.video-thumb-vertical .video-play-trigger {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.video-thumb-vertical .video-play-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.video-label {
  font-family: var(--serif);
  font-style: italic;
  color: #c8b400;
  font-size: 1rem;
  text-align: center;
  line-height: 1.3;
}

.video-label strong {
  font-style: normal;
  font-size: 1.7rem;
  display: block;
  letter-spacing: 0.04em;
}

.video-play {
  display: block;
  width: 62px;
  height: 62px;
  text-decoration: none;
}

.video-play svg {
  width: 100%;
  height: 100%;
}

.video-caption {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #3e3b32;
  border-top: 1px solid #b5a98a;
  padding-top: 10px;
}

.garden-feature-details {
  text-align: center;
}

.garden-feature-heading {
  font-family: var(--sans);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 36px;
  color: #3e3b32;
}

.garden-feature-list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  border-top: 1px solid #b5a98a;
}

.garden-feature-list li {
  padding: 14px 0;
  border-bottom: 1px solid #b5a98a;
  font-size: 20px;
  color: #3e3b32;
  text-align: center;
}

.garden-feature-price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  text-align: center;
  color: #3e3b32;
  margin: 30px 0 24px;
}

.garden-feature-cta {
  display: block;
  text-align: center;
  width: 360px;
  margin: 0 auto;
}

.developerlogo {
  margin: 0 auto;
}

@media (max-width: 1500px) {
  .site-footer {
    padding-left: 60px;
    padding-right: 60px;
  }

  .full-container {
    width: calc(100% - 80px);
  }

  .container {
    width: min(100% - 80px, var(--max-width));
  }

  .garden-feature-split {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 1024px) {

  .section {
    padding: 30px 0;
  }
  .image-grid,
  .residence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .amenties-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq p {

  width: 100%;
}

  .amenties-grid img {
  border: 0px solid #efe9da;
  width: 100%;
  height : unset;
  object-fit: unset;
  background: #efe9da;
  margin-bottom: 18px;
}

  .garden-feature-split {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .footer-legal {
    justify-content: flex-start;
  }

  .developerlogo {
  margin: unset;
}
}


[type="text"]:focus,
[type="password"]:focus,
[type="date"]:focus,
[type="datetime"]:focus,
[type="datetime-local"]:focus,
[type="month"]:focus,
[type="week"]:focus,
[type="email"]:focus,
[type="number"]:focus,
[type="search"]:focus,
[type="tel"]:focus,
[type="time"]:focus,
[type="url"]:focus,
[type="color"]:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}



 .cl {
    height: 35px;
  }

.section-video {
  padding: 70px 0;
}

.video_row {
  position: relative;
  width: min(100% - 32px, 1400px);
  margin: 0 auto;
  border: 0px solid #ebe7d8;
  background: #ebe7d8;
}

.video_row .poster {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: 1;
}

.video_row .overlay_video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: 2;
}

.video_row .button-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1);
  width: 80px;
  height: 80px;
  cursor: pointer;
}

.video_row .button-play:hover {
  opacity: 0.5;
}

.responsive-video {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.video-constrained {
  width: 80%;
  margin: 0 auto;
}

.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  margin: 0 0 12px;
}

.form-success p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.85;
}

.form-pot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.form-error {
  color: rgba(255, 200, 200, 0.9);
  font-size: 0.9rem;
  margin: 8px 0 0;
  text-align: center;
}

.appointment-form select
 {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("../img/down dark.svg");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 12px;
  padding-right: 24px;
}



@media (max-width: 720px) {

  .video_row {
    border-width: 8px;
  }

  .video_row .button-play {
    width: 60px;
    height: 60px;
  }

  .header-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }

  .button-watch {
    width: 90%;
  }
  .container {
    width: min(100% - 40px, var(--max-width));
  }

  .garden-feature-video {
    padding-right: 0;
  }

  .garden-feature-details {
    padding-left: 20px;
    padding-right: 20px;
  }

 .video-constrained {
  width: 100%;
  margin: 0 auto;
}

.appointment-info p {
  font-size: 0.95rem;
}

  .video-thumb img {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }

  .video-caption {
    text-align: center;
  }

  .header-cta {
    text-align: center;
  }

  .hero {
    padding: 50px 0;
  }

  .hero-inner {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .hero-text {
    text-align: center;
    max-width: 100%;
  }

  .image-grid,
  .residence-grid {
    grid-template-columns: 1fr;
  }

  .amenties-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .garden-feature-split {
    grid-template-columns: 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .garden-feature-cta {
    width: 100%;
  }

  .full-container {
    width: calc(100% - 40px);
  }

    .center {
    align-items: center;
  }

  .garden-feature-divider {
    width: auto;
    height: 1px;
    align-self: auto;
    background: #b5a98a;
    margin: 40px 0;
  }

  

  .lead {
    text-align: center;
  }

  .partner-logos {
    gap: 0 15px;
    max-width: 100%;
     margin: 5px auto 5px;
  }

  .partner-block {
    width: 40%;
    margin-bottom: 20px;
  }

  .partner-block h5 {
    font-size: 0.80em;
    letter-spacing: 0.03em;
  }

  .site-footer {
    padding-left: 10px;
    padding-right: 10px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-brand {
    width: 100%;
    display: flex;
    justify-content: left;
  }

  .footer-brand img {
    height: 120px;
  }

  .footer-cols {
    flex-wrap: wrap;
    gap: 0;
    width: 100%;
  }

  .footer-col:first-child {
    flex: 0 0 100%;
    margin-bottom: 16px;
  }

  .footer-col:not(:first-child) {
    flex: 1;
  }

  .footer-col h5 {
    font-size: 22px;
    margin: 0 0 10px;
  }

  .footer-col img {
    max-height: 50px;
  }

  .footer-legal {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }

  .footer-legal > *:not(:last-child)::after {
    content: ' | ';
    display: inline;
    opacity: 0.75;
    padding: 0 6px;
  }

  .appointment-form .cls-1 {
    fill : var(--rs_dark) !important
  }


  .partner-block img {
    height: 26px;
  }

  .partner-block:first-child img {
    height: 50px;
  }
}