:root {
  --green: #1B3A2D;
  --green-light: #2A5A40;
  --cream: #FAF8F5;
  --cream-dark: #F0EDE8;
  --gold: #C4933A;
  --gold-light: #D4A84B;
  --charcoal: #1E1E1E;
  --warm-gray: #6B6560;
  --light-gray: #A89F98;
}

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
}

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(27,58,45,0.06);
}

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

.site-nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--green);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.site-nav-brand span {
  color: var(--gold);
}

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

.site-nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--warm-gray);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}

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

.site-nav-cta {
  background: var(--green);
  color: var(--cream) !important;
  padding: 8px 20px;
  border-radius: 2px;
  font-size: 0.82rem !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase;
}

.site-nav-cta:hover {
  background: var(--green-light);
  color: var(--cream) !important;
}

@media (max-width: 600px) {
  .site-nav-inner {
    padding: 0 24px;
  }
  .site-nav-links {
    gap: 16px;
  }
}

/* ── HERO ── */
.hero {
  background: var(--cream);
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  padding: 80px 60px 60px;
  align-items: center;
  min-height: 80vh;
}

.hero-text {
  padding-right: 60px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  color: var(--green);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--warm-gray);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--warm-gray);
  font-weight: 500;
}

.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
}

.hero-image-frame {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--green);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 32px 80px rgba(27,58,45,0.18);
}

.hero-room {
  width: 100%;
  height: 100%;
  position: relative;
  background: linear-gradient(160deg, #D4C9B8 0%, #C8BAA4 60%, #B8A88C 100%);
}

.room-floor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, #8B7355 0%, #A89478 40%, transparent 100%);
}

.room-window {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 55%;
  height: 55%;
  background: linear-gradient(135deg, #E8E0D0 0%, #D4C8B0 50%, #C8BCA0 100%);
  border: 3px solid #9A8570;
  border-radius: 2px;
  box-shadow: inset 0 0 40px rgba(255,255,255,0.3), inset 0 0 10px rgba(200,180,140,0.2);
}

.room-window::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; bottom: 0;
  width: 3px;
  background: #9A8570;
  transform: translateX(-50%);
}

.room-window::after {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 3px;
  background: #9A8570;
  transform: translateY(-50%);
}

.room-light {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 20%, rgba(255,248,230,0.35) 0%, transparent 60%);
  pointer-events: none;
}

.room-plant {
  position: absolute;
  bottom: 20%;
  right: 12%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plant-pot {
  width: 32px;
  height: 24px;
  background: linear-gradient(to bottom, #7A5C3A, #5A3E28);
  border-radius: 3px 3px 6px 6px;
}

.plant-leaves {
  display: flex;
  align-items: flex-end;
  gap: 0;
}

.leaf {
  background: #2D5A3A;
  border-radius: 50% 50% 50% 50% / 80% 80% 20% 20%;
}

.leaf-1 {
  width: 18px;
  height: 60px;
  transform: rotate(-20deg);
  margin-bottom: -10px;
}

.leaf-2 {
  width: 20px;
  height: 75px;
  background: #3A7A4A;
}

.leaf-3 {
  width: 16px;
  height: 55px;
  transform: rotate(15deg);
  margin-bottom: -10px;
  background: #2D5A3A;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: white;
  border-radius: 4px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.badge-rating {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1;
}

.badge-stars {
  display: flex;
  gap: 2px;
}

.badge-label {
  font-size: 10px;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.hero-accent-bar {
  position: absolute;
  top: 40px;
  right: -20px;
  width: 4px;
  height: 60%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  border-radius: 2px;
}

.hero-coastal-line {
  width: 100%;
  height: 4px;
  margin-top: auto;
}

.hero-coastal-line svg {
  width: 100%;
  height: 4px;
  display: block;
}

/* ── PROOF STATS ── */
.proof {
  background: var(--green);
  padding: 52px 0;
}

.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.proof-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
}

.proof-label {
  font-size: 0.75rem;
  color: rgba(250,248,245,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}

.proof-divider {
  width: 1px;
  height: 50px;
  background: rgba(250,248,245,0.15);
  flex-shrink: 0;
}

/* ── PRICING ── */
.pricing {
  background: var(--cream-dark);
  padding: 100px 0;
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--green);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--warm-gray);
  font-size: 1rem;
  max-width: 480px;
  margin-bottom: 56px;
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.pricing-card {
  background: white;
  border-radius: 4px;
  padding: 36px 32px;
  border: 1px solid rgba(27,58,45,0.08);
  position: relative;
}

.pricing-card-featured {
  background: var(--green);
  border: 1px solid var(--green);
}

.pricing-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.pricing-tier-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green);
}

.pricing-card-featured .pricing-tier-name {
  color: var(--cream);
}

.pricing-tier-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
}

.pricing-card-featured .pricing-tier-tag {
  background: rgba(250,248,245,0.15);
  color: var(--cream);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
}

.price-dollar {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--warm-gray);
  align-self: flex-start;
  margin-top: 6px;
}

.pricing-card-featured .price-dollar {
  color: rgba(250,248,245,0.7);
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1;
}

.pricing-card-featured .price-amount {
  color: var(--cream);
}

.price-per {
  font-size: 0.85rem;
  color: var(--warm-gray);
  margin-left: 4px;
}

.pricing-card-featured .price-per {
  color: rgba(250,248,245,0.6);
}

