/* =========================================
   IMPERIALPAWS — HOME INDEX
   Luxury • Gold • Parchment • Mobile-Safe
========================================= */

/* ---------- COLOR SYSTEM ---------- */
:root {
  --bg-main: #f2f1ec;
  --bg-alt: #e6e4dc;
  --bg-dark: #1f1f1c;

  --gold: #c7a45a;
  --gold-dark: #b4934c;

  --text-main: #1f1f1f;
  --text-soft: #555;
}

/* ---------- PAGE BASE ---------- */
body {
  background: linear-gradient(180deg, var(--bg-main), var(--bg-alt));
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-main);
}

/* ---------- CONTAINERS ---------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container.narrow {
  max-width: 820px;
}

/* ---------- TYPOGRAPHY ---------- */
h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
}

h2 {
  font-size: 2.1rem;
}

p {
  margin-bottom: 1.4rem;
}

.intro-text {
  font-size: 1.05rem;
  color: var(--text-soft);
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.6rem;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

/* ---------- HOME HERO ---------- */
.home-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("/images/hero-pekingese.jpg") center / cover no-repeat;
}

.hero-subtitle {
  max-width: 640px;
  margin: 0 auto 2.2rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-trust {
  margin-top: 1.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- TRUST STRIP ---------- */
.home-trust-strip {
  border-bottom: 1px solid rgba(31, 31, 31, 0.08);
  background: #fffdf8;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
}

.trust-grid div {
  display: grid;
  gap: 0.35rem;
  min-height: 104px;
  padding: 1.2rem 1rem;
  border-left: 1px solid rgba(31, 31, 31, 0.08);
}

.trust-grid div:last-child {
  border-right: 1px solid rgba(31, 31, 31, 0.08);
}

.trust-grid strong {
  color: #1f1f1f;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-grid span {
  color: #5d5b53;
  font-size: 0.92rem;
  line-height: 1.45;
}

/* ---------- SECTIONS ---------- */
.home-section {
  padding: 3.8rem 0;
}

.home-section h2 {
  text-align: center;
  margin-bottom: 1.2rem;
}

.home-alt {
  background: var(--bg-alt);
}

/* ---------- FEATURED ---------- */
.home-featured-lux {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, var(--bg-alt), var(--bg-main));
}

.featured-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.featured-header p {
  font-size: 0.95rem;
  color: #555;
}

/* ---------- DARK STATEMENT ---------- */
.home-highlight {
  background: var(--bg-dark);
  padding: 3.2rem 0;
}

.home-highlight p {
  text-align: center;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ---------- FEATURE GRID ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.4rem;
  margin-top: 2.5rem;
}

.feature h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.feature p {
  font-size: 0.95rem;
  color: #555;
}

/* ---------- EXPECT GRID ---------- */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.2rem;
  margin-top: 2.5rem;
}

/* ---------- TESTIMONIAL WRAPPER ---------- */
.home-testimonials-lux {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, var(--bg-main), var(--bg-alt));
}

/* ---------- FINAL CTA ---------- */
.home-cta {
  background: var(--bg-dark);
  padding: 4.8rem 0;
  text-align: center;
}

.home-cta h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.home-cta p {
  max-width: 560px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.85);
}

/* ==================================================
   MOBILE ADJUSTMENTS (NO LAYOUT CHANGE)
================================================== */
@media (max-width: 768px) {

  /* HERO — reduce dominance */
  .home-hero {
    min-height: auto;
    padding: 4rem 1.5rem 3.5rem;
  }

  .home-hero h1 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-trust {
    font-size: 0.7rem;
    margin-top: 1.2rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    min-height: auto;
    border-right: 1px solid rgba(31, 31, 31, 0.08);
  }

  /* SECTION SPACING */
  .home-section {
    padding: 3rem 0;
  }

  .home-featured-lux,
  .home-testimonials-lux {
    padding: 3.5rem 0;
  }

  .home-cta {
    padding: 4rem 1.5rem;
  }

  /* BUTTONS */
  .btn-primary,
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    font-size: 0.95rem;
    padding: 0.85rem 1.8rem;
    width: auto;
  }
}
