:root {
  --green: #123a2c;
  --green-deep: #0a261c;
  --gold: #c99a4a;
  --orange: #e67e22;
  --cream: #f8f4ed;
  --white: #ffffff;
  --text: #222222;
  --muted: #5a574f;
  --border: rgba(201, 154, 74, 0.42);
  --shadow-soft: 0 18px 50px rgba(18, 58, 44, 0.13);
  --shadow-card: 0 26px 60px rgba(18, 58, 44, 0.18);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1440px, calc(100% - 36px));
  --transition: 300ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(230, 126, 34, 0.18), transparent 30%),
    linear-gradient(180deg, #fffdf9 0%, var(--cream) 58%, #f7f2ea 100%);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 34px 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--green);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  z-index: 50;
}

.skip-link:focus {
  top: 16px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  isolation: isolate;
  overflow: clip;
}

.hero__backdrop,
.hero__backdrop picture,
.hero__backdrop img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__backdrop img {
  object-fit: cover;
  object-position: center;
  transform: translateY(40px) scale(1.04);
  animation: riseIn 1.4s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(248, 244, 237, 0.02) 0%, rgba(248, 244, 237, 0.08) 35%, rgba(7, 21, 16, 0.22) 100%),
    radial-gradient(circle at top right, rgba(255, 226, 177, 0.65), transparent 32%),
    linear-gradient(90deg, rgba(248, 244, 237, 0.9) 0%, rgba(248, 244, 237, 0.25) 34%, rgba(248, 244, 237, 0.1) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  min-height: 100svh;
  padding: 28px 0 64px;
  align-items: center;
}

.brand {
  position: absolute;
  top: 22px;
  right: 0;
  text-align: right;
  text-transform: uppercase;
  color: var(--green);
  z-index: 3;
}

.brand__title,
.cta__text,
.location__header h2,
.feature-card h2,
.section-kicker {
  font-family: "Cormorant Garamond", serif;
}

.brand__title {
  font-size: clamp(1.5rem, 1.8vw, 2.35rem);
  letter-spacing: 0.03em;
  line-height: 1;
}

.brand__subtitle {
  margin-top: 6px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  font-family: "Poppins", sans-serif;
}

.hero__flag {
  position: absolute;
  left: -2%;
  top: 0;
  width: min(38vw, 520px);
  opacity: 0.92;
  pointer-events: none;
  animation: flagFloat 5.5s ease-in-out infinite;
  filter: drop-shadow(0 18px 28px rgba(18, 58, 44, 0.12));
}

.hero__copy {
  grid-column: 1 / 2;
  max-width: 760px;
  padding-top: 0;
  justify-self: center;
  align-self: center;
  padding-left: clamp(32px, 4vw, 64px);
  text-align: center;
  color: var(--green);
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(248, 244, 237, 0.35);
}

.eyebrow {
  margin: 0;
  color: var(--orange);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 4px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 4.7vw, 4.6rem);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  font-weight: 500;
}

.hero__date {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 16px 0 0;
}