.price-note {
  font-size: 0.8rem;
  color: var(--light-gray);
  margin-bottom: 24px;
}

.pricing-card-featured .price-note {
  color: rgba(250,248,245,0.5);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--warm-gray);
}

.pricing-card-featured .pricing-features li {
  color: rgba(250,248,245,0.85);
}

.pricing-card-cta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(250,248,245,0.15);
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  text-align: center;
}

.pricing-book-btn {
  display: block;
  margin-top: 28px;
  padding: 13px 20px;
  background: var(--green);
  color: var(--cream);
  text-align: center;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.15s;
}

.pricing-book-btn:hover {
  background: var(--green-light);
}

.pricing-book-btn-featured {
  background: var(--gold);
  color: white;
}

.pricing-book-btn-featured:hover {
  background: var(--gold-light);
}

.pricing-trust-line {
  text-align: center;
  font-size: 0.82rem;
  color: var(--light-gray);
  letter-spacing: 0.04em;
  margin-bottom: 40px;
  margin-top: 8px;
}

.pricing-commercial {
  background: white;
  border-radius: 4px;
  padding: 36px 40px;
  border: 1px solid rgba(27,58,45,0.08);
}

.commercial-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.commercial-text h3 {
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 8px;
}

.commercial-text p {
  color: var(--warm-gray);
  font-size: 0.9rem;
  max-width: 380px;
}

.commercial-stats {
  display: flex;
  gap: 48px;
  flex-shrink: 0;
}

.commercial-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.cs-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
}

.cs-label {
  font-size: 0.75rem;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── PHILOSOPHY ── */
.philosophy {
  background: var(--cream);
  padding: 100px 0;
}

.philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.philosophy-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 400px;
}

.pv-top, .pv-bottom {
  display: contents;
}

.pv-block {
  background: white;
  border-radius: 4px;
  border: 1px solid rgba(27,58,45,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 12px;
  text-align: center;
}

.pv-block p {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  color: var(--green);
  line-height: 1.3;
}

.pv-block-1 { grid-column: 1; grid-row: 1; }
.pv-block-2 { grid-column: 2; grid-row: 1; }
.pv-block-3 { grid-column: 1; grid-row: 2; }
.pv-block-4 { grid-column: 2; grid-row: 2; }

.pv-block-inner {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pv-block-accent {
  background: var(--green);
  border-radius: 50%;
  width: 52px;
  height: 52px;
}

.pv-block-darker {
  background: var(--green);
}

.philosophy-text-side {
  display: flex;
  flex-direction: column;
}

.philosophy-body {
  color: var(--warm-gray);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.philosophy-quote {
  margin: 24px 0;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}

.philosophy-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--green);
  line-height: 1.6;
}

.philosophy-credentials {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.credential {
  display: flex;
  align-items: center;
  gap: 14px;
}

.credential-icon {
  width: 36px;
  height: 36px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.credential-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.credential-text strong {
  font-size: 0.9rem;
  color: var(--charcoal);
}

.credential-text span {
  font-size: 0.8rem;
  color: var(--light-gray);
}

/* ── AREAS ── */
.areas {
  background: var(--cream-dark);
  padding: 100px 0;
}

.areas-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.area-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(27,58,45,0.06);
  position: relative;
}

.area-card-beach {
  background: var(--green);
}

.area-wave {
  height: 50px;
  overflow: hidden;
}

.area-wave svg {
  width: 100%;
  height: 100%;
}

.area-swatch {
  height: 50px;
}

.area-swatch-riverside {
  background: linear-gradient(135deg, #8B6B4A, #6A4E35);
}

.area-swatch-mandarin {
  background: linear-gradient(135deg, #4A7A5A, #3A6050);
}

.area-card-content {
  padding: 24px;
}

.area-card h3 {
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 12px;
}

.area-card-beach .area-card-content h3 {
  color: var(--cream);
}

.area-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.area-card li {
  font-size: 0.85rem;
  color: var(--warm-gray);
}

.area-card-beach .area-card-content li,
.area-card-commercial .area-card-content li {
  color: rgba(250,248,245,0.7);
}

/* ── CLOSING ── */
.closing {
  background: var(--green);
  padding: 100px 0;
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.closing-deco {
  width: 60px;
  height: 60px;
  margin-bottom: 36px;
}

.closing-headline {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 20px;
}

.closing-body {
  color: rgba(250,248,245,0.7);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 40px;
}

.closing-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
}

.closing-phone {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.closing-note {
  font-size: 0.8rem;
  color: rgba(250,248,245,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.closing-footer {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(250,248,245,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 60px 32px 40px;
    min-height: auto;
  }

  .hero-text { padding-right: 0; }
  .hero-visual { display: none; }
  .hero-headline { font-size: 2.4rem; }

  .proof-inner {
    padding: 0 32px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .proof-divider { display: none; }
  .proof-stat { min-width: 120px; }

  .pricing-inner, .philosophy-inner, .areas-inner, .closing-inner {
    padding: 0 32px;
  }

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

  .philosophy-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .philosophy-visual {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .pv-block-1, .pv-block-2, .pv-block-3, .pv-block-4 {
    grid-column: auto;
    grid-row: auto;
  }

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

  .commercial-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .commercial-stats {
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }

  .closing-footer {
    gap: 16px;
  }
}
