/* =============================================================================
   HARAS DEL BOSQUE — Luxury Estate Community Portal · Amozoc, Puebla, Mexico
   style.css  |  Design System v1.0
   -----------------------------------------------------------------------------
   Brand: Old-money equestrian estate · quiet luxury · generational wealth
   Mantras: Restraint over spectacle. Provenance over hype. Landscale → landscape.
   Palette: Ivory · Cream · Forest · Brass · Charcoal  (NO dark themes)
   Type:    Cormorant Garamond (display) + Inter (body)
   ============================================================================= */

/* -------------------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------------------- */
:root {
  /* --- Color --- */
  --ivory:        #FAF7F0;   /* primary page background  */
  --cream:        #F5F1E8;   /* secondary surfaces        */
  --forest:       #1E3A2F;   /* field, header, footer     */
  --forest-deep:  #132823;   /* hover / depth             */
  --brass:        #C6A664;   /* accent, fills, linework   */
  --brass-dark:   #A8803C;   /* hover brass               */
  --brass-light:  #D9BC82;   /* highlight brass           */
  --charcoal:     #2B2B27;   /* body text                 */
  --charcoal-soft:#4A4944;   /* secondary text            */
  --charcoal-faint:#7C7A72;  /* tertiary / meta           */
  --line:         #E3DCCB;   /* hairline borders on light */
  --white:        #FFFFFF;

  /* --- Type: Display (Cormorant Garamond) --- */
  --font-display: "Cormorant Garamond", "EB Garamond", Georgia, "Times New Roman", serif;
  /* --- Type: Body (Inter) --- */
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                  Helvetica, Arial, sans-serif;

  /* --- Spacing scale --- */
  --space-xs: 0.5rem;
  --space-sm: 0.875rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-xxl: 6rem;

  /* --- Radius --- */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* --- Elevation --- */
  --shadow-card: 0 1px 2px rgba(30, 58, 47, 0.06),
                 0 8px 24px rgba(30, 58, 47, 0.08);
  --shadow-card-hover: 0 4px 12px rgba(30, 58, 47, 0.10),
                       0 20px 48px rgba(30, 58, 47, 0.16);
  --shadow-cta: 0 6px 20px rgba(198, 166, 100, 0.35);

  /* --- Layout --- */
  --container-max: 1200px;
  --nav-height: 84px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  background-color: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: var(--forest); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--brass-dark); }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--forest);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

p { color: var(--charcoal); }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

/* -------------------------------------------------------------------------
   3. TYPOGRAPHY UTILITIES
   ------------------------------------------------------------------------- */
.display { font-family: var(--font-display); }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass-dark);
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto var(--space-xl); }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin: var(--space-sm) 0; }
.section-head p  { color: var(--charcoal-soft); font-size: 1.05rem; }
.lead { font-size: 1.12rem; line-height: 1.7; color: var(--charcoal-soft); }

/* -------------------------------------------------------------------------
   4. BUTTONS
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.9rem 1.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: all 0.25s ease;
  line-height: 1.2;
  white-space: nowrap;
}

/* Brass fill — primary CTA */
.btn--fill {
  background: linear-gradient(180deg, var(--brass) 0%, var(--brass-dark) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-cta);
}
.btn--fill:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, var(--brass-light) 0%, var(--brass) 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(198, 166, 100, 0.45);
}

/* Brass outline — secondary */
.btn--outline {
  background: transparent;
  color: var(--brass-dark);
  border: 1.5px solid var(--brass);
}
.btn--outline:hover {
  background: var(--brass);
  color: #fff;
  border-color: var(--brass);
  transform: translateY(-2px);
}

/* On forest surfaces */
.btn--on-dark { color: var(--brass-light); border-color: var(--brass-light); }
.btn--on-dark:hover { background: var(--brass-light); color: var(--forest-deep); }

.btn:disabled, .btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
}