.hero__date span {
  width: clamp(60px, 8vw, 102px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero__date p {
  margin: 0;
  color: #1b211f;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.15rem, 1.8vw, 1.7rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(248, 244, 237, 0.68);
  box-shadow: 0 10px 24px rgba(18, 58, 44, 0.08);
  backdrop-filter: blur(4px);
}

.hero__date sup {
  font-size: 0.4em;
}

.hero__subtitle {
  margin: 16px 0 0;
  font-size: clamp(0.96rem, 1.08vw, 1.1rem);
  line-height: 1.5;
  color: #113428;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 16px;
  border-radius: 18px;
  background: rgba(248, 244, 237, 0.66);
  box-shadow: 0 10px 24px rgba(18, 58, 44, 0.08);
  backdrop-filter: blur(4px);
  font-weight: 500;
}

.hero__actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.hero__divider {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  color: #203f7a;
}

.hero__divider span {
  width: 74px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), #f4f1ea, #1f8d4e);
}

.hero__divider i {
  font-size: 1.6rem;
}

.feature-card {
  align-self: center;
  justify-self: center;
  width: 100%;
  max-width: 520px;
  margin-top: 70px;
  background: linear-gradient(180deg, rgba(11, 47, 34, 0.96), rgba(18, 58, 44, 0.92));
  color: var(--white);
  border: 2px solid rgba(201, 154, 74, 0.7);
  border-radius: var(--radius-md);
  padding: 30px 34px 34px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(6px);
}

.feature-card h2 {
  margin: 0 0 24px;
  font-size: clamp(1.55rem, 1.8vw, 2.05rem);
  line-height: 1.12;
  font-weight: 500;
  text-align: center;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.feature-list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-items: center;
}

.feature-list img,
.location-card img,
.strip-item img,
.cta__action p img,
.property-card__top img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.feature-list span {
  font-size: 1rem;
  line-height: 1.25;
}

.offer-section {
  margin-top: -54px;
  position: relative;
  z-index: 3;
}

.offer-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 24px 34px;
  background: linear-gradient(180deg, #15402f 0%, #123a2c 100%);
  border: 2px solid rgba(201, 154, 74, 0.85);
  border-radius: 24px;
  box-shadow: 0 24px 40px rgba(18, 58, 44, 0.18);
  animation: bannerGlow 3.6s ease-in-out infinite;
}

.offer-banner i {
  font-size: clamp(2.2rem, 4vw, 4rem);
  color: var(--gold);
}

.offer-banner__content {
  text-align: center;
  color: var(--gold);
}

.offer-banner__lead,
.offer-banner h2 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}

.offer-banner__lead {
  font-size: clamp(1.45rem, 2.1vw, 2.3rem);
  letter-spacing: 0.1em;
  font-weight: 600;
}

.offer-banner h2 {
  font-size: clamp(2.1rem, 3.7vw, 3.8rem);
  line-height: 1;
  font-weight: 700;
}

.offer-banner__tag {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 28px;
  background: linear-gradient(90deg, #e4760f, #ff8e16);
  color: var(--white);
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.1rem, 1.6vw, 1.6rem);
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
}

.section-kicker {
  margin: 0 0 18px;
  color: #2d271f;
  font-size: clamp(1.45rem, 1.75vw, 1.95rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.residences__grid,
.location__grid,
.cta__wrap {
  display: grid;
  gap: 22px;
}

.residences__grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: stretch;
}

.residences__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.property-card,
.location-card,
.map-card,
.interior-card,
.cta__wrap {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.property-card {
  border-radius: var(--radius-md);
  padding: 28px 30px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  animation: gentlePulse 6s ease-in-out infinite;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.property-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 28px 50px rgba(18, 58, 44, 0.2);
  border-color: rgba(201, 154, 74, 0.8);
}

.property-card__top {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 auto 18px;
  min-height: 60px;
}

.property-card__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  min-height: 60px;
}

.property-card__top img {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
}

.property-card h3 {
  margin: 0;
  font-size: clamp(1.45rem, 1.55vw, 1.75rem);
  line-height: 1.05;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

.property-card__top p,
.property-card__label,
.property-card__foot {
  margin: 0;
  text-transform: uppercase;
}

.property-card__top p {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  line-height: 1.15;
}

.property-card__label {
  margin-bottom: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(201, 154, 74, 0.65);
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
}

.property-card__price {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
  background: linear-gradient(180deg, #184f3b 0%, var(--green) 100%);
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 1.9vw, 2rem);
  line-height: 1;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

.property-card__foot {
  margin-top: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
}

.property-card__cta {
  margin: 16px auto 0;
  min-width: 154px;
  border: 1px solid rgba(18, 58, 44, 0.12);
  border-radius: 999px;
  background: rgba(18, 58, 44, 0.06);
  color: var(--green);
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition);
}

.property-card__cta:hover {
  transform: translateY(-2px);
  background: var(--green);
  color: var(--white);
}

.interior-card,
.map-card {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.interior-card img,
.map-card img,
.map-card iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 700ms ease,
    filter 700ms ease;
}

.interior-card:hover img,
.map-card:hover iframe {
  transform: scale(1.04);
}

.interior-card {
  position: relative;
  min-height: 100%;
}

.interior-card__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 18px 18px;
  background: rgba(226, 186, 116, 0.94);
  font-size: clamp(0.86rem, 0.95vw, 1rem);
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.location__header {
  margin-bottom: 16px;
}

.location__header h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(1.95rem, 2.4vw, 2.6rem);
  line-height: 0.95;
  text-transform: uppercase;
  font-weight: 500;
}

.location__grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  align-items: stretch;
}

