/* OBX Paradise — Shared styles */

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

:root {
  /* Palette */
  --pale: #E6DFE4;
  --slate: #BCC7D9;
  --sky: #80B5D7;
  --deep: #133250;
  --white: #EDEDED;
  /* Mapped */
  --navy: #0f2942;
  --ocean: var(--sky);
  --teal: var(--sky);
  --aqua: var(--sky);
  --gold: var(--pale);
  --glass: rgba(237, 237, 237, 0.06);
  --glass2: rgba(237, 237, 237, 0.1);
  --beach: #F4E4BC;
  /* Buttons */
  --mango-tango: var(--sky);
  --spicy-red: var(--sky);
  --lemon-glaze: var(--slate);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--deep);
  color: var(--white);
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  transition: background 0.4s, padding 0.4s;
}

nav.scrolled {
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(20px);
  padding: 1rem 4rem;
  border-bottom: 1px solid rgba(78, 205, 196, 0.15);
}

nav.solid {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(78, 205, 196, 0.15);
  padding: 1rem 4rem;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
}

.nav-logo span { color: var(--aqua); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.83rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  cursor: pointer;
}

.nav-links a:hover { color: var(--beach); }

.nav-cta {
  background: var(--sky);
  border: 1px solid var(--sky);
  color: var(--deep);
  padding: 0.6rem 1.5rem;
  border-radius: 2px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, color 0.2s;
}

.nav-cta:hover {
  background: var(--slate);
  color: var(--deep);
  border-color: var(--slate);
}

.nav-back {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
}

.nav-back:hover { color: var(--aqua); }

.nav-back svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, rgba(10, 22, 40, 0.6) 0%, rgba(10, 22, 40, 0.2) 50%, rgba(10, 22, 40, 0.82) 100%),
    url('../images/other_images/beautiful-shot-colorful-sunset-beach.jpg') center/cover no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to top, var(--deep), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 0.73rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--beach);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--beach);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  font-weight: 300;
  line-height: 1.06;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}

.hero h1 em { color: #F4E4BC; font-style: italic; font-weight: 600; }

.hero > .hero-content > p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.68);
  max-width: 460px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
}

.hero-stats {
  position: absolute;
  bottom: 5rem;
  right: 4rem;
  z-index: 2;
  display: flex;
  gap: 3rem;
  opacity: 0;
  animation: fadeUp 0.9s 1s forwards;
}

.stat { text-align: center; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--aqua);
  display: block;
}

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--sky);
  color: var(--deep);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover {
  background: var(--slate);
  color: var(--deep);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  padding: 1rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: var(--sky);
  color: var(--sky);
}

.btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  min-width: 5rem;
  padding: 0 1.25rem;
  background: var(--beach);
  color: var(--deep);
  border: 1px solid var(--beach);
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1;
  text-align: center;
  box-sizing: border-box;
}

.btn-book:hover {
  background: #E8D4A8;
  color: var(--deep);
  border-color: #E8D4A8;
}

.btn-submit {
  width: 100%;
  background: var(--sky);
  color: var(--deep);
  padding: 1rem;
  border: none;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s, transform 0.15s;
}

.btn-submit:hover {
  background: var(--slate);
  color: var(--deep);
  transform: translateY(-2px);
}

/* ─── SECTION COMMONS ─── */
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 4rem;
}

.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--beach);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--beach);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.section-title em { font-style: italic; color: var(--beach); }

.section-sub {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
  max-width: 540px;
}

/* ─── CONDO CARDS ─── */
#condos { background: var(--deep); }

.condos-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.condos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.condo-card {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s, border-color 0.3s, box-shadow 0.4s;
  cursor: pointer;
  animation: fadeUp 0.7s forwards;
  text-decoration: none;
  color: inherit;
}

a.condo-card:hover {
  color: inherit;
}

.condo-card:nth-child(2) { animation-delay: 0.15s; }
.condo-card:nth-child(3) { animation-delay: 0.3s; }

.condo-card:hover {
  transform: translateY(-8px);
  border-color: rgba(78, 205, 196, 0.38);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
}