/* -------------------------------------------------------------------------
   5. NAVIGATION
   ------------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(250, 247, 240, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--forest);
}
.nav__brand svg { width: 42px; height: 42px; }
.nav__brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--brass-dark);
  text-transform: uppercase;
}
.nav__links { display: flex; align-items: center; gap: var(--space-lg); }
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
}
.nav__links a:hover { color: var(--brass-dark); }
.nav__cta { margin-left: var(--space-sm); }

/* Hamburger (mobile) */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* -------------------------------------------------------------------------
   6. HERO
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(30, 58, 47, 0.68) 0%, rgba(19, 40, 35, 0.82) 100%),
    radial-gradient(1200px 600px at 80% -10%, rgba(198, 166, 100, 0.28), transparent 60%),
    var(--forest-deep);
  color: var(--ivory);
  overflow: hidden;
}
.hero__content { max-width: 780px; padding: var(--space-xl) 0; }
.hero__eyebrow { color: var(--brass-light); margin-bottom: var(--space-md); }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  color: var(--ivory);
  font-weight: 400;
  margin-bottom: var(--space-md);
  line-height: 1.08;
}
.hero h1 em { font-style: italic; color: var(--brass-light); }
.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.7;
  color: rgba(250, 247, 240, 0.92);
  max-width: 640px;
  margin-bottom: var(--space-lg);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
}
.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(250, 247, 240, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* -------------------------------------------------------------------------
   7. TRUST BAR
   ------------------------------------------------------------------------- */
.trustbar {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--space-lg) 0;
}
.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-lg);
  text-align: center;
}
.trustbar__item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.trustbar__item svg { width: 34px; height: 34px; color: var(--brass-dark); margin-bottom: 4px; }
.trustbar__item strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--forest);
  font-weight: 500;
}
.trustbar__item span { font-size: 0.8rem; letter-spacing: 0.04em; color: var(--charcoal-soft); }

/* -------------------------------------------------------------------------
   8. SECTIONS (generic)
   ------------------------------------------------------------------------- */
.section { padding: var(--space-xxl) 0; }
.section--cream { background: var(--cream); }
.section--ivory { background: var(--ivory); }

/* -------------------------------------------------------------------------
   9. NATURE / LIFESTYLE SECTION
   ------------------------------------------------------------------------- */
.nature { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }
.nature__media { position: relative; }
.nature__media img,
.nature__media .media-fallback {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.media-fallback {
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: linear-gradient(160deg, var(--forest), var(--forest-deep));
  color: var(--brass-light); font-family: var(--font-display); font-size: 1.4rem;
  padding: var(--space-lg);
}
.nature__copy h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: var(--space-md); }
.nature__copy .lead { margin-bottom: var(--space-md); }
.nature__list { display: flex; flex-direction: column; gap: var(--space-md); margin-top: var(--space-lg); }
.nature__list li { display: flex; gap: var(--space-md); align-items: flex-start; }
.nature__list .tick {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(198, 166, 100, 0.18); color: var(--brass-dark);
  display: flex; align-items: center; justify-content: center;
}
.nature__list strong { font-family: var(--font-display); font-size: 1.15rem; color: var(--forest); }
.nature__list small { display: block; color: var(--charcoal-soft); font-size: 0.92rem; }

/* -------------------------------------------------------------------------
   10. LISTINGS GRID
   ------------------------------------------------------------------------- */
.listings__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.listing {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.listing:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.listing__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.listing__media img,
.listing__media .media-fallback { width: 100%; height: 100%; object-fit: cover; }
.listing__status {
  position: absolute; top: 14px; left: 14px;
  background: rgba(30, 58, 47, 0.86); color: var(--brass-light);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.4rem 0.8rem; border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}
.listing__price {
  position: absolute; bottom: 14px; left: 14px;
  background: var(--ivory); color: var(--forest);
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
  padding: 0.4rem 0.9rem; border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.listing__body { padding: var(--space-md); display: flex; flex-direction: column; flex: 1; }
.listing__cluster {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brass-dark); font-weight: 600; margin-bottom: 6px;
}
.listing__title { font-size: 1.35rem; color: var(--forest); margin-bottom: var(--space-sm); }
.listing__desc { color: var(--charcoal-soft); font-size: 0.95rem; margin-bottom: var(--space-md); flex: 1; }
.listing__specs {
  display: flex; flex-wrap: wrap; gap: var(--space-sm) var(--space-md);
  padding-top: var(--space-sm); border-top: 1px solid var(--line);
  font-size: 0.85rem; color: var(--charcoal-soft);
  margin-bottom: var(--space-md);
}
.listing__specs span { display: inline-flex; align-items: center; gap: 5px; }
.listing__specs svg { width: 16px; height: 16px; color: var(--brass-dark); }
.listing__cta { margin-top: auto; }

/* -------------------------------------------------------------------------
   11. AMENITIES
   ------------------------------------------------------------------------- */
.amenities__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--space-md);
}
.amenity {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: all 0.3s ease;
}
.amenity:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.amenity svg { width: 42px; height: 42px; color: var(--brass-dark); margin: 0 auto var(--space-sm); }
.amenity h3 { font-size: 1.3rem; margin-bottom: 6px; }
.amenity p { color: var(--charcoal-soft); font-size: 0.9rem; }

