@font-face {
  font-family: "Gotham";
  src: url("../Fonts/Gotham-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("../Fonts/Gotham-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("../Fonts/Gotham-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("../Fonts/Gotham-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Commune";
  src: url("../Fonts/GC commune.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #0c63a4;
  --blue-deep: #095e9c;
  --teal: #16b0a2;
  --teal-dark: #039d9a;
  --white: #ffffff;
  --header-height: 118px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: #eef7f5;
  color: var(--white);
  font-family: "Gotham", Arial, sans-serif;
  overflow-x: hidden;
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  background: linear-gradient(90deg, rgba(22, 176, 162, 0.7) 0%, rgba(8, 94, 159, 0.82) 48%, rgba(8, 94, 159, 0.78) 100%);
}

.header-inner {
  width: min(100%, 1440px);
  height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  padding: 0;
}

.brand {
  width: 246px;
  flex: 0 0 auto;
  margin-top: 37px;
}

.brand img {
  width: 100%;
  filter: drop-shadow(0 8px 14px rgba(0, 71, 126, 0.16));
}

.main-nav {
  display: flex;
  align-self: stretch;
  align-items: center;
  margin-left: 78px;
}

.main-nav a {
  min-width: auto;
  display: grid;
  place-items: center;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 22px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  font-style: italic;
  outline: 0;
}

.menu-toggle {
  display: none;
}

body.menu-open {
  overflow: hidden;
}

.social-sidebar {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 30;
  display: grid;
  gap: 9px;
  transform: translateY(-50%);
}

.social-sidebar a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  transition: transform 180ms ease, background-color 180ms ease;
}

.social-sidebar a:hover,
.social-sidebar a:focus-visible {
  background: var(--blue);
  transform: translateX(-4px);
  outline: 0;
}

.social-sidebar img {
  width: 32px;
  height: 32px;
}

.hero {
  position: relative;
  height: 900px;
  min-height: 900px;
  overflow: hidden;
  background: #7e8c92;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center center;
}

.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 1500px);
  min-height: 900px;
  margin: 0 auto;
  padding: 118px 0 82px;
  display: grid;
  grid-template-columns: minmax(560px, 892px) 400px;
  align-items: center;
  gap: 78px;
}

.hero-copy {
  display: flex;
  align-items: center;
  margin-top: 0;
}

.hero-mark {
  width: 118px;
  margin-right: 29px;
}

