/* ============================================================
   Rebecca Casey Personal Mortgage Corporation
   Main Stylesheet
   Brand: #2B2A2A | #C2B19C | #E6DFD4 | #BF8C21 | #E3C946
   Fonts: Alice (headings) · Jost (titles/body — Nexa substitute)
   ============================================================ */

/*
  NOTE ON FONTS:
  - Alice is loaded via Google Fonts (exact brand match for headings).
  - Nexa is not on Google Fonts. "Jost" is used as a close geometric substitute
    for titles and body copy. To use actual Nexa, drop Nexa-Bold.woff2 and
    Nexa-Regular.woff2 into a /fonts/ folder and uncomment the @font-face rules below.

  @font-face {
    font-family: 'Nexa';
    src: url('/fonts/Nexa-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
  }
  @font-face {
    font-family: 'Nexa';
    src: url('/fonts/Nexa-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
  }
  Then replace 'Jost' with 'Nexa' in the --font-sans variable below.
*/

@import url('https://fonts.googleapis.com/css2?family=Alice&family=Jost:wght@300;400;600;700&display=swap');

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

:root {
  /* Brand palette */
  --dark:        #2B2A2A;
  --dark-card:   #363330;
  --taupe:       #C2B19C;
  --taupe-light: #d4c8b8;
  --cream:       #E6DFD4;
  --gold:        #BF8C21;
  --gold-bright: #E3C946;
  --gold-hover:  #ecd557;
  --white:       #FFFFFF;
  --text-body:   #2B2A2A;
  --text-muted:  #7a6e62;
  --overlay:     rgba(20, 18, 14, 0.65);

  /* Fonts */
  --font-serif:  'Alice', Georgia, serif;
  --font-sans:   'Jost', 'Helvetica Neue', Arial, sans-serif;  /* replace Jost with Nexa once files added */

  /* Title tracking — 177 per design spec = 0.177em */
  --track-title: 0.177em;
  --track-label: 0.14em;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.7;
}

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

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--track-title);
  text-transform: uppercase;
  padding: 14px 38px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

