/* ── Reset & variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:          #faf8f2;
  --surface:     rgba(255, 251, 244, 0.72);
  --text:        #1a1814;
  --text-muted:  #6a5f52;
  --border:      rgba(26, 24, 20, 0.08);
  --accent:      #b45837;
  --accent-soft: #e4b894;
  --radius:      14px;
  --blur:        blur(16px) saturate(150%);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(at 20% 0%, #fff4e0 0%, transparent 55%),
    radial-gradient(at 85% 15%, #f4e4d4 0%, transparent 60%),
    radial-gradient(at 50% 80%, #fdf0e5 0%, transparent 50%);
  min-height: 100vh;
}

/* ── NAV ── */
nav:not(.site-nav) {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(1rem, 5vw, 2.5rem);
}
.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 1rem;
}
.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent);
  color: #fdfaf5 !important;
  padding: 0.75rem 1.1rem;
  border-radius: 10px;
  font-weight: 500 !important;
  font-size: 0.875rem !important;
  transition: opacity 0.2s !important;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav-cta:hover { opacity: 0.88; color: #fdfaf5 !important; }

/* ── SITE NAV ── */
.site-nav {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  padding: 0 clamp(1rem, 5vw, 2.5rem);
  position: relative;
}
.site-nav-list {
  max-width: 1000px; margin: 0 auto;
  display: flex; list-style: none; overflow-x: auto;
}
.site-nav-list a {
  display: flex; align-items: center;
  padding: 0 0.875rem; min-height: 44px;
  font-size: 0.8rem; color: var(--text-muted);
  text-decoration: none; white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.site-nav-list a:hover { color: var(--text); }
.site-nav-list a[aria-current] { color: var(--accent); border-bottom-color: var(--accent); }

/* ── Hamburger toggle (mobile only) ── */
.site-nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; background: none; border: none; cursor: pointer; padding: 0;
  min-height: 44px; min-width: 44px;
}
.site-nav-toggle span {
  display: block; width: 18px; height: 2px;
  background: var(--text-muted); border-radius: 2px; transition: background 0.2s;
}
.site-nav-toggle[aria-expanded="true"] span { background: var(--accent); }

@media (max-width: 700px) {
  .site-nav { display: flex; align-items: center; justify-content: flex-end; min-height: 44px; }
  .site-nav-toggle { display: flex; }
  .site-nav-list {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0; z-index: 200;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(26,24,20,0.1);
    overflow-x: visible; margin: 0; max-width: none;
  }
  .site-nav-list.open { display: flex; }
  .site-nav-list li { border-bottom: 1px solid var(--border); }
  .site-nav-list li:last-child { border-bottom: none; }
  .site-nav-list a {
    padding: 0 clamp(1rem, 5vw, 2.5rem); min-height: 48px;
    border-bottom: none; border-left: 3px solid transparent; font-size: 0.875rem;
  }
  .site-nav-list a[aria-current] { border-bottom-color: transparent; border-left-color: var(--accent); }
}

/* ── HERO ── */
.hero {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 2.5rem) clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--accent);
  color: #fdfaf5;
  padding: 0.65rem 1.5rem;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  display: inline-block;
}
.btn-primary:hover { opacity: 0.88; }
.btn-secondary {
  background: var(--surface);
  color: var(--text);
  padding: 0.65rem 1.5rem;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  transition: border-color 0.2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--accent-soft); }
.btn-apply {
  background: transparent;
  color: var(--accent);
  padding: 0.6rem 1.5rem;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--accent);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.btn-apply:hover { background: var(--accent); color: #fff; }

/* Hero card */
.hero-card {
  background: var(--surface);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(180, 88, 55, 0.08), inset 0 1px 0 rgba(255,255,255,0.6);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.hero-card-badge {
  display: inline-block;
  background: rgba(180, 88, 55, 0.1);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  width: fit-content;
}
.hero-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1;
}
.hero-price sub {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
  vertical-align: baseline;
}
.hero-card-divider {
  height: 1px;
  background: var(--border);
}
.hero-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.hero-facts li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.hero-facts li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-soft);
  flex-shrink: 0;
}
.hero-facts strong { color: var(--text); font-weight: 500; }

