:root {
  --hc-gold: #d0a654;
  --hc-gold-soft: #ddbc7c;
  --hc-gold-dark: #76552b;
  --hc-ink: #24231f;
  --hc-muted: #74716a;
  --hc-paper: #faf9f5;
  --hc-white: #fff;
  --hc-line: rgba(36, 35, 31, 0.16);
}

/* Hide the global WordPress header on the Heliconia project page only. */
body.single-projects.postid-18222 #header {
  display: none !important;
}

.hc-site-header,
.hc-site-header * {
  box-sizing: border-box;
}

.hc-site-header {
  width: 100%;
  position: fixed;
  z-index: 9990;
  top: 0;
  left: 0;
  overflow: visible !important;
  color: #fff;
  background: linear-gradient(180deg, rgba(14, 17, 13, 0.48), rgba(14, 17, 13, 0));
  transition: color 280ms ease, background-color 280ms ease, box-shadow 280ms ease, backdrop-filter 280ms ease;
}

body.admin-bar .hc-site-header {
  top: 32px;
}

.hc-site-header__inner {
  width: min(1480px, calc(100% - 64px));
  min-height: 104px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 36px;
  overflow: visible !important;
  transition: min-height 280ms ease;
}

.hc-site-header__brand {
  width: clamp(235px, 21vw, 300px);
  display: block;
  position: relative;
  z-index: 2;
  padding: 10px 0;
  overflow: visible !important;
  line-height: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
  transition: width 280ms ease, filter 280ms ease;
}

.hc-site-header__brand img {
  width: 100%;
  height: auto;
  display: block;
  max-height: none !important;
  object-fit: contain;
  object-position: center;
  overflow: visible !important;
  clip-path: none !important;
}

.hc-site-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 36px);
}

.hc-site-header__nav--right {
  justify-content: flex-end;
}

.hc-site-header__mobile-nav {
  display: none;
}

.hc-site-header__nav a {
  color: inherit;
  position: relative;
  padding: 10px 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.42);
  white-space: nowrap;
}

.hc-site-header__nav a::after {
  width: 0;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 3px;
  left: auto;
  content: "";
  background: var(--hc-gold);
  transition: width 220ms ease;
}

.hc-site-header__nav a:hover::after,
.hc-site-header__nav a:focus-visible::after {
  width: 100%;
  right: auto;
  left: 0;
}

.hc-site-header__nav a:focus-visible,
.hc-site-header__brand:focus-visible,
.hc-site-header__toggle:focus-visible {
  outline: 2px solid var(--hc-gold);
  outline-offset: 4px;
}

.hc-site-header__nav .hc-site-header__brochure {
  padding: 12px 16px;
  border: 1px solid rgba(208, 166, 84, 0.8);
}

.hc-site-header__nav .hc-site-header__brochure::after {
  display: none;
}

.hc-site-header__nav .hc-site-header__brochure:hover,
.hc-site-header__nav .hc-site-header__brochure:focus-visible {
  color: #222a1e;
  background: var(--hc-gold);
}

.hc-site-header__toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.hc-site-header__toggle span {
  width: 24px;
  height: 1px;
  display: block;
  background: currentColor;
  transition: transform 220ms ease, opacity 180ms ease;
}

