/* ============================================
   SOLD WITH PAUL — Global Styles
   Dark & Premium Real Estate Theme
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:wght@300;400;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #0e1018;
  --bg-card: #12141d;
  --bg-footer: #111827;
  --bg-nav: rgba(10, 10, 15, 0.92);
  --gold: #c9a96e;
  --gold-light: #d4af37;
  --gold-hover: #e0c380;
  --text-white: #f0f0f0;
  --text-offwhite: #d5d5d5;
  --text-muted: #8a8a9a;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1200px;
  --transition: 0.3s ease;
  --gold-border: 1px solid rgba(201, 169, 110, 0.25);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-offwhite);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--gold-hover);
}

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

ul, ol {
  list-style: none;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--text-white);
  font-weight: 600;
  line-height: 1.25;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
  margin-bottom: 1rem;
  font-weight: 300;
}

.gold-text { color: var(--gold); }
.text-center { text-align: center; }

/* ---- Layout Utilities ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section-heading {
  font-family: var(--font-heading);
  color: var(--gold);
  text-align: center;
  margin-bottom: 3.5rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.gold-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
}

/* ---- Buttons ---- */
.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0a0a0f;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 2.4rem;
  border: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-hover) 0%, #e8c65a 100%);
  color: #0a0a0f;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.25);
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.8rem 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  background: transparent;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--gold);
  color: #0a0a0f;
  transform: translateY(-2px);
}

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

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: var(--bg-nav);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.8rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color var(--transition);
}

.nav-logo:hover {
  color: var(--gold-hover);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-offwhite);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-white);
  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 Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #0c0c14;
  z-index: 1005;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-left: 1px solid rgba(201, 169, 110, 0.15);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-white);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--gold);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1004;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0.55) 0%,
    rgba(10, 10, 15, 0.65) 40%,
    rgba(10, 10, 15, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}

.hero-name {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.hero .btn-gold {
  font-size: 0.85rem;
  padding: 1rem 2.8rem;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.6;
  animation: scrollBounce 2s infinite;
}

.scroll-indicator span {
  font-size: 0.65rem;
  color: var(--text-offwhite);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.scroll-chevron {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid var(--text-offwhite);
  border-bottom: 1.5px solid var(--text-offwhite);
  transform: rotate(45deg);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* Page Hero (about/contact) */
.page-hero {
  position: relative;
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero .hero-bg::after {
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0.45) 0%,
    rgba(10, 10, 15, 0.7) 100%
  );
}

.page-hero h1 {
  position: relative;
  z-index: 2;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: var(--text-white);
  letter-spacing: 0.04em;
}

/* ============================================
   STAT CARDS (Value Proposition)
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.15);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
}

.stat-card:hover {
  border-color: rgba(201, 169, 110, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

.stat-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* ============================================
   ABOUT PREVIEW (Two Column)
   ============================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col-text h2 {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.two-col-text p {
  color: var(--text-offwhite);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Headshot Frame */
.headshot-frame {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.3);
  background: var(--bg-card);
}

.headshot-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.headshot-img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(10%) contrast(1.02);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.headshot-frame:hover .headshot-img {
  filter: grayscale(0%) contrast(1.05);
  transform: scale(1.02);
}

/* ============================================
   AREAS SERVED
   ============================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.area-card {
  background: var(--bg-card);
  padding: 2.2rem 2rem;
  border-left: 3px solid var(--gold);
  transition: all var(--transition);
}

.area-card:hover {
  background: #161825;
  transform: translateX(4px);
}

.area-card h3 {
  color: var(--text-white);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.area-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  text-align: center;
}

.cta-banner .hero-bg::after {
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0.75) 0%,
    rgba(10, 10, 15, 0.85) 100%
  );
}

.cta-banner-content {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  color: var(--text-white);
  margin-bottom: 1rem;
  font-weight: 500;
}

.cta-banner p {
  color: var(--text-offwhite);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.1);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-3px);
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-offwhite);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* ============================================
   ABOUT PAGE - BIO
   ============================================ */
.bio-section .two-col {
  align-items: start;
}

.bio-section .headshot-frame {
  position: sticky;
  top: 100px;
}

.bio-text h2 {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.bio-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-offwhite);
}

.bio-license {
  font-size: 0.85rem;
  color: var(--gold);
  opacity: 0.8;
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

/* Approach Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar-card {
  background: var(--bg-card);
  border-top: 2px solid var(--gold);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.pillar-card h3 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.pillar-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.contact-icon {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  margin-top: 2px;
}

.contact-detail {
  font-size: 0.95rem;
  color: var(--text-offwhite);
}

.contact-detail a {
  color: var(--text-offwhite);
  transition: color var(--transition);
}

.contact-detail a:hover {
  color: var(--gold);
}

.contact-detail .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.2rem;
}

.social-links {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.social-links h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.social-links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.social-link {
  font-size: 0.85rem;
  color: var(--text-offwhite);
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(201, 169, 110, 0.2);
  transition: all var(--transition);
  display: inline-block;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.05);
}

/* Contact Form */
.contact-form-wrapper h3 {
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.9rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.15);
  color: var(--text-white);
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.form-success.show {
  display: block;
}

.form-success h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--text-offwhite);
  font-size: 0.95rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-footer);
  padding: 4rem 0 0;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .nav-logo {
  display: inline-block;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.footer-brand .tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.footer-brand .license {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.7;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-social a {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-right: 1rem;
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 169, 110, 0.08);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.7;
  margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

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

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

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

  .hamburger {
    display: flex;
  }

  .hero-name {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .stats-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .two-col-image {
    order: -1;
  }

  .headshot-frame {
    max-width: 300px;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .cta-banner-content .btn-gold {
    margin-left: 0 !important;
    margin-top: 0.75rem;
    display: inline-block;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section-heading {
    margin-bottom: 2.5rem;
  }

  .bio-section .headshot-frame {
    position: static;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.2rem;
  }

  .hero-name {
    font-size: 2rem;
    letter-spacing: 0.04em;
  }

  .hero-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
  }

  .btn-gold {
    padding: 0.8rem 2rem;
    font-size: 0.8rem;
  }

  .stat-card {
    padding: 2rem 1.5rem;
  }

  .area-card {
    padding: 1.8rem 1.5rem;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
  }

  .social-links-list {
    gap: 0.4rem;
  }
}
