/* ==========================================================================
   MAPS — Maheshwari Publicity Service
   Rebuilt 1:1 from Maps_Website.pdf (design canvas 1920 x 9392).
   Fluid scale: 1rem = 10px of the design at 1920px, shrinking
   proportionally on narrower viewports. Below 1024px the layout
   switches to a stacked mobile arrangement with fixed type sizes.
   ========================================================================== */

@font-face {
  font-family: 'Komika Axis';
  src: url('assets/fonts/KomikaAxis.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('assets/fonts/Gilroy-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('assets/fonts/Gilroy-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('assets/fonts/Gilroy-Bold.ttf') format('truetype');
  font-weight: 600 700;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('assets/fonts/Gilroy-Heavy.ttf') format('truetype');
  font-weight: 800 900;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/Inter-Variable.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --red: #e0201f;          /* rules, primary button */
  --red-bright: #e51f1c;   /* icons, tile labels, 1964, divider */
  --maroon: #950d25;       /* stat numbers, award titles, strength head */
  --pink: #f3e3e6;         /* stats / strength / footprints / award panels */
  --grey: #ebedec;         /* hero band, revamp band, footer */
  --card: #f7f8fc;         /* service cards */
  --ink: #292824;          /* body text and headings */
  --navy: #161c2d;         /* service card titles, city names */
  --muted: #5c616c;        /* service card copy */
}

html {
  font-size: min(0.520833vw, 10px);   /* 1rem = 10 design px at 1920 */
  scroll-behavior: smooth;
  scroll-padding-top: 9.5rem;
  -webkit-text-size-adjust: 100%;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3,
.section-title,
.stat__num,
.tile__label,
.cities,
.footer__cta {
  font-family: 'Gilroy', 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

img { display: block; max-width: 100%; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }

/* ---------- auto slideshows ---------- */

.auto-slides {
  position: relative;
  overflow: hidden;
  transition: height .55s ease;
}
.js .auto-slides > .auto-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity .8s ease;
}
.js .auto-slides > .auto-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
html:not(.js) .auto-slides > .auto-slide { display: none; }
html:not(.js) .auto-slides > .auto-slide.is-active { display: block; }

.title-red { color: var(--red-bright); }

.auto-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4.5rem;
  justify-content: center;
}

/* ---------- shared furniture ---------- */

.section-title {
  margin: 0;
  font-size: 4.4rem;
  line-height: 1.15;
  font-weight: 700;
  color: var(--ink);
}
.section-title--center { text-align: center; }
.section-title--footprints,
.section-title--awards { font-size: 4.2rem; }
.section-title--clients { font-size: 4.2rem; color: #fff; }
.section-title--awards { text-transform: uppercase; }

.rule {
  display: block;
  height: 3px;
  background: var(--red);
}
.rule--center { margin-left: auto; margin-right: auto; }
.rule--sm { width: 13rem; margin-top: 2rem; margin-bottom: 5.5rem; }
.rule--about { width: 11.5rem; margin: 2rem 0 3.6rem; }
.rule--revamp { width: 30.6rem; margin: 1.4rem 0 3.6rem; }
.rule--footprints { width: 21rem; margin-top: 1.6rem; margin-bottom: 6rem; }
.rule--clients { margin-bottom: 5.6rem; }
.rule--awards { width: 30rem; margin-top: 2rem; margin-bottom: 6.6rem; }

/* hex-cube decorations (art density sits in the top-right of the source) */
.decor { position: absolute; width: 56.3rem; pointer-events: none; user-select: none; }
.decor--rv-tr { top: 0; right: 0; }
.decor--rv-bl { bottom: 0; left: 0; transform: rotate(180deg); }
.decor--fp-tr { top: 0; right: 0; }
.decor--fp-bl { bottom: 0; left: 0; transform: rotate(180deg); }
.decor--ft-tl { top: 0; left: 0; transform: scaleX(-1); }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  transition: box-shadow .3s ease;
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(22, 28, 45, .10); }

.header__inner {
  max-width: 1920px;
  margin: 0 auto;
  height: 8.9rem;
  padding: 0 20rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
}
.header__logo img { height: 7.3rem; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.nav a {
  font-size: 1.6rem;
  font-weight: 500;
  color: rgba(41, 40, 36, .72);
  white-space: nowrap;
  transition: color .2s ease;
}
.nav a:hover { color: var(--red); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 14.2rem;
  height: 4.6rem;
  border-radius: .8rem;
  background: var(--red);
  color: #fff !important;
  font-size: 1.6rem;
  font-weight: 500;
  transition: background .2s ease;
}
.btn-primary:hover { background: var(--maroon); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  font-size: 22px;
  color: var(--ink);
  cursor: pointer;
}

/* ---------- hero ---------- */

.hero { background: var(--grey); }
.hero__inner {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  height: 55.9rem;                 /* band: 89 → 648 on the canvas */
}
.hero__text { position: absolute; left: 20rem; top: 11.7rem; }
.hero__text h1 {
  margin: 0;
  font-size: 6.8rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--ink);
}
.hero__text p {
  margin-top: 5.2rem;
  font-size: 2.4rem;
  line-height: 1.42;
  white-space: nowrap;
}
.hero__planes {
  position: absolute;
  right: 11.7rem;
  bottom: 0;
  width: 76.6rem;
}

/* ---------- stats ---------- */

.stats-wrap { padding: 6.4rem 5.4rem 0; }
.stats {
  max-width: 1810px;
  margin: 0 auto;
  background: var(--pink);
  border-radius: 2rem;
  padding: 6.3rem 19rem 3.8rem 15.5rem;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}
.stat__num {
  font-size: 7.6rem;
  line-height: .74;
  font-weight: 700;
  color: var(--maroon);
}
.stat__label {
  margin-top: 2.2rem;
  font-size: 3.3rem;
  line-height: 1.2;
  font-weight: 500;
  color: var(--ink);
}

/* ---------- about ---------- */

.about-banner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 7.9rem 0 4.8rem;
}
.about-banner img { display: block; width: 100%; }
.about.about--mobile { display: none; }

.about {
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 80rem 83.6rem;
  justify-content: space-between;
  align-items: stretch;
  padding: 7.9rem 2.8rem 4.8rem 20rem;
}
.about .section-title { font-size: 4rem; }
.about__prose {
  display: grid;
  gap: 2.4rem;
  font-size: 2.3rem;
  line-height: 1.7;
  color: var(--ink);
}
/* the photo fills exactly the height of the text column, cropping as needed */
.about__media { position: relative; }
.about__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2.4rem;
}

