/* ═══════════════════════════════════════════════════════
   ARISE POOLS — DESIGN DNA TOKEN SYSTEM
   ═══════════════════════════════════════════════════════ */
:root {
  --cream: #F7F1E8;
  --stone: #1A1814;
  --gold: #C9A464;
  --gold-light: #E5CB9A;
  --gold-dark: #8B6914;
  --pool-blue: #1C738A;
  --pool-deep: #0C2736;
  --slate: #2E2A25;
  --mist: #8A8480;
  --radius: 0.25rem;
}

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

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--stone);
  background: var(--cream);
  font-size: 1.05rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.font-display { font-family: 'Cormorant Garamond', serif; }
.font-body { font-family: 'Jost', sans-serif; }

/* ═══════════════════════════════════════════════════════
   PAGE SEPARATOR — between preview sections
   ═══════════════════════════════════════════════════════ */
.page-separator {
  text-align: center;
  padding: 60px 24px;
  background: var(--stone);
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.page-separator .page-label {
  display: inline-block;
  border: 1px solid rgba(201,164,100,0.3);
  padding: 12px 32px;
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(247,241,232,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,164,100,0.2);
  padding: 0 clamp(24px, 5vw, 80px);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  color: var(--stone);
  text-transform: uppercase;
  font-weight: 400;
}
.nav-logo .amp { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26,24,20,0.8);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--slate) !important;
  color: var(--cream) !important;
  padding: 10px 24px !important;
  font-weight: 600 !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--stone) !important; }

/* ─── Hamburger Button ─── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--stone);
  margin: 5px 0;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Mobile Drawer ─── */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(247,241,232,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-drawer.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.mobile-drawer-links {
  list-style: none;
  padding: 0;
}
.mobile-drawer-links li {
  border-bottom: 1px solid rgba(26,24,20,0.08);
}
.mobile-drawer-links a {
  display: block;
  padding: 18px 0;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26,24,20,0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-drawer-links a:hover { color: var(--gold); }

/* ─── Mobile Accordion for Services sub-links ─── */
.mobile-drawer-links .has-sub > a::after {
  content: '▾';
  float: right;
  font-size: 0.9rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}
.mobile-drawer-links .has-sub.open > a::after {
  transform: rotate(180deg);
}
.mobile-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 16px;
}
.mobile-sub.open {
  max-height: 400px;
}
.mobile-sub a {
  padding: 12px 0;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--mist);
  border-bottom: none;
}
.mobile-sub li { border-bottom: 1px solid rgba(26,24,20,0.04); }
.mobile-sub li:last-child { border-bottom: none; }

.mobile-drawer-cta {
  display: block;
  text-align: center;
  margin-top: 24px;
  padding: 16px 24px;
  background: var(--gold);
  color: var(--stone);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
}
.mobile-drawer-cta:hover { background: var(--gold-dark); color: #fff; }

/* ─── Sticky Bottom CTAs (mobile only) ─── */
.sticky-ctas {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--stone);
  padding: 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.sticky-ctas-row {
  display: flex;
}
.sticky-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
}
.sticky-cta-btn.primary {
  background: var(--gold);
  color: var(--stone);
}
.sticky-cta-btn.primary:hover { background: var(--gold-dark); color: #fff; }
.sticky-cta-btn.secondary {
  background: var(--pool-deep);
  color: #fff;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.sticky-cta-btn.secondary:hover { background: var(--pool-blue); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .sticky-ctas { display: block; }
  body { padding-bottom: 56px; }
}

/* ═══════════════════════════════════════════════════════
   HERO — Full-bleed with slideshow
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,37,53,0.82) 0%, rgba(27,107,138,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  padding-top: 72px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-eyebrow-text {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  color: rgba(255,255,255,0.95);
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 800px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--stone);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}
.btn-gold:hover { background: var(--gold-light); }
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* Stats bar */
.hero-stats {
  position: absolute;
  right: clamp(24px, 5vw, 80px);
  bottom: 80px;
  z-index: 2;
  display: flex;
  gap: 48px;
}
.hero-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

/* Slide dots */
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s;
}
.hero-dot.active { background: var(--gold); }

@media (max-width: 768px) {
  .hero-stats { display: none; }
}

/* ═══════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--stone);
  padding: 20px 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(247,241,232,0.6);
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.trust-icon {
  color: var(--gold);
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════
   SECTION PATTERNS
   ═══════════════════════════════════════════════════════ */
