:root {
  --cream: #fbfaf7;
  --ink: #12241f;
  --navy: #0a4e8f;
  --navy-deep: #103a57;
  --navy-mid: #093f74;
  --green: #12503f;
  --green-deep: #0e3a2f;
  --olive: #96aa43;
  --lime: #93c13f;
  --footer: #0b5e56;
  --muted: rgba(18, 36, 31, 0.72);
  --line: rgba(18, 36, 31, 0.12);
  --serif: 'Playfair Display', serif;
  --sans: 'Montserrat', sans-serif;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --pad-x: clamp(22px, 5vw, 56px);
  --section-y: clamp(80px, 13vh, 160px);
  --max: 1280px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

a {
  color: var(--navy);
  text-decoration: none;
}

a:hover {
  color: var(--green);
}

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

input,
button,
select,
textarea {
  font-family: inherit;
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

@keyframes wsDrift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}

@keyframes wsRise {
  from {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.page {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green);
}

.display {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.2vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--navy-deep);
  text-wrap: pretty;
}

.display em {
  font-style: italic;
}

.lede {
  margin: clamp(24px, 3vh, 34px) 0 0;
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 300;
  line-height: 1.78;
  color: var(--muted);
  text-wrap: pretty;
}

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

.section {
  scroll-margin-top: 80px;
  padding: var(--section-y) var(--pad-x);
}

/* —— Nav —— */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(20px, 4vw, 56px);
  transition: background 600ms ease, padding 500ms ease, box-shadow 600ms ease,
    border-color 600ms ease;
  border-bottom: 1px solid transparent;
  background: transparent;
}

.nav.is-solid {
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom-color: rgba(18, 36, 31, 0.1);
  padding-top: 14px;
  padding-bottom: 14px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 18px);
  text-decoration: none;
}

.nav__logo {
  position: relative;
  display: block;
  height: clamp(30px, 3.4vw, 42px);
  width: clamp(120px, 14vw, 170px);
  flex: none;
}

.nav__logo img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: opacity 400ms ease;
}

#ws-logo-light {
  opacity: 0.95;
}

#ws-logo-dark {
  opacity: 0;
}

.nav__div {
  display: block;
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.35);
  transition: background 500ms ease;
}

.nav__name {
  font-weight: 500;
  font-size: clamp(10px, 1.05vw, 12px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  transition: color 500ms ease;
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.9vw, 32px);
}

.nav__links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  white-space: nowrap;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  transition: color 400ms ease;
}

.nav__links a:hover {
  color: #96aa42;
}

.nav__cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  white-space: nowrap;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 11px 20px;
  transition: background 400ms ease, color 400ms ease, border-color 400ms ease;
}

.nav__cta:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.nav__phone {
  display: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px 16px;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero__media {
  position: absolute;
  inset: -6% 0 0 0;
  z-index: 0;
  will-change: transform;
}

.hero__media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: 50% 78%;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(8, 58, 108, 0.84) 0%,
    rgba(10, 78, 143, 0.6) 40%,
    rgba(13, 92, 160, 0.28) 62%,
    rgba(255, 255, 255, 0) 80%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1160px;
  padding: clamp(92px, 13vh, 150px) clamp(22px, 5vw, 56px) clamp(150px, 32vh, 360px);
  text-align: center;
}

.hero__kicker {
  animation: wsRise 1250ms var(--ease) 140ms both;
  margin: 0 0 clamp(20px, 3vh, 34px);
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.hero h1 {
  animation: wsRise 1250ms var(--ease) 290ms both;
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5.9vw, 86px);
  line-height: 1.04;
  letter-spacing: -0.012em;
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 2px 40px rgba(6, 44, 84, 0.28);
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
}

.hero__intro {
  animation: wsRise 1250ms var(--ease) 440ms both;
  margin: clamp(26px, 4vh, 44px) auto 0;
  max-width: 720px;
}

.hero__intro p {
  margin: 0 auto;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.94);
}

.hero__break {
  display: block;
}

.hero__actions {
  animation: wsRise 1250ms var(--ease) 590ms both;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 18px;
  margin-top: clamp(28px, 4.5vh, 46px);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  font-size: clamp(10px, 1vw, 11.5px);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
}