/* ---------- strategic revamp ---------- */

.revamp {
  position: relative;
  overflow: hidden;
  background: var(--grey);
}
.revamp__inner {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  padding: 9.3rem 20rem 12rem;
}
.revamp .auto-slides { min-height: 34rem; }
.revamp__lead {
  max-width: 152rem;
  font-size: 2.4rem;
  line-height: 1.49;
  color: var(--ink);
}
.revamp__lead--compact {
  font-size: 2.15rem;
  line-height: 1.42;
}

/* ---------- services ---------- */

.services-wrap { padding: 0 .3rem; }
.services {
  max-width: 1915px;
  margin: 0 auto;
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 2.4rem 7rem rgba(22, 28, 45, .14);
  padding: 4rem 11.2rem 6.3rem;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6.4rem 5.7rem;
}
.service {
  background: var(--card);
  border-radius: 2.4rem;
  box-shadow: 0 .6rem 1.8rem rgba(22, 28, 45, .07);
  padding: 1.7rem 3rem 2.4rem;
  min-height: 23.6rem;
}
.service__icon { height: 9rem; width: auto; }
.service h3 {
  margin: 1.6rem 0 0;
  font-size: 2.6rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--navy);
}
.service__rule {
  display: block;
  width: 7.9rem;
  height: 3px;
  background: var(--red);
  margin: .7rem 0 1.2rem;
}
.service p {
  font-size: 2rem;
  line-height: 1.55;
  color: var(--muted);
}

