/* ==========================================================================
   Everluck Realty — main stylesheet
   Matched to the original everluckrealty.com Elementor theme:
   black #050706 · green #00AF50 · blue #4DB5E4 · amber stars
   Playfair Display headings · Inter 300 body · Lato buttons/nav · Poppins names
   ========================================================================== */

:root {
  --black: #050706;
  --near-black: #000000;
  --dark: #1e1e1e;
  --dark-2: #222222;
  --green: #00af50;
  --blue: #4db5e4;
  --amber: #ffa531;
  --gold: #d08e02;
  --text: #7a7a7a;
  --gray: #787878;
  --white: #ffffff;
  --line: #ebebeb;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --label: "Lato", "Inter", sans-serif;
  --poppins: "Poppins", "Inter", sans-serif;
  --topbar-h: 44px;
  --nav-h: 96px;
  --shadow: 0 10px 30px rgba(5, 7, 6, 0.10);
  --shadow-lg: 0 18px 50px rgba(5, 7, 6, 0.20);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--topbar-h) + 16px); }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text);
  background: var(--white);
  padding-top: 0;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--green); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--blue); }

h1, h2, h3, h4 { font-family: var(--serif); color: var(--black); line-height: 1.1; margin: 0 0 .5em; font-weight: 600; }
h1 { font-size: clamp(3rem, 7vw, 6.25rem); }
h2 { font-size: clamp(2.1rem, 4.4vw, 4rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); }
h4 { font-size: .95rem; }
p { margin: 0 0 1.2em; }
strong { color: var(--dark-2); font-weight: 600; }

.container { width: min(1180px, 92vw); margin-inline: auto; }
.container--narrow { width: min(860px, 92vw); margin-inline: auto; }

/* ---------- kicker (original: small, semibold, green) ---------- */
.kicker {
  display: block;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: .8rem;
}
.hero .kicker { color: #e6e6e6; font-weight: 300; }

/* ---------- buttons (original: Lato 14/400, uppercase, ls 2px, 18x24, square) ---------- */
.btn {
  display: inline-block;
  font-family: var(--label);
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 24px;
  border-radius: 0;
  border: 0;
  line-height: 1;
  color: var(--white);
  cursor: pointer;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.btn--green, .btn--solid, .btn--gold { background: var(--green); color: var(--white); }
.btn--green:hover, .btn--solid:hover, .btn--gold:hover { background: var(--blue); color: var(--white); }
.btn--blue { background: var(--blue); color: var(--white); }
.btn--blue:hover { background: var(--green); color: var(--white); }
/* header-style outline button (original GET STARTED): Lato 900, bordered */
.btn--outline, .btn--ghost, .btn--white {
  background: transparent; border: 1px solid var(--white); color: var(--white);
  font-weight: 900; padding: 15px 22px;
}
.btn--outline:hover, .btn--ghost:hover, .btn--white:hover {
  background: var(--green); border-color: var(--green); color: var(--white);
}
.section--white .btn--ghost, .section--light .btn--ghost, .prose .btn--ghost {
  border-color: var(--black); color: var(--black);
}
.section--white .btn--ghost:hover, .section--light .btn--ghost:hover, .prose .btn--ghost:hover {
  background: var(--green); border-color: var(--green); color: var(--white);
}
.btn + .btn { margin-left: .9rem; }

/* ---------- fixed topbar: transparent at top, black glass after 80% of hero ---------- */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 110;
  background: transparent;
  font-size: .75rem;
  transition: background .35s ease, backdrop-filter .35s ease;
}
.topbar--glass, body.page--plain .topbar {
  background: rgba(0, 0, 0, .65);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 2rem; min-height: var(--topbar-h); flex-wrap: wrap;
}
.topbar a {
  color: var(--white); display: inline-flex; align-items: center; gap: .55em;
  font-weight: 300; letter-spacing: .5px; transition: color .3s ease;
}
.topbar a:hover { color: var(--green); }
.topbar__group { display: flex; gap: 2rem; align-items: center; }
.topbar svg { width: 14px; height: 14px; fill: var(--green); flex: none; transition: fill .3s ease; }
.topbar a:hover svg { fill: var(--blue); }

/* ---------- transparent nav (original: overlays the hero, scrolls away) ---------- */
.site-nav {
  position: absolute; top: var(--topbar-h); left: 0; right: 0; z-index: 100;
  background: transparent;
  border-bottom: 1px solid #ffffff14;
  padding: 10px 0;
}
body.page--plain .site-nav { background: var(--black); position: static; margin-top: 0; }
body.page--plain { padding-top: var(--topbar-h); }

.nav { display: flex; align-items: center; justify-content: space-between; min-height: var(--nav-h); gap: 1rem; }
.nav__logo img { width: 190px; height: auto; }
.nav__links { display: flex; align-items: center; gap: .4rem; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  position: relative;
  display: inline-block;
  color: var(--white);
  font-family: var(--label); font-size: .875rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .6em .8em;
  transition: color .3s ease;
}
/* original nav pointer: double line — grows in green above and below */
.nav__links a:not(.nav__cta)::before,
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: .8em; right: .8em;
  height: 1px; background: var(--green);
  transform: scaleX(0); transform-origin: left center;
  transition: transform .3s ease;
}
.nav__links a:not(.nav__cta)::before { top: .1em; }
.nav__links a:not(.nav__cta)::after { bottom: .1em; }
.nav__links a:not(.nav__cta):hover, .nav__links a:not(.nav__cta)[aria-current="page"] { color: var(--green); }
.nav__links a:not(.nav__cta):hover::before, .nav__links a:not(.nav__cta)[aria-current="page"]::before,
.nav__links a:not(.nav__cta):hover::after, .nav__links a:not(.nav__cta)[aria-current="page"]::after { transform: scaleX(1); }
.nav__links .nav__cta {
  margin-left: 1.2rem;
  border: 1px solid var(--white);
  font-weight: 900; letter-spacing: .1em;
  padding: 13px 22px;
  transition: background .3s ease, border-color .3s ease, color .3s ease;
}
.nav__links .nav__cta:hover { background: var(--green); border-color: var(--green); color: var(--white); }