.hero-title-wrap h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(56px, 4.85vw, 75px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.hero-title-wrap strong {
  font-weight: 700;
}

.hero-title-wrap span {
  width: fit-content;
  display: block;
  margin-top: 31px;
  margin-left: -10px;
  padding: 3px 14px 5px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.lead-form {
  width: 100%;
  max-width: 400px;
  min-height: 511px;
  justify-self: end;
  margin-top: 0;
  padding: 38px 30px 30px;
  background: linear-gradient(90deg, rgba(6, 113, 170, 0.84), rgba(16, 174, 161, 0.72));
}

.lead-form p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 22px;
  line-height: 1.28;
  text-align: center;
}

.lead-form h2 {
  margin: 0 0 28px;
  color: var(--white);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lead-form label {
  display: block;
  margin-bottom: 22px;
}

.lead-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.lead-form input {
  width: 100%;
  height: 48px;
  border: 2px solid rgba(22, 176, 162, 0.82);
  border-radius: 0;
  background: rgba(7, 92, 160, 0.88);
  color: var(--white);
  font: italic 18px/1 "Gotham", Arial, sans-serif;
  padding: 0 16px;
  outline: 0;
}

.lead-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.lead-form input:focus {
  border-color: var(--white);
}

.lead-form button {
  width: 100%;
  height: 60px;
  margin-top: 2px;
  border: 0;
  border-radius: 0;
  background: var(--teal);
  color: var(--white);
  cursor: pointer;
  font: italic 700 24px/1 "Gotham", Arial, sans-serif;
  text-transform: lowercase;
  transition: background-color 180ms ease;
}

.lead-form button:hover,
.lead-form button:focus-visible {
  background: var(--blue-deep);
  outline: 0;
}

.lead-form small {
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  font-style: italic;
}

.section-placeholder {
  min-height: 1px;
}

.about-section {
  background: #eef7f5;
  color: #2f3337;
  overflow: hidden;
}

.about-inner {
  width: min(100%, 1500px);
  min-height: 780px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(410px, 590px) minmax(620px, 1fr);
  align-items: center;
  gap: 82px;
  padding: 78px 0 86px;
}

.about-copy {
  align-self: center;
}

.section-title {
  display: flex;
  align-items: flex-start;
}

.section-title > img {
  width: 92px;
  flex: 0 0 auto;
  margin: 22px 28px 0 0;
}

.section-title span {
  display: block;
  margin-bottom: -4px;
  color: rgba(89, 94, 99, 0.48);
  font-size: 22px;
  line-height: 1;
}

.section-title h2 {
  margin: 0;
  color: var(--teal);
  font-family: "Gotham", Arial, sans-serif;
  font-size: 58px;
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
}

.section-title h2 strong {
  display: inline-block;
  font-family: "Commune", "Gotham", Arial, sans-serif;
  font-weight: 400;
}

.about-text {
  max-width: 520px;
  margin: 76px 0 0 124px;
}

.about-text p {
  margin: 0 0 24px;
  color: #2d3438;
  font-size: 21px;
  line-height: 1.35;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-highlights {
  display: flex;
  align-items: center;
  gap: 86px;
  margin: 58px 0 0 124px;
}

.bedrooms-badge {
  width: 154px;
  flex: 0 0 auto;
}

.about-highlights ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(89, 94, 99, 0.82);
  font-size: 21px;
  line-height: 1;
}

.about-highlights li img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex: 0 0 auto;
}

.about-media {
  width: 100%;
}

.about-media img {
  width: 100%;
  max-width: 760px;
  margin-left: auto;
}

.leisure-section {
  background: #eef7f5;
  color: #2f3337;
  overflow: hidden;
}

.leisure-inner {
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: 42px 0 96px;
}

.leisure-top {
  display: grid;
  grid-template-columns: 560px 1fr;
  grid-template-areas:
    "heading list"
    "copy list";
  column-gap: 110px;
  align-items: end;
}

.leisure-heading {
  grid-area: heading;
  display: flex;
  align-items: flex-start;
}

.leisure-heading > img {
  width: 92px;
  flex: 0 0 auto;
  margin: 25px 29px 0 0;
}

.leisure-heading span {
  display: block;
  margin-bottom: 4px;
  color: rgba(89, 94, 99, 0.58);
  font-size: 22px;
  line-height: 1;
}

.leisure-heading h2 {
  margin: 0;
  color: var(--teal);
  font-family: "Gotham", Arial, sans-serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: 0;
}

.leisure-heading strong {
  font-family: "Commune", "Gotham", Arial, sans-serif;
  font-weight: 400;
}

.leisure-top > p {
  grid-area: copy;
  max-width: 510px;
  margin: 76px 0 0 124px;
  color: #2d3438;
  font-size: 21px;
  line-height: 1.35;
}

.leisure-list {
  grid-area: list;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  column-gap: 48px;
  row-gap: 19px;
  margin: 0 0 1px;
  padding: 0;
  list-style: none;
}

.leisure-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #30363a;
  font-size: 19px;
  line-height: 1.18;
}

.leisure-list img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
  margin-top: 1px;
}

.leisure-gallery {
  position: relative;
  width: min(100%, 1440px);
  margin: 108px auto 0;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 88px;
  align-items: center;
}

.gallery-frame {
  min-width: 0;
}

.gallery-main {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2.02 / 1;
  border-top-right-radius: 82px;
  background: #d9e5e5;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-label {
  position: absolute;
  top: 22px;
  left: 23px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 2px 14px 4px;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
}

.gallery-zoom {
  position: absolute;
  right: 26px;
  bottom: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 39px;
  padding: 0 13px 0 18px;
  border: 0;
  border-radius: 0 7px 7px 0;
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
  font: 700 25px/1 "Gotham", Arial, sans-serif;
}

.gallery-zoom span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 70px;
  align-items: center;
  min-height: 110px;
  padding: 14px 0 17px;
  border-bottom-left-radius: 82px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--teal) 100%);
}

.gallery-thumbs {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 16px;
}