/* ── SECTION WRAPPER ── */
section { padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 5vw, 2.5rem); }
.section-inner { max-width: 1000px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.section-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ── AWARD BAND ── */
.award-band {
  background: linear-gradient(135deg, rgba(180, 88, 55, 0.07) 0%, rgba(228, 184, 148, 0.12) 100%);
  border-top: 1px solid rgba(180, 88, 55, 0.15);
  border-bottom: 1px solid rgba(180, 88, 55, 0.15);
  padding: 1.25rem clamp(1rem, 5vw, 2.5rem);
}
.award-band-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.award-icon { font-size: 1.75rem; line-height: 1; flex-shrink: 0; }
.award-body { flex: 1; min-width: 200px; }
.award-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1875rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}
.award-sub { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.2rem; }
.award-divider {
  width: 1px; height: 36px;
  background: rgba(180, 88, 55, 0.2);
  flex-shrink: 0;
}
.award-cta {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.award-cta:hover { text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 600px) {
  .award-divider { display: none; }
  .award-cta { width: 100%; }
}

/* ── AMENITIES ── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.amenity-card {
  background: var(--surface);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(180, 88, 55, 0.05), inset 0 1px 0 rgba(255,255,255,0.5);
  padding: 1.375rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.amenity-icon { font-size: 1.5rem; line-height: 1; }
.amenity-name { font-size: 0.9375rem; font-weight: 500; color: var(--text); }
.amenity-desc { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.5; }

/* ── FLOOR PLAN ── */
.floorplan-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.floorplan-card {
  background: var(--surface);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(180, 88, 55, 0.07), inset 0 1px 0 rgba(255,255,255,0.6);
  padding: 2rem;
  overflow: hidden;
}
.floorplan-img-wrap {
  margin: -2rem -2rem 1.5rem -2rem;
  line-height: 0;
}
.floorplan-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
}
.floorplan-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.floorplan-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem; font-weight: 400; color: var(--text);
}
.floorplan-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem; font-weight: 400; color: var(--accent);
}
.floorplan-price sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem; color: var(--text-muted); font-weight: 400; vertical-align: baseline;
}
.floorplan-specs { display: flex; gap: 1.5rem; margin-bottom: 1.5rem; }
.spec-item { display: flex; flex-direction: column; gap: 0.2rem; }
.spec-value { font-size: 1.125rem; font-weight: 500; color: var(--text); }
.spec-label {
  font-size: 0.75rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.floorplan-divider { height: 1px; background: var(--border); margin-bottom: 1.5rem; }
.floorplan-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
  margin-bottom: 1.75rem;
}
.floorplan-features li {
  font-size: 0.875rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 0.5rem;
}
.floorplan-features li::before {
  content: '✓'; color: var(--accent); font-weight: 500; font-size: 0.8rem;
}
.availability-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(180, 88, 55, 0.08); border: 1px solid rgba(180, 88, 55, 0.15);
  color: var(--accent); font-size: 0.8125rem; font-weight: 500;
  padding: 0.35rem 0.75rem; border-radius: 8px; margin-bottom: 1.5rem;
}
.availability-badge::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--accent);
}
.floorplan-promo {
  background: rgba(180, 88, 55, 0.05);
  border: 1px dashed rgba(180, 88, 55, 0.25);
  border-radius: 8px; padding: 0.875rem 1rem;
  font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.5rem;
}
.floorplan-promo strong { color: var(--accent); }

/* ── LOCATION ── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.location-info { display: flex; flex-direction: column; gap: 1.25rem; }
.location-item { display: flex; gap: 1rem; align-items: flex-start; }
.location-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(180, 88, 55, 0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.location-item-title { font-size: 0.9375rem; font-weight: 500; color: var(--text); margin-bottom: 0.2rem; }
.location-item-text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.5; }
.map-embed {
  background: var(--surface); backdrop-filter: var(--blur);
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(180, 88, 55, 0.07);
  overflow: hidden; aspect-ratio: 4/3;
}
.map-embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 680px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; cursor: pointer; list-style: none;
  font-size: 1rem; font-weight: 500; color: var(--text); gap: 1rem;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-chevron { color: var(--accent); font-size: 0.875rem; flex-shrink: 0; transition: transform 0.2s; }
details[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding-bottom: 1.25rem; font-size: 0.9375rem;
  color: var(--text-muted); line-height: 1.7; max-width: 600px;
}

/* ── RESERVATION / CONTACT ── */
.form-section {
  background: var(--surface);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-top: 1px solid var(--border);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.form-intro p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.contact-links { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-link {
  display: flex; align-items: center; gap: 0.625rem;
  font-size: 0.9375rem; color: var(--text); text-decoration: none;
  font-weight: 500; transition: color 0.2s;
}
.contact-link:hover { color: var(--accent); }
.contact-link-icon {
  width: 34px; height: 34px; background: rgba(180, 88, 55, 0.08);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.hours-block {
  margin-top: 1.5rem; padding: 1rem 1.25rem;
  background: rgba(26, 24, 20, 0.03);
  border: 1px solid var(--border); border-radius: 10px;
}
.hours-block dt {
  font-size: 0.75rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.07em; color: var(--text-muted); margin-bottom: 0.5rem;
}
.hours-block dd { font-size: 0.875rem; color: var(--text); line-height: 1.6; }
form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-field { display: flex; flex-direction: column; gap: 0.375rem; }
label { font-size: 0.8125rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.01em; }
input, select, textarea {
  background: rgba(255, 251, 244, 0.5);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 0.625rem 0.875rem; font-size: 0.9375rem; font-family: inherit;
  color: var(--text); width: 100%; outline: none;
  transition: border-color 0.15s, box-shadow 0.15s; appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(180, 88, 55, 0.15);
}
textarea { resize: vertical; min-height: 90px; }
.form-submit { margin-top: 0.5rem; }
.form-note { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.testimonial-card {
  background: var(--surface); backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(180, 88, 55, 0.05), inset 0 1px 0 rgba(255,255,255,0.5);
  padding: 1.5rem; display: flex; flex-direction: column; gap: 0.875rem;
}
.stars { color: var(--accent); font-size: 0.875rem; letter-spacing: 0.05em; }
.testimonial-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.0625rem; font-style: italic; color: var(--text); line-height: 1.65;
}
.testimonial-author { font-size: 0.8125rem; font-weight: 500; color: var(--text-muted); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem clamp(1rem, 5vw, 2.5rem);
  background: var(--surface);
  backdrop-filter: var(--blur);
}
.footer-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem; font-weight: 400; color: var(--text); margin-bottom: 0.25rem;
}
.footer-brand span { color: var(--accent); }
.footer-addr { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.5; }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; }
.footer-phone { font-size: 1.0625rem; font-weight: 500; color: var(--accent); text-decoration: none; }
.footer-managed { font-size: 0.75rem; color: var(--text-muted); }
.footer-managed a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 2px; }
.footer-fb {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8125rem; color: var(--text-muted); text-decoration: none;
}
.footer-fb:hover { color: #1877f2; }
.footer-pages {
  max-width: 1000px; margin: 1.5rem auto 0;
  display: flex; flex-wrap: wrap; gap: 0.375rem 1.5rem;
  padding-bottom: 1.25rem; border-bottom: 1px solid var(--border);
}
.footer-pages a { font-size: 0.8125rem; color: var(--text-muted); text-decoration: none; }
.footer-pages a:hover { color: var(--accent); text-decoration: underline; }
.footer-legal { max-width: 1000px; margin: 1.25rem auto 0; font-size: 0.75rem; color: var(--text-muted); }

/* ── FORM SUCCESS STATE ── */
.form-success { display: none; text-align: center; padding: 2.5rem 1.5rem; }
.form-success-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.form-success h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.625rem; font-weight: 400; color: var(--text); margin-bottom: 0.5rem;
}
.form-success p { font-size: 0.9375rem; color: var(--text-muted); }

