/* ============================================
   VAUGHN E GREATHOUSE™ — Master Stylesheet
   Your Local West Michigan Realtor | #LIVEGREAT
   Brand: Navy + Gold + White | Font: Montserrat
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
  --gold: #C9A24B;
  --gold-bright: #D4B560;
  --gold-dark: #A8872E;
  --navy: #1A2332;
  --navy-deep: #0F1622;
  --gray-100: #F7F6F2;
  --gray-300: #D9D5CC;
  --gray-600: #6B6B6B;
  --white: #FFFFFF;
  --cream: #FAF8F3;
  --max: 1200px;
  --shadow: 0 4px 20px rgba(26,35,50,0.08);
  --shadow-lg: 0 12px 48px rgba(26,35,50,0.15);
  --radius: 6px;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
  text-transform: uppercase;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; font-size: 1.05rem; }

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

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

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Gold underline emphasis — signature brand treatment */
.underline-gold {
  background-image: linear-gradient(180deg, transparent 60%, var(--gold) 60%, var(--gold) 90%, transparent 90%);
  padding: 0 4px;
}

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

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
  background: var(--navy-deep);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a { color: var(--white); }
.topbar a:hover { color: var(--gold); }

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
}
.logo {
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}
.logo .tm { color: var(--gold); }
.logo small { display: block; font-size: 0.65rem; font-weight: 600; color: var(--gold); letter-spacing: 0.15em; margin-top: 4px; text-transform: uppercase; }

.nav { display: flex; gap: 28px; align-items: center; }
.nav a { color: var(--white); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }
.nav a:hover { color: var(--gold); }
.nav .cta-btn { background: var(--gold); color: var(--navy); padding: 10px 20px; border-radius: var(--radius); font-weight: 800; }
.nav .cta-btn:hover { background: var(--gold-bright); color: var(--navy); }

.menu-toggle { display: none; background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--white); }

@media (max-width: 900px) {
  .nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 20px; }
  .nav.open { display: flex; }
  .menu-toggle { display: block; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-bright); color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-deep); color: var(--gold); }

/* ============================================
   HERO — real Vaughn photo showcase
   ============================================ */
.hero {
  background: var(--cream);
  padding: 60px 0 40px;
  position: relative;
}
.hero .container { position: relative; }
.hero-label {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-300);
}
.hero-label .tm { color: var(--gold-dark); font-weight: 900; text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: 3px; text-underline-offset: 4px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 30px; } }

.hero-text h1 { margin-bottom: 1.5rem; }
.hero-text h1 strong { color: var(--gold-dark); }
.hero-text p { font-size: 1.2rem; line-height: 1.5; }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 2rem; }

.hero-photo {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  border-radius: var(--radius);
  padding: 0;
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-photo img { max-width: 100%; max-height: 600px; width: auto; height: 600px; object-fit: contain; position: relative; z-index: 2; }
.hero-photo::before {
  content: "#LIVEGREAT";
  position: absolute;
  top: 30px;
  left: 30px;
  font-weight: 900;
  color: var(--navy);
  font-size: 1rem;
  letter-spacing: 0.1em;
  z-index: 3;
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 80px 0; }
.section-alt { background: var(--cream); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h1, .section-navy h2, .section-navy h3 { color: var(--white); }
.section-gold { background: var(--gold); color: var(--navy); }
.section-gold h1, .section-gold h2, .section-gold h3 { color: var(--navy); }

.section-header { text-align: center; margin-bottom: 50px; }
.section-header .eyebrow { color: var(--gold-dark); font-weight: 800; text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.8rem; margin-bottom: 16px; display: block; }
.section-header p { font-size: 1.1rem; max-width: 720px; margin: 1rem auto 0; color: var(--gray-600); }

/* ============================================
   AS SEEN ON BAR
   ============================================ */
.seen-on {
  padding: 50px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
}
.seen-on-title { text-align: center; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-600); margin-bottom: 24px; }
.seen-on-bar { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 40px; opacity: 0.85; }
.seen-on-bar img { max-height: 60px; width: auto; }

/* ============================================
   THE 3 QUESTIONS FRAMEWORK
   ============================================ */
.framework {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 900px) { .framework { grid-template-columns: 1fr; } }
.fw-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}
.fw-card .fw-label {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.fw-card h3 { font-size: 1.1rem; }

/* ============================================
   GRIDS & CARDS
   ============================================ */
.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
@media (max-width: 1100px) and (min-width: 901px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 3px solid var(--gold);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon { font-size: 2.5rem; color: var(--gold-dark); margin-bottom: 1rem; }

.card-image {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
  display: block;
  color: inherit;
}
.card-image:hover { transform: translateY(-4px); }
.card-image img { width: 100%; height: 220px; object-fit: cover; }
.card-image .card-body { padding: 24px; }
.card-image h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.card-image .card-meta { font-size: 0.75rem; color: var(--gold-dark); margin-bottom: 0.75rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }

/* ============================================
   VIDEO EMBED
   ============================================ */
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* ============================================
   STATS BAR
   ============================================ */
.stats { background: var(--navy); color: var(--white); padding: 50px 0; }
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-number { font-size: 3rem; font-weight: 900; display: block; line-height: 1; color: var(--gold); }
.stat-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 10px; display: block; }
@media (max-width: 700px) { .stats .container { grid-template-columns: repeat(2, 1fr); } }

/* ============================================
   FORMS
   ============================================ */
.form-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 560px;
  margin: 0 auto;
  border-top: 4px solid var(--gold);
}
.form-card h3 { margin-bottom: 1rem; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
}
.testimonial p { font-style: italic; font-size: 1.05rem; }
.testimonial .author { font-weight: 800; margin-top: 1rem; color: var(--gold-dark); font-style: normal; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.85rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--navy-deep); color: var(--white); padding: 60px 0 30px; }
.footer .container { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer h4 { color: var(--gold); margin-bottom: 1rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.15em; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }
.footer a { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.footer a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); margin-top: 40px; padding-top: 20px; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; }
.social-row { display: flex; gap: 12px; margin-top: 1rem; }
.social-row a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--gold); transition: background 0.2s; font-weight: 800; }
.social-row a:hover { background: var(--gold); color: var(--navy); }
@media (max-width: 900px) { .footer .container { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer .container { grid-template-columns: 1fr; } }

/* ============================================
   STICKY CTA BAR
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 16px;
  text-align: center;
  z-index: 99;
  display: none;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.sticky-cta a { color: var(--navy); text-decoration: underline; font-weight: 900; }
@media (max-width: 700px) { .sticky-cta { display: block; } }

/* ============================================
   UTILS
   ============================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