.chip__dot {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  background: #fff;
  color: var(--navy);
  font-size: clamp(10.5px, 1vw, 12px);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: 0 18px 44px rgba(6, 44, 84, 0.24);
  transition: transform 500ms var(--ease), background 400ms ease, color 400ms ease;
}

.btn-hero:hover {
  transform: translateY(-3px);
  background: var(--green);
  color: #fff;
}

.hero__status {
  animation: wsRise 1250ms var(--ease) 740ms both;
  margin: clamp(18px, 2.6vh, 26px) 0 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: wsDrift 3.6s ease-in-out infinite;
}

.hero__scroll span:first-child {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  text-shadow: 0 1px 10px rgba(8, 44, 72, 0.5);
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
}

/* —— Positioning —— */
.positioning {
  position: relative;
  background: var(--navy-deep);
  padding: clamp(96px, 15vh, 190px) var(--pad-x);
  overflow: hidden;
}

.positioning__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

.positioning__logo {
  flex: 0 1 clamp(220px, 26vw, 330px);
  display: flex;
  justify-content: flex-start;
}

.positioning__logo img {
  width: 100%;
  max-width: clamp(240px, 30vw, 400px);
  height: auto;
}

.positioning__rule {
  align-self: stretch;
  width: 1px;
  min-height: 180px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.38),
    rgba(255, 255, 255, 0)
  );
}

.positioning__copy {
  flex: 1 1 340px;
  min-width: 280px;
  text-align: left;
}

.positioning__copy .quote {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(21px, 2.5vw, 36px);
  line-height: 1.4;
  letter-spacing: -0.008em;
  color: #fff;
  text-wrap: pretty;
}

.positioning__copy .quote em {
  font-style: italic;
}

.positioning__copy .body {
  margin: clamp(22px, 3vh, 32px) 0 0;
  font-weight: 300;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.82);
  text-wrap: pretty;
}

/* —— Location —— */
.location {
  background: var(--cream);
}

.location__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: clamp(44px, 6vw, 96px);
  align-items: center;
}

.location .lede {
  max-width: 500px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0;
  margin: clamp(36px, 5vh, 52px) 0 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.stats__cell {
  padding: 22px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats__value {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1;
  color: var(--navy);
}

.stats__unit {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.stats__label {
  margin: 10px 0 0;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(18, 36, 31, 0.55);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: clamp(32px, 4vh, 42px);
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(10, 78, 143, 0.35);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  transition: gap 400ms ease, border-color 400ms ease;
}

.link-arrow:hover {
  gap: 16px;
  border-color: var(--navy);
  color: var(--navy);
}

.map-frame {
  background: #fff;
  border: 1px solid rgba(18, 36, 31, 0.1);
  padding: clamp(16px, 2.4vw, 32px);
}

.map-frame img {
  width: 100%;
  height: auto;
  max-height: clamp(300px, 60vh, 620px);
  object-fit: contain;
}

.caption {
  margin: 16px 0 0;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(18, 36, 31, 0.45);
}

/* —— Master plan —— */
.masterplan {
  background: var(--olive);
}

.masterplan .eyebrow {
  color: var(--green-deep);
}

.masterplan .lede {
  color: #0e2a22;
  font-weight: 400;
}

.masterplan__photo {
  margin: clamp(44px, 7vh, 76px) 0 0;
  overflow: hidden;
  background: #8ca03c;
}

.masterplan__photo img {
  width: 100%;
  height: clamp(300px, 74vh, 760px);
  object-fit: cover;
  object-position: 50% 62%;
  transition: transform 1600ms var(--ease);
}

.mp-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0;
  margin-top: clamp(28px, 4vh, 44px);
  border-top: 1px solid rgba(14, 42, 34, 0.28);
  border-left: 1px solid rgba(14, 42, 34, 0.28);
}

.mp-stats__cell {
  padding: clamp(30px, 4vh, 46px) clamp(20px, 3vw, 38px);
  border-right: 1px solid rgba(14, 42, 34, 0.28);
  border-bottom: 1px solid rgba(14, 42, 34, 0.28);
}

.mp-stats__cell--cta {
  display: flex;
  align-items: flex-end;
}

.mp-stats__num {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4.6vw, 66px);
  line-height: 1;
  color: var(--navy-deep);
}

.mp-stats__label {
  margin: 14px 0 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(14, 42, 34, 0.72);
}

.mp-stats__dtcp {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.15;
  color: var(--navy-deep);
}

.mp-stats__dtcp em {
  font-style: italic;
}

.mp-stats__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-deep);
  border-bottom: 1px solid rgba(16, 58, 87, 0.45);
  padding-bottom: 6px;
  transition: gap 400ms ease, border-color 400ms ease;
}

