/* =========================================================
   Cameron Quade, REALTOR® — Site Stylesheet
   Brand tokens: limestone / charcoal / copper / gold / AZ navy
   Type: Antonio (display) + DM Sans (body)
   ========================================================= */

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

:root {
  --limestone: #E8E1D6;
  --limestone-soft: #F2EEE6;
  --charcoal: #141412;
  --charcoal-soft: #1F1E1B;
  --copper: #9A5010;
  --gold: #C08818;
  --az-navy: #1C3A6B;
  --ink: #141412;
  --ink-muted: #5B5650;
  --border-soft: rgba(20, 20, 18, 0.12);
  --border-on-dark: rgba(232, 225, 214, 0.16);

  --font-display: 'Antonio', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --container: 1180px;
  --radius: 2px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--limestone);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.08;
  margin: 0;
  text-transform: uppercase;
}

p { margin: 0 0 1em 0; }

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

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--copper);
  display: inline-block;
}

.section {
  padding: 88px 0;
}

.section--tight { padding: 56px 0; }

.section--dark {
  background: var(--charcoal);
  color: var(--limestone);
}

.section--dark h1, .section--dark h2, .section--dark h3 {
  color: var(--limestone);
}

.section--soft { background: var(--limestone-soft); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--copper);
  color: var(--limestone);
}
.btn--primary:hover { background: var(--gold); }

.btn--outline-dark {
  border-color: var(--charcoal);
  color: var(--charcoal);
  background: transparent;
}
.btn--outline-dark:hover { background: var(--charcoal); color: var(--limestone); }

.btn--outline-light {
  border-color: var(--border-on-dark);
  color: var(--limestone);
  background: transparent;
}
.btn--outline-light:hover { border-color: var(--gold); color: var(--gold); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--limestone);
  border-bottom: 1px solid var(--border-soft);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}

.brand-cred {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover { color: var(--copper); }

.nav-links a.active {
  color: var(--copper);
  border-bottom: 2px solid var(--copper);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--charcoal);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
}

/* ---------- Hero (sunray) ---------- */

.hero {
  position: relative;
  background: var(--charcoal);
  color: var(--limestone);
  overflow: hidden;
  padding: 110px 0 96px;
}

.hero-rays {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.55;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 3.8rem);
  margin-bottom: 18px;
}

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

.hero .lede {
  font-size: 1.08rem;
  color: rgba(232, 225, 214, 0.82);
  max-width: 540px;
}

/* ---------- Page header (sub-pages) ---------- */

.page-header {
  position: relative;
  background: var(--charcoal);
  color: var(--limestone);
  overflow: hidden;
  padding: 68px 0 56px;
}

.page-header .rays-small {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
}

.page-header .inner { position: relative; z-index: 2; max-width: 680px; }

.page-header h1 { font-size: clamp(2rem, 4.4vw, 2.8rem); }

.page-header p {
  color: rgba(232, 225, 214, 0.78);
  margin-top: 12px;
  font-size: 1rem;
}

/* ---------- Grid utilities ---------- */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

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

/* ---------- About teaser / cards ---------- */

.headshot-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.headshot-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-soft);
}

.copper-bar {
  width: 56px;
  height: 4px;
  background: var(--copper);
  margin-bottom: 22px;
}

.card {
  background: var(--limestone-soft);
  border: 1px solid var(--border-soft);
  padding: 32px 28px;
  border-radius: var(--radius);
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.card p { color: var(--ink-muted); font-size: 0.95rem; margin-bottom: 0; }

.area-card {
  display: block;
  background: var(--charcoal);
  color: var(--limestone);
  padding: 30px 26px;
  border-radius: var(--radius);
  transition: transform 0.18s ease, background 0.18s ease;
}

.area-card:hover { background: var(--charcoal-soft); transform: translateY(-3px); }

.area-card .eyebrow { color: var(--gold); }
.area-card .eyebrow::before { background: var(--gold); }

.area-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.area-card p { color: rgba(232,225,214,0.72); font-size: 0.92rem; margin-bottom: 14px; }
.area-card .more { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); }

/* ---------- Steps (guides) ---------- */

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border-soft);
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--copper);
  line-height: 1;
}

.step h3 { font-size: 1.25rem; margin-bottom: 8px; color: var(--charcoal); }
.step p { color: var(--ink-muted); margin-bottom: 0; }

/* ---------- Testimonials ---------- */