.condo-img-wrap {
  position: relative;
  height: 255px;
  overflow: hidden;
  background: var(--navy);
}

.condo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s;
}

.condo-card:hover .condo-img-wrap img { transform: scale(1.03); }

.condo-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--deep);
  font-size: 0.63rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  font-weight: 500;
}

.condo-badge.sound {
  background: var(--teal);
  color: var(--white);
}

.condo-rating {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(10, 22, 40, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.76rem;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.star { color: var(--gold); }

.condo-body { padding: 1.8rem; }

.condo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.condo-location {
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.07em;
  margin-bottom: 1.2rem;
}

.condo-desc {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.condo-amenities {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.amenity {
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.28rem 0.72rem;
  border-radius: 2px;
  background: rgba(78, 205, 196, 0.09);
  color: var(--aqua);
  border: 1px solid rgba(78, 205, 196, 0.18);
}

.condo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.condo-footer-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.condo-price .label-text { font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); }

.card-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  min-width: 5rem;
  padding: 0 1.25rem;
  background: var(--sky);
  color: var(--deep);
  border: 1px solid var(--sky);
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  margin-right: 0.5rem;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
  text-align: center;
  box-sizing: border-box;
}

.card-view-btn:hover {
  background: var(--slate);
  color: var(--deep);
  border-color: var(--slate);
}

/* ─── EXPERIENCE ─── */
#experience {
  background: linear-gradient(180deg, var(--deep) 0%, var(--navy) 100%);
}

.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.exp-img-mosaic { position: relative; height: 540px; }

.exp-img {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

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

.exp-img.a { top: 0; left: 0; width: 65%; height: 58%; }
.exp-img.b { bottom: 0; right: 0; width: 60%; height: 54%; }
.exp-img.c {
  bottom: 22%;
  left: 5%;
  width: 34%;
  height: 29%;
  border: 3px solid rgba(78, 205, 196, 0.38);
  z-index: 2;
}

.features { display: flex; flex-direction: column; gap: 1.8rem; margin-top: 2.5rem; }

.feature { display: flex; gap: 1.2rem; align-items: flex-start; }

.feature-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: rgba(78, 205, 196, 0.09);
  border: 1px solid rgba(78, 205, 196, 0.22);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--aqua);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
}

.feature-text p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.54);
  line-height: 1.6;
}

/* ─── CONTACT ─── */
#contact { background: var(--navy); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.8rem; margin-top: 2rem; }

.contact-item { display: flex; gap: 1.2rem; align-items: flex-start; }

.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(78, 205, 196, 0.09);
  border: 1px solid rgba(78, 205, 196, 0.22);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--aqua);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 1rem; margin-bottom: 0.2rem; }

.contact-item a,
.contact-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item a:hover { color: var(--aqua); }

.policy-links { display: flex; gap: 1.5rem; margin-top: 2.5rem; flex-wrap: wrap; }

.policy-btn {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: none;
  padding-bottom: 0.1rem;
  font-family: 'DM Sans', sans-serif;
  transition: color 0.2s, border-color 0.2s;
}

.policy-btn:hover {
  color: var(--aqua);
  border-color: var(--aqua);
}

.quick-contact {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  padding: 2.5rem;
}

.quick-contact h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 0.4rem;
}

.quick-contact > p { font-size: 0.84rem; color: rgba(255, 255, 255, 0.45); margin-bottom: 2rem; }

.form-col { display: flex; flex-direction: column; gap: 1rem; }

label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  display: block;
  margin-bottom: 0.35rem;
}

input,
select,
textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  color: var(--white);
  padding: 0.75rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus { border-color: var(--aqua); }

select option { background: var(--navy); }

textarea { resize: vertical; min-height: 90px; }

/* Form validation: shake + red when required field missing */
@keyframes input-shake {
  0%, 100% { transform: translateX(0); }
  15% { transform: translateX(-8px); }
  30% { transform: translateX(8px); }
  45% { transform: translateX(-6px); }
  60% { transform: translateX(6px); }
  75% { transform: translateX(-3px); }
}
input.input-shake-error,
select.input-shake-error,
textarea.input-shake-error {
  border-color: #c44;
  box-shadow: 0 0 0 1px #c44;
  animation: input-shake 0.5s ease-in-out;
}