.mp-stats__link:hover {
  gap: 18px;
  border-color: var(--navy-deep);
  color: var(--navy-deep);
}

/* —— Breeze —— */
.breeze {
  position: relative;
  background: #edf1f1;
  overflow: hidden;
}

.breeze img {
  display: block;
  width: 100%;
  height: clamp(420px, 78vh, 760px);
  object-fit: cover;
  object-position: 70% center;
  transform: scale(1.12);
  will-change: transform;
}

.breeze__copy {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: clamp(32px, 6vw, 96px);
  pointer-events: none;
}

.breeze .display {
  font-size: clamp(34px, 5vw, 74px);
  letter-spacing: -0.02em;
}

/* —— Amenities —— */
.amenities {
  background: var(--cream);
}

.amenities__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 90px);
  align-items: center;
}

.amenities__intro {
  position: static;
}

.amenities .lede {
  max-width: 460px;
}

.amenities__visual {
  min-width: 0;
}

.amenities__photo {
  margin: 0;
  overflow: hidden;
  background: #e7eef6;
}

.amenities__photo img {
  width: 100%;
  height: clamp(280px, 48vh, 480px);
  object-fit: cover;
  transition: transform 1600ms var(--ease);
}

.amenities__list {
  margin-top: clamp(44px, 6vh, 72px);
}

.amenity {
  display: flex;
  align-items: baseline;
  gap: clamp(16px, 2.4vw, 34px);
  padding: clamp(22px, 3.2vh, 34px) 4px;
  border-top: 1px solid rgba(18, 36, 31, 0.14);
  transition: padding-left 600ms var(--ease), background 600ms ease;
}

.amenity:hover {
  padding-left: 18px;
  background: rgba(147, 193, 63, 0.09);
}

.amenity__n {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(18, 36, 31, 0.35);
  min-width: 26px;
}

.amenity__name {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(21px, 2.3vw, 33px);
  line-height: 1.2;
  color: var(--navy-deep);
}

.amenities__rule {
  border-top: 1px solid rgba(18, 36, 31, 0.14);
}

/* —— Lifestyle break —— */
.break {
  position: relative;
  min-height: clamp(440px, 88svh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--green);
}

.break__media {
  position: absolute;
  inset: -8% 0;
  will-change: transform;
}

.break__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.break__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 50, 40, 0.42) 0%,
    rgba(10, 50, 40, 0.18) 45%,
    rgba(8, 44, 36, 0.5) 100%
  );
}

.break__copy {
  position: relative;
  max-width: 900px;
  padding: 0 var(--pad-x);
  text-align: center;
}

.break__copy p {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 4.6vw, 68px);
  line-height: 1.22;
  letter-spacing: -0.012em;
  color: #fff;
  text-shadow: 0 2px 40px rgba(8, 44, 36, 0.4);
}

.break__copy em {
  font-style: italic;
}

/* —— Trust —— */
.trust {
  background: var(--cream);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0;
  margin: clamp(44px, 6vh, 72px) 0 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.trust-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(26px, 3.6vh, 40px) clamp(20px, 2.4vw, 32px);
  min-height: clamp(160px, 20vh, 210px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  transition: background 600ms ease;
}

.trust-card:hover {
  background: #f2f5f0;
}

.trust-card svg {
  flex: none;
}

.trust-card__name {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.3;
  color: var(--navy-deep);
  text-wrap: pretty;
}

/* —— Connectivity —— */
.connectivity {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

.connectivity::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #093f74 0%, #0a4e8f 46%, #10639f 100%);
}

.connectivity .wrap {
  position: relative;
}

.connectivity .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.connectivity .display {
  color: #fff;
}

.conn-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  padding: 11px 20px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 400ms ease, color 400ms ease, border-color 400ms ease;
}

