:root {
  --heading-font: "Playfair Display", sans-serif;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: bold;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: bold;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

.hero-section {
  text-align: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 220px 48px 180px;
}

.hero-eyebrow {
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  display: inline-flex;
}

.hero-eyebrow-line {
  background: #c5a55a;
  width: 24px;
  height: 1px;
  display: block;
}

.hero-eyebrow-text {
  color: #8a95a5;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 600;
}

.hero-title {
  color: #0f1b2d;
  letter-spacing: -.03em;
  max-width: 760px;
  margin: 0 auto 32px;
  font-family: Playfair Display, serif;
  font-size: 5.2rem;
  font-weight: 600;
  line-height: 1.04;
}

.hero-subtitle {
  color: #8a95a5;
  max-width: 480px;
  margin: 0 auto 56px;
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.75;
}

.hero-buttons {
  justify-content: center;
  align-items: center;
  gap: 16px;
  display: flex;
}

.hero-btn-primary {
  color: #fff;
  letter-spacing: .02em;
  cursor: pointer;
  background: #0f1b2d;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 18px 44px;
  font-family: DM Sans, sans-serif;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .25s;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.hero-btn-primary:hover {
  background: #1a2b40;
}

.hero-btn-secondary {
  color: #0f1b2d;
  letter-spacing: .01em;
  cursor: pointer;
  background: none;
  border: 1.5px solid #0f1b2d24;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  font-family: DM Sans, sans-serif;
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .25s, background .25s;
  display: inline-flex;
}

.hero-btn-secondary:hover {
  background: #0f1b2d08;
  border-color: #0f1b2d;
}

.properties-section {
  background: #f6f7f9;
  padding: 160px 48px;
}

.properties-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  color: #8a95a5;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-size: .73rem;
  font-weight: 600;
  display: block;
}

.section-label-line {
  vertical-align: middle;
  background: #c5a55a;
  width: 20px;
  height: 1px;
  margin-right: 12px;
  display: inline-block;
}

.section-title {
  color: #0f1b2d;
  letter-spacing: -.025em;
  font-family: Playfair Display, serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.12;
}

.properties-grid {
  grid-template-rows: auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  display: grid;
}

.property-card {
  cursor: pointer;
  border: 1px solid #0f1b2d0a;
  border-radius: 12px;
  flex-flow: column;
  justify-content: flex-start;
  height: 100%;
  text-decoration: none;
  transition: all .25s ease-in-out;
  display: flex;
  overflow: hidden;
  box-shadow: 0 2px 16px #0f1b2d0a;
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px #0f1b2d1a;
}

.property-card-img-wrap {
  width: 100%;
  height: 240px;
  position: relative;
  overflow: hidden;
}

.property-card-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.property-card-body {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  max-height: 21rem;
  padding: 28px 28px 32px;
  display: flex;
}

.property-card-location {
  color: #8a95a5;
  letter-spacing: .04em;
  margin-bottom: 8px;
  font-size: .76rem;
  font-weight: 500;
}

.property-card-title {
  color: #0f1b2d;
  margin-bottom: 20px;
  font-family: Playfair Display, serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
}

.property-card-price-row {
  border-bottom: 1px solid #0f1b2d0f;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  display: flex;
}

.property-card-price-dot {
  background: #c5a55a;
  border-radius: 50%;
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  box-shadow: 0 0 6px #c5a55a80, 0 0 12px #c5a55a33;
}

.property-card-price {
  color: #0f1b2d;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.property-card-price-period {
  color: #8a95a5;
  font-size: .8rem;
  font-weight: 400;
}

.property-card-btn {
  color: #fff;
  letter-spacing: .02em;
  cursor: pointer;
  background: #0f1b2d;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 14px 0;
  font-family: DM Sans, sans-serif;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .25s;
  display: inline-flex;
}

.property-card-btn:hover {
  background: #1a2b40;
}

.properties-footer {
  text-align: center;
  margin-top: 56px;
}

.properties-view-all {
  color: #0f1b2d;
  letter-spacing: .01em;
  cursor: pointer;
  background: none;
  border: 1.5px solid #0f1b2d24;
  border-radius: 8px;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  font-family: DM Sans, sans-serif;
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .25s, background .25s;
  display: inline-flex;
}

.properties-view-all:hover {
  background: #0f1b2d08;
  border-color: #0f1b2d;
}

.process-section {
  background: #fff;
  padding: 170px 48px;
}

.process-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.process-track-grid {
  grid-template-rows: auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 0;
  display: grid;
  position: relative;
}

.process-track-hline-wrap {
  z-index: 1;
  height: 3px;
  position: absolute;
  top: 5px;
}

.process-track-hline-bg {
  background: #0f1b2d14;
  border-radius: 3px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.process-track-hline-fill {
  z-index: 2;
  background: #0f1b2d;
  border-radius: 3px;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.process-track-hline-glow {
  z-index: 10;
  opacity: 0;
  background: #c5a55a;
  border-radius: 50%;
  width: 13px;
  height: 13px;
  position: absolute;
  top: -5px;
  left: 0;
  box-shadow: 0 0 8px #c5a55a80;
}

.process-track-hline-pulse {
  z-index: 9;
  opacity: 0;
  pointer-events: none;
  border: 2px solid #c5a55a4d;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  position: absolute;
  top: -11px;
  left: 0;
}

.process-track-col {
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

.process-track-junction {
  z-index: 4;
  background: #fff;
  border: 2.5px solid #0f1b2d26;
  border-radius: 50%;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  position: relative;
}

.process-track-vert {
  background: #0f1b2d14;
  border-radius: 3px;
  flex-shrink: 0;
  width: 3px;
  height: 36px;
}

.process-grid {
  grid-template-rows: auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  display: grid;
}

.process-card {
  background: #f6f7f9;
  border: 1px solid #0f1b2d0a;
  border-radius: 12px;
  padding: 44px 36px;
  transition: filter .35s, opacity .35s;
  position: relative;
  overflow: hidden;
}

.process-card-ghost {
  pointer-events: none;
  color: #0f1b2d08;
  font-family: Playfair Display, serif;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: -8px;
  right: 12px;
}

.process-card-icon {
  background: #0f1b2d0a;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  display: flex;
}

.process-card-icon-svg {
  fill: none;
  stroke: #0f1b2d;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8px;
  width: 22px;
  height: 22px;
}

.process-card-number {
  color: #c5a55a;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: DM Sans, sans-serif;
  font-size: .7rem;
  font-weight: 700;
  display: block;
}

.process-card-title {
  color: #0f1b2d;
  margin-bottom: 14px;
  font-family: Playfair Display, serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.25;
}

.process-card-title.new {
  margin-top: 0;
  margin-bottom: 0;
}

.process-card-text {
  color: #8a95a5;
  font-size: .9rem;
  line-height: 1.8;
}

.about-section {
  background: #f6f7f9;
  padding: 180px 48px;
}

.about-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.about-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
  display: grid;
}

.about-label {
  color: #8a95a5;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: .73rem;
  font-weight: 600;
  display: block;
}

.about-label-line {
  vertical-align: middle;
  background: #c5a55a;
  width: 20px;
  height: 1px;
  margin-right: 12px;
  display: inline-block;
}

.about-title {
  color: #0f1b2d;
  letter-spacing: -.02em;
  margin-bottom: 32px;
  font-family: Playfair Display, serif;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.18;
}

.about-text {
  color: #8a95a5;
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.85;
}

.about-cta {
  color: #fff;
  letter-spacing: .02em;
  cursor: pointer;
  background: #0f1b2d;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 15px 34px;
  font-family: DM Sans, sans-serif;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .25s;
  display: inline-flex;
}

.about-cta:hover {
  background: #1a2b40;
}

.about-cta.new {
  margin-top: 0;
}

.about-img-wrap {
  border-radius: 10px;
  width: 100%;
  height: 460px;
  overflow: hidden;
}

.about-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.services-section {
  background: #fff;
  padding: 170px 48px 80px;
}

.services-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.services-grid {
  grid-template-rows: auto auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  display: grid;
}

.service-card {
  background: #f6f7f9;
  border: 1px solid #0f1b2d08;
  border-radius: 14px;
  align-items: flex-start;
  gap: 24px;
  padding: 40px 36px;
  transition: box-shadow .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  box-shadow: 0 12px 40px #0f1b2d0f;
}

.service-card-icon {
  background: #fff;
  border-radius: 12px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  display: flex;
  box-shadow: 0 2px 12px #0f1b2d0a;
}

.service-card-icon-svg {
  fill: none;
  stroke: #0f1b2d;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8px;
  width: 24px;
  height: 24px;
}

.service-card-content {
  flex: 1;
}

.service-card-title {
  color: #0f1b2d;
  margin-bottom: 10px;
  font-family: Playfair Display, serif;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
}

.service-card-text {
  color: #8a95a5;
  font-size: .88rem;
  line-height: 1.7;
}

.midcta-section {
  background: #fff;
  padding: 100px 48px;
}

.midcta-card {
  background: #0f1b2d;
  border-radius: 16px;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 64px 72px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.midcta-card-bg-shape {
  pointer-events: none;
  background: #c5a55a0f;
  border-radius: 50%;
  width: 280px;
  height: 280px;
  position: absolute;
  top: -60px;
  right: -40px;
}

.midcta-card-bg-shape-sm {
  pointer-events: none;
  background: #ffffff08;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  position: absolute;
  bottom: -30px;
  right: 160px;
}

.midcta-left {
  z-index: 2;
  flex: 1;
  position: relative;
}

.midcta-label {
  color: #c5a55a;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-size: .72rem;
  font-weight: 600;
  display: block;
}

.midcta-title {
  color: #fff;
  letter-spacing: -.01em;
  margin-bottom: 10px;
  font-family: Playfair Display, serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.25;
}

.midcta-desc {
  color: #ffffff80;
  font-size: .92rem;
  line-height: 1.65;
}

.midcta-right {
  z-index: 2;
  flex-shrink: 0;
  position: relative;
}

.midcta-btn {
  color: #0f1b2d;
  letter-spacing: .01em;
  white-space: nowrap;
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 8px;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: DM Sans, sans-serif;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .25s;
  display: inline-flex;
}

.midcta-btn:hover {
  background: #f0f0f0;
}

.pricing-section {
  background: #f6f7f9;
  padding: 170px 48px;
}

.pricing-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.pricing-grid {
  grid-template-rows: auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  display: grid;
}

.pricing-card {
  text-align: center;
  background: #fff;
  border: 1px solid #0f1b2d0f;
  border-radius: 10px;
  padding: 48px 36px;
}

.pricing-card-name {
  color: #8a95a5;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: .76rem;
  font-weight: 600;
}

.pricing-card-price {
  color: #0f1b2d;
  margin-bottom: 12px;
  font-family: Playfair Display, serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}

.pricing-card-currency {
  vertical-align: top;
  font-size: 1.5rem;
  font-weight: 500;
}

.pricing-card-desc {
  color: #8a95a5;
  margin-bottom: 36px;
  font-size: .9rem;
  line-height: 1.65;
}

.pricing-card-features {
  text-align: left;
  margin-bottom: 40px;
}

.pricing-card-feature {
  color: #4a5568;
  border-bottom: 1px solid #0f1b2d0d;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: .88rem;
  display: flex;
}

.pricing-card-check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.pricing-card-feature-text {
  display: block;
}

.pricing-card-feature-last {
  color: #4a5568;
  border-bottom: none;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: .88rem;
  display: flex;
}

.pricing-card-btn {
  color: #fff;
  cursor: pointer;
  background: #0f1b2d;
  border: none;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 14px 0;
  font-family: DM Sans, sans-serif;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .25s;
  display: inline-flex;
}

.pricing-card-btn:hover {
  background: #1a2b40;
}

.pricing-card-featured {
  text-align: center;
  background: #0f1b2d;
  border: 1px solid #0f1b2d;
  border-radius: 12px;
  padding: 48px 36px;
  position: relative;
  transform: scale(1.04);
  box-shadow: 0 20px 60px #0f1b2d26;
}

.pricing-card-badge-popular {
  color: #0f1b2d;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  background: #c5a55a;
  border-radius: 20px;
  padding: 6px 20px;
  font-family: DM Sans, sans-serif;
  font-size: .7rem;
  font-weight: 700;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.pricing-card-name-light {
  color: #ffffff73;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: .76rem;
  font-weight: 600;
}

.pricing-card-price-light {
  color: #fff;
  margin-bottom: 12px;
  font-family: Playfair Display, serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}

.pricing-card-desc-light {
  color: #ffffff80;
  margin-bottom: 36px;
  font-size: .9rem;
  line-height: 1.65;
}

.pricing-card-feature-light {
  color: #ffffffa6;
  border-bottom: 1px solid #ffffff14;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: .88rem;
  display: flex;
}

.pricing-card-feature-light-last {
  color: #ffffffa6;
  border-bottom: none;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: .88rem;
  display: flex;
}

.pricing-card-btn-light {
  color: #0f1b2d;
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 14px 0;
  font-family: DM Sans, sans-serif;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .25s;
  display: inline-flex;
}

.pricing-card-btn-light:hover {
  background: #f0f0f0;
}

.apply-section {
  background: #0f1b2d;
  padding: 160px 48px;
}

.apply-inner {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.apply-title {
  color: #fff;
  letter-spacing: -.025em;
  margin-bottom: 16px;
  font-family: Playfair Display, sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.5;
}

.apply-subtitle {
  color: #ffffff73;
  margin-bottom: 56px;
  font-size: 1rem;
  line-height: 1.65;
}

.apply-form {
  text-align: left;
  flex-direction: column;
  gap: 18px;
  display: flex;
}

.apply-form-group {
  flex-direction: column;
  display: flex;
}

.apply-form-label {
  color: #ffffff80;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: .78rem;
  font-weight: 600;
  display: block;
}

.apply-form-input {
  color: #fff;
  background-color: #ffffff0f;
  border: 1px solid #ffffff26;
  border-radius: 6px;
  outline: none;
  width: 100%;
  min-height: 3rem;
  padding: .94rem 20px;
  font-family: DM Sans, sans-serif;
  font-size: .95rem;
}

.apply-form-btn {
  color: #0f1b2d;
  letter-spacing: .01em;
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 6px;
  width: 100%;
  margin-top: 16px;
  padding: 16px 0;
  font-family: DM Sans, sans-serif;
  font-size: .92rem;
  font-weight: 700;
  transition: background .25s;
}

.apply-form-btn:hover {
  background: #f0f0f0;
}

.footer-section {
  background: #fff;
  border-top: 1px solid #0f1b2d0d;
  padding: 64px 48px;
}

.footer-inner {
  justify-content: space-between;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
}

.footer-logo {
  align-items: center;
  text-decoration: none;
  display: flex;
}

.footer-logo-img {
  width: auto;
  height: 50px;
  display: block;
}

.footer-links {
  gap: 32px;
  display: flex;
}

.footer-link {
  color: #8a95a5;
  font-size: .84rem;
  text-decoration: none;
  transition: color .25s;
}

.footer-link:hover {
  color: #0f1b2d;
}

.footer-copy {
  color: #8a95a5;
  font-size: .8rem;
}

.nav-wrap {
  z-index: 1000;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: #fffffff5;
  border-bottom: 1px solid #0f1b2d0d;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.nav-inner {
  justify-content: space-between;
  align-items: center;
  max-width: 1140px;
  height: 76px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
}

.nav-logo {
  align-items: center;
  width: auto;
  height: auto;
  text-decoration: none;
  display: flex;
  position: relative;
}

.nav-logo-img {
  width: auto;
  max-width: 2.5rem;
  display: block;
}

.nav-logo-img-white {
  opacity: 0;
  width: auto;
  max-width: 2.5rem;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.nav-links {
  align-items: center;
  gap: 40px;
  display: flex;
}

.nav-link {
  color: #6b7a8d;
  letter-spacing: .01em;
  font-size: .88rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .25s;
}

.nav-link:hover {
  color: #0f1b2d;
}

.nav-cta {
  color: #fff;
  letter-spacing: .01em;
  cursor: pointer;
  background: #0f1b2d;
  border: none;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  padding: 11px 28px;
  font-family: DM Sans, sans-serif;
  font-size: .86rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .25s;
  display: inline-flex;
}

.nav-cta:hover {
  background: #1a2b40;
}

.nav-hamburger {
  cursor: pointer;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  display: none;
}

.nav-hamburger-line {
  background: #0f1b2d;
  border-radius: 2px;
  width: 22px;
  height: 2px;
  display: block;
}

.nav-drawer {
  z-index: 999;
  background: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
}

.nav-drawer-link {
  color: #0f1b2d;
  font-family: DM Sans, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  text-decoration: none;
}

.nav-drawer-cta {
  color: #fff;
  cursor: pointer;
  background: #0f1b2d;
  border: none;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  padding: 15px 40px;
  font-family: DM Sans, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
}

.body {
  font-family: DM Sans, sans-serif;
  line-height: 1.5;
}

.form {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  flex-flow: column;
  display: flex;
}

.btn-arrow-box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}

.btn-arrow-default {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
}

.btn-arrow-svg {
  width: 20px;
  height: 20px;
  display: block;
}

.btn-arrow-active {
  opacity: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
}

.div-block {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  display: flex;
}

.hidden {
  display: none;
}

.div-block-2 {
  display: flex;
}

.field-label {
  color: #ffffff80;
  font-size: .78rem;
  font-weight: 600;
}

.select-field {
  color: #90989a;
  background-color: #ffffff0f;
  border: 1px solid #ffffff26;
  min-height: 3rem;
}

.textarea {
  color: #90989a;
  -webkit-text-fill-color: inherit;
  resize: vertical;
  background-color: #ffffff0f;
  background-clip: border-box;
  border: 1px solid #ffffff26;
  width: 100%;
  min-height: 60px;
  position: static;
}

@media screen and (max-width: 991px) {
  .hero-section {
    padding: 170px 32px 120px;
  }

  .hero-title {
    font-size: 3.6rem;
  }

  .properties-section {
    padding: 100px 32px;
  }

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

  .process-section {
    padding: 100px 32px;
  }

  .process-track-grid {
    gap: 24px;
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .process-card {
    padding: 36px 28px;
  }

  .process-card-ghost {
    font-size: 5.5rem;
  }

  .about-section {
    padding: 100px 32px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-img-wrap {
    height: 360px;
  }

  .services-section {
    padding: 100px 32px 48px;
  }

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

  .midcta-section {
    padding: 72px 32px;
  }

  .midcta-card {
    gap: 36px;
    padding: 48px;
  }

  .pricing-section, .apply-section {
    padding: 100px 32px;
  }

  .footer-section {
    padding: 48px 32px;
  }

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

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .page-hero {
    padding: 140px 32px 56px;
  }

  .page-hero-title {
    font-size: 2.8rem;
  }

  .filter-bar {
    gap: 12px;
  }

  .listings-section {
    padding: 16px 32px 100px;
  }

  .prop-hero-img {
    height: 380px;
  }

  .prop-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .prop-title {
    font-size: 2.2rem;
  }

  .prop-apply-card {
    position: static;
  }

  .gallery-container {
    padding: 0 32px;
  }

  .gallery-desktop-viewport {
    height: 420px;
  }

  .gallery-nav-btn {
    width: 40px;
    height: 40px;
  }

  .gallery-nav-btn.gallery-nav-prev {
    left: 12px;
  }

  .gallery-nav-btn.gallery-nav-next {
    right: 12px;
  }

  .furn-hero {
    padding: 150px 32px 72px;
  }

  .furn-hero-title {
    font-size: 2.8rem;
  }

  .furn-packages {
    padding: 32px 32px 100px;
  }

  .furn-packages-grid {
    gap: 20px;
  }

  .furn-how {
    padding: 80px 32px;
  }

  .furn-how-grid {
    gap: 20px;
  }

  .furn-cta {
    padding: 80px 32px;
  }

  .furn-cta-card {
    gap: 36px;
    padding: 48px;
  }
}

@media screen and (max-width: 767px) {
  .hero-section {
    padding: 148px 24px 100px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-btn-primary, .hero-btn-secondary {
    width: 100%;
  }

  .properties-section {
    padding: 80px 24px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .section-title {
    font-size: 2.2rem;
  }

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

  .process-section {
    padding: 80px 24px;
  }

  .process-track-grid {
    display: none;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-card {
    padding: 36px 28px;
  }

  .process-card-ghost {
    font-size: 5rem;
  }

  .about-section {
    padding: 80px 24px;
  }

  .about-grid {
    gap: 40px;
  }

  .about-title {
    font-size: 2rem;
  }

  .services-section {
    padding: 80px 24px 36px;
  }

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

  .midcta-section {
    padding: 56px 24px;
  }

  .midcta-card {
    text-align: center;
    border-radius: 12px;
    flex-direction: column;
    gap: 28px;
    padding: 40px 28px;
  }

  .midcta-title {
    font-size: 1.45rem;
  }

  .midcta-btn {
    justify-content: center;
    width: 100%;
  }

  .pricing-section {
    padding: 80px 24px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-card-featured {
    transform: scale(1);
  }

  .apply-section {
    padding: 80px 24px;
  }

  .apply-title {
    font-size: 2rem;
  }

  .footer-section {
    padding: 40px 24px;
  }

  .footer-inner {
    text-align: center;
    flex-direction: column;
    gap: 24px;
  }

  .nav-inner {
    padding: 0 24px;
  }

  .page-hero {
    padding: 130px 24px 44px;
  }

  .page-hero-title {
    font-size: 2.2rem;
  }

  .filter-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .filter-price-trigger {
    min-width: 100%;
  }

  .filter-price-panel {
    min-width: 100%;
    left: 0;
    right: 0;
  }

  .filter-status-group {
    width: 100%;
  }

  .filter-radio-label {
    flex: 1;
    justify-content: center;
  }

  .filter-clear-btn {
    text-align: center;
    width: 100%;
    margin-left: 0;
  }

  .listings-section {
    padding: 12px 24px 80px;
  }

  .listings-top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .back-wrap {
    padding: 88px 20px 0;
  }

  .prop-hero-wrap {
    padding: 20px 20px 0;
  }

  .prop-hero-img {
    border-radius: 10px;
    height: 280px;
  }

  .prop-content {
    padding: 36px 20px 72px;
  }

  .prop-title {
    font-size: 1.8rem;
  }

  .prop-price {
    font-size: 1.3rem;
  }

  .prop-details-grid {
    grid-template-columns: 1fr;
  }

  .gallery-container {
    padding: 0 20px;
  }

  .gallery-desktop {
    display: none;
  }

  .gallery-mobile {
    display: block;
  }

  .gallery-mobile-viewport {
    height: 280px;
  }

  .furn-hero {
    padding: 130px 24px 56px;
  }

  .furn-hero-title {
    font-size: 2.2rem;
  }

  .furn-hero-subtitle {
    font-size: .95rem;
  }

  .furn-packages {
    padding: 24px 24px 80px;
  }

  .furn-packages-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .furn-card-popular {
    transform: scale(1);
  }

  .furn-how {
    padding: 64px 24px;
  }

  .furn-how-title {
    font-size: 2rem;
  }

  .furn-how-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .furn-cta {
    padding: 56px 24px;
  }

  .furn-cta-card {
    text-align: center;
    border-radius: 12px;
    flex-direction: column;
    gap: 28px;
    padding: 40px 28px;
  }

  .furn-cta-btn {
    justify-content: center;
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .hero-title {
    font-size: 2.15rem;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .process-card-title.new {
    margin-top: 0;
  }

  .about-title {
    font-size: 1.75rem;
  }

  .service-card.reveal {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
  }

  .pricing-card {
    padding: 36px 24px;
  }

  .pricing-card-price {
    font-size: 2.6rem;
  }

  .pricing-card-featured {
    padding: 36px 24px;
  }

  .pricing-card-price-light {
    font-size: 2.6rem;
  }

  .apply-title {
    font-size: 1.75rem;
  }

  .page-hero-title {
    font-size: 1.85rem;
  }

  .filter-status-group {
    justify-content: space-between;
  }

  .prop-title {
    font-size: 1.6rem;
  }

  .prop-apply-card {
    padding: 28px 20px;
  }

  .gallery-container {
    padding: 0 16px;
  }

  .gallery-mobile-viewport {
    height: 240px;
  }

  .gallery-mobile-thumbs {
    gap: 3px;
    padding: 8px;
  }

  .gallery-mobile-thumb {
    width: 50px;
    min-width: 50px;
    height: 40px;
  }

  .furn-hero-title {
    font-size: 1.85rem;
  }

  .furn-card {
    padding: 36px 24px 32px;
  }

  .furn-card-price {
    font-size: 2.4rem;
  }

  .furn-card-popular {
    padding: 36px 24px 32px;
  }

  .furn-card-price-light {
    font-size: 2.4rem;
  }

  .farnish-stuff.anim-prop-card {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }
}