.gallery-thumbs button {
  height: 78px;
  padding: 0;
  border: 3px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
}

.gallery-thumbs button.is-active {
  border-color: rgba(255, 255, 255, 0.86);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-arrow,
.strip-arrow {
  width: 48px;
  height: 86px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-arrow {
  justify-self: center;
}

.gallery-arrow::before,
.strip-arrow::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 34px solid transparent;
  border-bottom: 34px solid transparent;
}

.gallery-arrow-prev::before,
.strip-arrow-prev::before {
  border-right: 28px solid var(--teal);
}

.gallery-arrow-next::before,
.strip-arrow-next::before {
  border-left: 28px solid var(--teal);
}

.strip-arrow {
  width: 70px;
  height: 80px;
  display: grid;
  place-items: center;
}

.strip-arrow::before {
  border-top-width: 22px;
  border-bottom-width: 22px;
}

.strip-arrow-prev::before {
  border-right-color: var(--white);
  border-right-width: 18px;
}

.strip-arrow-next::before {
  border-left-color: var(--white);
  border-left-width: 18px;
}

.plans-section {
  background: #eef7f5;
  color: #2f3337;
  overflow: hidden;
}

.plans-inner {
  width: min(100%, 1500px);
  min-height: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 560px) minmax(650px, 1fr);
  gap: 70px;
  align-items: center;
  padding: 76px 0 82px;
}

.plans-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.plans-heading {
  display: flex;
  align-items: flex-start;
}

.plans-heading > img {
  width: 92px;
  flex: 0 0 auto;
  margin: 22px 29px 0 0;
}

.plans-heading span {
  display: block;
  margin-bottom: 3px;
  color: rgba(89, 94, 99, 0.58);
  font-size: 22px;
  line-height: 1;
}

.plans-heading h2 {
  margin: 0;
  color: var(--teal);
  font-family: "Gotham", Arial, sans-serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
}

.plans-heading strong {
  font-family: "Commune", "Gotham", Arial, sans-serif;
  font-weight: 400;
}

.plans-copy > p {
  max-width: 530px;
  margin: 116px 0 0 124px;
  color: #2d3438;
  font-size: 19px;
  line-height: 1.25;
}

.plans-facts {
  margin: auto 0 48px 124px;
  padding-left: 20px;
  color: #2d3438;
  font-size: 18px;
  line-height: 1.25;
}

.plans-viewer {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 28px;
}

.plans-board {
  min-width: 0;
}

.plans-image {
  display: block;
  width: 100%;
  max-width: 640px;
  height: clamp(500px, 43vw, 640px);
  margin: 0 auto;
  object-fit: contain;
}

.plans-caption-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 640px;
  margin: 20px auto 0;
}

.plans-caption-row p {
  margin: 0;
  color: #2d3438;
  font-size: 20px;
  line-height: 1;
}

.plans-zoom {
  height: 39px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
  font: 700 24px/1 "Gotham", Arial, sans-serif;
  white-space: nowrap;
}

.plans-zoom img {
  width: 22px;
  height: 22px;
}

