/* ============================================
   payalsellshomes.com — SEO Pages Brand System
   ============================================ */

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

:root {
  --plum: #2D1F3D;
  --plum-light: #3d2d52;
  --plum-dark: #1a1228;
  --gold: #D4AF37;
  --gold-light: #e8ca6a;
  --gold-muted: rgba(212, 175, 55, 0.15);
  --champagne: #F3EBD4;
  --champagne-light: #faf6ec;
  --white: #FFFFFF;
  --warm-gray: #8a7f72;
  --text-dark: #2a2a2a;
  --text-body: #4a4545;
  --border-light: rgba(212, 175, 55, 0.25);
  --shadow-soft: 0 4px 24px rgba(45, 31, 61, 0.08);
  --shadow-card: 0 2px 12px rgba(45, 31, 61, 0.06);
  --radius: 8px;
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--plum);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 600; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 500; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 500; }

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--plum); }

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

/* === SITE HEADER === */
.site-header {
  background: var(--plum);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .logo {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.site-header nav a {
  color: var(--champagne);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-left: 28px;
  transition: color 0.2s;
}
.site-header nav a:hover { color: var(--gold); }

/* === HERO BANNER === */
.hero-banner {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 60%, var(--plum) 100%);
  color: var(--champagne);
  padding: clamp(60px, 10vw, 120px) 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212,175,55,0.08) 0%, transparent 60%);
}

.hero-banner h1 {
  color: var(--champagne);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 16px;
  position: relative;
}

.hero-banner .subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(243, 235, 212, 0.8);
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.hero-banner .gold-accent {
  color: var(--gold);
}

/* === CONTENT SECTIONS === */
.content-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 64px 0;
}

.section + .section {
  border-top: 1px solid var(--border-light);
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* === CARDS === */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  font-size: 0.92rem;
  color: var(--text-body);
}

/* === STAT HIGHLIGHTS === */
.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 40px 0;
}

.stat-item {
  text-align: center;
  min-width: 140px;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* === CTA SECTION === */
.cta-section {
  background: var(--champagne-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  margin: 48px 0;
}

.cta-button {
  display: inline-block;
  background: var(--gold);
  color: var(--plum);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 20px;
}

.cta-button:hover {
  background: var(--gold-light);
  color: var(--plum);
  transform: translateY(-1px);
}

/* === BREADCRUMB === */
.breadcrumb {
  padding: 14px 24px;
  background: var(--champagne-light);
  font-size: 0.8rem;
  color: var(--warm-gray);
}

.breadcrumb a { color: var(--plum); font-weight: 500; }
.breadcrumb span { margin: 0 8px; color: var(--border-light); }

/* === FAQ / ACCORDION === */
.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
}

.faq-question {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--plum);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 0.92rem;
  line-height: 1.7;
  padding-right: 40px;
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding-top: 12px;
}

/* === FOOTER === */
.site-footer {
  background: var(--plum);
  color: var(--champagne);
  padding: 48px 24px 32px;
  text-align: center;
}

.site-footer .footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
}

.site-footer .footer-tagline {
  font-size: 0.85rem;
  color: rgba(243, 235, 212, 0.6);
  margin-bottom: 24px;
}

.site-footer .footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.site-footer .footer-links a {
  color: var(--champagne);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.site-footer .footer-legal {
  font-size: 0.72rem;
  color: rgba(243, 235, 212, 0.4);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 20px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .site-header nav { display: none; }
  .card-grid { grid-template-columns: 1fr; }
  .stat-row { gap: 20px; }
  .cta-section { padding: 32px 20px; }
  .hero-banner { padding: 48px 20px; }
}