/* ─── FOOTER ─── */
footer {
  background: var(--deep);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4rem;
}

.footer-inner { max-width: 1280px; margin: 0 auto; }

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo { display: block; margin-bottom: 0.8rem; font-size: 1.4rem; }

.footer-brand p {
  font-size: 0.81rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.65;
  max-width: 250px;
}

.footer-col h5 {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col a,
.footer-col button {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  padding: 0;
}

.footer-col a:hover,
.footer-col button:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.22);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ═══ PROPERTY DETAIL PAGE ═══ */
.property-page { background: var(--deep); padding-top: 80px; }

/* ─── CAROUSEL ─── */
.carousel-wrap {
  position: relative;
  width: 100%;
  height: 65vh;
  min-height: 420px;
  overflow: hidden;
  background: #000;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide { min-width: 100%; height: 100%; flex-shrink: 0; background: var(--deep); }

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 22, 40, 0.65);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  z-index: 5;
}

.car-btn:hover {
  background: rgba(78, 205, 196, 0.3);
  border-color: var(--aqua);
}

.car-btn.prev { left: 1.5rem; }
.car-btn.next { right: 1.5rem; }

.car-dots {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}

.car-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
}

.car-dot.active {
  background: var(--aqua);
  transform: scale(1.3);
}

.car-counter {
  position: absolute;
  bottom: 1.2rem;
  right: 1.5rem;
  background: rgba(10, 22, 40, 0.6);
  backdrop-filter: blur(6px);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.35rem 0.8rem;
  border-radius: 2px;
  z-index: 5;
}

.thumb-strip {
  display: flex;
  gap: 0.6rem;
  padding: 1rem 4rem;
  background: var(--navy);
  overflow-x: auto;
  scrollbar-width: none;
}

.thumb-strip::-webkit-scrollbar { display: none; }

.thumb {
  width: 90px;
  height: 62px;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  border: 2px solid transparent;
  transition: border-color 0.2s, opacity 0.2s;
  opacity: 0.6;
}

.thumb:hover,
.thumb.active { border-color: var(--aqua); opacity: 1; }

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

/* ─── PROPERTY DETAIL LAYOUT ─── */
.prop-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 4rem 6rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3.5rem;
  align-items: start;
}

.prop-header { margin-bottom: 2rem; }

.prop-badge-row { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.8rem; flex-wrap: wrap; }

.prop-badge {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 2px;
  font-weight: 500;
}

.prop-badge.beach { background: var(--pale); color: var(--deep); }
.prop-badge.sound { background: var(--sky); color: var(--white); }
.prop-badge.new {
  background: rgba(78, 205, 196, 0.2);
  color: var(--aqua);
  border: 1px solid rgba(78, 205, 196, 0.3);
}

.prop-stars { display: flex; align-items: center; gap: 0.3rem; font-size: 0.84rem; color: rgba(255, 255, 255, 0.55); }

.prop-stars .stars { color: var(--gold); letter-spacing: 0.05em; }

.prop-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.prop-loc { font-size: 0.88rem; color: rgba(255, 255, 255, 0.48); letter-spacing: 0.05em; }

.prop-divider { border: none; border-top: 1px solid rgba(255, 255, 255, 0.08); margin: 2rem 0; }

.prop-section-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 1rem;
}

.prop-desc { font-size: 0.95rem; color: rgba(255, 255, 255, 0.68); line-height: 1.8; }

.prop-desc p { margin-bottom: 1rem; }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 1rem;
}

.amenity-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.84rem; color: rgba(255, 255, 255, 0.65); }

.amenity-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--aqua);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ─── REVIEWS ─── */
.reviews-section { margin-top: 3rem; }

.reviews-summary { display: flex; align-items: center; gap: 2rem; margin-bottom: 2rem; }

.review-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--aqua);
  line-height: 1;
}

.review-meta { display: flex; flex-direction: column; gap: 0.2rem; }

.review-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 0.1em; }

.review-count { font-size: 0.78rem; color: rgba(255, 255, 255, 0.4); }

.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.review-card {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  padding: 1.5rem;
}