.location__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  align-items: center;
}

.location-card {
  padding: 28px 18px;
  text-align: center;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  position: relative;
}

.location-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 0;
  width: 1px;
  height: calc(100% - 36px);
  background: rgba(201, 154, 74, 0.55);
}

.location-card img {
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
}

.location-card h3 {
  margin: 0 0 6px;
  font-size: clamp(1.08rem, 1.2vw, 1.28rem);
  color: var(--green);
  font-weight: 600;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

.location-card p {
  margin: 0;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.45;
}

.map-card {
  animation: mapFloat 6s ease-in-out infinite;
  min-height: 308px;
}

.map-card iframe {
  border: 0;
  display: block;
  filter: saturate(0.96) contrast(1.02);
}

.cta__wrap {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr) minmax(300px, 0.9fr);
  align-items: center;
  border-radius: var(--radius-lg);
  padding: 28px 30px;
}

.cta__brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cta__logo-mark {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #fff8ef, #f0dfbc);
  border: 1px solid rgba(201, 154, 74, 0.65);
}

.cta__logo-mark img {
  width: 40px;
  height: 40px;
}

.cta__brand h2,
.cta__brand p,
.cta__action p,
.footer p {
  margin: 0;
}

.cta__brand h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.55rem, 1.9vw, 2rem);
  color: var(--green);
  text-transform: uppercase;
  line-height: 1;
  font-weight: 600;
}

.cta__brand p {
  margin-top: 4px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cta__text {
  color: var(--green);
  font-size: clamp(1.45rem, 1.65vw, 1.95rem);
  line-height: 1.06;
  text-transform: uppercase;
}

.cta__action {
  display: grid;
  justify-items: start;
  gap: 12px;
}

.button,
.mobile-sticky-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #184f3b 0%, var(--green) 100%);
  color: var(--white);
  padding: 18px 24px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    filter var(--transition);
  box-shadow: 0 16px 34px rgba(18, 58, 44, 0.24);
  isolation: isolate;
}

.button--soft {
  padding: 15px 22px;
  font-size: 0.92rem;
}

.button::after,
.mobile-sticky-cta::after,
.side-enquire::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -120%;
  width: 70%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: skewX(-22deg);
  animation: ctaShine 4.8s ease-in-out infinite;
  z-index: -1;
}

.button:hover,
.mobile-sticky-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.button i {
  transition: transform var(--transition);
}

.button:hover i {
  transform: translateX(5px);
}

.cta__action p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta__action p img {
  width: 18px;
  height: 18px;
}

.feature-strip {
  padding: 10px 0 34px;
}

.feature-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(201, 154, 74, 0.65);
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 260ms ease,
    visibility 260ms ease;
  z-index: 40;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 15, 0.55);
  backdrop-filter: blur(6px);
}

.modal__panel {
  position: relative;
  width: min(560px, 100%);
  padding: 34px 30px 28px;
  border-radius: 26px;
  border: 1px solid rgba(201, 154, 74, 0.45);
  background:
    radial-gradient(circle at top right, rgba(230, 126, 34, 0.12), transparent 30%),
    linear-gradient(180deg, #fffdf9 0%, #f8f4ed 100%);
  box-shadow: 0 28px 80px rgba(18, 58, 44, 0.24);
  transform: translateY(24px) scale(0.97);
  transition: transform 260ms ease;
}

.modal.is-open .modal__panel {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(18, 58, 44, 0.08);
  color: var(--green);
  cursor: pointer;
}

.modal__eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 600;
}