/* -------------------------------------------------------------------------
   12. TESTIMONIALS
   ------------------------------------------------------------------------- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}
.testimonial {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
}
.testimonial__quote {
  font-family: var(--font-display); font-size: 1.2rem; font-style: italic;
  color: var(--forest); line-height: 1.5; margin-bottom: var(--space-md);
}
.testimonial__author { display: flex; align-items: center; gap: var(--space-sm); }
.testimonial__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--forest), var(--forest-deep));
  color: var(--brass-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem;
}
.testimonial__author strong { color: var(--charcoal); display: block; font-size: 0.95rem; }
.testimonial__author span { color: var(--charcoal-faint); font-size: 0.8rem; }

/* -------------------------------------------------------------------------
   13. FAQ
   ------------------------------------------------------------------------- */
.faq { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--space-sm); }
.faq__item {
  background: #ffffff; border: 1px solid var(--line); border-radius: var(--radius-md);
  overflow: hidden;
}
.faq__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: var(--space-md); font-family: var(--font-display); font-size: 1.15rem;
  color: var(--forest); display: flex; justify-content: space-between; align-items: center; gap: var(--space-md);
}
.faq__q:hover { color: var(--brass-dark); }
.faq__icon { font-size: 1.4rem; color: var(--brass-dark); line-height: 1; flex: none; transition: transform 0.3s ease; }
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__a { padding: 0 var(--space-md) var(--space-md); color: var(--charcoal-soft); font-size: 0.98rem; }

/* -------------------------------------------------------------------------
   14. LEAD FORM (CONSENT-GATED)
   ------------------------------------------------------------------------- */
.lead {
  position: relative;
  background:
    radial-gradient(1200px 500px at 50% -20%, rgba(198, 166, 100, 0.22), transparent 60%),
    linear-gradient(180deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: var(--ivory);
}
.lead .section-head h2 { color: var(--ivory); }
.lead .section-head p { color: rgba(250, 247, 240, 0.85); }

.lead__card {
  max-width: 620px; margin: 0 auto;
  background: var(--ivory); color: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.lead__card h3 {
  font-size: 1.9rem; color: var(--forest); text-align: center; margin-bottom: var(--space-sm);
}
.lead__card p.intro { text-align: center; color: var(--charcoal-soft); margin-bottom: var(--space-lg); }

.lead__field { margin-bottom: var(--space-md); }
.lead__field label {
  display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--forest); margin-bottom: 6px;
}
.lead__field input[type="text"],
.lead__field input[type="email"],
.lead__field input[type="tel"] {
  width: 100%; padding: 0.85rem 1rem;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; color: var(--charcoal);
  background: #fff; transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lead__field input:focus {
  outline: none; border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(198, 166, 100, 0.25);
}
.lead__field input::placeholder { color: var(--charcoal-faint); }

.lead__consent {
  display: flex; gap: var(--space-sm); align-items: flex-start;
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-md);
}
.lead__consent input[type="checkbox"] {
  width: 20px; height: 20px; margin-top: 3px; flex: none; accent-color: var(--brass-dark);
}
.lead__consent label {
  font-size: 0.85rem; color: var(--charcoal-soft); line-height: 1.5;
}
.lead__consent a { color: var(--brass-dark); font-weight: 600; text-decoration: underline; }

