/* =========================================================
   Sugar Sand — Coastal Beach Theme
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --sand:       #e8dcc8;
  --sand-light: #f5f0e8;
  --dune:       #c4a96a;
  --dune-dark:  #8b7040;
  --ocean:      #4a8fa8;
  --ocean-deep: #1b5c77;
  --seafoam:    #a8cfc0;
  --white:      #fdfcf9;
  --charcoal:   #2c2c2c;
  --text:       #3a3530;
  --text-light: #7a7068;
  --ff-serif:   'Cormorant Garamond', Georgia, serif;
  --ff-sans:    'Montserrat', sans-serif;
  --transition: 0.4s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

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

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}

.section-label {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dune);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.15;
}

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

.lead-text {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-light);
}

/* ── Navbar ── */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

#mainNav.scrolled {
  background: rgba(253, 252, 249, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

#mainNav .navbar-brand img {
  height: 52px;
  transition: height var(--transition);
}

#mainNav.scrolled .navbar-brand img {
  height: 44px;
}

#mainNav .nav-link {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9) !important;
  padding: 0.4rem 1rem !important;
  transition: color var(--transition);
}

#mainNav.scrolled .nav-link {
  color: var(--text) !important;
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
  color: var(--dune) !important;
}

#mainNav .navbar-toggler {
  border: 1px solid rgba(255,255,255,0.4);
}

#mainNav.scrolled .navbar-toggler {
  border-color: var(--dune);
}

#mainNav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#mainNav.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844,44,44,0.9%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-cta {
  background: var(--dune) !important;
  color: var(--white) !important;
  border-radius: 2px;
  padding: 0.45rem 1.2rem !important;
  margin-left: 0.5rem;
}

.nav-cta:hover {
  background: var(--dune-dark) !important;
  color: var(--white) !important;
}

/* ── Hero Slider ── */
#heroSlider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

#heroSlider .carousel-item {
  height: 100vh;
  min-height: 600px;
}

#heroSlider .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}

#heroSlider .carousel-item.active img {
  transform: scale(1);
}

#heroSlider .carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.18) 0%,
    rgba(0,0,0,0.35) 50%,
    rgba(0,0,0,0.55) 100%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  z-index: 10;
}

.hero-eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dune);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
  margin-bottom: 1rem;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
}

.hero-sub {
  font-family: var(--ff-serif);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--dune);
  margin: 0 auto 2.5rem;
}

.btn-hero {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.7);
  padding: 0.85rem 2.5rem;
  transition: all var(--transition);
  background: transparent;
}

.btn-hero:hover {
  background: var(--dune);
  border-color: var(--dune);
  color: var(--white);
}

.btn-primary-gold {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--dune);
  border: 1px solid var(--dune);
  padding: 0.85rem 2.5rem;
  transition: all var(--transition);
  border-radius: 2px;
}

.btn-primary-gold:hover {
  background: var(--dune-dark);
  border-color: var(--dune-dark);
  color: var(--white);
}

.btn-outline-gold {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dune-dark);
  background: transparent;
  border: 1px solid var(--dune);
  padding: 0.85rem 2.5rem;
  transition: all var(--transition);
  border-radius: 2px;
}

.btn-outline-gold:hover {
  background: var(--dune);
  color: var(--white);
}

/* Carousel controls */
#heroSlider .carousel-control-prev,
#heroSlider .carousel-control-next {
  width: 60px;
  opacity: 0.6;
  transition: opacity var(--transition);
}

#heroSlider .carousel-control-prev:hover,
#heroSlider .carousel-control-next:hover {
  opacity: 1;
}

#heroSlider .carousel-indicators {
  margin-bottom: 2.5rem;
}

#heroSlider .carousel-indicators button {
  width: 30px;
  height: 2px;
  background: rgba(255,255,255,0.5);
  border: none;
  transition: all var(--transition);
}

#heroSlider .carousel-indicators button.active {
  background: var(--dune);
  width: 50px;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.7;
}

.scroll-cue span {
  font-family: var(--ff-sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  transform: rotate(45deg);
  animation: bounce 1.8s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}

/* ── Sea Oats SVG Divider ── */
.sea-oats-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}

.sea-oats-divider svg {
  display: block;
  width: 100%;
}

/* ── Intro / Story Section ── */
#intro {
  background: var(--white);
  padding: 7rem 0 5rem;
}

.intro-quote {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ocean-deep);
  line-height: 1.5;
  border-left: 3px solid var(--dune);
  padding-left: 2rem;
  margin: 2.5rem 0;
}

.intro-quote cite {
  display: block;
  font-size: 0.8rem;
  font-family: var(--ff-sans);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-top: 0.75rem;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--ocean-deep);
  padding: 3rem 0;
}