/* Warm cream gradient — for dark/photo backgrounds */
.btn-cream {
  background: linear-gradient(135deg, #DDD3C3 0%, #A89078 100%);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(0,0,0,0.32);
}
.btn-cream:hover {
  background: linear-gradient(135deg, #EAE0D2 0%, #B89F87 100%);
  box-shadow: 0 6px 24px rgba(0,0,0,0.40);
  transform: translateY(-1px);
}

/* Same cream gradient — for dark sections (quote, etc.) */
.btn-outlined {
  background: linear-gradient(135deg, #DDD3C3 0%, #A89078 100%);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 18px rgba(0,0,0,0.32);
}
.btn-outlined:hover {
  background: linear-gradient(135deg, #EAE0D2 0%, #B89F87 100%);
  box-shadow: 0 6px 24px rgba(0,0,0,0.40);
  transform: translateY(-1px);
}

/* Dark gradient — for light/cream backgrounds */
.btn-gold-outline {
  background: linear-gradient(135deg, #3D3A37 0%, #1A1816 100%);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 18px rgba(0,0,0,0.24);
}
.btn-gold-outline:hover {
  background: linear-gradient(135deg, #4D4A46 0%, #2A2826 100%);
  box-shadow: 0 6px 24px rgba(0,0,0,0.32);
  transform: translateY(-1px);
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--dark);
  height: 72px;
  padding: 0 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo a {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-logo-rebecca { height: 42px; width: auto; }
.header-logo-ma      { height: 28px; width: auto; opacity: 0.90; }

/* Desktop nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav > ul > li { position: relative; }

.main-nav > ul > li > a {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--track-title);
  text-transform: uppercase;
  color: var(--white);
  padding: 5px 0;
  transition: color 0.2s;
}
.main-nav > ul > li > a:hover { color: var(--gold-bright); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 230px;
  background: var(--dark);
  border-top: 2px solid var(--gold);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.22s ease;
  z-index: 200;
}
.main-nav > ul > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  padding: 11px 22px;
  transition: all 0.18s;
}
.dropdown li a:hover {
  color: var(--gold-bright);
  background: rgba(191, 140, 33, 0.08);
}

/* Call Now */
.btn-callnow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: var(--track-title);
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, #DDD3C3 0%, #A89078 100%);
  box-shadow: 0 3px 12px rgba(0,0,0,0.28);
  padding: 10px 22px;
  white-space: nowrap;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.btn-callnow:hover {
  background: linear-gradient(135deg, #EAE0D2 0%, #B89F87 100%);
  box-shadow: 0 5px 18px rgba(0,0,0,0.36);
  transform: translateY(-1px);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.mobile-toggle span {
  display: block;
  width: 23px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 999;
  overflow-y: auto;
  padding: 10px 0 40px;
}
.mobile-nav.open { display: block; }

.mobile-nav > ul > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.mobile-nav > ul > li > a {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--track-title);
  text-transform: uppercase;
  color: var(--white);
  padding: 16px 32px;
}
.mobile-nav .mobile-sub { padding-bottom: 8px; }
.mobile-nav .mobile-sub li a {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  padding: 9px 50px;
  transition: color 0.2s;
}
.mobile-nav .mobile-sub li a:hover { color: var(--gold-bright); }
.mobile-callnow {
  display: block;
  margin: 22px 32px 0;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: var(--track-title);
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, #DDD3C3 0%, #A89078 100%);
  box-shadow: 0 3px 12px rgba(0,0,0,0.28);
  padding: 14px;
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

/* Video background */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

/* Fallback image bg (used on inner pages) */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.42;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
}

/* Logo image in hero */
.hero-logo-img {
  max-width: 1250px;
  width: 90%;
  margin: 0 auto 44px;
}

/* Inner page heroes are shorter */
.hero-inner {
  height: 62vh;
  min-height: 380px;
}

.hero-page-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.03em;
  text-align: center;
}

/* ── Section helpers ── */
.section-pad  { padding: 90px 44px; }
.container    { max-width: 1160px; margin: 0 auto; }
.container-sm { max-width: 860px; margin: 0 auto; }

/* ── Welcome (home) ── */
.welcome-section {
  background: var(--cream);
  padding-bottom: 0;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 70px;
  align-items: end;
}
.welcome-img { align-self: end; overflow: hidden; }
.welcome-img img { width: 100%; display: block; }

.welcome-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 400;
  color: var(--taupe);
  margin-bottom: 22px;
  line-height: 1.18;
}
.welcome-text p {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.88;
  color: var(--text-body);
  margin-bottom: 20px;
}
.awards-row { margin-top: 28px; }
.awards-row img { max-width: 100%; }

/* ── Dark Quote section ── */
.quote-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.quote-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.10;
}
.quote-inner {
  position: relative;
  z-index: 1;
}
.quote-section blockquote {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.6vw, 34px);
  font-weight: 400;
  color: var(--white);
  max-width: 880px;
  margin: 0 auto 50px;
  line-height: 1.5;
}
.quote-section blockquote em { font-style: italic; }

/* ── Steps (home) ── */
.steps-section { background: var(--cream); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
  align-items: start;
}
.step-card { text-align: center; }

.step-label {
  display: block;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--taupe);
  margin-bottom: 18px;
  font-style: italic;
}
.step-card p {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 24px;
}
.step-divider {
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin: 0 auto 24px;
}

/* ── Don't Forget (home) ── */
.forget-section {
  background: #F5F1EC;
  border-top: 1px solid rgba(191, 140, 33, 0.12);
}
.forget-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.forget-heading {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(34px, 5vw, 56px);
  color: var(--taupe);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 28px;
}
.forget-lead {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 18px;
  line-height: 1.7;
}
.forget-list { margin-bottom: 34px; }
.forget-list li {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-body);
  padding: 4px 0 4px 18px;
  position: relative;
}
.forget-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}
.forget-img img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center top;
}

/* ── Google Reviews ── */
.google-reviews-section { background: #F5F1EC; }

.gr-rating-header {
  text-align: center;
  margin-bottom: 52px;
}
.gr-score {
  font-family: var(--font-sans);
  font-size: 72px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  display: block;
}
.gr-stars-row {
  color: #FBBC04;
  font-size: 32px;
  letter-spacing: 4px;
  margin: 10px 0 8px;
}
.gr-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--track-title);
  text-transform: uppercase;
  color: var(--text-muted);
}

.gr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.gr-card {
  background: var(--white);
  border-radius: 10px;
  padding: 26px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.gr-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.gr-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700; font-size: 17px;
  color: var(--white);
  flex-shrink: 0;
}
.gr-reviewer { flex: 1; min-width: 0; }
.gr-name {
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 600;
  color: var(--dark);
  display: block; line-height: 1.2;
}
.gr-date {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-muted);
  display: block; margin-top: 2px;
}
.gr-card-stars {
  color: #FBBC04;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.gr-text {
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 300;
  line-height: 1.78;
  color: var(--text-body);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: none;
}
.gr-text.expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}
.gr-read-more {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  padding: 8px 0 0;
  display: none;
  letter-spacing: 0.04em;
  text-align: left;
}
.gr-read-more:hover { color: var(--gold-bright); }
.gr-cta { text-align: center; }