.hc-site-header.hc-header--scrolled,
.hc-site-header.hc-menu-open {
  color: #26301f;
  background: rgba(250, 249, 245, 0.96);
  box-shadow: 0 8px 30px rgba(25, 28, 21, 0.1);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.hc-site-header.hc-header--scrolled .hc-site-header__inner {
  min-height: 78px;
}

.hc-site-header.hc-header--scrolled .hc-site-header__brand,
.hc-site-header.hc-menu-open .hc-site-header__brand {
  width: clamp(205px, 18vw, 250px);
  filter: none;
}

.hc-site-header.hc-header--scrolled .hc-site-header__nav a,
.hc-site-header.hc-menu-open .hc-site-header__nav a {
  text-shadow: none;
}

.hc-site-header.hc-menu-open .hc-site-header__toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hc-site-header.hc-menu-open .hc-site-header__toggle span:nth-child(2) {
  opacity: 0;
}

.hc-site-header.hc-menu-open .hc-site-header__toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1120px) {
  .hc-site-header__inner {
    width: min(100% - 40px, 1480px);
    min-height: 88px;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 14px;
  }

  .hc-site-header__nav {
    display: none;
  }

  .hc-site-header__brand {
    width: min(255px, 64vw);
    grid-column: 2;
    justify-self: center;
  }

  .hc-site-header__toggle {
    display: flex;
    grid-column: 3;
    justify-self: end;
  }

  .hc-site-header__mobile-nav {
    width: 100%;
    max-height: calc(100vh - 78px);
    position: absolute;
    top: 100%;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 28px 28px;
    color: #26301f;
    background: rgba(250, 249, 245, 0.98);
    box-shadow: 0 18px 30px rgba(25, 28, 21, 0.12);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  .hc-site-header.hc-menu-open .hc-site-header__mobile-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .hc-site-header__mobile-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid rgba(36, 35, 31, 0.12);
    color: inherit;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
  }

  .hc-site-header__mobile-nav .hc-site-header__brochure {
    margin-top: 14px;
    border: 1px solid var(--hc-gold);
    text-align: center;
  }

  .hc-site-header.hc-header--scrolled .hc-site-header__inner {
    min-height: 72px;
  }

  .hc-site-header.hc-header--scrolled .hc-site-header__brand,
  .hc-site-header.hc-menu-open .hc-site-header__brand {
    width: min(230px, 58vw);
  }
}

@media (max-width: 782px) {
  body.admin-bar .hc-site-header {
    top: 46px;
  }
}

#heliconia-page,
#heliconia-page * {
  box-sizing: border-box;
}

#heliconia-page {
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  overflow: hidden;
  color: var(--hc-ink);
  background: var(--hc-white);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

#heliconia-page h1,
#heliconia-page h2,
#heliconia-page h3,
#heliconia-page p,
#heliconia-page figure,
#heliconia-page ul {
  margin: 0;
}

#heliconia-page h1,
#heliconia-page h2,
#heliconia-page h3 {
  color: inherit;
  font-family: inherit;
  font-weight: 200;
  letter-spacing: -0.055em;
  line-height: 0.92;
  text-transform: uppercase;
}

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

#heliconia-page a {
  color: inherit;
  text-decoration: none;
}

#heliconia-page .hc-anchor {
  scroll-margin-top: 86px;
}

.hc-index,
.hc-overline {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hc-index {
  color: var(--hc-gold);
}

.hc-index--light {
  color: #fff;
}

.hc-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 220ms ease, background-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.hc-button--gold {
  color: var(--hc-ink) !important;
  background: var(--hc-gold);
}

.hc-button--gold:hover,
.hc-button--gold:focus-visible {
  color: var(--hc-gold) !important;
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

#heliconia-page a:focus-visible {
  outline: 2px solid var(--hc-gold);
  outline-offset: 4px;
}

/* Hero */
.hc-hero {
  min-height: min(960px, 96vh);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  background: #171914;
}

.hc-hero__image,
.hc-hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hc-hero__image {
  object-fit: cover;
  object-position: center 58%;
}

.hc-hero__veil {
  background:
    linear-gradient(180deg, rgba(11, 14, 11, 0.52), rgba(11, 14, 11, 0.02) 40%, rgba(11, 14, 11, 0.58)),
    linear-gradient(90deg, rgba(11, 14, 11, 0.2), transparent 50%);
}

.hc-hero__content {
  width: min(970px, calc(100% - 48px));
  position: relative;
  z-index: 2;
  text-align: center;
}

.hc-overline {
  margin-bottom: 24px !important;
  color: rgba(255, 255, 255, 0.75);
}

#heliconia-page .hc-hero h1 {
  color: #fff;
  font-size: clamp(5.2rem, 12vw, 11.5rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.78;
}

#heliconia-page .hc-hero h1 span {
  display: block;
  font-size: 0.44em;
  font-weight: 200;
  letter-spacing: 0.06em;
}