.stat-item {
  text-align: center;
  color: var(--white);
  padding: 1rem;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--ff-serif);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  color: var(--dune);
  display: block;
}

.stat-label {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  display: block;
  margin-top: 0.4rem;
}

/* ── Lots Section ── */
#lots {
  background: var(--sand-light);
  padding: 7rem 0;
}

.lot-card {
  background: var(--white);
  border: none;
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}

.lot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1) !important;
}

.lot-card .card-img-top {
  height: 240px;
  object-fit: cover;
}

.lot-card .card-body {
  padding: 2rem;
}

.lot-tag {
  font-family: var(--ff-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ocean);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 1rem;
}

.lot-card h3 {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.lot-feature-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.5rem;
}

.lot-feature-list li {
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--sand);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lot-feature-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--dune);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Amenities ── */
#amenities {
  background: var(--white);
  padding: 7rem 0;
}

.amenity-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  transition: background var(--transition);
  border-radius: 4px;
}

.amenity-item:hover {
  background: var(--sand-light);
}

.amenity-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  color: var(--ocean);
  display: flex;
  align-items: center;
  justify-content: center;
}

.amenity-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--ocean);
  fill: none;
  stroke-width: 1.5;
}

.amenity-title {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.amenity-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── Location ── */
#location {
  background: var(--sand-light);
  padding: 7rem 0;
}

.location-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.location-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.location-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(27, 92, 119, 0.92);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 2px;
}

.location-badge strong {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 400;
  display: block;
}

.location-badge span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.location-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--ocean-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-detail-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
}

.location-detail-text strong {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dune-dark);
  margin-bottom: 0.2rem;
}

.location-detail-text p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* ── Gallery ── */
#gallery {
  background: var(--charcoal);
  padding: 7rem 0;
}

#gallery .section-label,
#gallery .section-title {
  color: rgba(255,255,255,0.9);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 6px;
  margin-top: 3rem;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.9);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

/* ── Contact / Inquiry ── */
#contact {
  background: var(--white);
  padding: 7rem 0;
}

.contact-form-wrap {
  background: var(--sand-light);
  padding: 3rem;
  border-radius: 2px;
}

.form-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.form-control {
  border: 1px solid var(--sand);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(74, 143, 168, 0.15);
  outline: none;
}

.form-select {
  border: 1px solid var(--sand);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  color: var(--text);
  background-color: var(--white);
}

.form-select:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(74, 143, 168, 0.15);
}

.contact-info-block {
  padding: 2rem 0;
  border-bottom: 1px solid var(--sand);
}

.contact-info-block:last-child { border-bottom: none; }

.contact-info-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dune);
  margin-bottom: 0.4rem;
}

/* ── Footer ── */
#footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 2rem;
}

#footer .footer-logo img {
  height: 50px;
  margin-bottom: 1rem;
}

#footer .footer-tagline {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
}

.footer-heading {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dune);
  margin-bottom: 1.25rem;
}

#footer ul {
  list-style: none;
  padding: 0;
}

#footer ul li {
  margin-bottom: 0.5rem;
}

#footer ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

#footer ul li a:hover {
  color: var(--dune);
}

.footer-divider {
  border-color: rgba(255,255,255,0.1);
  margin: 2.5rem 0 1.5rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

.footer-sea-oats {
  text-align: center;
  margin-bottom: 3rem;
  opacity: 0.25;
}

.footer-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
}

.footer-inquire-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.footer-cta {
  font-size: 0.68rem;
}

.footer-credit-link {
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer-credit-link:hover {
  color: var(--dune);
}

/* ── Sea Oat Decorative SVG Elements ── */
.sea-oat-bg {
  position: absolute;
  pointer-events: none;
  opacity: 0.08;
  z-index: 0;
}

.sea-oat-bg.left {
  left: -20px;
  bottom: 0;
  height: 70%;
  opacity: 0.07;
}

.sea-oat-bg.right {
  right: -40px;
  bottom: 0;
  height: 55%;
}

/* ── Section Padding Helper ── */
.section-pad { padding: 7rem 0; }

/* ── Fade-in on Scroll ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ── Subpage — nav always in scrolled state ── */
body.subpage #mainNav {
  background: rgba(253, 252, 249, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

body.subpage #mainNav .navbar-brand img {
  height: 44px;
}

body.subpage #mainNav .nav-link {
  color: var(--text) !important;
}

body.subpage #mainNav .navbar-toggler {
  border-color: var(--dune);
}

body.subpage #mainNav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844,44,44,0.9%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Page Hero Banner ── */
.page-hero {
  padding-top: 80px; /* clear fixed nav */
  background: var(--ocean-deep);
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0 4rem;
}

.page-hero-eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dune);
  display: block;
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
}

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

.page-hero-sub {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  margin-top: 0.75rem;
}

