/* ==========================================================================
   True North Property Solutions — Styles
   Brand: Charcoal #3D4449 | Gold #C8A951 | Cream #F5F0E8 | Mid Grey #6B7279
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  color: #3D4449;
  background: #F5F0E8;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- UTILITIES --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.bg-charcoal { background: #3D4449; }
.bg-cream { background: #F5F0E8; }
.bg-gold { background: #C8A951; }

.light { color: #fff; }

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.15;
}

.section-subtitle {
  text-align: center;
  color: #6B7279;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.5;
}

.section-subtitle.light { color: rgba(255,255,255,0.8); }
.section-title.light { color: #fff; }

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-align: center;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: #C8A951;
  color: #3D4449;
}
.btn-primary:hover { background: #b8993f; }

.btn-dark {
  background: #3D4449;
  color: #fff;
}
.btn-dark:hover { background: #2e3336; }

.btn-full { width: 100%; }

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200,169,81,0.2);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  transition: height 0.3s;
}

.site-header.scrolled .header-inner {
  height: 64px;
}

.logo {
  height: 68px;
  width: auto;
  transition: height 0.3s;
}

.site-header.scrolled .logo {
  height: 46px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-list a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #3D4449;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.nav-list a:hover { color: #C8A951; }

.nav-cta {
  background: #C8A951;
  color: #3D4449 !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 0.85rem !important;
}
.nav-cta:hover { background: #b8993f; }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #3D4449;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === HERO === */
.hero {
  padding: 136px 0 64px;
  background: #F5F0E8;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #3D4449;
}

.hero-sub {
  font-size: 1.1rem;
  color: #6B7279;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Video player */
.video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(61,68,73,0.15);
  background: #3D4449;
  aspect-ratio: 16 / 9;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s, opacity 0.2s;
}
.video-play-btn:hover { transform: translate(-50%, -50%) scale(1.08); }
.video-play-btn.hidden { opacity: 0; pointer-events: none; }

/* === TRUST BAR === */
.trust-bar {
  background: #3D4449;
  padding: 20px 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-icon {
  color: #C8A951;
  font-size: 1.3rem;
}

/* === HOW IT WORKS === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  background: #fff;
  border-radius: 8px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(61,68,73,0.06);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #C8A951;
  color: #3D4449;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.step-card h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #3D4449;
}

.step-card p {
  color: #6B7279;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === WHO WE HELP === */
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.help-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(200,169,81,0.25);
  border-radius: 8px;
  padding: 28px 24px;
}

.help-card h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #C8A951;
  margin-bottom: 8px;
}

.help-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === WHY US === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.why-card {
  background: #fff;
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(61,68,73,0.06);
  border-left: 4px solid #C8A951;
}

.why-card h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #3D4449;
}

.why-card p {
  color: #6B7279;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === TESTIMONIALS === */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #fff;
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(61,68,73,0.06);
  border: none;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.5rem;
  color: #C8A951;
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
}

.testimonial-card p {
  font-style: italic;
  color: #6B7279;
  line-height: 1.6;
  font-size: 0.95rem;
  padding-top: 24px;
}

.testimonial-card footer {
  margin-top: 16px;
}

.testimonial-card cite {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 0.9rem;
  color: #3D4449;
}

.testimonial-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.8rem;
  color: #6B7279;
  font-style: italic;
}

/* === MID CTA === */
.cta-mid {
  text-align: center;
}

.cta-mid h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 2rem;
  color: #3D4449;
  margin-bottom: 12px;
}

.cta-mid p {
  color: #3D4449;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

/* === FAQ === */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(200,169,81,0.3);
  padding: 0;
}

.faq-item summary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 20px 0;
  cursor: pointer;
  color: #3D4449;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: #C8A951;
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item p {
  padding: 0 0 20px;
  color: #6B7279;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* === CONTACT === */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-text p.light {
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: #C8A951;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-value {
  color: #fff;
  font-size: 1.15rem;
}

.contact-method:hover .contact-value {
  color: #C8A951;
  transition: color 0.2s;
}

/* Form */
.contact-form-wrap {
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: #3D4449;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1cec7;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  color: #3D4449;
  background: #FDFCFA;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #C8A951;
  box-shadow: 0 0 0 3px rgba(200,169,81,0.15);
}

.form-group textarea { resize: vertical; }

.form-note {
  text-align: center;
  margin-top: 12px;
  font-size: 0.8rem;
  color: #6B7279;
}

/* Form states */
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  color: #3D4449;
  margin-bottom: 8px;
}
.form-success p {
  color: #6B7279;
}

/* === FOOTER === */
.site-footer {
  background: #2e3336;
  padding: 40px 0;
  text-align: center;
}

.footer-logo {
  height: 40px;
  margin: 0 auto 12px;
}

.footer-tagline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.footer-contact {
  margin-bottom: 16px;
}

.footer-contact a {
  color: #C8A951;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-contact a:hover { color: #fff; }

.footer-divider {
  color: rgba(255,255,255,0.3);
  margin: 0 12px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-content { text-align: center; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-video { max-width: 640px; margin: 0 auto; }
  .help-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }

  /* Nav */
  .nav-list {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: rgba(245, 240, 232, 0.98);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(200,169,81,0.2);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }
  .nav-list.open { display: flex; }
  .mobile-toggle { display: flex; }

  .hero { padding: 96px 0 48px; }
  .hero-content h1 { font-size: 1.8rem; }
  .section-title { font-size: 1.8rem; }

  .steps-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .help-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.5rem; }
  .hero-sub { font-size: 1rem; }
  .trust-bar-inner { flex-direction: column; align-items: center; gap: 12px; }
  .container { padding: 0 16px; }
}