.plans-dots {
  max-width: 640px;
  margin: 34px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.plans-dots button {
  width: 26px;
  height: 26px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(22, 176, 162, 0.18);
  cursor: pointer;
}

.plans-dots button.is-active {
  background: var(--teal);
}

.plans-arrow {
  width: 38px;
  height: 72px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.plans-arrow::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

.plans-arrow-prev::before {
  border-right: 20px solid var(--teal);
}

.plans-arrow-next::before {
  border-left: 20px solid var(--teal);
}

.implant-section {
  background: var(--teal);
  color: var(--white);
  overflow: hidden;
}

.implant-inner {
  width: min(100%, 1500px);
  min-height: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  grid-template-areas:
    "heading text"
    "viewer viewer";
  column-gap: 130px;
  align-items: start;
  padding: 68px 0 46px;
}

.implant-heading {
  grid-area: heading;
  display: flex;
  align-items: flex-start;
}

.implant-heading > img {
  width: 92px;
  flex: 0 0 auto;
  margin: 54px 30px 0 0;
}

.implant-heading span {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 22px;
  line-height: 1;
}

.implant-heading h2 {
  margin: 0;
  color: var(--white);
  font-family: "Gotham", Arial, sans-serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
}

.implant-heading strong {
  font-family: "Commune", "Gotham", Arial, sans-serif;
  font-weight: 400;
}

.implant-text {
  grid-area: text;
  max-width: 460px;
  margin: 70px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.2;
}

.implant-viewer {
  grid-area: viewer;
  width: 100%;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 62px;
  align-items: center;
  gap: 34px;
  margin-top: 86px;
}

.implant-board {
  min-width: 0;
}

.implant-board img {
  display: block;
  width: 100%;
  max-width: 860px;
  height: clamp(620px, 58vw, 860px);
  margin: 0 auto;
  object-fit: contain;
}

.implant-caption {
  max-width: 860px;
  margin: 18px auto 0;
  color: var(--white);
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
}

.implant-arrow {
  width: 54px;
  height: 92px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.implant-arrow::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 33px solid transparent;
  border-bottom: 33px solid transparent;
}

.implant-arrow-prev::before {
  border-right: 27px solid var(--white);
}

.implant-arrow-next::before {
  border-left: 27px solid var(--white);
}

.implant-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  margin-top: 24px;
}

.implant-dots button {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.implant-dots button.is-active {
  background: var(--white);
}

.video-section {
  background: linear-gradient(to bottom, var(--teal) 0 60%, #eef7f5 60% 100%);
  color: var(--white);
  overflow: hidden;
}

.video-inner {
  width: min(100%, 1500px);
  min-height: 900px;
  margin: 0 auto;
  padding: 0 0 34px;
  text-align: center;
}

.video-heading {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  padding-top: 0;
  text-align: left;
}

.video-heading img {
  width: 92px;
  flex: 0 0 auto;
  margin-top: 10px;
}

.video-heading h2 {
  margin: 0;
  color: var(--white);
  font-family: "Gotham", Arial, sans-serif;
  font-size: 58px;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0;
}

.video-heading strong {
  font-family: "Commune", "Gotham", Arial, sans-serif;
  font-weight: 400;
}

.video-mock {
  display: block;
  width: min(100%, 1080px);
  margin: 74px auto 0;
}

.video-inner > p {
  max-width: 900px;
  margin: 54px auto 0;
  color: #272f33;
  font-size: 19px;
  line-height: 1.22;
}

.location-section {
  background: #eef7f5;
  color: #2d3438;
  overflow: hidden;
}

.location-inner {
  width: min(100%, 1500px);
  min-height: 446px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(380px, 580px) minmax(620px, 1fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: end;
  padding: 39px 0 0;
}

.location-copy {
  padding-bottom: 43px;
}

.location-heading {
  display: flex;
  align-items: flex-start;
}

.location-heading > img {
  width: 92px;
  flex: 0 0 auto;
  margin: 0 29px 0 0;
}

.location-heading span {
  display: block;
  margin-bottom: 0;
  color: rgba(89, 94, 99, 0.58);
  font-size: 22px;
  line-height: 1;
}

.location-heading h2 {
  margin: 0;
  color: var(--teal);
  font-family: "Gotham", Arial, sans-serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
}

.location-heading strong {
  font-family: "Commune", "Gotham", Arial, sans-serif;
  font-weight: 400;
}

.location-copy > p {
  max-width: 520px;
  margin: 61px 0 0 124px;
  font-size: 19px;
  line-height: 1.2;
}

.location-copy address {
  max-width: 520px;
  margin: 51px 0 0 124px;
  font-style: normal;
  font-size: 19px;
  line-height: 1.2;
}

.location-copy address strong,
.location-copy address b {
  display: block;
}

.location-copy address strong {
  margin-bottom: 15px;
  color: var(--teal);
  font-family: "Commune", "Gotham", Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
}

.location-copy address b {
  font-weight: 700;
}

.location-times {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-self: end;
  padding: 38px 32px 41px;
  background: var(--teal);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.location-times ul {
  display: grid;
  gap: 4px;
}

.location-times li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 10px;
}

.location-times li span {
  display: flex;
  min-width: 0;
  align-items: baseline;
  white-space: nowrap;
}

.location-times li span::after {
  content: "";
  min-width: 24px;
  height: 3px;
  flex: 1 1 auto;
  margin: 0 3px 0 10px;
  border-top: 3px dotted rgba(255, 255, 255, 0.7);
}

.location-times b {
  white-space: nowrap;
}

.location-map {
  display: block;
  border: 0;
  width: 100%;
  height: 450px;
}

@media (max-width: 1180px) {
  :root {
    --header-height: 96px;
  }

  .header-inner {
    padding: 0 32px;
  }

  .brand {
    width: 190px;
    margin-top: 28px;
  }

  .main-nav {
    margin-left: 38px;
  }

  .main-nav a {
    min-width: auto;
    padding: 8px 14px;
    font-size: 18px;
  }

  .hero-content {
    grid-template-columns: 1fr 400px;
    gap: 34px;
    padding-inline: 32px;
  }

  .hero-title-wrap h1 {
    font-size: 56px;
  }

  .hero-mark {
    width: 92px;
  }

  .about-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 72px 32px;
  }

  .section-title h2 {
    font-size: 48px;
  }

  .section-title > img {
    width: 76px;
    margin-right: 20px;
  }

  .about-text,
  .about-highlights {
    margin-left: 96px;
  }

  .about-highlights {
    gap: 34px;
  }

  .leisure-inner {
    padding: 56px 32px 80px;
  }

  .leisure-top {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "copy"
      "list";
    row-gap: 34px;
  }

  .leisure-top > p {
    margin: 0 0 0 96px;
  }

  .leisure-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-left: 96px;
  }

  .leisure-gallery {
    grid-template-columns: 56px minmax(0, 1fr) 56px;
    margin-top: 68px;
  }

  .gallery-main {
    border-top-right-radius: 56px;
  }

  .gallery-strip {
    grid-template-columns: 54px minmax(0, 1fr) 54px;
    min-height: 92px;
    border-bottom-left-radius: 56px;
  }

  .gallery-thumbs {
    gap: 10px;
  }

  .gallery-thumbs button {
    height: 58px;
  }

  .plans-inner {
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 64px 32px 74px;
  }

  .plans-copy {
    display: block;
  }

  .plans-copy > p {
    margin: 44px 0 0 96px;
  }

  .plans-facts {
    margin: 40px 0 0 96px;
  }

  .plans-viewer {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 20px;
  }

  .implant-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "text"
      "viewer";
    row-gap: 28px;
    padding: 64px 32px 48px;
  }

  .implant-heading > img {
    width: 76px;
    margin: 34px 22px 0 0;
  }

  .implant-heading h2 {
    font-size: 48px;
  }

  .implant-text {
    max-width: 620px;
    margin: 0 0 0 98px;
  }

  .implant-viewer {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    gap: 22px;
    margin-top: 54px;
  }

  .implant-board img {
    max-width: 1000px;
  }

  .video-inner {
    min-height: 820px;
    padding-right: 32px;
    padding-left: 32px;
  }

  .video-heading img {
    width: 76px;
  }

  .video-heading h2 {
    font-size: 48px;
  }

  .video-mock {
    width: min(100%, 960px);
  }

  .location-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 56px 32px 0;
  }

  .location-copy {
    padding-bottom: 0;
  }

  .location-heading > img {
    width: 76px;
    margin-right: 22px;
  }

  .location-heading h2 {
    font-size: 48px;
  }

  .location-copy > p,
  .location-copy address {
    margin-left: 98px;
  }

  .location-times {
    width: min(100%, 900px);
    justify-self: center;
  }
}