/* Breadcrumb */
.page-breadcrumb {
  background: var(--sand-light);
  border-bottom: 1px solid var(--sand);
  padding: 0.75rem 0;
}

.page-breadcrumb .breadcrumb {
  margin: 0;
  font-size: 0.78rem;
  font-family: var(--ff-sans);
}

.page-breadcrumb .breadcrumb-item a {
  color: var(--ocean);
}

.page-breadcrumb .breadcrumb-item.active {
  color: var(--text-light);
}

.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-light);
}

/* ── Page Body ── */
.page-body {
  padding: 5rem 0 6rem;
  background: var(--white);
}

.page-sidebar {
  background: var(--sand-light);
  padding: 2rem;
  border-radius: 2px;
  position: sticky;
  top: 100px;
}

.sidebar-heading {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dune-dark);
  margin-bottom: 1rem;
}

.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav li {
  border-bottom: 1px solid var(--sand);
}

.sidebar-nav li:last-child {
  border-bottom: none;
}

.sidebar-nav li a {
  display: block;
  padding: 0.6rem 0;
  font-size: 0.88rem;
  color: var(--text-light);
  transition: color var(--transition);
}

.sidebar-nav li a:hover,
.sidebar-nav li a.active {
  color: var(--ocean-deep);
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 220px);
  }

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  .stat-item:last-child { border-bottom: none; }
}

@media (max-width: 767.98px) {
  .hero-title { font-size: 2.8rem; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item { height: 250px; }

  .contact-form-wrap { padding: 2rem 1.5rem; }

  #mainNav .navbar-collapse {
    background: rgba(253, 252, 249, 0.98);
    padding: 1rem 1.5rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--sand);
  }

  #mainNav .navbar-collapse .nav-link {
    color: var(--text) !important;
    padding: 0.6rem 0 !important;
    border-bottom: 1px solid var(--sand);
    margin-left: 0 !important;
  }

  #mainNav .navbar-collapse .nav-cta {
    display: block;
    text-align: center;
    margin: 0.75rem 0 0 !important;
    padding: 0.75rem 1.2rem !important;
    border-bottom: none !important;
    border-radius: 2px;
  }
}

/* ── Lots Section ── */
.lots-sea-oat-wrap {
  position: relative;
  overflow: hidden;
}

.lots-container {
  z-index: 1;
}

.lot-card-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-light);
}

.lot-tag--interior {
  background: var(--seafoam);
  color: var(--ocean-deep);
}

.arch-standards-box {
  background: var(--white);
  border-left: 3px solid var(--dune);
}

.arch-standards-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── Sea Oats Divider Modifier ── */
.sea-oats-divider--dark {
  background: #2c2c2c;
}

/* ── Contact Info ── */
.contact-location-name {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 300;
}

.contact-location-sub {
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-website-link {
  color: var(--ocean);
  font-size: 0.9rem;
}

.contact-expect-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

.contact-doc-list {
  list-style: none;
  padding: 0;
}

.contact-doc-item {
  margin-bottom: 0.5rem;
}

.contact-doc-link {
  font-size: 0.85rem;
  color: var(--ocean);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ── Pricing Page ── */
.plat-map-img {
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

.pricing-legend {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  margin: 1.25rem 0 2.5rem;
}

.pricing-legend-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text);
}

.legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-dot--available { background: #3a9a3a; }
.legend-dot--contract  { background: #cc3333; }

.lot-tag--available {
  background: #3a9a3a;
  color: var(--white);
}

.lot-tag--contract {
  background: #cc3333;
  color: var(--white);
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--sand);
  padding: 1.75rem 2rem;
  height: 100%;
  transition: box-shadow var(--transition);
}

.pricing-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.pricing-card-lot {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.pricing-card-price {
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.pricing-section-label {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pricing-section-label--available { color: #3a9a3a; }
.pricing-section-label--contract  { color: #cc3333; }

.pricing-note {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.9;
  border-top: 1px solid var(--sand);
  padding-top: 1.5rem;
  margin-top: 2.5rem;
}

/* ── Documents Page ── */
.doc-group-label {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dune);
  margin: 2rem 0 0.75rem;
}

.doc-group-label:first-child { margin-top: 0; }

.doc-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--sand);
  margin-bottom: 0.5rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.doc-item:hover {
  border-color: var(--dune);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.doc-item-icon {
  color: var(--dune);
  flex-shrink: 0;
}

.doc-item-info {
  flex: 1;
  min-width: 0;
}

.doc-item-name {
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 0.2rem;
}

.doc-item-size {
  font-size: 0.72rem;
  color: var(--text-light);
  font-family: var(--ff-sans);
}

.doc-item-link {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ocean);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--transition);
}

.doc-item-link:hover { color: var(--ocean-deep); }

.sidebar-divider {
  border-color: var(--sand);
  margin: 1.5rem 0;
}
