/* ============================================================
   Stonehouse Arizona Estate Sales — style.css
   Design language: matches estateintime.com sister site
   Fonts: Cormorant Garamond (headings) + Poppins (body) + Montserrat (accents)
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary palette — warm, professional earth tones */
  --stone-dark:    #3B3028;
  --stone-mid:     #6B5B4E;
  --stone-light:   #A08E7A;
  --stone-cream:   #F5F0EB;
  --stone-white:   #FAF8F5;

  /* Accent */
  --accent-gold:   #B8963E;
  --accent-sage:   #7A8B6F;
  --accent-rust:   #A0674B;
  --accent-warm:   #D4A853;

  /* Neutrals */
  --text-dark:     #2A2420;
  --text-medium:   #5C524A;
  --text-light:    #8A7E74;
  --border-light:  #E4DCD4;
  --white:         #FFFFFF;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Poppins', 'Segoe UI', Tahoma, sans-serif;
  --font-accent:  'Montserrat', 'Segoe UI', sans-serif;

  /* Spacing */
  --section-pad:   5rem 0;
  --container-max: 1200px;

  /* Transitions */
  --ease: cubic-bezier(.25,.46,.45,.94);
}

/* ---------- Phone Links: plain text on desktop, clickable on mobile ---------- */
a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
  cursor: default;
}
@media (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
    color: var(--accent-gold);
  }
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; transition: color .25s var(--ease); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--stone-dark);
  line-height: 1.25;
  font-weight: 600;
}

/* ---------- Utility ---------- */
.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.section-padding { padding: var(--section-pad); }

.text-center { text-align: center; }

.section-subtitle {
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .75rem;
  color: var(--accent-gold);
  display: block;
  margin-bottom: .75rem;
  font-weight: 600;
}

.section-title {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-intro {
  color: var(--text-medium);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  font-weight: 300;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .85rem 2rem;
  border-radius: 2px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all .3s var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--stone-mid);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--stone-dark);
}

.btn-outline {
  background: transparent;
  color: var(--stone-dark);
  border-color: var(--accent-gold);
}
.btn-outline:hover {
  background: var(--accent-gold);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

/* ---------- Top Bar ---------- */
/* ---- OLD top-bar hidden, replaced by brand-bar ---- */
.top-bar { display: none; }

/* ---- Brand Bar (scrolls away) ---- */
.brand-bar {
  background: var(--stone-dark);
  color: rgba(255,255,255,.8);
  font-family: var(--font-accent);
  font-size: .8rem;
  padding: .5rem 0;
  letter-spacing: .5px;
}
.brand-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
}
.brand-bar-left {
  flex: 2;
  font-size: .75rem;
  text-align: center;
}
.brand-bar-right {
  flex: 1;
  text-align: right;
  color: var(--accent-warm);
  font-weight: 600;
}
.brand-bar .logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  flex: 1;
}
.brand-bar .logo-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
}
.brand-bar .logo-text {
  color: var(--white);
  font-size: 1.2rem;
}
.brand-bar .logo-text small {
  color: rgba(255,255,255,.7);
}
/* Desktop: show text only (no tel: link) */
.brand-bar .phone-text { display: inline; }
.brand-bar .phone-link { display: none; }
@media (max-width: 768px) {
  .brand-bar .phone-text { display: none; }
  .brand-bar .phone-link {
    display: inline;
    color: var(--accent-warm);
    font-weight: 600;
  }
  .brand-bar-left { display: none; }
}

/* ---- Sticky Nav Bar ---- */
.sticky-nav {
  background: var(--white);
  box-shadow: 0 1px 8px rgba(0,0,0,.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .3s var(--ease);
}
.sticky-nav .container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sticky-nav .nav-logo {
  display: none;
  align-items: center;
  gap: .3rem;
  text-decoration: none;
  color: var(--stone-dark);
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 600;
  margin-right: auto;
}
.sticky-nav .nav-logo .logo-icon {
  width: 24px;
  height: 24px;
  font-size: .65rem;
}
/* Show mini logo in nav when brand bar scrolls away */
.sticky-nav.scrolled-past {
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
}
.sticky-nav.scrolled-past .nav-logo {
  display: flex;
}
.sticky-nav.scrolled-past .nav-links {
  justify-content: flex-end;
}

/* ---------- Header / Nav (centered layout) ---------- */
/* site-header kept for backward compat but hidden if brand-bar is used */
.site-header {
  display: none;
}
}
.site-header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  position: relative;
}