.hc-hero__intro {
  max-width: 430px;
  margin: 38px auto 0 !important;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  line-height: 1.8;
  text-transform: uppercase;
}

.hc-hero .hc-button {
  margin-top: 35px;
}

.hc-hero__address {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: 38px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.6;
  text-align: right;
  text-transform: uppercase;
}

/* Promise */
.hc-overview {
  min-height: 880px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--hc-paper);
}

.hc-overview__statement {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 130px);
}

#heliconia-page .hc-overview h2 {
  margin-top: 48px;
  color: var(--hc-gold);
  font-size: clamp(4.3rem, 8vw, 9rem);
}

#heliconia-page .hc-overview h2 strong {
  font-weight: 600;
}

.hc-overview__statement > p:last-child {
  max-width: 420px;
  margin-top: 48px !important;
  color: var(--hc-muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.hc-overview__image {
  min-height: 880px;
  position: relative;
  overflow: hidden;
  background: #ddd;
}

.hc-overview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 500ms ease;
}

.hc-overview__image:hover img {
  scale: 1.025;
  filter: saturate(1.05);
}

.hc-overview__image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 26px 34px;
  color: #fff;
  background: linear-gradient(0deg, rgba(19, 20, 17, 0.78), transparent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hc-facts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0 4vw;
  color: #fff;
  background: var(--hc-gold);
}

.hc-facts div {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.hc-facts div:last-child {
  border-right: 0;
}

.hc-facts strong {
  font-size: clamp(2.7rem, 5vw, 5.5rem);
  font-weight: 200;
  letter-spacing: -0.065em;
  line-height: 1;
}

.hc-facts span {
  margin-top: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

/* Homes */
.hc-homes,
.hc-amenities {
  padding: clamp(88px, 10vw, 160px) 4vw;
}

.hc-section-head {
  max-width: 1280px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 0.28fr 1.1fr 0.62fr;
  align-items: end;
  gap: 50px;
}

#heliconia-page .hc-section-head h2 {
  color: var(--hc-gold);
  font-size: clamp(4.2rem, 8vw, 8.8rem);
}

.hc-section-head > p:last-child {
  max-width: 420px;
  padding-bottom: 8px;
  color: var(--hc-muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.hc-home-types {
  max-width: 1280px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hc-line);
  border-bottom: 1px solid var(--hc-line);
}

.hc-home-types article {
  min-height: 235px;
  padding: 34px;
  border-right: 1px solid var(--hc-line);
  transition: color 300ms ease, background-color 300ms ease, transform 300ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 300ms ease;
}

.hc-home-types article:last-child {
  border-right: 0;
}

.hc-home-types article:hover {
  z-index: 1;
  color: #fff;
  background: var(--hc-gold);
  transform: translateY(-8px);
  box-shadow: 0 22px 52px rgba(96, 72, 33, 0.16);
}

.hc-home-types article:hover span,
.hc-home-types article:hover h3,
.hc-home-types article:hover p {
  color: #fff !important;
}

.hc-home-types span {
  color: var(--hc-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

#heliconia-page .hc-home-types h3 {
  margin-top: 36px;
  color: var(--hc-gold);
  font-size: clamp(2.8rem, 5vw, 5.6rem);
}

.hc-home-types p {
  margin-top: 14px !important;
  color: var(--hc-muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hc-interiors {
  max-width: 1440px;
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  grid-template-rows: repeat(2, 330px);
  gap: 18px;
}

.hc-interiors figure {
  position: relative;
  overflow: hidden;
}

.hc-interiors__living {
  grid-row: 1 / 3;
}

.hc-interiors img {
  height: 100%;
  object-fit: cover;
  transition: scale 800ms cubic-bezier(0.22, 1, 0.36, 1), filter 500ms ease;
}

.hc-interiors figure:hover img {
  scale: 1.045;
  filter: saturate(1.06);
}

.hc-interiors figcaption,
.hc-amenities__image figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  padding: 8px 11px;
  color: #fff;
  background: rgba(24, 24, 21, 0.55);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Masterplan */
.hc-masterplan {
  min-height: 940px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: #fff;
  background: var(--hc-gold);
}

.hc-masterplan__visual {
  min-height: 940px;
  background: #273029;
}

.hc-masterplan__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 500ms ease;
}

.hc-masterplan__visual:hover img {
  scale: 1.025;
  filter: saturate(1.07);
}

.hc-masterplan__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 130px);
}

#heliconia-page .hc-masterplan h2 {
  margin-top: 48px;
  color: #fff;
  font-size: clamp(4rem, 8vw, 8.8rem);
}

.hc-masterplan__copy > p:not(.hc-index) {
  max-width: 480px;
  margin-top: 36px !important;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.02rem;
  line-height: 1.8;
}

.hc-masterplan__numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.hc-masterplan__numbers div {
  padding: 25px 22px 25px 0;
}

.hc-masterplan__numbers strong,
.hc-masterplan__numbers span {
  display: block;
}

.hc-masterplan__numbers strong {
  font-size: 3.5rem;
  font-weight: 200;
  line-height: 1;
}

.hc-masterplan__numbers span,
.hc-masterplan ul {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hc-masterplan__numbers span {
  margin-top: 8px;
}

.hc-masterplan ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 34px;
  padding: 0;
  list-style: none;
}

/* Amenities */
.hc-amenities {
  background: var(--hc-paper);
}

.hc-section-head--wide {
  grid-template-columns: 0.28fr 1.1fr 0.62fr;
}

.hc-amenities__image {
  max-width: 1440px;
  min-height: 690px;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

.hc-amenities__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  transition: scale 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 500ms ease;
}

.hc-amenities__image:hover img {
  scale: 1.035;
  filter: saturate(1.06);
}

.hc-amenity-grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
}

.hc-amenity-grid span {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 20px 28px;
  border-right: 1px solid var(--hc-line);
  border-bottom: 1px solid var(--hc-line);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 260ms ease, background-color 260ms ease, padding-left 260ms ease;
}

.hc-amenity-grid span:nth-child(4n) {
  border-right: 0;
}

.hc-amenity-grid span:hover {
  padding-left: 36px;
  color: #fff;
  background: var(--hc-gold);
}

/* Choice */
.hc-choice {
  min-height: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 90px 24px;
  text-align: center;
  background: #fff;
}

.hc-choice > p {
  color: var(--hc-gold);
  font-size: 1.08rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

#heliconia-page .hc-choice h2 {
  margin-top: 30px;
  color: var(--hc-gold);
  font-size: clamp(5rem, 12vw, 12rem);
}

#heliconia-page .hc-choice h2 strong {
  font-weight: 600;
}