.filter.is-active {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.conn-list {
  margin: clamp(44px, 6vh, 72px) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.conn-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px 24px;
  padding: clamp(18px, 2.6vh, 26px) 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 500ms ease, padding-left 500ms ease;
}

.conn-row:hover {
  background: rgba(255, 255, 255, 0.06);
  padding-left: 14px;
}

.conn-row__name {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 1.9vw, 27px);
  line-height: 1.25;
  color: #fff;
}

.conn-row__time {
  margin: 0;
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  white-space: nowrap;
}

.conn-note {
  margin: 26px 0 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* —— Why Coimbatore —— */
.why {
  background: #f2f5f0;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(44px, 6vw, 90px);
  align-items: center;
}

.why__photo {
  overflow: hidden;
  background: #e7eef6;
  order: 2;
}

.why__photo img {
  width: 100%;
  height: clamp(380px, 74vh, 720px);
  object-fit: cover;
  object-position: center bottom;
  transition: transform 1600ms var(--ease);
}

.why__copy {
  order: 1;
}

.why .lede {
  max-width: 520px;
}

/* —— Enquiry —— */
.enquiry {
  background: var(--cream);
}

.enquiry__grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(44px, 6vw, 96px);
  align-items: start;
}

.enquiry .lede {
  max-width: 440px;
}

.enquiry__phones {
  margin: clamp(34px, 5vh, 50px) 0 0;
  padding-top: clamp(26px, 3.5vh, 34px);
  border-top: 1px solid rgba(18, 36, 31, 0.14);
}

.enquiry__phones-label {
  margin: 0 0 16px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(18, 36, 31, 0.5);
}

.enquiry__phones-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 34px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.3vw, 30px);
  color: var(--navy);
}

.phone-link svg {
  flex: 0 0 auto;
}

.enquiry__map {
  margin-top: clamp(28px, 4vh, 40px);
  overflow: hidden;
  background: #e7eef6;
  border: 1px solid rgba(18, 36, 31, 0.08);
}

.enquiry__map iframe {
  display: block;
  width: 100%;
  height: clamp(220px, 32vh, 320px);
  border: 0;
}

.enquiry__map-open {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  background: #fff;
  border-top: 1px solid rgba(18, 36, 31, 0.08);
}

.enquiry__map-open:hover {
  color: var(--green);
}

.form-card {
  background: #fff;
  padding: clamp(28px, 4vw, 52px);
  box-shadow: 0 30px 80px rgba(18, 36, 31, 0.07);
  border: 1px solid rgba(18, 36, 31, 0.07);
}

.thanks {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.thanks[hidden],
[data-form][hidden],
.form__error[hidden] {
  display: none !important;
}

.form__honeypot {
  display: none !important;
}

.thanks__rule {
  display: block;
  width: 34px;
  height: 1px;
  margin: 0 auto;
  background: var(--lime);
}

.thanks h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.25;
  font-weight: 400;
  color: var(--navy-deep);
}

.thanks p {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(18, 36, 31, 0.68);
}

.form {
  display: grid;
  gap: clamp(20px, 3vh, 28px);
}

.field {
  display: grid;
  gap: 9px;
}

.field label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(18, 36, 31, 0.55);
}

.field input {
  width: 100%;
  padding: 14px 2px;
  border: 0;
  border-bottom: 1px solid rgba(18, 36, 31, 0.22);
  background: transparent;
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  outline: none;
  transition: border-color 400ms ease;
}

.field input:focus {
  border-color: var(--navy);
}

.form__submit {
  margin-top: 8px;
  width: 100%;
  padding: 18px 26px;
  border: 0;
  background: var(--navy);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 400ms ease, transform 500ms var(--ease);
}

.form__submit:hover {
  background: var(--green);
  transform: translateY(-2px);
}

.form__submit:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.form__error {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #b42318;
}

.form__status {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(18, 36, 31, 0.42);
}