@media (max-width: 900px) {
  .social-sidebar {
    display: none;
  }

  .site-header {
    position: absolute;
    height: 80px;
  }

  .header-inner {
    height: 80px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
  }

  .brand {
    width: 140px;
    margin: 0;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 100;
  }

  .hamburger-bar {
    width: 100%;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  }

  .menu-toggle.is-active .hamburger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.is-active .hamburger-bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-active .hamburger-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(22, 176, 162, 0.98) 0%, rgba(8, 94, 159, 0.98) 100%);
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 0;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .main-nav.is-active {
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    height: auto;
    min-width: auto;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    color: #e0f2f1;
    background: transparent;
    font-style: normal;
    font-weight: 700;
  }

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

  .hero-bg {
    object-fit: cover;
    object-position: 45% top;
  }

  .hero-content {
    min-height: 880px;
    grid-template-columns: 1fr;
    align-content: end;
    padding: 225px 22px 36px;
  }

  .hero-copy {
    margin-top: 0;
    align-items: center;
    justify-content: center;
  }

  .hero-mark {
    width: 64px;
    margin-right: 16px;
  }

  .hero-title-wrap h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .hero-title-wrap span {
    margin-top: 18px;
    margin-left: 0;
    font-size: 16px;
  }

  .lead-form {
    max-width: 100%;
    min-height: 0;
    padding: 28px 24px 24px;
  }

  .lead-form p {
    font-size: 18px;
  }

  .lead-form h2 {
    font-size: 25px;
  }

  .about-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 58px 22px 64px;
  }

  .section-title {
    justify-content: center;
  }

  .section-title > img {
    width: 64px;
    margin: 14px 16px 0 0;
  }

  .section-title span {
    font-size: 18px;
  }

  .section-title h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .about-text {
    max-width: 590px;
    margin: 38px auto 0;
    text-align: left;
  }

  .about-text p {
    font-size: 18px;
  }

  .about-highlights {
    max-width: 590px;
    margin: 36px auto 0;
    gap: 32px;
    justify-content: center;
  }

  .bedrooms-badge {
    width: 120px;
  }

  .about-highlights li {
    font-size: 17px;
  }

  .about-media img {
    max-width: 620px;
    margin: 0 auto;
  }

  .leisure-inner {
    padding: 46px 22px 64px;
  }

  .leisure-heading {
    justify-content: flex-start;
  }

  .leisure-heading > img {
    width: 64px;
    margin: 14px 16px 0 0;
  }

  .leisure-heading span {
    font-size: 18px;
  }

  .leisure-heading h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .leisure-top > p {
    margin-left: 80px;
    font-size: 18px;
  }

  .leisure-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
    margin-left: 0;
  }

  .leisure-list li {
    gap: 8px;
    font-size: 15px;
  }

  .leisure-list img {
    width: 18px;
    height: 18px;
  }

  .leisure-gallery {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    margin-top: 42px;
  }

  .gallery-arrow {
    display: none;
  }

  .gallery-main {
    aspect-ratio: 1.25 / 1;
    border-top-right-radius: 38px;
  }

  .gallery-label {
    top: 14px;
    left: 14px;
    min-height: 28px;
    font-size: 18px;
  }

  .gallery-zoom {
    right: 16px;
    bottom: 14px;
    height: 34px;
    font-size: 18px;
  }

  .gallery-strip {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    min-height: 84px;
    padding: 12px 0;
    border-bottom-left-radius: 38px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .gallery-thumbs button {
    height: 48px;
  }

  .strip-arrow {
    width: 42px;
  }

  .plans-inner {
    min-height: 0;
    padding: 52px 22px 62px;
  }

  .plans-heading {
    justify-content: flex-start;
  }

  .plans-heading > img {
    width: 64px;
    margin: 14px 16px 0 0;
  }

  .plans-heading span {
    font-size: 18px;
  }

  .plans-heading h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .plans-copy > p {
    margin: 38px 0 0;
    font-size: 17px;
  }

  .plans-facts {
    margin: 34px 0 0;
    font-size: 16px;
  }

  .plans-viewer {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .plans-viewer > .plans-arrow {
    display: none;
  }

  .plans-image {
    max-width: 100%;
    height: clamp(360px, 86vw, 520px);
  }

  .plans-caption-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 18px;
  }

  .plans-caption-row p {
    font-size: 17px;
    line-height: 1.25;
  }

  .plans-zoom {
    height: 36px;
    font-size: 20px;
  }

  .plans-dots {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
  }

  .plans-dots button {
    width: 20px;
    height: 20px;
  }

  .implant-inner {
    min-height: 0;
    padding: 50px 22px 58px;
  }

  .implant-heading > img {
    width: 64px;
    margin: 14px 16px 0 0;
  }

  .implant-heading span {
    font-size: 18px;
  }

  .implant-heading h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .implant-text {
    margin-left: 80px;
    font-size: 17px;
  }

  .implant-viewer {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 28px;
    min-width: 0;
  }

  .implant-viewer > .implant-arrow {
    display: none;
  }

  .implant-board {
    width: 100%;
    max-width: 100%;
    padding-bottom: 4px;
  }

  .implant-board img {
    width: 100%;
    max-width: 100%;
    height: clamp(440px, 116vw, 680px);
  }

  .implant-caption {
    margin-top: 16px;
    font-size: 17px;
  }

  .implant-dots {
    gap: 22px;
    margin-top: 26px;
  }

  .implant-dots button {
    width: 22px;
    height: 22px;
    border-width: 3px;
  }

  .video-section {
    background: linear-gradient(to bottom, var(--teal) 0 55%, #eef7f5 55% 100%);
  }

  .video-inner {
    min-height: 0;
    padding: 44px 22px 52px;
  }

  .video-heading {
    gap: 18px;
  }

  .video-heading img {
    width: 64px;
    margin-top: 8px;
  }

  .video-heading h2 {
    font-size: clamp(38px, 10vw, 52px);
  }

  .video-mock {
    margin-top: 48px;
  }

  .video-inner > p {
    max-width: 620px;
    margin-top: 42px;
    font-size: 17px;
  }

  .location-inner {
    min-height: 0;
    padding: 52px 22px 0;
  }

  .location-heading > img {
    width: 64px;
    margin: 14px 16px 0 0;
  }

  .location-heading span {
    font-size: 18px;
  }

  .location-heading h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .location-copy > p,
  .location-copy address {
    max-width: 590px;
    margin-left: 80px;
    font-size: 17px;
  }

  .location-copy > p {
    margin-top: 42px;
  }

  .location-copy address {
    margin-top: 38px;
  }

  .location-times {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 28px 26px 30px;
    font-size: 15px;
  }

  .location-map {
    height: 330px;
  }
}

@media (max-width: 520px) {
  .social-sidebar a,
  .social-sidebar img {
    width: 28px;
    height: 28px;
  }

  .hero-content {
    min-height: 850px;
    padding-top: 215px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-mark {
    width: 54px;
  }

  .lead-form input {
    height: 44px;
    font-size: 15px;
  }

  .lead-form button {
    height: 54px;
    font-size: 21px;
  }

  .about-inner {
    padding: 46px 20px 54px;
  }

  .section-title {
    justify-content: flex-start;
  }

  .section-title > img {
    width: 58px;
    margin-right: 14px;
  }

  .section-title h2 {
    font-size: 39px;
  }

  .about-text {
    margin-top: 32px;
  }

  .about-text p {
    font-size: 16px;
  }

  .about-highlights {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 22px;
  }

  .bedrooms-badge {
    width: 98px;
  }

  .about-highlights ul {
    gap: 8px;
  }

  .about-highlights li {
    font-size: 15px;
  }

  .about-highlights li img {
    width: 20px;
    height: 20px;
  }

  .about-media {
    width: calc(100% + 40px);
    margin-left: -20px;
  }

  .leisure-inner {
    padding: 44px 20px 56px;
  }

  .leisure-heading > img {
    width: 58px;
    margin-right: 14px;
  }

  .leisure-heading h2 {
    font-size: 39px;
  }

  .leisure-top > p {
    margin-left: 72px;
    font-size: 16px;
  }

  .leisure-list li {
    font-size: 14px;
  }

  .gallery-thumbs button {
    height: 42px;
  }

  .plans-inner {
    padding: 46px 20px 56px;
  }

  .plans-heading > img {
    width: 58px;
    margin-right: 14px;
  }

  .plans-heading h2 {
    font-size: 39px;
  }

  .plans-copy > p,
  .plans-facts {
    font-size: 15px;
  }

  .implant-inner {
    padding: 46px 20px 54px;
  }

  .implant-heading > img {
    width: 58px;
    margin-right: 14px;
  }

  .implant-heading h2 {
    font-size: 39px;
  }

  .implant-text {
    margin-left: 72px;
    font-size: 15px;
  }

  .implant-board img {
    width: 100%;
    height: clamp(400px, 118vw, 620px);
  }

  .video-section {
    background: linear-gradient(to bottom, var(--teal) 0 50%, #eef7f5 50% 100%);
  }

  .video-inner {
    padding: 42px 20px 48px;
  }

  .video-heading {
    width: 100%;
    justify-content: flex-start;
    gap: 14px;
  }

  .video-heading img {
    width: 58px;
    margin-top: 6px;
  }

  .video-heading h2 {
    font-size: 39px;
    line-height: 1.04;
  }

  .video-mock {
    width: calc(100% + 40px);
    max-width: none;
    margin: 40px 0 0 -20px;
  }

  .video-inner > p {
    margin-top: 34px;
    font-size: 15px;
  }

  .location-inner {
    padding: 46px 20px 0;
  }

  .location-heading > img {
    width: 58px;
    margin-right: 14px;
  }

  .location-heading h2 {
    font-size: 39px;
  }

  .location-copy > p,
  .location-copy address {
    margin-left: 72px;
    font-size: 15px;
  }

  .location-copy address strong {
    font-size: 18px;
  }

  .location-times {
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 24px 20px 26px;
    font-size: 14px;
  }

  .location-times li span {
    white-space: normal;
  }

  .location-map {
    width: calc(100% + 40px);
    height: 280px;
    margin-left: -20px;
  }
}

/* Site Footer */
.site-footer {
  width: 100%;
  font-family: "Gotham", Arial, sans-serif;
}

.footer-main {
  background: var(--teal);
  padding: 80px 0;
}

.footer-inner {
  width: min(100%, 1500px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 120px;
  padding: 0 40px;
}

.footer-left {
  display: flex;
  flex-direction: column;
}

.footer-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 50px;
}

.logo-live {
  max-height: 80px;
  width: auto;
}

.logo-caixa {
  max-height: 34px;
  width: auto;
}

.realizacao-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.realizacao-wrap span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.realizacao-logos {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo-raphson {
  max-height: 32px;
  width: auto;
}

.logo-omega {
  max-height: 32px;
  width: auto;
}

.footer-contact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px 50px;
  margin-bottom: 50px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
}

.contact-item a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 150ms ease;
}

.contact-item a:hover {
  opacity: 0.8;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-address {
  grid-column: 1 / -1;
}

.icon-contact {
  height: 24px;
  width: auto;
}

.footer-disclaimer {
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  max-width: 620px;
  margin: 0;
}

/* Footer Right (Form) */
.footer-right h3 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.25;
  color: var(--white);
}

.footer-right h2 {
  margin: 0 0 28px;
  font-size: 30px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 1px;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-form label {
  display: block;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: #0d6e65;
  color: var(--white);
  font-family: "Gotham", Arial, sans-serif;
  font-size: 16px;
  padding: 14px 18px;
  outline: 0;
  transition: border-color 150ms ease;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.footer-form input:focus,
.footer-form textarea:focus {
  border-color: var(--white);
}

.footer-form textarea {
  resize: vertical;
}

.form-btn-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.footer-form button {
  padding: 14px 44px;
  border: 0;
  background: var(--blue);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 150ms ease;
}

.footer-form button:hover {
  background: var(--blue-deep);
}

.footer-bottom {
  background: #0b5e56;
  padding: 24px 0;
}

.footer-bottom-inner {
  width: min(100%, 1500px);
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  padding: 0 40px;
}

.logo-affinity {
  height: 34px;
  width: auto;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive Footer styling */
@media (max-width: 1180px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 32px;
  }
}

@media (max-width: 900px) {
  .footer-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .footer-contact {
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: center;
    text-align: center;
  }
  
  .contact-item {
    flex-direction: column;
    gap: 6px;
  }
  
  .contact-address {
    grid-column: span 1;
  }
  
  .footer-disclaimer {
    text-align: center;
    margin: 0 auto;
  }
  
  .footer-right {
    text-align: center;
  }
  
  .footer-bottom-inner {
    justify-content: center;
    padding: 0 32px;
  }
}

@media (max-width: 520px) {
  .footer-inner {
    padding: 0 20px;
    gap: 48px;
  }
  
  .footer-contact {
    font-size: 16px;
  }
  
  .footer-right h3 {
    font-size: 20px;
  }
  
  .footer-right h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .footer-form button {
    width: 100%;
  }
}

/* Page Wrapper to prevent any horizontal scroll on mobile */
.page-wrapper {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}