/* Row 1: Centered logo */
.header-logo-row {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: .2rem 0 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--stone-dark);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-warm);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--stone-dark);
  font-weight: 600;
  line-height: 1.1;
}
.logo-text small {
  display: block;
  font-family: var(--font-accent);
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-light);
  font-weight: 600;
}

/* Row 2: Centered navigation */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  border-top: 1px solid var(--border-light);
  padding: .2rem 0;
}
.nav-links a {
  font-family: var(--font-accent);
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-medium);
  text-transform: uppercase;
  letter-spacing: .5px;
  position: relative;
  padding: .25rem .9rem;
  border-right: 1px solid var(--border-light);
}
.nav-links a:last-child {
  border-right: none;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--stone-dark);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 70%;
}

/* Free Consultation nav button */
.nav-consult-btn {
  background: var(--accent-gold) !important;
  color: var(--white) !important;
  padding: .4rem 1.1rem !important;
  border-radius: 2px;
  border-right: none !important;
  margin-left: .25rem;
  transition: background .3s var(--ease) !important;
}
.nav-consult-btn::after {
  display: none !important;
}
.nav-consult-btn:hover {
  background: var(--stone-mid) !important;
  color: var(--white) !important;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  position: absolute;
  right: 5%;
  top: 1.1rem;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--stone-dark);
  border-radius: 2px;
  transition: .3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(59,48,40,.85), rgba(42,36,32,.75)),
              var(--stone-mid);
  background-size: cover;
  background-position: center;
  color: var(--white);
  overflow: hidden;
}
.hero .container {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}
.hero-content {
  max-width: 640px;
}
.hero-subtitle {
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: .75rem;
  color: var(--accent-warm);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.hero h1 {
  color: var(--white);
  font-size: 3.4rem;
  margin-bottom: 1.25rem;
  line-height: 1.1;
  font-weight: 600;
}
.hero p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: .9;
  font-weight: 300;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- Services Overview (Home) ---------- */
.services-overview {
  background: var(--stone-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--white);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  border-top: 3px solid var(--accent-gold);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
}
.service-card .icon {
  width: 52px;
  height: 52px;
  background: var(--stone-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent-gold);
  font-size: 1.4rem;
}
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: .75rem;
  font-weight: 600;
}
.service-card p {
  color: var(--text-medium);
  font-size: .9rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ---------- Why Choose Us ---------- */
.why-us {
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.why-image {
  background: var(--stone-cream);
  border-radius: 4px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-style: italic;
  font-size: .9rem;
  overflow: hidden;
  position: relative;
}
.why-image::before {
  content: '';
  display: none;
}
.why-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.why-content p {
  color: var(--text-medium);
  margin-bottom: 1.25rem;
  line-height: 1.8;
  font-weight: 300;
}
.credential-list {
  margin-top: 1.5rem;
}
.credential-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .75rem;
  color: var(--text-medium);
  font-weight: 400;
}
.credential-list .check {
  color: var(--accent-sage);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Upcoming Sales Home ---------- */
.upcoming-sales-home {
  background: var(--stone-white);
}
.sales-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.sale-card {
  background: var(--white);
  border-radius: 4px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  border-left: 4px solid var(--accent-gold);
  position: relative;
}
.sale-card-badge {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: .25rem .75rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.sale-card h3 {
  font-size: 1.4rem;
  margin-bottom: .75rem;
}
.sale-meta {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  margin-bottom: 1rem;
  font-size: .9rem;
  color: var(--text-medium);
}
.sale-card p {
  color: var(--text-medium);
  font-size: .9rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--stone-dark);
  color: var(--white);
}
.testimonials .section-title {
  color: var(--white);
}
.testimonials .section-intro {
  color: rgba(255,255,255,.65);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: rgba(255,255,255,.06);
  border-radius: 4px;
  padding: 2rem;
  border-left: 3px solid var(--accent-gold);
}
.testimonial-card .quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,.9);
}
.testimonial-card .author {
  font-family: var(--font-accent);
  font-weight: 700;
  color: var(--accent-warm);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stars {
  color: var(--accent-warm);
  margin-bottom: .75rem;
  font-size: 1rem;
  letter-spacing: 2px;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--accent-rust), var(--stone-mid));
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}
.cta-banner h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: .75rem;
}
.cta-banner p {
  margin-bottom: 1.5rem;
  opacity: .9;
  font-size: 1.05rem;
  font-weight: 300;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Page Hero ---------- */
.page-hero {
  background: linear-gradient(135deg, rgba(59,48,40,.88), rgba(42,36,32,.78)),
              var(--stone-mid);
  color: var(--white);
  text-align: center;
  padding: .8rem 0 .6rem;
}
.page-hero .hero-subtitle {
  margin-bottom: .4rem;
}
.page-hero h1 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: .3rem;
}
.page-hero p {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  font-weight: 300;
}