/* ── SLIDESHOW ── */
.slideshow {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(26, 24, 20, 0.04);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(180, 88, 55, 0.08);
  user-select: none;
}
.slideshow-track { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s ease; pointer-events: none; }
.slide.active { opacity: 1; pointer-events: auto; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26, 24, 20, 0.65));
  color: rgba(255, 251, 244, 0.92); font-size: 0.875rem;
  padding: 2rem 1.25rem 0.875rem; pointer-events: none;
}
.slide-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255, 251, 244, 0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border); border-radius: 50%;
  width: 44px; height: 44px; font-size: 1.1rem; cursor: pointer;
  color: var(--text); display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, opacity 0.2s; z-index: 10; padding: 0;
}
.slide-btn:hover { background: rgba(255, 251, 244, 1); }
.slide-prev { left: 0.75rem; }
.slide-next { right: 0.75rem; }
.slide-dots { display: flex; justify-content: center; gap: 0.5rem; padding: 0.875rem 0; }
.dot {
  /* 44×44 touch target; visual dot rendered via ::after */
  width: 44px; height: 44px; border-radius: 50%;
  background: transparent; border: none; cursor: pointer; padding: 0;
  display: flex; align-items: center; justify-content: center;
}
.dot::after {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border);
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.dot.active::after { background: var(--accent); transform: scale(1.25); }

/* ── FLOORPLAN CARDS (grid + availability) ── */
.floorplan-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 2.5rem;
}
.floorplan-card-unavailable { opacity: 0.65; }
.floorplan-card,
.floorplan-card-unavailable {
  cursor: pointer; transition: box-shadow 0.18s, outline 0.18s;
  outline: 2px solid transparent; outline-offset: 2px;
}
.floorplan-card.floorplan-card-selected,
.floorplan-card-unavailable.floorplan-card-selected {
  outline: 2px solid var(--accent);
  box-shadow: 0 8px 32px rgba(180, 88, 55, 0.18), inset 0 1px 0 rgba(255,255,255,0.6);
}
.unavailable-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(106, 95, 82, 0.08); border: 1px solid rgba(106, 95, 82, 0.18);
  color: var(--text-muted); font-size: 0.8125rem; font-weight: 500;
  padding: 0.35rem 0.75rem; border-radius: 8px; margin-bottom: 1.5rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .hero { grid-template-columns: 1fr; }
  .hero-card { order: -1; }
  .floorplan-wrap { grid-template-columns: 1fr; }
  .floorplan-cards { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .floorplan-features { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-right { align-items: flex-start; }
  .slide-btn { width: 44px; height: 44px; font-size: 0.9rem; }
  body {
    background-image:
      radial-gradient(at 50% 0%, #fff4e0 0%, transparent 60%),
      radial-gradient(at 100% 30%, #f4e4d4 0%, transparent 50%);
  }
}