.hc-choice__facts {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--hc-line);
}

.hc-choice__facts span {
  padding: 22px 16px;
  border-right: 1px solid var(--hc-line);
  color: var(--hc-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hc-choice__facts span:last-child {
  border-right: 0;
}

/* Location */
.hc-location {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  background: var(--hc-paper);
}

.hc-location__map {
  min-height: 930px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(36px, 6vw, 90px);
  background: #fff;
}

.hc-location__map img {
  max-width: 650px;
  max-height: 780px;
  object-fit: contain;
  transition: scale 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 500ms ease;
}

.hc-location__map:hover img {
  scale: 1.025;
  filter: contrast(1.035);
}

.hc-location__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 130px);
}

#heliconia-page .hc-location h2 {
  margin-top: 46px;
  color: var(--hc-gold);
  font-size: clamp(3.8rem, 7vw, 8rem);
}

.hc-location__groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 36px;
  margin-top: 50px;
  border-top: 1px solid var(--hc-line);
}

.hc-location__groups article {
  padding: 23px 0;
  border-bottom: 1px solid var(--hc-line);
  transition: padding-left 260ms ease, border-color 260ms ease, background-color 260ms ease;
}

.hc-location__groups article:hover {
  padding-left: 16px;
  border-color: var(--hc-gold);
  background: rgba(208, 166, 84, 0.08);
}