/* —— Footer —— */
.footer {
  position: relative;
  background: var(--footer);
  padding: clamp(64px, 10vh, 110px) var(--pad-x) 34px;
  overflow: hidden;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(36px, 5vw, 80px);
  padding-bottom: clamp(40px, 6vh, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer__logo {
  display: block;
  height: auto;
  width: clamp(150px, 16vw, 210px);
  opacity: 0.95;
}

.footer__label {
  margin: 0 0 16px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.footer__address {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

.footer__map {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 0;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  transition: gap 400ms ease, border-color 400ms ease;
}

.footer__map:hover {
  gap: 16px;
  border-color: var(--lime);
  color: #fff;
}

.footer__dtcp {
  margin: 22px 0 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
}

.footer__phones {
  display: grid;
  gap: 6px;
}

.footer__phones a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

.footer__web {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.85);
  transition: background 400ms ease, color 400ms ease, border-color 400ms ease;
}

.socials a:hover {
  background: #fff;
  color: #0b3f33;
  border-color: #fff;
}

.footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 34px;
  padding-top: 26px;
}

.footer__bar p {
  margin: 0;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 1080px) {
  .nav__links {
    display: none;
  }

  .nav__phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
    padding: 12px 16px;
  }
}

@media (max-width: 900px) {
  .amenities__grid,
  .location__grid,
  .why__grid,
  .enquiry__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .amenities__photo img {
    height: clamp(220px, 42vh, 380px);
  }
}

@media (max-width: 720px) {
  :root {
    --pad-x: 20px;
    --section-y: clamp(64px, 10vh, 96px);
  }

  .nav {
    gap: 12px;
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .nav__div,
  .nav__name {
    display: none;
  }

  .hero__content {
    padding: clamp(88px, 14vh, 120px) 20px 120px;
  }

  .hero__break {
    display: inline;
  }

  .positioning__rule {
    display: none;
  }

  .positioning__logo {
    flex: 1 1 100%;
  }

  .mp-stats,
  .stats,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .filters {
    width: 100%;
  }

  .filter {
    padding: 10px 14px;
  }

  .conn-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .conn-row__time {
    white-space: normal;
  }

  .field input {
    font-size: 16px;
  }

  .form__submit {
    min-height: 48px;
  }

  .phone-link {
    min-height: 44px;
  }
}

@media (max-width: 480px) {
  .mp-stats,
  .stats,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn-hero,
  .chip {
    width: 100%;
    justify-content: center;
  }
}

/* —— Motion (visual design unchanged) —— */
@keyframes navIn {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroKen {
  from {
    transform: scale(1.16);
  }
  to {
    transform: scale(1);
  }
}

@keyframes heroShadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.55);
    opacity: 0.65;
  }
}

@keyframes rowIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.has-motion .nav {
  animation: navIn 1000ms var(--ease) 120ms both;
}

.has-motion .hero__media img {
  animation: heroKen 22s var(--ease) both;
}

.has-motion .hero__shade {
  animation: heroShadeIn 1400ms ease both;
}

.has-motion .chip__dot {
  animation: pulseDot 2.4s ease-in-out infinite;
}

.has-motion [data-reveal]:not(.is-in) {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(8px);
}

.has-motion [data-reveal] {
  transition:
    opacity 1100ms var(--ease) var(--reveal-delay, 0ms),
    transform 1200ms var(--ease) var(--reveal-delay, 0ms),
    filter 1000ms var(--ease) var(--reveal-delay, 0ms);
}

.has-motion [data-reveal].is-in {
  opacity: 1;
  transform: none;
  filter: none;
}

.has-motion [data-zoom] {
  transform: scale(1.08);
  transition: transform 1600ms var(--ease);
}

.has-motion .is-in [data-zoom],
.has-motion [data-zoom].is-in {
  transform: scale(1);
}

.has-motion .conn-row {
  animation: rowIn 720ms var(--ease) both;
}