.modal__body h2 {
  margin: 0 0 12px;
  color: var(--green);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
}

.modal__copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.modal-form {
  margin-top: 20px;
}

.three {
  display: grid;
  gap: 14px;
}

.form-group {
  margin: 0;
}

.form-control {
  width: 100%;
  border: 1px solid rgba(18, 58, 44, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  padding: 15px 16px;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.2;
  outline: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.form-control:focus {
  border-color: rgba(18, 58, 44, 0.42);
  box-shadow: 0 0 0 4px rgba(18, 58, 44, 0.08);
  transform: translateY(-1px);
}

.form-control::placeholder {
  color: #7a776d;
}

.formFooter {
  margin-top: 16px;
}

.modal-form__submit {
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 15px 18px;
  background: linear-gradient(180deg, #184f3b 0%, var(--green) 100%);
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(18, 58, 44, 0.2);
  transition:
    transform var(--transition),
    filter var(--transition);
}

.modal-form__submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.modal-form small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  text-align: left;
}

.strip-item img {
  width: 42px;
  height: 42px;
}

.strip-item h3,
.strip-item p {
  margin: 0;
  text-transform: uppercase;
}

.strip-item h3 {
  color: var(--green);
  font-size: 1.05rem;
}

.strip-item p {
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.footer {
  padding: 0 0 110px;
}

.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(201, 154, 74, 0.65);
  color: var(--muted);
  font-size: 0.85rem;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(18, 58, 44, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 20;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 18;
  display: none;
}

.side-enquire {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  border: 0;
  border-radius: 18px 0 0 18px;
  background: linear-gradient(180deg, #184f3b 0%, var(--green) 100%);
  color: var(--white);
  padding: 18px 12px;
  min-height: 180px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  box-shadow: 0 18px 40px rgba(18, 58, 44, 0.24);
  z-index: 19;
  cursor: pointer;
}

.side-enquire:hover {
  filter: brightness(1.05);
}

.feature-card,
.offer-banner,
.cta__wrap {
  animation: gentleFloat 7s ease-in-out infinite;
}

.ripple {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 650ms ease-out forwards;
  pointer-events: none;
}

.reveal {
  opacity: 0;
  will-change: transform, opacity;
}

.reveal-up {
  transform: translateY(34px);
}

.reveal-right {
  transform: translateX(38px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
  transition-delay: var(--delay, 0ms);
}

@keyframes riseIn {
  0% {
    transform: translateY(56px) scale(1.07);
  }

  100% {
    transform: translateY(0) scale(1.02);
  }
}

@keyframes flagFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(14px) rotate(1deg);
  }
}

@keyframes bannerGlow {
  0%,
  100% {
    box-shadow: 0 24px 40px rgba(18, 58, 44, 0.18);
  }

  50% {
    box-shadow: 0 28px 50px rgba(201, 154, 74, 0.28);
  }
}

@keyframes mapFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes gentlePulse {
  0%,
  100% {
    box-shadow: var(--shadow-soft);
  }

  50% {
    box-shadow: 0 22px 54px rgba(18, 58, 44, 0.16);
  }
}

@keyframes gentleFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes ctaShine {
  0%,
  100% {
    left: -120%;
  }

  45% {
    left: -120%;
  }

  60% {
    left: 140%;
  }
}

@keyframes ripple {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(0);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(16);
  }
}

@media (max-width: 1199px) {
  .hero__content {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding-bottom: 52px;
    min-height: auto;
  }

  .brand,
  .hero__copy {
    grid-column: auto;
  }

  .brand {
    position: static;
    text-align: center;
    justify-self: center;
  }

  .hero__copy {
    justify-self: center;
    padding-left: 0;
  }

  .feature-card {
    max-width: 520px;
    margin: 0 auto;
  }

  .residences__grid,
  .location__grid,
  .cta__wrap {
    grid-template-columns: 1fr;
  }

  .cta__action {
    justify-items: start;
  }

  .map-card {
    min-height: 280px;
  }

  .feature-strip__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .side-enquire {
    display: none;
  }
}

@media (max-width: 767px) {
  :root {
    --container: min(100% - 28px, 100%);
  }

  .section {
    padding: 24px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(248, 244, 237, 0.2) 0%, rgba(248, 244, 237, 0.1) 40%, rgba(7, 21, 16, 0.3) 100%),
      linear-gradient(180deg, rgba(248, 244, 237, 0.76) 0%, rgba(248, 244, 237, 0.08) 60%);
  }

  .hero__content {
    padding-top: 20px;
  }

  .hero__flag {
    left: -20%;
    top: 4%;
    width: min(86vw, 360px);
  }

  .hero__copy {
    padding-top: 92px;
    max-width: 100%;
    padding-left: 0;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.3rem);
  }

  .eyebrow {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero__date {
    gap: 10px;
  }

  .hero__date p {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
    letter-spacing: 0.16em;
  }

  .hero__subtitle {
    font-size: 0.95rem;
    padding: 10px 14px;
  }

  .hero__divider span {
    width: 48px;
  }

  .offer-section {
    margin-top: -16px;
  }

  .offer-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 22px 18px;
  }

  .offer-banner i:last-child {
    display: none;
  }

  .section-kicker {
    font-size: 1.45rem;
    text-align: center;
  }

  .residences__cards,
  .location__cards,
  .feature-strip__grid {
    grid-template-columns: 1fr;
  }

  .residences__grid,
  .location__grid {
    gap: 18px;
  }

  .property-card {
    padding: 24px 20px 20px;
  }

  .property-card__top {
    gap: 12px;
    margin-bottom: 14px;
  }

  .property-card__top img {
    width: 42px;
    height: 42px;
  }

  .property-card h3 {
    font-size: 1.25rem;
  }

  .property-card__price {
    width: 100%;
  
    font-size: 1.45rem;
  }

  .interior-card__caption {
    font-size: 0.82rem;
    padding: 12px 14px 14px;
  }

  .location__header {
    text-align: center;
  }

  .location__header h2 {
    font-size: 1.95rem;
  }

  .location__cards {
    gap: 12px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .location-card {
    padding: 18px 16px;
    border-radius: 18px;
    border: 1px solid rgba(201, 154, 74, 0.35);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 14px 28px rgba(18, 58, 44, 0.08);
  }

  .location-card:not(:last-child)::after {
    display: none;
  }

  .location-card:not(:last-child) {
    border-bottom: 1px solid rgba(201, 154, 74, 0.35);
  }

  .location-card h3 {
    font-size: 1rem;
  }

  .location-card p {
    font-size: 0.78rem;
  }

  .cta__wrap {
    padding: 22px 20px;
    gap: 16px;
    text-align: center;
  }

  .cta__text {
    font-size: 1.55rem;
  }

  .cta__brand {
    justify-content: center;
  }

  .cta__brand h2 {
    font-size: 1.35rem;
  }

  .button {
    width: auto;
  }

  .map-card {
    min-height: 240px;
  }

  .cta__action,
  .cta__action p {
    width: 100%;
  }

  .cta__action {
    justify-items: stretch;
  }

  .cta__action p {
    justify-content: center;
    font-size: 0.82rem;
  }

  .feature-strip {
    padding: 20px 0 28px;
  }

  .feature-strip__grid {
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(201, 154, 74, 0.55);
  }

  .strip-item {
    justify-content: center;
    gap: 16px;
    padding: 14px 14px 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(201, 154, 74, 0.28);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 24px rgba(18, 58, 44, 0.06);
  }

  .strip-item img {
    width: 36px;
    height: 36px;
  }

  .strip-item h3 {
    font-size: 0.95rem;
  }

  .strip-item p {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
  }

  .footer {
    padding-bottom: 126px;
  }

  .footer__content {
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.78rem;
    line-height: 1.55;
  }

  .mobile-sticky-cta {
    display: inline-flex;
    border-radius: 16px;
    padding: 16px 18px;
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