.section {
  padding: 96px 24px;
}
@media (min-width: 768px) {
  .section { padding: 128px 24px; }
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-wide {
  max-width: 1400px;
  margin: 0 auto;
}

/* Eyebrow */
.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}
.eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.eyebrow-text {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
}

/* Section heading */
.section-heading {
  text-align: center;
  margin-bottom: 48px;
}
.section-heading h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--stone);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.section-heading .subtitle {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: rgba(26,24,20,0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 1rem;
}
.gold-rule {
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto 0;
}

/* ═══════════════════════════════════════════════════════
   DREAM CENTER TEASER
   ═══════════════════════════════════════════════════════ */
.dream-teaser {
  background: rgba(201,164,100,0.06);
  border-top: 1px solid rgba(201,164,100,0.15);
  border-bottom: 1px solid rgba(201,164,100,0.15);
}
.dream-teaser-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.dream-teaser h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--stone);
  margin-bottom: 16px;
}
.dream-teaser p {
  color: rgba(26,24,20,0.6);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   SERVICE CARDS
   ═══════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: white;
  border: 1px solid rgba(201,164,100,0.1);
  padding: 32px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: rgba(201,164,100,0.3);
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}
.service-card .icon {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--stone);
  margin-bottom: 12px;
  font-weight: 400;
}
.service-card p {
  font-size: 0.9rem;
  color: rgba(26,24,20,0.55);
  line-height: 1.7;
}
.service-card .bottom-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.5s;
}
.service-card:hover .bottom-line { transform: scaleX(1); }

/* ═══════════════════════════════════════════════════════
   PORTFOLIO GRID
   ═══════════════════════════════════════════════════════ */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid rgba(201,164,100,0.2);
  background: transparent;
  color: var(--mist);
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,164,100,0.06);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.portfolio-item:hover img { transform: scale(1.1); }
.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.portfolio-item:hover .portfolio-item-overlay { opacity: 1; }
.portfolio-item-title {
  font-family: 'Cormorant Garamond', serif;
  color: white;
  font-size: 1.3rem;
  font-weight: 400;
  transform: translateY(10px);
  transition: transform 0.4s;
}
.portfolio-item:hover .portfolio-item-title { transform: translateY(0); }
.portfolio-item-cat {
  font-family: 'Jost', sans-serif;
  color: var(--gold);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 4px;
  transform: translateY(10px);
  transition: transform 0.4s 0.05s;
}
.portfolio-item:hover .portfolio-item-cat { transform: translateY(0); }

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
.testimonial-card {
  border: 1px solid rgba(201,164,100,0.15);
  background: rgba(247,241,232,0.5);
  padding: 32px;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}
.star { color: var(--gold); font-size: 0.9rem; }
.testimonial-quote {
  font-family: 'Jost', sans-serif;
  font-style: italic;
  color: rgba(26,24,20,0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--stone);
}
.testimonial-location {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mist);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════
   CTA SECTION (Pool-deep band)
   ═══════════════════════════════════════════════════════ */
.cta-section {
  background: var(--pool-deep);
  color: var(--cream);
  padding: 96px 24px;
  text-align: center;
}
@media (min-width: 768px) {
  .cta-section { padding: 128px 24px; }
}
.cta-section-inner {
  max-width: 800px;
  margin: 0 auto;
}
.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  color: white;
}
.cta-section p {
  color: rgba(247,241,232,0.6);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

/* ═══════════════════════════════════════════════════════
   THE ARISE METHOD (PROCESS)
   ═══════════════════════════════════════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.process-step {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid rgba(201,164,100,0.1);
  background: white;
  position: relative;
  counter-increment: step;
}
.process-step::before {
  content: counter(step);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: rgba(201,164,100,0.2);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.process-step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  color: var(--stone);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.85rem;
  color: rgba(26,24,20,0.55);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   CITY GRID
   ═══════════════════════════════════════════════════════ */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
.city-badge {
  text-align: center;
  padding: 24px 16px;
  border: 1px solid rgba(201,164,100,0.15);
  background: white;
  transition: all 0.3s;
  cursor: pointer;
}
.city-badge:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}
.city-badge .city-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--stone);
  margin-bottom: 4px;
}
.city-badge .city-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   FINANCING STRIP
   ═══════════════════════════════════════════════════════ */
