/* ============================================================
   Sharayu Toyota — stylesheet
   Mobile-first. No framework, no build step.
   ============================================================ */

:root {
  --red: #eb0a1e;
  --red-dark: #b80717;
  --ink: #0e1015;
  --ink-soft: #262b35;
  --body: #525a68;
  --muted: #8a92a1;
  --line: #e6e8ec;
  --bg: #ffffff;
  --bg-alt: #f4f5f7;
  --dark: #0c0d11;
  --wa: #25d366;

  --wrap: 1280px;
  --radius: 16px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(14, 16, 21, .05), 0 6px 16px rgba(14, 16, 21, .05);
  --shadow-md: 0 18px 40px -12px rgba(14, 16, 21, .22);
  --header-h: 76px;
  --section-pad: clamp(3.5rem, 8vw, 6.5rem);
  --ease: cubic-bezier(.2, .8, .2, 1);
  --display: 'Manrope', 'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;
}

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

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

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, iframe { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 800;
}
h2 { font-size: clamp(2rem, 4.6vw, 3.3rem); }
h3 { font-size: 1.15rem; letter-spacing: -.02em; line-height: 1.25; font-weight: 700; }
p { margin: 0 0 1rem; }

.wrap { width: min(100% - 32px, var(--wrap)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; border-radius: 2px; }

/* ── Scroll progress ─────────────────────────────────────── */
.progress {
  position: fixed; inset: 0 0 auto; height: 3px; z-index: 200;
  background: linear-gradient(90deg, var(--red), #ff6a4d);
  transform-origin: 0 50%; transform: scaleX(0);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  --bg: var(--ink); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .8rem 1.35rem; border-radius: 999px; border: 1px solid transparent;
  background: var(--bg); color: var(--fg);
  font-weight: 600; font-size: .95rem; text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform .3s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover svg { transform: translateX(3px); }
.btn:focus-visible { outline: 3px solid rgba(235, 10, 30, .35); outline-offset: 3px; }
.btn--lg { padding: 1rem 1.7rem; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--primary { --bg: var(--red); box-shadow: 0 10px 24px -10px rgba(235, 10, 30, .7); }
.btn--primary:hover { --bg: var(--red-dark); box-shadow: 0 16px 30px -10px rgba(235, 10, 30, .75); }
.btn--glass { --bg: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .3); backdrop-filter: blur(10px); }
.btn--glass:hover { --bg: #fff; --fg: var(--ink); }
.btn--light { --bg: #fff; --fg: var(--ink); }
.btn--dark { --bg: var(--ink); }
.btn--ghost { --bg: transparent; --fg: var(--ink); border-color: var(--line); }
.btn--wa { --bg: var(--wa); --fg: #06301a; }

/* ── Header ──────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.header.is-stuck { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(14, 16, 21, .4); }
.header__inner { display: flex; align-items: center; gap: 1.5rem; height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; flex: none; }
.brand__mark { width: 38px; height: 26px; }
.brand__mark img { width: 100%; height: 100%; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text strong { font-family: var(--display); font-size: 1.12rem; color: var(--ink); letter-spacing: -.02em; }
.brand__text em { font-style: normal; font-size: .64rem; font-weight: 700; letter-spacing: .28em; color: var(--red); margin-top: 3px; text-transform: uppercase; }
.brand--light .brand__text strong { color: #fff; }
.brand--light .brand__mark img { filter: brightness(0) invert(1); }

.nav { margin-left: auto; }
.nav ul { display: flex; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.nav a {
  position: relative; display: block; padding: .5rem .85rem; border-radius: 999px;
  font-size: .93rem; font-weight: 500; color: var(--ink-soft); text-decoration: none;
  transition: background .2s, color .2s;
}
.nav a:hover { background: var(--bg-alt); color: var(--ink); }
.nav a.is-active { background: var(--ink); color: #fff; }

.header__actions { display: flex; align-items: center; gap: .75rem; }

.call { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink); }
.call__icon {
  position: relative; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: rgba(235, 10, 30, .08); color: var(--red); flex: none;
}
.call__icon::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(235, 10, 30, .35); animation: ring 2.4s var(--ease) infinite;
}
.call__icon svg { width: 19px; height: 19px; }
.call__text { display: flex; flex-direction: column; line-height: 1.15; font-weight: 700; font-size: .95rem; white-space: nowrap; }
.call__text small { font-size: .7rem; font-weight: 500; color: var(--muted); }
.call:hover .call__icon { background: var(--red); color: #fff; }
@keyframes ring { 0% { transform: scale(1); opacity: 1; } 80%, 100% { transform: scale(1.55); opacity: 0; } }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px;
  background: #fff; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1180px) { .call__text { display: none; } }
@media (max-width: 980px) {
  :root { --header-h: 66px; }
  .header__cta { display: none; }
  .nav-toggle { display: flex; }
  .header__actions { margin-left: auto; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; margin: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    clip-path: inset(0 0 100% 0); visibility: hidden;
    transition: clip-path .4s var(--ease), visibility .4s;
  }
  .nav.is-open { clip-path: inset(0 0 0 0); visibility: visible; }
  .nav ul { flex-direction: column; gap: .2rem; padding: .75rem 16px 1.25rem; }
  .nav a { padding: .85rem 1rem; font-size: 1.05rem; border-radius: 12px; }
}

/* ── Hero ────────────────────────────────────────────────── */
.hero { padding-top: clamp(10px, 1.6vw, 20px); }
.hero__stage {
  position: relative; overflow: hidden; isolation: isolate;
  border-radius: var(--radius-lg); background: var(--dark);
  min-height: clamp(560px, 86vh, 780px);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero__img {
  position: absolute; inset: -4% 0 0; width: 100%; height: 108%; object-fit: cover; object-position: 62% 50%;
  z-index: -2; transform: translateY(var(--py, 0)) scale(1.08);
  animation: kenburns 2.2s var(--ease) both;
}
@keyframes kenburns { from { transform: translateY(0) scale(1.22); filter: brightness(.4); } }
.hero__shade {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 9, 12, .88) 0%, rgba(8, 9, 12, .55) 45%, rgba(8, 9, 12, .05) 75%),
    linear-gradient(0deg, rgba(8, 9, 12, .85) 0%, rgba(8, 9, 12, 0) 45%);
}
.hero__content { padding: clamp(28px, 5vw, 64px); padding-bottom: clamp(20px, 3vw, 36px); max-width: 780px; }
.hero h1 { color: #fff; font-size: clamp(2.5rem, 6.6vw, 5.2rem); line-height: .98; letter-spacing: -.045em; margin-bottom: 1.4rem; }
.hero h1 .line { display: block; overflow: hidden; padding-bottom: .06em; }
.hero h1 .line > span { display: inline-block; animation: rise 1s var(--ease) both; animation-delay: var(--d, 0ms); }
.hero h1 .accent { color: transparent; -webkit-text-stroke: 1.5px rgba(255, 255, 255, .9); }
.hero__lead { color: rgba(255, 255, 255, .78); font-size: clamp(1rem, 1.4vw, 1.12rem); max-width: 34rem; margin-bottom: 1.8rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; }

.pill {
  display: inline-flex; align-items: center; gap: .55rem; margin-bottom: 1.4rem;
  padding: .42rem .9rem .42rem .7rem; border-radius: 999px;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2); backdrop-filter: blur(8px);
  color: #fff; font-size: .8rem; font-weight: 600; letter-spacing: .02em;
}
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: #3ee07a; box-shadow: 0 0 0 0 rgba(62, 224, 122, .6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(62, 224, 122, 0); } 100% { box-shadow: 0 0 0 0 rgba(62, 224, 122, 0); } }

.hero__facts {
  display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; margin: 0; padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .14); background: rgba(8, 9, 12, .35); backdrop-filter: blur(12px);
}
.hero__facts li { padding: 1.1rem clamp(16px, 3vw, 40px); display: flex; flex-direction: column; }
.hero__facts li + li { border-left: 1px solid rgba(255, 255, 255, .14); }
.hero__facts strong { font-family: var(--display); color: #fff; font-size: clamp(1rem, 2vw, 1.35rem); letter-spacing: -.02em; }
.hero__facts span { color: rgba(255, 255, 255, .6); font-size: .8rem; }

.hero-in { animation: fadeUp .9s var(--ease) both; animation-delay: var(--d, 0ms); }
@keyframes rise { from { transform: translateY(105%); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } }

/* ── Quick actions ───────────────────────────────────────── */
.quick { padding: 1rem 0 0; }
.quick__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: .75rem; }
.quick__card {
  display: flex; align-items: center; gap: .9rem; padding: 1rem 1.1rem;
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  text-decoration: none; color: var(--ink);
  transition: border-color .25s, box-shadow .25s var(--ease), transform .25s var(--ease);
}
.quick__icon {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; flex: none;
  background: var(--bg-alt); color: var(--red); transition: background .25s, color .25s, transform .4s var(--ease);
}
.quick__icon svg { width: 22px; height: 22px; }
.quick__text { display: flex; flex-direction: column; line-height: 1.3; flex: 1; }
.quick__text strong { font-size: .97rem; }
.quick__text small { color: var(--muted); font-size: .82rem; }
.quick__go { width: 18px; height: 18px; color: var(--muted); transition: transform .3s var(--ease), color .25s; }
.quick__card:hover { border-color: transparent; box-shadow: var(--shadow-md); transform: translateY(-3px); }
.quick__card:hover .quick__icon { background: var(--red); color: #fff; transform: rotate(-8deg); }
.quick__card:hover .quick__go { color: var(--red); transform: translateX(4px); }

/* ── Sections ────────────────────────────────────────────── */
.section { padding: var(--section-pad) 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--dark); color: rgba(255, 255, 255, .7); }
.section--dark h2, .section--dark h3 { color: #fff; }

.section__head { margin-bottom: 2.2rem; }
.section__head--split { display: grid; gap: 1rem 3rem; align-items: end; }
.section__head--split h2 { margin: 0; max-width: 14ch; }
.section__lead { max-width: 30rem; font-size: 1.05rem; margin: 0; }
@media (min-width: 860px) { .section__head--split { grid-template-columns: 1.2fr 1fr; } }

/* ── Model filters ───────────────────────────────────────── */
.filters { display: flex; gap: .5rem; overflow-x: auto; padding-bottom: .4rem; margin-bottom: 1.6rem; scrollbar-width: none; }
.filters::-webkit-scrollbar { display: none; }
.chip {
  flex: none; padding: .55rem 1.15rem; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; color: var(--ink-soft); font-size: .9rem; font-weight: 600; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ── Model cards ─────────────────────────────────────────── */
.models { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.1rem; }
.model {
  position: relative; display: flex; flex-direction: column; border-radius: 22px; overflow: hidden;
  background: #fff; border: 1px solid var(--line);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s;
}
.model.is-hidden { display: none; }
.model__media { aspect-ratio: 16 / 10; overflow: hidden; background: #eef0f3; }
.model__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.model__body { position: relative; padding: 1.1rem 1.25rem 1.25rem; display: flex; flex-direction: column; align-items: flex-start; gap: .2rem; flex: 1; }
.model__tag {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: .25rem;
}
.model h3 { margin: 0; font-size: 1.25rem; }
.model p { margin: 0 0 1rem; font-size: .88rem; }
.model__cta {
  margin-top: auto; display: inline-flex; align-items: center; gap: .35rem;
  padding: .6rem .95rem; border-radius: 999px; border: 0; cursor: pointer;
  background: var(--bg-alt); color: var(--ink); font-weight: 600; font-size: .85rem;
  transition: background .25s, color .25s;
}
.model__cta svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.model:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.model:hover .model__media img { transform: scale(1.07) translateX(-2%); }
.model:hover .model__cta { background: var(--red); color: #fff; }
.model:hover .model__cta svg { transform: translateX(3px); }

.note { margin: 1.8rem 0 0; font-size: .88rem; color: var(--muted); }

/* ── Ticker ──────────────────────────────────────────────── */
.ticker { overflow: hidden; background: var(--red); padding: 1.1rem 0; }
.ticker__track { display: flex; align-items: center; width: max-content; animation: ticker 40s linear infinite; }
.ticker__track span {
  font-family: var(--display); font-weight: 800; font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: -.03em; color: #fff; padding: 0 1.4rem; white-space: nowrap;
}
.ticker__track span:nth-of-type(even) { color: transparent; -webkit-text-stroke: 1.2px #fff; }
.ticker__track i { font-style: normal; color: rgba(255, 255, 255, .6); font-size: 1rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ── Why us ──────────────────────────────────────────────── */
.why { display: grid; gap: 2.5rem; }
.why__head .eyebrow { color: #ff5b6a; }
.why__head h2 { max-width: 12ch; }
.why__head p { max-width: 26rem; margin-bottom: 1.8rem; }
.why__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(255, 255, 255, .12); }
.why__list li {
  display: grid; grid-template-columns: 4.2rem 1fr; gap: 1rem; padding: 1.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12); transition: padding .4s var(--ease);
}
.why__num { font-family: var(--display); font-weight: 800; font-size: 1.05rem; color: rgba(255, 255, 255, .35); transition: color .3s; }
.why__list h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); margin-bottom: .35rem; }
.why__list p { margin: 0; max-width: 36rem; }
.why__list li:hover { padding-left: .6rem; }
.why__list li:hover .why__num { color: var(--red); }
@media (min-width: 960px) {
  .why { grid-template-columns: 1fr 1.35fr; gap: 5rem; }
  .why__head { position: sticky; top: calc(var(--header-h) + 2rem); align-self: start; }
}

/* ── About ───────────────────────────────────────────────── */
.about__statement {
  font-family: var(--display); font-weight: 700; color: var(--ink);
  font-size: clamp(1.5rem, 3.4vw, 2.6rem); line-height: 1.25; letter-spacing: -.03em; max-width: 52rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.about__statement mark {
  color: inherit; background: linear-gradient(transparent 62%, rgba(235, 10, 30, .22) 62%) no-repeat;
  background-size: 0 100%; transition: background-size 1.1s var(--ease) .5s;
}
.about__statement.is-visible mark { background-size: 100% 100%; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; }
.stat { background: #fff; padding: clamp(1.2rem, 3vw, 2rem); display: flex; flex-direction: column; gap: .3rem; }
.stat strong { font-family: var(--display); font-size: clamp(1.5rem, 3.2vw, 2.4rem); color: var(--ink); letter-spacing: -.04em; line-height: 1; }
.stat span { font-size: .88rem; }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }

/* ── Visit ───────────────────────────────────────────────── */
.visit { display: grid; gap: 2rem; }
.visit__info { display: grid; gap: 1rem; align-content: start; }
.visit__info header { margin-bottom: .6rem; }
.visit__info h2 { margin: 0; }
.info { background: #fff; border-radius: var(--radius); padding: 1.3rem 1.4rem; border: 1px solid var(--line); }
.info h3 { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-family: inherit; margin-bottom: .5rem; }
.info p { margin: 0; color: var(--ink-soft); }
.info p + .link { margin-top: .7rem; }
.link { display: inline-flex; align-items: center; gap: .35rem; color: var(--ink); font-weight: 600; text-decoration: none; background: linear-gradient(var(--red), var(--red)) 0 100% / 0 2px no-repeat; transition: background-size .35s var(--ease); }
.link:hover { background-size: 100% 2px; }
.link svg { width: 16px; height: 16px; }
.visit__map { border-radius: var(--radius-lg); overflow: hidden; min-height: 360px; border: 1px solid var(--line); }
.visit__map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; filter: grayscale(.35) contrast(1.05); }
@media (min-width: 900px) { .visit { grid-template-columns: 1fr 1.3fr; gap: 3rem; } }

/* ── Enquiry ─────────────────────────────────────────────── */
.enquire__card {
  position: relative; overflow: hidden; isolation: isolate;
  display: grid; gap: 2rem; padding: clamp(24px, 5vw, 56px); border-radius: var(--radius-lg);
  background: var(--dark); color: rgba(255, 255, 255, .72);
}
.enquire__card::before {
  content: ""; position: absolute; z-index: -1; width: 620px; height: 620px; right: -180px; top: -260px;
  background: radial-gradient(circle, rgba(235, 10, 30, .55), transparent 65%); animation: drift 12s ease-in-out infinite alternate;
}
@keyframes drift { to { transform: translate(-120px, 120px); } }
.enquire__copy h2 { color: #fff; }
.enquire__copy .eyebrow { color: #ff5b6a; }
.enquire__direct { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
@media (min-width: 960px) { .enquire__card { grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: center; } }

.form { display: grid; gap: 1rem; background: #fff; border-radius: 22px; padding: clamp(20px, 3vw, 32px); }
@media (min-width: 560px) { .form { grid-template-columns: 1fr 1fr; } .field--full { grid-column: 1 / -1; } }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink-soft); margin-bottom: .4rem; }
.field .opt { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .95rem; border-radius: 12px; border: 1px solid var(--line);
  background: var(--bg-alt); font: inherit; font-size: .95rem; color: var(--ink);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: #fff; border-color: var(--ink); box-shadow: 0 0 0 4px rgba(14, 16, 21, .08);
}
.field .is-invalid, .field input.is-invalid { border-color: var(--red); box-shadow: 0 0 0 4px rgba(235, 10, 30, .12); }
.form__hint { margin: .7rem 0 0; font-size: .82rem; color: var(--muted); text-align: center; }
.form__hint.is-error { color: var(--red); font-weight: 600; }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background: var(--dark); color: rgba(255, 255, 255, .6); padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem; }
.footer__inner { display: grid; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.footer h4 { color: #fff; font-family: inherit; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.footer a { text-decoration: none; transition: color .2s; }
.footer a:hover { color: #fff; }
.footer__brand p { margin-top: 1rem; max-width: 22rem; }
.footer__bottom { padding-top: 1.4rem; font-size: .85rem; }
.footer__bottom p { margin: 0; }
@media (min-width: 760px) { .footer__inner { grid-template-columns: 1.6fr 1fr 1.2fr; } }

/* ── WhatsApp float ──────────────────────────────────────── */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90; display: grid; place-items: center;
  width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff;
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, .7);
  transition: transform .3s var(--ease);
  animation: fadeUp .8s var(--ease) 1.2s both;
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: scale(1.08) rotate(-6deg); }

/* ── Scroll reveal ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); filter: blur(6px); transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease); transition-delay: var(--d, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; filter: none; }
.models .model.reveal:nth-child(4n+2) { --d: 70ms; }
.models .model.reveal:nth-child(4n+3) { --d: 140ms; }
.models .model.reveal:nth-child(4n+4) { --d: 210ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
  .ticker__track { animation: none; }
}