.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; }
.nav__toggle span {
  display: block; width: 26px; height: 2px; background: var(--white); margin: 6px 0;
  transition: transform .25s ease, opacity .2s ease, background .2s ease;
}
.nav__toggle:hover span { background: var(--green); }
/* open state: blue X */
.nav__toggle[aria-expanded="true"] span { background: var(--blue); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- hero (video background, subtle dark overlay) ---------- */
.hero {
  position: relative;
  min-height: 860px;
  display: flex; align-items: center;
  color: var(--white);
  isolation: isolate;
  padding: calc(var(--nav-h) + 60px) 0 5rem;
  background: var(--black);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img, .hero__bg video { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(5, 7, 6, .2);
}
.hero--page::after { background: rgba(0, 0, 0, .72); }
.hero h1 { color: var(--white); max-width: 9ch; margin-bottom: .4em; line-height: 1.05; }
.hero__sub {
  font-size: 1rem; font-weight: 300;
  color: #f2f2f2; max-width: 50ch; margin-bottom: 3.1rem; line-height: 1.9;
}
/* subpage hero (original: centered heading + centered sub over 72% black) */
.hero--page { min-height: 520px; padding: calc(var(--nav-h) + 60px) 0 4.5rem; text-align: center; }
.hero--page h1 { font-size: clamp(2.4rem, 4.2vw, 3.9rem); max-width: none; margin-inline: auto; }
.hero--page .hero__sub { color: #cfcfcf; margin: 0 auto; }
.hero--page .kicker { color: #d8d8d8; }

/* ---------- sections ---------- */
.section { position: relative; padding: clamp(4rem, 9vw, 6.5rem) 0; }
.section--tight { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.section--white { background: var(--white); }
.section--light { background: #f7f7f7; }
.section--dark { background: var(--near-black); color: #b8b8b8; }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--center { text-align: center; }
.section--center .kicker { margin-inline: auto; }

.text-justify p { text-align: justify; }

/* decorative corner shape (original overlay-shape2@2x.png, top right) */
.section--shape-right::before {
  content: ""; position: absolute; top: 0; right: 0;
  width: min(48vw, 900px); height: 100%;
  background: url("../img/bg/overlay-shape-right.png") top right no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: .9;
}
.section--shape-right > .container { position: relative; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.split__media img { box-shadow: var(--shadow-lg); }

.lede { font-size: 1.05rem; line-height: 1.75; color: var(--dark-2); font-weight: 400; }
.section--dark .lede { color: #efefef; }

/* ---------- cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }

.card {
  background: var(--white); border: 1px solid var(--line);
  padding: 2.2rem;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card h3 { margin-bottom: .5em; }
.card__num {
  font-family: var(--serif); font-size: 1rem; color: var(--green);
  letter-spacing: .1em; margin-bottom: 1.1rem; display: block;
}

/* listing cards */
.listing-card {
  background: var(--white); overflow: hidden;
  border: 1px solid var(--line); display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.listing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.listing-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.listing-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.listing-card:hover .listing-card__media img { transform: scale(1.05); }
.listing-card__price {
  position: absolute; left: 0; bottom: 0;
  background: var(--black); color: var(--green);
  font-family: var(--label); font-weight: 600; font-size: .9rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .6em 1.2em;
}
.listing-card__body { padding: 1.6rem 1.8rem 1.8rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.listing-card__body h3 { margin: 0; }
.listing-card__addr { color: var(--text); font-size: .92rem; margin: 0; }
.listing-card__link {
  margin-top: auto; padding-top: 1rem;
  font-family: var(--label); font-weight: 600; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--green);
}
.listing-card__link::after { content: " →"; transition: margin .2s ease; }
.listing-card:hover .listing-card__link::after { margin-left: .3em; }

/* ---------- stats / detail strip ---------- */
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); overflow: hidden; }
.fact { background: var(--white); padding: 1.3rem 1.1rem; text-align: center; }
.fact__label { font-family: var(--label); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gray); display: block; margin-bottom: .3em; font-weight: 600; }
.fact__value { font-family: var(--serif); font-size: 1.35rem; color: var(--black); font-weight: 600; }

/* ---------- neighborhoods ---------- */
.hood { border-top: 1px solid var(--line); padding: 2rem 0; display: grid; grid-template-columns: 280px 1fr; gap: 2rem; align-items: baseline; }
.hood:last-child { border-bottom: 1px solid var(--line); }
.hood h3, .hood p { margin: 0; }
.hood__tag { font-family: var(--sans); font-weight: 600; font-size: .85rem; color: var(--green); display: block; margin-top: .3em; }

/* ---------- testimonials (v3 grid design on the original black) ---------- */
.testimonials { background: var(--near-black); padding: clamp(4rem, 8vw, 6.5rem) 0; color: #b8b8b8; }
.testimonials h2 { color: var(--white); }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.quote {
  background: #101211; border: 1px solid rgba(255,255,255,.08);
  padding: 2rem; display: flex; flex-direction: column; margin: 0;
  transition: transform .25s ease, border-color .25s ease;
}
.quote:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.18); }
.quote__stars { color: var(--amber); letter-spacing: .18em; font-size: 1rem; margin-bottom: 1rem; }
.quote p { font-size: .95rem; font-weight: 300; font-style: italic; line-height: 1.7; color: #d6d6d6; flex: 1; }
.quote cite { font-style: normal; font-family: var(--poppins); font-weight: 600; color: var(--green); font-size: .95rem; margin-top: 1.1rem; }

/* ---------- FAQ ---------- */
.faq details { border: 1px solid var(--line); background: var(--white); margin-bottom: .9rem; overflow: hidden; }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.15rem 1.5rem; font-family: var(--serif); font-weight: 600; color: var(--black); font-size: 1.12rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--serif); font-size: 1.6rem; color: var(--green); line-height: 1; transition: transform .25s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 1.5rem 1.3rem; }
.faq details > div p:last-child { margin-bottom: 0; }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: .9rem; }
.gallery a { display: block; aspect-ratio: 4 / 3; overflow: hidden; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, opacity .3s ease; }
.gallery a:hover img { transform: scale(1.06); opacity: .92; }

dialog.lightbox { border: 0; padding: 0; background: transparent; max-width: 92vw; max-height: 92vh; outline: none; }
dialog.lightbox::backdrop { background: rgba(0, 0, 0, .92); }
dialog.lightbox img { max-width: 92vw; max-height: 86vh; width: auto; height: auto; margin-inline: auto; }
.lightbox__bar { display: flex; justify-content: center; gap: 1rem; margin-top: .8rem; }
.lightbox__bar button {
  background: rgba(255,255,255,.12); color: #fff; border: 0;
  font-size: 1rem; padding: .5em 1.2em; cursor: pointer; font-family: var(--label);
  transition: background .2s ease;
}
.lightbox__bar button:hover { background: var(--green); }

/* ---------- resource cards ---------- */
.resource { display: flex; flex-direction: column; gap: .3rem; }
.resource h3 { margin-bottom: .2em; }
.resource a { word-break: break-word; }
.resource__meta { color: var(--gray); font-size: .92rem; }

/* ---------- CTA band (original: bg slideshow, subtle tint, shape blocks bottom-left) ---------- */
.cta-band {
  position: relative;
  min-height: 600px;
  display: flex; align-items: center;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--dark);
}
.cta-band__bg { position: absolute; inset: 0; z-index: -3; }
.cta-band__bg img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; animation: cta-fade 25s infinite;
}
.cta-band__bg img:nth-child(1) { animation-delay: 0s; }
.cta-band__bg img:nth-child(2) { animation-delay: 5s; }
.cta-band__bg img:nth-child(3) { animation-delay: 10s; }
.cta-band__bg img:nth-child(4) { animation-delay: 15s; }
.cta-band__bg img:nth-child(5) { animation-delay: 20s; }
@keyframes cta-fade {
  0% { opacity: 0; }
  6% { opacity: 1; }
  24% { opacity: 1; }
  32% { opacity: 0; }
  100% { opacity: 0; }
}
.cta-band__still {
  position: absolute; inset: 0; z-index: -3;
  width: 100%; height: 100%; object-fit: cover;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: rgba(30, 30, 30, .73);
}
.cta-band--tint-black::before { background: rgba(5, 7, 6, .64); }
.cta-band::after {
  content: ""; position: absolute; left: 0; bottom: 0; z-index: -1;
  width: min(50vw, 593px); height: min(30vw, 174px);
  background: url("../img/bg/overlay-shape-left.png") bottom left no-repeat;
  background-size: contain;
  pointer-events: none;
}
.cta-band--shape-right::after {
  left: auto; right: 0;
  background: url("../img/bg/overlay-shape-right2.png") bottom right no-repeat;
  background-size: contain;
  width: min(50vw, 640px); height: min(34vw, 420px);
}
.cta-band h2 { color: var(--white); max-width: 14ch; margin: 0 0 .3em; }
.cta-band p { max-width: 46ch; margin: 0 0 1.6em; color: #f0f0f0; }
.cta-band .btn { margin-top: 1.2rem; }

/* ---------- map embed ---------- */
.map-embed { border: 0; width: 100%; height: 420px; box-shadow: var(--shadow); display: block; }
.widget-embed { border: 0; width: 100%; height: 640px; background: var(--white); display: block; }

/* ---------- breadcrumbs ---------- */
.crumbs { font-size: .85rem; color: var(--gray); margin-bottom: 1.2rem; }
.crumbs a { color: var(--gray); }
.crumbs a:hover { color: var(--green); }
.crumbs span[aria-current] { color: var(--black); }
.hero .crumbs, .hero .crumbs a, .hero .crumbs span[aria-current] { color: #d0d0d0; }

/* ---------- prose (legal pages) ---------- */
.prose h2 { font-size: 1.5rem; margin-top: 2.2em; }
.prose h3 { font-size: 1.15rem; margin-top: 1.8em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .45em; }

/* ---------- footer (black + original corner block texture) ---------- */
.site-footer {
  position: relative;
  background: var(--near-black); color: #b8b8b8; font-size: .95rem;
}
.site-footer a { color: #b8b8b8; }
.site-footer a:hover { color: var(--green); }
.footer-main {
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 3rem;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.footer-brand img { height: 52px; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: #8a8a8a; max-width: 32ch; }
.site-footer h4 {
  color: var(--white); font-family: var(--serif); font-size: 1.35rem;
  text-transform: none; letter-spacing: 0; margin-bottom: .9em;
}
.footer-links ul, .footer-contact ul { list-style: none; margin: 0; padding: 0; }
.footer-links li, .footer-contact li { margin-bottom: .65em; }
.footer-contact li { display: flex; gap: .7em; align-items: flex-start; }
.footer-contact svg { width: 15px; height: 15px; fill: var(--green); flex: none; margin-top: .3em; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.4rem 0 5.5rem;
  font-size: .82rem; color: #7a7a7a;
}
.footer-legal .container { display: flex; flex-wrap: wrap; gap: .5rem 1.8rem; justify-content: space-between; align-items: center; }
.footer-legal ul { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; margin: 0; padding: 0; }
.footer-legal a { color: #7a7a7a; }
.footer-disclaimer { width: 100%; margin: .6rem 0 0; color: #6a6a6a; }
.footer-social a { display: inline-flex; align-items: center; gap: .5em; }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- entrance animations (original: fadeIn) ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in-view { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- misc ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--green); color: var(--white); padding: .7em 1.2em; font-weight: 600;
}
.skip-link:focus { left: 0; }

.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .nav__links { gap: 0; }
  .nav__links a { padding: .6em .5em; font-size: .8rem; }
}

@media (max-width: 960px) {
  .split, .grid-3, .footer-main { grid-template-columns: 1fr 1fr; }
  .hood { grid-template-columns: 1fr; gap: .6rem; }
  .section--shape-right::before { opacity: .45; }
  .hero { min-height: 700px; }
}

@media (max-width: 860px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--black); flex-direction: column; align-items: flex-start;
    gap: 0; padding: .6rem 4vw 1.4rem; display: none;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .nav__links.is-open { display: flex; }
  .nav__links li { width: 100%; }
  .nav__links a { display: block; padding: .85em 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: .875rem; }
  /* mobile menu: no pointer lines; active = blue, hover = green */
  .nav__links a:not(.nav__cta)::before,
  .nav__links a:not(.nav__cta)::after { display: none; }
  .nav__links a:not(.nav__cta)[aria-current="page"] { color: var(--blue); }
  .nav__links a:not(.nav__cta):hover { color: var(--green); }
  .nav__links .nav__cta { margin: .8rem 0 0; text-align: center; }
  .nav__logo img { width: 150px; }
}

@media (max-width: 720px) {
  .topbar__inner { justify-content: center; }
  .topbar__group { width: 100%; justify-content: space-evenly; gap: 0; }
  .split, .grid-3, .grid-2, .footer-main { grid-template-columns: 1fr; }
  .btn + .btn { margin-left: 0; margin-top: .8rem; }
  .hero { min-height: 620px; }
  .facts { grid-template-columns: repeat(3, 1fr); }
  .cta-band { min-height: 460px; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
  .section--shape-right::before { display: none; }
  .carousel { padding: 0 34px; }
  .carousel__btn { font-size: 2.2rem; }
  .carousel__stars { font-size: 2rem; }
  .text-justify p { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  .cta-band__bg img { opacity: 0; }
  .cta-band__bg img:first-child { opacity: 1; }
}