.hc-location__groups span {
  color: var(--hc-gold-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hc-location__groups p {
  margin-top: 10px !important;
  color: var(--hc-muted);
  font-size: 0.82rem;
  line-height: 1.8;
}

.hc-location__note {
  margin-top: 16px !important;
  color: #99958d;
  font-size: 0.68rem;
}

/* Contact */
.hc-contact {
  min-height: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
}

.hc-contact__intro,
.hc-contact__form {
  padding: clamp(60px, 8vw, 130px);
}

.hc-contact__intro {
  color: #4d391f;
  background: var(--hc-gold);
}

.hc-flower {
  width: 58px;
  height: 58px;
  position: relative;
  margin-bottom: 45px;
}

.hc-flower i {
  width: 27px;
  height: 27px;
  position: absolute;
  display: block;
  border-radius: 100% 0 100% 0;
  background: #fff;
}

.hc-flower i:nth-child(1) { top: 0; left: 0; transform: rotate(90deg); }
.hc-flower i:nth-child(2) { top: 0; right: 0; transform: rotate(180deg); }
.hc-flower i:nth-child(3) { bottom: 0; left: 0; }
.hc-flower i:nth-child(4) { right: 0; bottom: 0; transform: rotate(270deg); }

.hc-contact .hc-index {
  color: var(--hc-gold-dark);
}

#heliconia-page .hc-contact h2 {
  margin-top: 45px;
  color: #fff;
  font-size: clamp(4rem, 8vw, 8.5rem);
}

.hc-contact__intro > p:not(.hc-index) {
  max-width: 500px;
  margin-top: 38px !important;
  color: #4d391f !important;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.8;
}

.hc-contact__details {
  margin-top: 55px;
}

.hc-contact__details p {
  margin-top: 25px !important;
  padding-top: 18px;
  border-top: 1px solid rgba(118, 85, 43, 0.32);
  color: #4d391f !important;
  font-size: 0.88rem !important;
  font-weight: 500;
  line-height: 1.7 !important;
}

.hc-contact__details span {
  display: block;
  margin-bottom: 8px;
  color: #4d391f !important;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hc-contact__details a {
  color: #3c2b17 !important;
  font-size: 1.08rem;
  font-weight: 600;
}

.hc-contact__details a:hover,
.hc-contact__details a:focus-visible {
  color: #fff !important;
}

.hc-contact__form {
  min-height: 720px;
  border-top: 1px solid var(--hc-line);
}

.hc-contact__form iframe {
  display: block;
  width: 100% !important;
  min-height: 650px;
  border: 0;
}

.hc-contact__form input:not([type="checkbox"]):not([type="radio"]),
.hc-contact__form select,
.hc-contact__form textarea {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-bottom: 1px solid var(--hc-line);
  border-radius: 0;
  background: transparent;
}

.hc-footer {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 70px;
  padding: 38px 4vw;
  color: #8b8881;
  background: #fff;
  font-size: 0.68rem;
  line-height: 1.7;
}

.hc-footer strong,
.hc-footer span {
  display: block;
  text-transform: uppercase;
}

.hc-footer strong {
  color: var(--hc-ink);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
}

.hc-footer span {
  color: var(--hc-gold);
  letter-spacing: 0.2em;
}

.hc-footer__brand {
  display: flex;
  align-items: center;
}

.hc-footer__logo {
  width: min(360px, 100%) !important;
  height: auto !important;
}

/* Reliable Elementor motion layer, activated by the small script in heliconia.html. */
.hc-motion-ready .hc-reveal {
  opacity: 0;
  transform: translate3d(0, 46px, 0);
  filter: blur(3px);
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 800ms ease;
  transition-delay: var(--hc-reveal-delay, 0ms);
}

.hc-motion-ready .hc-reveal.hc-is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.hc-motion-ready .hc-hero-intro {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 900ms ease,
    transform 1000ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--hc-reveal-delay, 0ms);
}