.quote-card {
  background: var(--limestone-soft);
  border-left: 3px solid var(--copper);
  padding: 30px 28px;
  border-radius: var(--radius);
}

.quote-card p {
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: 16px;
}

.quote-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.placeholder-tag {
  display: inline-block;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--az-navy);
  background: rgba(28, 58, 107, 0.1);
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 10px;
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--charcoal);
  color: var(--limestone);
  padding: 64px 0;
  text-align: center;
}

.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 14px; }
.cta-band p { color: rgba(232,225,214,0.78); max-width: 520px; margin: 0 auto 26px; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
}

.contact-info-item {
  margin-bottom: 24px;
}

.contact-info-item .label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-info-item .value {
  font-size: 1.05rem;
  font-weight: 600;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--border-soft);
  background: var(--limestone-soft);
  border-radius: var(--radius);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--copper);
  outline-offset: 1px;
}

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.consent-text {
  font-size: 0.76rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.consent-text a { color: var(--az-navy); text-decoration: underline; }

.form-note {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(154, 80, 16, 0.1);
  border-radius: var(--radius);
  font-size: 0.85rem;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--charcoal);
  color: var(--limestone);
  padding: 56px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border-on-dark);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.footer-cred {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-top p { color: rgba(232,225,214,0.65); font-size: 0.88rem; max-width: 320px; }

.footer-col-title {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-col a, .footer-col div {
  display: block;
  font-size: 0.88rem;
  color: rgba(232,225,214,0.78);
  margin-bottom: 10px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  font-size: 0.78rem;
  color: rgba(232,225,214,0.55);
}

.footer-compliance {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(232,225,214,0.7);
}

/* ---------- Mobile ---------- */

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-phone { display: none; }

  .nav-wrap.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--limestone);
    padding: 20px 28px 26px;
    border-bottom: 1px solid var(--border-soft);
    gap: 18px;
  }

  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .grid-3 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .row-2 { grid-template-columns: 1fr; gap: 0;}
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .step { grid-template-columns: 56px 1fr; }
  .step-num { font-size: 1.8rem; }
}

/* ── Limitless broker logo in nav ── */
.nav-broker-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-broker-logo img {
  height: 28px;
  width: auto;
  display: block;
}

/* ── Compliance footer band ── */
.footer-compliance-band {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--border-on-dark);
  border-bottom: 1px solid var(--border-on-dark);
  margin: 28px 0 16px;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.eho-text {
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(232,225,214,0.55);
  line-height: 1.4;
}

.footer-legal {
  flex: 1;
  min-width: 280px;
}

.footer-broker-line {
  font-size: 0.78rem;
  color: rgba(232,225,214,0.75);
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}

.footer-license {
  font-size: 0.74rem;
  color: rgba(232,225,214,0.5);
}

.footer-license strong {
  color: var(--gold);
}

/* ── Mobile adjustments ── */
@media (max-width: 880px) {
  .nav-broker-logo { display: none; }
  .footer-compliance-band { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ── Larger nav broker logo ── */
.nav-broker-logo img { height: 48px; }

/* ── Hero broker badge ── */
.hero-broker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 28px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-on-dark);
  border-radius: 4px;
  width: fit-content;
}
.hero-broker img { height: 36px; width: auto; opacity: 0.9; }
.hero-broker-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232,225,214,0.55);
  white-space: nowrap;
}

/* ── Social links in footer ── */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-on-dark);
  color: rgba(232,225,214,0.6);
  transition: border-color 0.15s, color 0.15s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

/* ── Full-width review blocks ── */
.review-block {
  position: relative;
  padding: 36px 42px 32px 42px;
  background: var(--limestone-soft);
  border-left: 4px solid var(--copper);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.review-block::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  left: 16px;
  font-size: 5rem;
  line-height: 1;
  color: var(--copper);
  opacity: 0.18;
  font-family: Georgia, serif;
}
.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-block p {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.72;
  margin-bottom: 10px;
}
.review-block p:last-of-type { margin-bottom: 0; }
.review-author {
  margin-top: 18px;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 880px) {
  .nav-broker-logo img { height: 32px; }
  .review-block { padding: 28px 24px 24px 24px; }
}

/* ── Social icons in nav ── */
.nav-social {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}
.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--ink-muted);
  transition: color 0.15s, background 0.15s;
  flex-shrink: 0;
}
.nav-social a:hover {
  color: var(--copper);
  background: rgba(154,80,16,0.08);
}

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