.has-motion .conn-row:nth-child(1) { animation-delay: 0ms; }
.has-motion .conn-row:nth-child(2) { animation-delay: 50ms; }
.has-motion .conn-row:nth-child(3) { animation-delay: 100ms; }
.has-motion .conn-row:nth-child(4) { animation-delay: 150ms; }
.has-motion .conn-row:nth-child(5) { animation-delay: 200ms; }
.has-motion .conn-row:nth-child(6) { animation-delay: 250ms; }
.has-motion .conn-row:nth-child(7) { animation-delay: 300ms; }
.has-motion .conn-row:nth-child(8) { animation-delay: 350ms; }
.has-motion .conn-row:nth-child(9) { animation-delay: 400ms; }
.has-motion .conn-row:nth-child(10) { animation-delay: 450ms; }

.has-motion [data-thanks]:not([hidden]) {
  animation: wsRise 900ms var(--ease) both;
}

.word,
.char {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.1em;
}

.char--space {
  width: 0.3em;
}

.word__inner,
.char__inner {
  display: inline-block;
  will-change: transform;
}

@keyframes typeUp {
  from {
    transform: translateY(112%);
  }
  to {
    transform: translateY(0);
  }
}

.has-motion .hero__kicker,
.has-motion .hero h1,
.has-motion .hero__intro,
.has-motion .hero__status {
  animation: none;
}

.has-motion .hero .word__inner,
.has-motion .hero .char__inner,
.has-motion .nav__name .char__inner {
  animation: typeUp 900ms var(--ease) calc(var(--base, 180ms) + var(--i) * var(--stagger, 42ms)) both;
}

.has-motion .hero__kicker { --base: 60ms; --stagger: 22ms; }
.has-motion .hero h1 { --base: 220ms; --stagger: 70ms; }
.has-motion .hero__intro { --base: 680ms; --stagger: 18ms; }
.has-motion .hero .chip { --base: 980ms; --stagger: 48ms; }
.has-motion .hero__status { --base: 1180ms; --stagger: 20ms; }
.has-motion .nav__name { --base: 160ms; --stagger: 38ms; }

.has-motion [data-reveal] .word__inner,
.has-motion [data-reveal] .char__inner {
  transform: translateY(112%);
  transition: transform 900ms var(--ease) calc(var(--reveal-delay, 0ms) + var(--i) * var(--stagger, 42ms));
}

.has-motion [data-reveal] .lede .word__inner,
.has-motion [data-reveal] .quote .word__inner,
.has-motion [data-reveal] .body .word__inner,
.has-motion [data-reveal] .footer__address .word__inner {
  --stagger: 16ms;
}

.has-motion [data-reveal] .eyebrow .char__inner,
.has-motion [data-reveal] .caption .char__inner,
.has-motion [data-reveal] .stats__label .char__inner,
.has-motion [data-reveal] .mp-stats__label .char__inner,
.has-motion [data-reveal] .footer__label .char__inner {
  --stagger: 22ms;
}

.has-motion [data-reveal].is-in .word__inner,
.has-motion [data-reveal].is-in .char__inner {
  transform: translateY(0);
}

.has-motion .conn-row .word__inner,
.has-motion .conn-row .char__inner {
  animation: typeUp 700ms var(--ease) calc(var(--i) * 38ms) both;
  transition: none;
}

.has-motion [data-thanks]:not([hidden]) .word__inner {
  animation: typeUp 800ms var(--ease) calc(var(--i) * 40ms) both;
}

@media (prefers-reduced-motion: reduce) {
  html.has-motion [data-reveal],
  html.has-motion [data-reveal]:not(.is-in),
  html.has-motion [data-reveal].is-in {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  html.has-motion .nav,
  html.has-motion .hero__media img,
  html.has-motion .hero__shade,
  html.has-motion .chip__dot,
  html.has-motion .conn-row,
  html.has-motion [data-thanks]:not([hidden]),
  html.has-motion .hero__kicker,
  html.has-motion .hero h1,
  html.has-motion .hero__intro,
  html.has-motion .hero__actions,
  html.has-motion .hero__status,
  html.has-motion .hero__scroll {
    animation: none;
  }

  html.has-motion [data-zoom] {
    transform: none;
    transition: none;
  }

  html.has-motion .word__inner,
  html.has-motion .char__inner,
  html.has-motion .nav__name .char__inner,
  html.has-motion .conn-row .word__inner,
  html.has-motion [data-thanks]:not([hidden]) .word__inner {
    animation: none;
    transform: none;
    transition: none;
  }
}