/* ── Testimonials ── */
.testimonials-section { background: var(--dark); }
.testimonials-heading {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: var(--track-title);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 54px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.testimonials-mosaic {
  columns: 3;
  column-gap: 12px;
}
.testimonials-mosaic img {
  width: 100%;
  display: block;
  margin-bottom: 12px;
  border-radius: 4px;
}

/* ── FAQ ── */
.faq-section { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.05); }
.faq-section h2 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: var(--track-title);
  text-transform: uppercase;
  color: var(--gold-bright);
  text-align: center;
  margin-bottom: 56px;
}
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(191, 140, 33, 0.22); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 0;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--white);
  text-align: left;
}
.faq-q .faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--gold-bright);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
  font-family: var(--font-sans);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.38s ease;
}
.faq-item.open .faq-body { max-height: 400px; }
.faq-body p {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.88;
  color: rgba(255, 255, 255, 0.68);
  padding-bottom: 24px;
}
.faq-body strong { color: rgba(255, 255, 255, 0.95); font-weight: 600; }

/* ── Final CTA ── */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--dark);
  background-size: cover;
  background-position: center center;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 44px;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 14, 0.68);
}
.cta-section .container-sm {
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.8vw, 48px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 38px;
}

/* ── Inner Page Content ── */
.page-content-section { background: var(--cream); }
.page-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 400;
  color: var(--taupe);
  margin-bottom: 32px;
}
.page-body p {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.90;
  color: var(--text-body);
  margin-bottom: 22px;
}
.page-body strong { font-weight: 600; color: var(--dark); }

.page-body ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 22px;
}
.page-body ul li {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 8px;
}

.chat-link {
  display: inline-block;
  margin: 6px 0 30px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: var(--track-title);
  text-transform: uppercase;
  color: var(--gold-bright);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.chat-link:hover { opacity: 0.72; }

/* ── How to Get Started (inner pages dark) ── */
.how-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.how-section .step-card p {
  color: rgba(255, 255, 255, 0.78);
}
.how-section .step-divider {
  background: rgba(255, 255, 255, 0.16);
}
.how-section h2 {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: var(--track-title);
  text-transform: uppercase;
  color: var(--gold-bright);
  text-align: center;
  margin-bottom: 58px;
}

/* ── About Page ── */
.about-section { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 70px;
  align-items: start;
}
.about-sidebar img { width: 100%; margin-bottom: 22px; }
.about-quote-block {
  background: var(--dark);
  padding: 28px 32px;
}
.about-quote-block p {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

/* ── Contact Page ── */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 80px;
}
.contact-form-wrap h2 {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: var(--track-title);
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 30px;
}
.contact-form label {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 6px;
}
.contact-form label span { color: #c66; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  margin-bottom: 20px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  background: var(--white);
  border: 1px solid rgba(194, 177, 156, 0.45);
  color: var(--text-body);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { min-height: 130px; resize: vertical; }

.contact-info-wrap h3 {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: var(--track-title);
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 28px;
}
.contact-info-wrap p {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 14px;
}
.contact-phone {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--taupe);
  display: block;
  margin-bottom: 10px;
}
.contact-email a { color: var(--taupe); transition: color 0.2s; }
.contact-email a:hover { color: var(--gold); }
.contact-detail {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.75;
  margin-top: 24px;
}

/* ── Footer ── */
.site-footer { background: var(--dark); padding: 64px 44px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 50px;
  max-width: 1160px;
  margin: 0 auto 52px;
}
.footer-col-title {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: var(--track-title);
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links li a {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  transition: color 0.2s;
}
.footer-links li a:hover { color: var(--gold-bright); }

.footer-logo-col { display: flex; align-items: center; justify-content: center; }
.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  width: 100%;
}
.footer-logo-wrap img:first-child { max-width: 260px; width: 100%; }
.footer-logo-wrap img:last-child  { max-width: 180px; width: 100%; opacity: 0.80; }

.footer-contact .footer-contact-item {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 14px;
  line-height: 1.65;
}
.footer-contact .footer-contact-item a {
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.2s;
}
.footer-contact .footer-contact-item a:hover { color: var(--gold-bright); }
.footer-contact-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: var(--track-title);
  text-transform: uppercase;
  color: var(--gold-bright);
  display: block;
  margin-bottom: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 0;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.32);
}
.footer-social { display: flex; gap: 18px; }
.footer-social a {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--gold-bright); }

/* ── Responsive ── */
@media (max-width: 1040px) {
  .welcome-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
  .testimonials-mosaic { columns: 2; }
  .gr-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .welcome-grid,
  .forget-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .forget-img { order: -1; }
  .about-sidebar { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-logo-col { display: none; }
}

@media (max-width: 768px) {
  .site-header { padding: 0 22px; }
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }

  .section-pad { padding: 70px 22px; }

  .steps-grid { grid-template-columns: 1fr; gap: 44px; }
  .testimonials-mosaic { columns: 1; }
  .gr-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .site-footer { padding: 50px 22px 0; }
}

@media (max-width: 480px) {
  .hero { height: 88vh; }
  .hero-inner { height: 55vh; min-height: 300px; }
  .hero-logo-img { max-width: 92vw; }
}