.financing-strip {
  background: rgba(201,164,100,0.06);
  border-top: 1px solid rgba(201,164,100,0.15);
  border-bottom: 1px solid rgba(201,164,100,0.15);
  padding: 48px 24px;
  text-align: center;
}
.financing-strip .amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--gold);
  font-weight: 300;
}
.financing-strip .period {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  color: var(--mist);
}
.financing-strip .note {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  color: rgba(26,24,20,0.5);
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════
   PAGE HERO (Interior pages)
   ═══════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  margin-top: 72px;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,37,53,0.85) 0%, rgba(27,107,138,0.6) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 0 24px;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: rgba(255,255,255,0.95);
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════════════
   LEAD FORM
   ═══════════════════════════════════════════════════════ */
.lead-form {
  max-width: 600px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(26,24,20,0.7);
  margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(201,164,100,0.2);
  background: white;
  padding: 0 16px;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: var(--stone);
  outline: none;
  transition: border-color 0.3s;
}
.form-group textarea {
  height: 120px;
  padding: 16px;
  resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
}
.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--stone);
  border: none;
  height: 52px;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-submit:hover { background: var(--gold-light); }

/* ═══════════════════════════════════════════════════════
   DREAM CENTER CONFIGURATOR PREVIEW
   ═══════════════════════════════════════════════════════ */
.dream-step {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.dream-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2rem;
  color: var(--stone);
  margin-bottom: 8px;
}
.dream-step .step-desc {
  color: rgba(26,24,20,0.6);
  font-style: italic;
  margin-bottom: 32px;
}
.dream-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.dream-option {
  border: 1px solid rgba(201,164,100,0.15);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  background: white;
}
.dream-option:hover, .dream-option.selected {
  border-color: var(--gold);
  background: rgba(201,164,100,0.06);
}
.dream-option .option-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
  display: block;
}
.dream-option .option-label {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}
.dream-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}
.dream-chip {
  border: 1px solid rgba(201,164,100,0.2);
  padding: 8px 20px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  color: var(--stone);
  cursor: pointer;
  transition: all 0.3s;
  background: white;
}
.dream-chip:hover, .dream-chip.selected {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--stone);
}
.step-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}
.step-dot {
  width: 32px;
  height: 3px;
  background: rgba(201,164,100,0.2);
}
.step-dot.active { background: var(--gold); }
.step-dot.completed { background: var(--gold-dark); }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  background: var(--stone);
  color: rgba(247,241,232,0.8);
  padding: 80px 24px 40px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 12px;
}
.footer-logo .amp { color: var(--gold); }
.footer-section-title {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: rgba(247,241,232,0.6);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: rgba(247,241,232,0.6);
}
.footer-contact-icon { color: var(--gold); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(247,241,232,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(247,241,232,0.3);
}

/* ═══════════════════════════════════════════════════════
   PHOTO GALLERY — Full preview grid
   ═══════════════════════════════════════════════════════ */
.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (max-width: 900px) {
  .photo-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .photo-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
.photo-gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.photo-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.photo-gallery-item:hover img { transform: scale(1.08); }

/* ═══════════════════════════════════════════════════════
   PREVIEW HEADER
   ═══════════════════════════════════════════════════════ */
.preview-banner {
  background: linear-gradient(135deg, #0C2736 0%, #1C738A 100%);
  color: white;
  text-align: center;
  padding: 40px 24px;
  position: relative;
  z-index: 1001;
}
.preview-banner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2rem;
  margin-bottom: 8px;
}
.preview-banner p {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  max-width: 700px;
  margin: 0 auto;
}
.preview-banner .badge {
  display: inline-block;
  background: var(--gold);
  color: var(--stone);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 16px;
}

/* Preview nav */
.preview-nav {
  background: var(--stone);
  padding: 12px 24px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 1001;
}
.preview-nav a {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,241,232,0.5);
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid rgba(247,241,232,0.1);
  transition: all 0.3s;
}
.preview-nav a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   FORM STATUS MESSAGES (production)
   ═══════════════════════════════════════════════════════ */
.form-status {
  margin-top: 16px;
  padding: 14px 18px;
  font-size: 0.9rem;
  line-height: 1.5;
  border-radius: var(--radius);
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(28,115,138,0.08);
  border: 1px solid rgba(28,115,138,0.3);
  color: var(--pool-deep);
}
.form-status.error {
  display: block;
  background: rgba(139,105,20,0.08);
  border: 1px solid rgba(201,164,100,0.4);
  color: var(--gold-dark);
}

/* ═══════════════════════════════════════════════════════
   CONTACT GRID — stack on mobile/tablet (production)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}