/* ---------- our strength (carousel) ---------- */

.strength-wrap { padding: 6.4rem 5.4rem; }
.strength {
  max-width: 1810px;
  margin: 0 auto;
  background: var(--pink);
  border-radius: 4.8rem;
  overflow: hidden;
  box-shadow: 0 2rem 5rem rgba(22, 28, 45, .10);
}
.strength__head {
  background: var(--maroon);
  padding: 4.6rem 14.2rem;
}
.strength__head h2 {
  margin: 0;
  font-size: 4.6rem;
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
}
.strength__body {
  padding: 8.7rem 14.2rem 0;
  min-height: 29.5rem;
}
.strength__slide {
  display: none;
  grid-template-columns: 53.4rem 1fr;
  align-items: start;
}
.strength__slide.is-active { display: grid; }
.strength__slide h3 {
  margin: 0;
  font-size: 4rem;
  line-height: 1.36;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ink);
}
.strength__slide p {
  font-size: 3rem;
  line-height: 1.45;
  color: var(--ink);
}
.strength__divider { height: 3px; background: var(--red-bright); }
.strength__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.6rem 14.2rem 3rem;
}
.dots { display: flex; align-items: center; gap: 1.2rem; }
.dot {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--red-bright);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.dot.is-active { background: #1d1d1b; }

/* ---------- portfolio ---------- */

.portfolio { padding: 3.6rem 0 0; }
.portfolio .rule--sm { margin-bottom: 3.8rem; }
.portfolio__grid {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 9.1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4.4rem 3.7rem;
}
.tile {
  position: relative;
  display: block;
  aspect-ratio: 405 / 256;
  border-radius: 2.4rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1rem 3rem rgba(22, 28, 45, .16);
}
.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: .22;
  transition: opacity .45s ease;
}
.tile:hover img { opacity: 1; }
.tile__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.2rem;
  font-size: 3.4rem;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--red-bright);
  transition: opacity .45s ease;
}
.tile:hover .tile__label { opacity: 0; }

/* ---------- portfolio segment pages ---------- */

.pf-page {
  max-width: 1920px;
  margin: 0 auto;
  padding: 6rem 5.4rem 8rem;
}
.ptabs {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 1.4rem;
  margin: 0 auto 5rem;
}
.ptab {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem .6rem;
  border: 1.5px solid var(--red-bright);
  border-radius: 1.1rem;
  background: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}
.ptab:hover { background: #fdeceb; }
.ptab.is-active {
  background: var(--red-bright);
  border-color: var(--red-bright);
  color: #fff;
}
.pf-page__work img { display: block; width: 100%; }

/* ---------- footprints ---------- */

.footprints-banner {
  max-width: 1914px;
  margin: 5rem auto 0;
}
.footprints-banner img { display: block; width: 100%; }
.footprints--mobile { display: none; }

.footprints {
  position: relative;
  overflow: hidden;
  max-width: 1914px;
  margin: 5rem auto 0;
  background: var(--pink);
  border-radius: 2rem;
  padding: 7.2rem 2rem 8rem;
}
.footprints__inner { position: relative; }
.cities {
  display: flex;
  justify-content: center;
  font-size: 3.8rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--navy);
}
.cities--top { justify-content: space-between; padding: 0 18.9rem; }
.cities--bottom { gap: 24rem; margin-top: 5.2rem; }

/* ---------- clients ---------- */

.clients {
  position: relative;
  overflow: hidden;
  margin-top: 6.4rem;
  background: url('assets/clients-bg.jpg') center 38% / cover no-repeat #292824;
}
.clients__veil {
  position: absolute;
  inset: 0;
  background: rgba(41, 40, 36, .64);
}
.clients__inner {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  padding: 9.2rem 21rem 15.6rem;
}
.clients__panel {
  max-width: 1500px;
  margin: 0 auto;
}
.clients__panel .auto-slides { aspect-ratio: 1500 / 654; }
.clients__panel img {
  display: block;
  width: 100%;
  border-radius: 2.4rem;
}