/* ---------- About Page ---------- */
.about-intro {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-photo {
  background: var(--stone-cream);
  border-radius: 4px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-style: italic;
}
.about-photo::before {
  content: '';
  display: none;
}
.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.about-text p {
  color: var(--text-medium);
  margin-bottom: 1rem;
  line-height: 1.8;
  font-weight: 300;
}

.certifications {
  background: var(--stone-white);
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.cert-card {
  background: var(--white);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.cert-card .cert-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}
.cert-card h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
}
.cert-card p {
  color: var(--text-medium);
  font-size: .85rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ---------- Services Page ---------- */
.services-detail {
  background: var(--white);
}
.services-list {
  max-width: 900px;
  margin: 0 auto;
}
.service-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-light);
  align-items: flex-start;
}
.service-item:last-child {
  border-bottom: none;
}
.service-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent-gold);
  font-weight: 700;
  flex-shrink: 0;
  width: 50px;
  text-align: center;
  line-height: 1;
  padding-top: .2rem;
}
.service-item h3 {
  font-size: 1.3rem;
  margin-bottom: .5rem;
}
.service-item p {
  color: var(--text-medium);
  line-height: 1.7;
  font-weight: 300;
}

.how-it-works {
  background: var(--stone-white);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.step {
  text-align: center;
  padding: 1.5rem;
}
.step-number {
  width: 56px;
  height: 56px;
  background: var(--accent-gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}
.step h3 {
  font-size: 1.15rem;
  margin-bottom: .5rem;
}
.step p {
  color: var(--text-medium);
  font-size: .9rem;
  line-height: 1.7;
  font-weight: 300;
}

.commission-section {
  background: var(--white);
}
.commission-box {
  max-width: 700px;
  margin: 0 auto;
  background: var(--stone-cream);
  border-radius: 4px;
  padding: 2.5rem;
  text-align: center;
}
.commission-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.commission-box p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: .75rem;
  font-weight: 300;
}
.commission-highlights {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.commission-highlights li {
  background: var(--white);
  padding: .5rem 1.25rem;
  border-radius: 2px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: .8rem;
  color: var(--stone-dark);
  border: 1px solid var(--border-light);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ---------- Reasons Section ---------- */
.reasons-section {
  background: var(--stone-white);
}
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.reason-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 1px 8px rgba(0,0,0,.03);
}
.reason-card .reason-icon {
  font-size: 1.5rem;
  margin-bottom: .5rem;
  color: var(--accent-gold);
}
.reason-card h4 {
  font-size: 1.05rem;
  font-weight: 500;
}

/* ---------- Gallery ---------- */
.gallery-section {
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.gallery-item {
  background: var(--stone-cream);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
}
.gallery-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--stone-cream), var(--border-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-family: var(--font-accent);
  font-size: .8rem;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.gallery-item .caption {
  padding: 1rem 1.25rem;
}
.gallery-item .caption h4 {
  font-size: 1.05rem;
  margin-bottom: .25rem;
}
.gallery-item .caption p {
  color: var(--text-light);
  font-size: .85rem;
  font-weight: 300;
}
.gallery-sale-ref {
  display: inline-block;
  margin-top: .5rem;
  font-family: var(--font-accent);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
  font-weight: 600;
}

/* ---------- Sales Page ---------- */
.sales-section {
  background: var(--white);
}
.past-sales {
  background: var(--stone-white);
}
.sales-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sale-card-full {
  background: var(--white);
  border-radius: 4px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  border-left: 4px solid var(--accent-gold);
}
.sale-card-full.past {
  border-left-color: var(--stone-light);
  opacity: .85;
}
.badge-past {
  background: var(--stone-light) !important;
}
.sale-card-content h3 {
  font-size: 1.5rem;
  margin-bottom: .75rem;
}
.sale-card-content p {
  color: var(--text-medium);
  line-height: 1.7;
  font-weight: 300;
}
.sale-card-images {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.sale-card-images img {
  width: 150px;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
}
.no-sales-message {
  padding: 3rem;
  text-align: center;
  background: var(--stone-cream);
  border-radius: 4px;
  color: var(--text-medium);
}
.no-sales-message a {
  color: var(--accent-gold);
  font-weight: 600;
}

/* ---------- FAQ ---------- */
.faq-section {
  background: var(--white);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.5rem 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--stone-dark);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color .25s;
}
.faq-question:hover {
  color: var(--accent-rust);
}
.faq-question .toggle {
  font-size: 1.5rem;
  color: var(--accent-gold);
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-question .toggle {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease), padding .3s;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}
.faq-answer p {
  color: var(--text-medium);
  line-height: 1.8;
  font-weight: 300;
}

/* ---------- Contact ---------- */
.contact-section {
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.contact-info p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-weight: 300;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-detail .icon-circle {
  width: 44px;
  height: 44px;
  background: var(--stone-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-gold);
  font-size: 1.1rem;
}
.contact-detail h4 {
  font-family: var(--font-accent);
  font-size: .85rem;
  margin-bottom: .15rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 600;
}
.contact-detail p,
.contact-detail a {
  color: var(--text-medium);
  font-size: .9rem;
  margin-bottom: 0;
  font-weight: 400;
}
.contact-detail a:hover {
  color: var(--accent-rust);
}

.contact-form {
  background: var(--stone-white);
  border-radius: 4px;
  padding: 2.5rem;
}
.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: .8rem;
  margin-bottom: .4rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--white);
  font-weight: 400;
  transition: border-color .25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(184,150,62,.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.map-section {
  background: var(--stone-white);
  padding: 0 0 3rem;
}
.map-wrapper {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 90%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ---------- Form Messages ---------- */
.form-success {
  display: none;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-size: .9rem;
}

.form-success-replace {
  text-align: center;
  padding: 3rem 2rem;
  background: #f5ede3;
  border-radius: 4px;
}

.form-success-replace .success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #4a7c59;
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.form-success-replace h3 {
  color: #3B3028;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.form-success-replace p {
  color: #5a4a3a;
  font-size: 1.1rem;
  margin-bottom: .5rem;
}

.form-success-replace .success-phone {
  margin-top: 1.5rem;
  font-weight: 600;
}

.form-success-replace .success-phone {
  white-space: nowrap;
}
.form-success-replace .success-phone a {
  color: #B8963E;
  text-decoration: none;
}
.form-error {
  display: none;
  background: #fbe9e7;
  color: #c62828;
  padding: 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-size: .9rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--stone-dark);
  color: rgba(255,255,255,.8);
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo-text {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: .75rem;
}
.footer-brand .logo-text small {
  color: rgba(255,255,255,.4);
}
.footer-brand p {
  font-size: .85rem;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  margin-top: .75rem;
  font-weight: 300;
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-accent);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  margin-bottom: .6rem;
  transition: color .2s;
  font-weight: 400;
}
.footer-col a:hover {
  color: var(--accent-warm);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .75rem;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}
.footer-contact-item .fci-icon {
  color: var(--accent-warm);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
  font-family: var(--font-accent);
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .5px;
}
.footer-badges {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.badge {
  background: rgba(255,255,255,.06);
  padding: .3rem .75rem;
  border-radius: 2px;
  font-family: var(--font-accent);
  font-size: .65rem;
  color: var(--accent-warm);
  border: 1px solid rgba(255,255,255,.08);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}

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

@media (max-width: 992px) {
  .hero h1 { font-size: 2.6rem; }
  .section-title { font-size: 2.2rem; }
  .why-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .why-image,
  .about-photo { min-height: 300px; order: -1; }
}

@media (max-width: 768px) {
  .top-bar .container {
    flex-direction: column;
    text-align: center;
  }

  .site-header .container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 0;
  }

  .header-logo-row {
    justify-content: flex-start;
    padding: .5rem 0;
    width: auto;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 1rem 0;
    gap: 0;
    border-top: 1px solid var(--border-light);
  }
  .nav-links a {
    border-right: none;
    padding: .6rem 0;
    width: 100%;
  }
  .nav-links a::after {
    left: 0;
    transform: none;
    bottom: 0;
  }

  .nav-consult-btn {
    margin-left: 0 !important;
    margin-top: .5rem;
    display: inline-block !important;
    width: auto !important;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
    position: static;
  }

  .nav-open .nav-links {
    display: flex;
  }
  .nav-open .nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav-open .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .hero { min-height: 60vh; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: .95rem; }

  .page-hero h1 { font-size: 2.2rem; }

  .form-row { grid-template-columns: 1fr; }

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

  .service-item {
    flex-direction: column;
    gap: .75rem;
  }
  .service-num {
    width: auto;
    text-align: left;
  }

  .sale-card-images img {
    width: 120px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; text-align: center; }
  .section-title { font-size: 1.8rem; }
  .logo-text { font-size: 1.15rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 300px; text-align: center; }
}