.lead__error {
  display: none; background: #FBE9E7; color: #B23B2E; border: 1px solid #F3C4BE;
  border-radius: var(--radius-sm); padding: var(--space-sm) var(--space-md);
  font-size: 0.88rem; margin-bottom: var(--space-md);
}
.lead__error.show { display: block; }

.lead__success {
  display: none; text-align: center; padding: var(--space-lg) var(--space-md);
}
.lead__success.show { display: block; }
.lead__success svg { width: 56px; height: 56px; color: var(--brass-dark); margin: 0 auto var(--space-md); }
.lead__success h4 { font-size: 1.7rem; margin-bottom: var(--space-sm); }
.lead__success p { color: var(--charcoal-soft); }

/* reCAPTCHA placeholder band */
.lead__recaptcha {
  display: flex; align-items: center; justify-content: center; gap: var(--space-sm);
  border: 1.5px dashed var(--line); border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md); margin-bottom: var(--space-md);
  font-size: 0.8rem; color: var(--charcoal-faint); background: #fff;
}
.lead__recaptcha svg { width: 26px; height: 26px; color: var(--brass-dark); }
.lead__submit { width: 100%; }

.lead__privacy-note {
  text-align: center; font-size: 0.72rem; color: var(--charcoal-faint);
  margin-top: var(--space-md); line-height: 1.6;
}
.lead__privacy-note a { color: var(--brass-dark); text-decoration: underline; }

/* -------------------------------------------------------------------------
   15. FOOTER
   ------------------------------------------------------------------------- */
.footer {
  background: var(--forest-deep); color: var(--ivory);
  padding: var(--space-xxl) 0 var(--space-lg);
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl); padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(250, 247, 240, 0.12);
}
.footer__brand { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer__brand svg { width: 44px; height: 44px; }
.footer__brand p { color: rgba(250, 247, 240, 0.75); font-size: 0.92rem; max-width: 300px; }
.footer__col h4 {
  color: var(--brass-light); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.82rem; margin-bottom: var(--space-md);
}
.footer__col ul { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer__col a { color: rgba(250, 247, 240, 0.8); font-size: 0.92rem; }
.footer__col a:hover { color: var(--brass-light); }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: var(--space-md);
  padding-top: var(--space-lg); font-size: 0.82rem; color: rgba(250, 247, 240, 0.6);
}
.footer__bottom a { color: rgba(250, 247, 240, 0.75); text-decoration: underline; }

/* -------------------------------------------------------------------------
   16. MOBILE / RESPONSIVE
   ------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .listings__grid { grid-template-columns: repeat(2, 1fr); }
  .nature { grid-template-columns: 1fr; gap: var(--space-lg); }
  .nature__media { order: -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 68px; }
  .nav__links {
    position: fixed; top: var(--nav-height); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ivory); border-bottom: 1px solid var(--line);
    padding: var(--space-md);
    box-shadow: var(--shadow-card);
    transform: translateY(-160%); opacity: 0; pointer-events: none;
    transition: all 0.3s ease;
  }
  .nav__links.nav__links--open {
    transform: translateY(0); opacity: 1; pointer-events: auto;
  }
  .nav__links a { padding: var(--space-sm) 0; border-bottom: 1px solid var(--line); }
  .nav__cta { margin: var(--space-md) 0 0; }
  .nav__toggle { display: flex; }

  .hero { min-height: calc(100vh - var(--nav-height)); text-align: center; }
  .hero__content { display: flex; flex-direction: column; align-items: center; }
  .hero__actions { justify-content: center; }

  .listings__grid { grid-template-columns: 1fr; }
  .lead__card { padding: var(--space-lg) var(--space-md); }
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .hero__actions .btn { width: 100%; }
  .trustbar__grid { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .testimonials__grid { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------------
   17. CONCIERGE WIDGET (base shell; concierge-widget.js injects scoped styles)
   ------------------------------------------------------------------------- */
#haras-concierge { z-index: 9999; }
.haras-concierge-scope, .haras-concierge-scope * {
  box-sizing: border-box; margin: 0; padding: 0;
}