.hc-motion-ready .hc-hero-intro.hc-is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hc-motion-ready .hc-parallax {
  transform: translate3d(0, var(--hc-parallax-y, 0px), 0) scale(var(--hc-parallax-scale, 1.09));
  will-change: transform;
}

.hc-masterplan__visual {
  overflow: hidden;
}

@media (max-width: 980px) {
  .hc-overview,
  .hc-masterplan,
  .hc-location,
  .hc-contact {
    grid-template-columns: 1fr;
  }

  .hc-overview__image,
  .hc-masterplan__visual,
  .hc-location__map {
    min-height: 700px;
  }

  .hc-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .hc-facts div:nth-child(3) {
    border-right: 0;
  }

  .hc-section-head,
  .hc-section-head--wide {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hc-interiors {
    grid-template-rows: repeat(2, 260px);
  }

  .hc-amenity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hc-amenity-grid span:nth-child(2n) {
    border-right: 0;
  }

  .hc-contact__form {
    min-height: 650px;
  }
}

@media (max-width: 680px) {
  .hc-hero {
    min-height: 820px;
  }

  .hc-hero__image {
    object-position: 57% center;
  }

  #heliconia-page .hc-hero h1 {
    font-size: clamp(4.5rem, 25vw, 7rem);
  }

  .hc-hero__address {
    right: 24px;
    bottom: 24px;
  }

  .hc-overview__statement,
  .hc-masterplan__copy,
  .hc-location__copy,
  .hc-contact__intro,
  .hc-contact__form {
    padding: 72px 24px;
  }

  .hc-overview__image,
  .hc-masterplan__visual,
  .hc-location__map {
    min-height: 560px;
  }

  .hc-facts {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }

  .hc-facts div {
    min-height: 155px;
    padding: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }

  .hc-facts div:nth-child(2n) {
    border-right: 0;
  }

  .hc-homes,
  .hc-amenities {
    padding: 78px 20px;
  }

  .hc-home-types,
  .hc-interiors {
    grid-template-columns: 1fr;
  }

  .hc-home-types article {
    min-height: 180px;
    border-right: 0;
    border-bottom: 1px solid var(--hc-line);
  }

  .hc-home-types article:last-child {
    border-bottom: 0;
  }

  .hc-interiors {
    grid-template-rows: 320px 240px 240px;
  }

  .hc-interiors__living {
    grid-row: auto;
  }

  .hc-masterplan__numbers,
  .hc-location__groups {
    grid-template-columns: 1fr;
  }

  .hc-amenities__image {
    min-height: 430px;
  }

  .hc-amenity-grid {
    grid-template-columns: 1fr;
  }

  .hc-amenity-grid span {
    min-height: 72px;
    border-right: 0;
  }

  .hc-choice {
    min-height: 680px;
  }

  .hc-choice__facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .hc-choice__facts span:nth-child(2) {
    border-right: 0;
  }

  .hc-choice__facts span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--hc-line);
  }

  .hc-location__map {
    padding: 40px 22px;
  }

  .hc-footer {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 32px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #heliconia-page *,
  #heliconia-page *::before,
  #heliconia-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation: none !important;
    transform: none !important;
    scale: 1 !important;
    filter: none !important;
  }
}