/* ---------- awards ---------- */

.awards { padding: 9.3rem 5.4rem 0; }
.awards__grid {
  max-width: 1806px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9.3rem;
}
.award-card {
  width: 100%;
  filter: drop-shadow(0 1.2rem 3rem rgba(22, 28, 45, .12));
}

/* ---------- brand story (manual slider, same pattern as Our Strength) ---------- */

.story {
  max-width: 1920px;
  margin: 0 auto;
  padding: 5rem 0 6rem;
}
.story__slide { display: none; width: 100%; }
.story__slide.is-active { display: block; }
.story__slides { position: relative; }
.story__nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2.4%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.story__nav.on-dark .dot.is-active { background: #fff; }

/* ---------- footer ---------- */

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--grey);
}
.footer__planes {
  position: absolute;
  right: 2rem;
  bottom: 0;
  width: 38rem;
  pointer-events: none;
}
.footer__inner {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  padding: 5rem 20rem 3.5rem;
}
.footer__cta {
  margin: 0 auto;
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.3;
  font-weight: 500;
  color: var(--ink);
}
.footer__cols {
  margin-top: 7.3rem;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}
.footer__logo { flex: none; align-self: flex-start; }
.footer__logo img { width: 23.9rem; }
.footer__nav {
  flex: none;
  display: grid;
  gap: .4rem;
  font-size: 2.4rem;
  line-height: 1.3;
}
.footer__nav a { color: var(--ink); transition: color .2s ease; }
.footer__nav a:hover { color: var(--red); }
.footer__contact {
  flex: none;
  max-width: 63rem;
  display: grid;
  gap: 1.6rem;
  align-content: start;
  font-size: 2.4rem;
  line-height: 1.4;
  color: var(--ink);
}
.footer__contact p {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.8rem;
  align-items: start;
}
.footer__contact i {
  color: var(--red-bright);
  font-size: 2.6rem;
  line-height: 1.4;
}
.footer__contact a:hover { color: var(--red); }
.footer__social { flex: none; }
.footer__social-title {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--red-bright);
}
.footer__social-icons {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  gap: 2.4rem;
  font-size: 4rem;
}
.footer__social-icons a { color: #1d1d1b; transition: color .2s ease, opacity .2s ease; }
.footer__social-icons a:hover { color: var(--red); opacity: .8; }
.social-img { display: block; width: 3.9rem; height: 3.9rem; }
.footer__copy {
  margin-top: 7rem;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #2b2a29;
}

/* ---------- scroll reveal ---------- */

.reveal { opacity: 0; transform: translateY(26px); }
.js .reveal {
  transition: opacity .75s cubic-bezier(.22, .7, .2, 1),
              transform .75s cubic-bezier(.22, .7, .2, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }
html:not(.js) .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .tile img, .tile__label { transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   RESPONSIVE — stacked layout below 1024px
   ========================================================================== */

@media (max-width: 1024px) {
  html { font-size: 10px; }

  .header__inner { height: 72px; padding: 0 20px; }
  .header__logo img { height: 48px; }
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(22, 28, 45, .12);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 20px; font-size: 16px; }
  .btn-primary { margin: 8px 20px 0; width: auto; height: 46px; }

  .hero__inner { height: auto; padding: 48px 20px 0; }
  .hero__text { position: static; }
  .hero__text h1 { font-size: 40px; }
  .hero__text p { margin-top: 20px; font-size: 16px; white-space: normal; }
  .hero__text p br { display: none; }
  .hero__planes { position: static; display: block; width: min(420px, 86%); margin: 28px auto 0; }

  .stats-wrap { padding: 32px 20px 0; }
  .stats {
    border-radius: 12px;
    padding: 36px 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .stat__num { font-size: 46px; line-height: 1; }
  .stat__label { margin-top: 8px; font-size: 20px; }

  .section-title { font-size: 30px; }
  .section-title--footprints, .section-title--awards, .section-title--clients { font-size: 28px; }
  .rule--sm { width: 96px; margin-top: 14px; margin-bottom: 28px; }
  .rule--about { width: 96px; margin: 14px 0 24px; }
  .rule--revamp { width: 150px; margin: 12px 0 22px; }
  .rule--footprints { width: 120px; margin-top: 12px; margin-bottom: 30px; }
  .rule--awards { width: 150px; margin-top: 14px; margin-bottom: 32px; }

  .about-banner { display: none; }
  .about.about--mobile { display: grid; }
  .about { grid-template-columns: 1fr; gap: 28px; padding: 56px 20px; }
  .about__prose { font-size: 15px; gap: 18px; }
  .about__media img { position: static; height: auto; border-radius: 12px; }

  .revamp__inner { padding: 48px 20px 120px; }
  .revamp__lead { font-size: 15px; line-height: 1.6; }
  .decor { width: 300px; }

  .services { border-radius: 12px; padding: 32px 18px 36px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .service { border-radius: 12px; padding: 16px 18px 20px; min-height: 0; }
  .service__icon { height: 56px; }
  .service h3 { font-size: 19px; }
  .service__rule { width: 56px; }
  .service p { font-size: 14px; }

  .strength-wrap { padding: 32px 20px; }
  .strength { border-radius: 20px; }
  .strength__head { padding: 20px 24px; }
  .strength__head h2 { font-size: 26px; }
  .strength__body { padding: 28px 24px 24px; min-height: 0; }
  .strength__slide { grid-template-columns: 1fr; gap: 14px; }
  .strength__slide h3 { font-size: 22px; line-height: 1.3; }
  .strength__slide p { font-size: 17px; }
  .strength__nav { padding: 14px 20px 18px; }
  .dot { width: 10px; height: 10px; }

  .portfolio { padding-top: 48px; }
  .portfolio .rule--sm { margin-bottom: 30px; }
  .portfolio__grid { padding: 0 20px; grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .tile { border-radius: 12px; }
  .tile__label { font-size: 22px; }

  .pf-page { padding: 32px 16px 48px; }
  .ptabs { flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
  .ptab { flex: 0 1 auto; padding: 8px 16px; font-size: 14px; border-radius: 7px; }

  .footprints-banner { display: none; }
  .footprints--mobile { display: block; }
  .footprints { margin-top: 28px; border-radius: 12px; padding: 40px 20px 44px; }
  .cities { font-size: 22px; flex-wrap: wrap; }
  .cities--top { justify-content: center; gap: 16px 36px; padding: 0; }
  .cities--bottom { gap: 16px 36px; margin-top: 16px; }

  .clients { margin-top: 32px; }
  .clients__inner { padding: 44px 20px 56px; }
  .clients__panel img { border-radius: 10px; }

  .awards { padding: 48px 20px 0; }
  .awards__grid { grid-template-columns: 1fr; gap: 22px; max-width: 420px; }

  .story { padding: 36px 0 40px; }

  .footer__inner { padding: 40px 20px 24px; }
  .footer__cta { font-size: 22px; }
  .footer__cols { margin-top: 36px; flex-direction: column; gap: 28px; }
  .footer__logo img { width: 170px; }
  .footer__nav { font-size: 16px; gap: 4px; }
  .footer__contact { font-size: 15px; max-width: none; }
  .footer__contact i { font-size: 17px; }
  .footer__social-title { font-size: 20px; }
  .footer__social-icons { margin-top: 10px; font-size: 26px; gap: 18px; }
  .footer__planes { width: 220px; opacity: .5; }
  .footer__copy { margin-top: 40px; font-size: 12px; }
}

@media (max-width: 560px) {
  .card-grid,
  .portfolio__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; padding: 28px 22px; }
  .stat__num { font-size: 38px; }
  .stat__label { font-size: 17px; }
}