.review-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.8rem; }

.reviewer { display: flex; align-items: center; gap: 0.8rem; }

.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}

.reviewer-name { font-size: 0.9rem; font-weight: 500; }

.reviewer-date { font-size: 0.73rem; color: rgba(255, 255, 255, 0.35); }

.review-rating { color: var(--gold); font-size: 0.85rem; }

.review-text { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); line-height: 1.65; }

/* ─── BOOKING SIDEBAR ─── */
.booking-sidebar {
  position: sticky;
  top: 100px;
  background: var(--navy);
  border: 1px solid rgba(78, 205, 196, 0.2);
  border-radius: 6px;
  padding: 2rem;
}

.sidebar-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; margin-bottom: 0.3rem; }

.sidebar-sub { font-size: 0.78rem; color: rgba(255, 255, 255, 0.4); margin-bottom: 1.8rem; }

.form-group { display: flex; flex-direction: column; margin-bottom: 1rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }

.sidebar-summary {
  background: rgba(78, 205, 196, 0.07);
  border: 1px solid rgba(78, 205, 196, 0.17);
  border-radius: 3px;
  padding: 1.1rem;
  margin: 1.2rem 0;
}

.sum-row { display: flex; justify-content: space-between; font-size: 0.83rem; padding: 0.25rem 0; }

.sum-row .slabel { color: rgba(255, 255, 255, 0.45); }

.sum-row.total {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0.4rem;
  padding-top: 0.7rem;
}

.sum-row.total .val { color: var(--aqua); font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; }

.sidebar-note { font-size: 0.73rem; color: rgba(255, 255, 255, 0.35); text-align: center; margin-top: 1rem; line-height: 1.5; }

.sidebar-note a { color: var(--aqua); text-decoration: none; }

.success-message { display: none; text-align: center; padding: 1rem 0; }

.success-message.show { display: block; }

.success-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }

.success-message h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; margin-bottom: 0.5rem; }

.success-message p { color: rgba(255, 255, 255, 0.52); font-size: 0.84rem; line-height: 1.65; }

/* ─── POLICY MODALS ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 12, 25, 0.88);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  padding: 1rem;
}

.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--navy);
  border: 1px solid rgba(78, 205, 196, 0.2);
  border-radius: 6px;
  width: 100%;
  max-width: 540px;
  padding: 3rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.35s;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.open .modal { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.38);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.modal-close:hover { color: var(--aqua); }

.modal h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; margin-bottom: 1.2rem; }

.modal p,
.modal li { font-size: 0.86rem; color: rgba(255, 255, 255, 0.6); line-height: 1.7; margin-bottom: 0.6rem; }

.modal ul { padding-left: 1.2rem; margin-bottom: 1rem; }

.modal h4 { font-size: 0.9rem; letter-spacing: 0.05em; margin: 1.2rem 0 0.4rem; color: var(--aqua); }

/* ─── TESTIMONIALS ─── */
#testimonials { background: linear-gradient(180deg, var(--navy) 0%, var(--deep) 100%); }

.test-wrap { max-width: 1100px; margin: 0 auto; }

.test-header { text-align: center; margin-bottom: 4rem; }

.test-header .section-eyebrow { justify-content: center; }

.test-header .section-eyebrow::before { display: none; }

.circ-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.circ-images { position: relative; height: 22rem; perspective: 1000px; }

.circ-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.8s cubic-bezier(0.4, 2, 0.3, 1);
  border: 1px solid rgba(78, 205, 196, 0.12);
}

.circ-content { display: flex; flex-direction: column; gap: 1.5rem; }

.circ-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  font-style: italic;
  position: relative;
  min-height: 120px;
}

.circ-quote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--aqua);
  opacity: 0.25;
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  line-height: 1;
  font-family: 'Cormorant Garamond', serif;
}

.circ-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; color: var(--white); }

.circ-desig { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--aqua); margin-top: 0.15rem; }

.circ-arrows { display: flex; gap: 1rem; margin-top: 0.5rem; }

.circ-arrow {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ocean);
  transition: background 0.3s, transform 0.2s;
  flex-shrink: 0;
}

.circ-arrow:hover { background: var(--aqua); transform: scale(1.08); }

.circ-arrow svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.circ-dots { display: flex; gap: 0.5rem; align-items: center; margin-left: 0.5rem; }

.circ-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.circ-dot.active { background: var(--aqua); transform: scale(1.4); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .prop-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .condos-grid { grid-template-columns: 1fr 1fr; }
  .condos-grid .condo-card:nth-child(3) { grid-column: 1 / -1; }
  .exp-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .exp-img-mosaic { height: 360px; }
}

@media (max-width: 768px) {
  nav {
    padding: 0.85rem 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  nav.scrolled,
  nav.solid { padding: 0.75rem 1rem; }
  .nav-logo {
    font-size: 1.35rem;
    min-width: 0;
  }
  .nav-links { display: none; }
  .nav-back {
    font-size: 0.72rem;
    padding: 0.35rem 0;
  }
  .nav-back svg { width: 14px; height: 14px; }
  .nav-cta {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }
  /* Keep hero content below nav so "Avon, North Carolina · Hatteras Island" doesn’t merge with header */
  .hero {
    padding: 0 1rem;
    padding-top: 6rem;
    justify-content: flex-start;
    min-height: 100vh;
  }
  .hero-content { margin-top: 0.5rem; }
  .hero-stats {
    position: static;
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .stat-num { font-size: 1.75rem; }
  .stat-label { font-size: 0.62rem; }
  .section-inner { padding: 4rem 1rem; }
  .condos-grid { grid-template-columns: 1fr; }
  .condos-grid .condo-card:nth-child(3) { grid-column: auto; }
  .condo-rating {
    font-size: 0.68rem;
    padding: 0.25rem 0.5rem;
    gap: 0.2rem;
    max-width: 50%;
    flex-wrap: wrap;
    white-space: normal;
    line-height: 1.2;
  }
  .condo-badge { font-size: 0.58rem; padding: 0.25rem 0.6rem; }
  footer { padding: 3rem 1rem; }
  .footer-top { flex-direction: column; }
  /* Property page: carousel — prevent squishing on mobile */
  .carousel-wrap {
    height: 50vh;
    min-height: 280px;
    max-height: 320px;
  }
  .carousel-slide img {
    object-fit: cover;
    object-position: center;
  }
  .car-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .car-btn.prev { left: 0.75rem; }
  .car-btn.next { right: 0.75rem; }
  .car-dots { bottom: 0.85rem; }
  .car-counter {
    bottom: 0.85rem;
    right: 0.75rem;
    font-size: 0.68rem;
    padding: 0.25rem 0.5rem;
  }
  .thumb-strip {
    padding: 0.75rem 1rem;
    gap: 0.5rem;
  }
  .thumb {
    width: 72px;
    height: 50px;
  }
  /* Property header (rating/badges) — give room so not squished */
  .prop-layout { padding: 2rem 1rem 4rem; }
  .prop-header { margin-bottom: 1.5rem; }
  .prop-badge-row { gap: 0.5rem; margin-bottom: 0.6rem; }
  .prop-badge { font-size: 0.6rem; padding: 0.25rem 0.6rem; }
  .prop-stars {
    flex-wrap: wrap;
    gap: 0.25rem;
    font-size: 0.78rem;
    margin-bottom: 0.25rem;
  }
  .prop-title { font-size: clamp(1.75rem, 6vw, 2.2rem); }
  .prop-loc { font-size: 0.8rem; }
  .reviews-summary { flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
  .review-score { font-size: 2.75rem; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .circ-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .circ-images { height: 16rem; }
}

/* Extra small screens: nav and hero */
@media (max-width: 480px) {
  nav {
    padding: 0.7rem 0.75rem;
  }
  .nav-logo { font-size: 1.2rem; }
  .nav-cta { padding: 0.4rem 0.75rem; font-size: 0.65rem; }
  .hero {
    padding-top: 5.5rem;
  }
  .hero-stats { gap: 1rem; }
  .stat-num { font-size: 1.5rem; }
  .carousel-wrap { min-height: 240px; max-height: 280px; }
  .thumb { width: 60px; height: 42px; }
}
