:root {
  --primary: #d92b1d;
  --primary-dark: #b82116;
  --primary-soft: #fff0ed;

  --black: #141111;
  --charcoal: #2c2726;

  --white: #fff;

  --surface: #f6f6f6;

  --text: #191919;
  --muted: #686868;

  --border: #e3e3e3;

  --container: 1180px;

  --shadow-sm:
    0 10px 30px rgba(20, 17, 17, 0.07);

  --shadow-md:
    0 24px 60px rgba(20, 17, 17, 0.12);

  --transition:
    180ms ease;
}


/* =====================================================
   RESET
===================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}


body {
  margin: 0;

  min-width: 320px;

  color: var(--text);

  background: var(--white);

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.65;

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
}


img {
  display: block;
  max-width: 100%;
}


a {
  color: inherit;
  text-decoration: none;
}


button {
  font: inherit;
  cursor: pointer;
}


.container {
  width:
    min(
      calc(100% - 32px),
      var(--container)
    );

  margin-inline: auto;
}


.section-pad {
  padding-block: 92px;
}


.skip-link {
  position: fixed;

  left: 10px;
  top: 10px;

  z-index: 9999;

  padding: 10px 14px;

  border-radius: 8px;

  background: var(--white);

  transform:
    translateY(-150%);
}


.skip-link:focus {
  transform: none;
}



/* =====================================================
   HEADER
===================================================== */

.utility-bar {
  color:
    rgba(255, 255, 255, 0.82);

  background: var(--black);

  font-size: 0.83rem;
}


.utility-inner {
  min-height: 38px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 24px;
}


.utility-inner p {
  margin: 0;
}


.utility-links {
  display: flex;
  gap: 22px;
}


.site-header {
  position: sticky;

  top: 0;

  z-index: 1000;

  border-bottom:
    1px solid var(--border);

  background:
    rgba(255, 255, 255, 0.96);

  backdrop-filter:
    blur(14px);
}


.nav-wrap {
  position: relative;

  min-height: 80px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 28px;
}


.brand {
  min-width: 0;

  display: inline-flex;

  align-items: center;

  gap: 10px;
}


.brand img {
  width: 112px;
  height: auto;
}


.brand span {
  min-width: 0;

  display: grid;

  line-height: 1.08;
}


.brand strong {
  color: var(--black);

  font-size: 1.08rem;

  letter-spacing: -0.02em;
}


.brand small {
  margin-top: 4px;

  color: var(--muted);
}


.primary-nav {
  display: flex;

  align-items: center;

  gap: 24px;

  font-weight: 750;
}


.primary-nav > a:not(.btn) {
  transition:
    color var(--transition);
}


.primary-nav > a:not(.btn):hover,
.primary-nav > a.active {
  color: var(--primary);
}


.nav-toggle {
  display: none;

  width: 44px;
  height: 44px;

  border: 0;

  background: transparent;
}


.nav-toggle span {
  width: 24px;
  height: 2px;

  display: block;

  margin: 5px auto;

  background: var(--black);
}



/* =====================================================
   BUTTONS
===================================================== */

.btn {
  min-height: 50px;

  padding-inline: 22px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  border:
    1px solid transparent;

  border-radius: 12px;

  font-weight: 800;

  line-height: 1.2;

  transition:
    transform var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}


.btn:hover {
  transform:
    translateY(-2px);
}


.btn-primary {
  color: var(--white);

  background: var(--primary);

  box-shadow:
    0 12px 28px
    rgba(217, 43, 29, 0.22);
}


.btn-primary:hover {
  background:
    var(--primary-dark);
}


.btn-outline {
  color: var(--white);

  border-color:
    rgba(255, 255, 255, 0.36);

  background:
    rgba(255, 255, 255, 0.05);
}


.btn-sm {
  min-height: 42px;

  padding-inline: 17px;
}


.btn-white {
  color: var(--black);

  background: var(--white);
}


.btn-ghost-white {
  color: var(--white);

  border-color:
    rgba(255, 255, 255, 0.38);
}



/* =====================================================
   COMMON
===================================================== */

.eyebrow {
  display: inline-block;

  color: var(--primary);

  font-size: 0.77rem;

  font-weight: 850;

  letter-spacing: 0.13em;

  text-transform: uppercase;
}


.eyebrow-light {
  color: #f5aaa4;
}


.section-heading {
  max-width: 790px;

  margin-bottom: 42px;
}


.section-heading.centered {
  margin-inline: auto;

  text-align: center;
}


.section-heading h2,
.intro-heading h2,
.why-content h2,
.areas-copy h2,
.intercity-grid h2,
.faq-heading h2 {
  margin:
    9px 0 15px;

  font-size:
    clamp(2rem, 4vw, 3.3rem);

  line-height: 1.05;

  letter-spacing: -0.045em;
}


.section-heading p,
.faq-heading p {
  margin: 0;

  color: var(--muted);
}



/* =====================================================
   HERO
===================================================== */

.location-hero {
  position: relative;

  overflow: hidden;

  color: var(--white);

  background:
    #171313;
}


.chandigarh-hero {
  background-image:
    url("../assets/locations/chandigarh-hero.jpg");

  background-size: cover;

  background-position:
    center center;

  background-repeat: no-repeat;
}


/*
IMPORTANT:
location-detail.css is inside /locations/

So if your image is:

assets/locations/chandigarh-hero.jpg

use:

../assets/locations/chandigarh-hero.jpg
*/


.hero-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(16, 13, 13, 0.95) 0%,
      rgba(16, 13, 13, 0.90) 37%,
      rgba(16, 13, 13, 0.67) 64%,
      rgba(16, 13, 13, 0.54) 100%
    );
}


.hero-grid-pattern {
  position: absolute;

  inset: 0;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );

  background-size:
    34px 34px;
}


.location-hero-grid {
  position: relative;

  z-index: 2;

  min-height: 660px;

  padding-block: 82px;

  display: grid;

  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(350px, 0.92fr);

  align-items: center;

  gap: 76px;
}


.breadcrumb {
  margin-bottom: 27px;

  display: flex;

  flex-wrap: wrap;

  gap: 9px;

  color:
    rgba(255, 255, 255, 0.58);

  font-size: 0.86rem;
}


.location-hero-copy h1 {
  max-width: 790px;

  margin:
    12px 0 21px;

  font-size:
    clamp(3rem, 6vw, 5.2rem);

  line-height: 0.98;

  letter-spacing: -0.06em;
}


.hero-lead {
  max-width: 710px;

  margin: 0;

  color:
    rgba(255, 255, 255, 0.73);

  font-size: 1.08rem;
}


.hero-actions {
  margin-top: 30px;

  display: flex;

  flex-wrap: wrap;

  gap: 12px;
}


.hero-trust {
  margin-top: 28px;

  display: flex;

  flex-wrap: wrap;

  gap: 10px 20px;

  color:
    rgba(255, 255, 255, 0.67);

  font-size: 0.84rem;

  font-weight: 650;
}



/* HERO CARD */

.hero-enquiry-card {
  justify-self: end;

  width:
    min(100%, 405px);

  padding: 31px;

  border:
    1px solid
    rgba(255, 255, 255, 0.14);

  border-radius: 24px;

  background:
    rgba(255, 255, 255, 0.1);

  box-shadow:
    0 30px 80px
    rgba(0, 0, 0, 0.28);

  backdrop-filter:
    blur(15px);
}


.card-eyebrow {
  color: #f5aaa4;

  font-size: 0.74rem;

  font-weight: 850;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}


.hero-enquiry-card h2 {
  margin:
    8px 0;

  font-size: 1.85rem;

  line-height: 1.12;
}


.hero-enquiry-card > p {
  margin:
    0 0 24px;

  color:
    rgba(255, 255, 255, 0.62);
}


.quick-contact-list {
  display: grid;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.13);
}


.quick-contact-list a {
  min-height: 74px;

  display: grid;

  grid-template-columns:
    44px 1fr;

  align-items: center;

  gap: 13px;

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.13);
}


.quick-contact-list > a > span {
  width: 38px;
  height: 38px;

  display: grid;

  place-items: center;

  border-radius: 11px;

  color: #f5aaa4;

  background:
    rgba(255, 255, 255, 0.07);

  font-size: 0.74rem;

  font-weight: 850;
}


.quick-contact-list div {
  display: grid;
}


.quick-contact-list small {
  color:
    rgba(255, 255, 255, 0.46);
}


.quick-contact-list strong {
  color: var(--white);
}



/* =====================================================
   INTRO
===================================================== */

.intro-grid {
  display: grid;

  grid-template-columns:
    0.87fr 1.13fr;

  gap: 82px;
}


.intro-content {
  color: var(--muted);
}


.intro-content p {
  margin:
    0 0 16px;
}



/* =====================================================
   SERVICES
===================================================== */

.city-services {
  background: var(--surface);
}


.city-services-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 17px;
}


.city-service-card {
  min-height: 350px;

  padding: 27px;

  display: flex;

  flex-direction: column;

  border:
    1px solid var(--border);

  border-radius: 21px;

  background: var(--white);

  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}


.city-service-card:hover {
  transform:
    translateY(-5px);

  border-color:
    rgba(217, 43, 29, 0.24);

  box-shadow:
    var(--shadow-md);
}


.service-number {
  width: 42px;
  height: 42px;

  display: grid;

  place-items: center;

  border-radius: 12px;

  color: var(--primary);

  background: var(--primary-soft);

  font-size: 0.74rem;

  font-weight: 850;
}


.city-service-card h3 {
  margin:
    30px 0 11px;

  font-size: 1.35rem;

  line-height: 1.18;

  letter-spacing: -0.025em;
}


.city-service-card p {
  margin: 0;

  color: var(--muted);

  font-size: 0.93rem;
}


.city-service-card a {
  margin-top: auto;
  padding-top: 18px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  border-top:
    1px solid var(--border);

  color: var(--black);

  font-weight: 800;
}


.city-service-card a span {
  color: var(--primary);
}



/* =====================================================
   WHY
===================================================== */

.city-why-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(0, 1.1fr);

  align-items: center;

  gap: 78px;
}


.why-visual {
  position: relative;

  min-height: 590px;

  overflow: hidden;

  border-radius: 26px;

  background: #eee;

  box-shadow:
    var(--shadow-md);
}


.why-visual img {
  width: 100%;
  height: 100%;

  min-height: 590px;

  object-fit: cover;
}


.why-visual-label {
  position: absolute;

  left: 20px;
  right: 20px;
  bottom: 20px;

  padding: 19px 21px;

  display: grid;

  border:
    1px solid
    rgba(255, 255, 255, 0.3);

  border-radius: 16px;

  color: var(--white);

  background:
    rgba(20, 17, 17, 0.78);

  backdrop-filter: blur(12px);
}


.why-visual-label span {
  color: #f5aaa4;

  font-size: 0.73rem;

  font-weight: 850;

  text-transform: uppercase;

  letter-spacing: 0.1em;
}


.why-content > p {
  color: var(--muted);
}


.why-points {
  margin-top: 27px;

  display: grid;
}


.why-points > div {
  padding: 17px 0;

  display: grid;

  grid-template-columns:
    53px 1fr;

  gap: 15px;

  border-top:
    1px solid var(--border);
}


.why-points > div:last-child {
  border-bottom:
    1px solid var(--border);
}


.why-points > div > span {
  width: 42px;
  height: 42px;

  display: grid;

  place-items: center;

  border-radius: 12px;

  color: var(--primary);

  background: var(--primary-soft);

  font-size: 0.74rem;

  font-weight: 850;
}


.why-points p {
  margin: 0;

  display: grid;

  gap: 3px;
}


.why-points small {
  color: var(--muted);
}



/* =====================================================
   PROCESS
===================================================== */

.moving-process {
  color: var(--white);

  background: var(--black);
}


.section-heading.light h2 {
  color: var(--white);
}


.section-heading.light p {
  color:
    rgba(255, 255, 255, 0.57);
}


.process-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 15px;
}


.process-grid article {
  min-height: 240px;

  padding: 27px;

  border:
    1px solid
    rgba(255, 255, 255, 0.12);

  border-radius: 18px;

  background:
    rgba(255, 255, 255, 0.04);
}


.process-grid article > span {
  width: 42px;
  height: 42px;

  display: grid;

  place-items: center;

  border-radius: 12px;

  color: #f5aaa4;

  background:
    rgba(217, 43, 29, 0.12);

  font-size: 0.74rem;

  font-weight: 850;
}


.process-grid h3 {
  margin:
    28px 0 8px;
}


.process-grid p {
  margin: 0;

  color:
    rgba(255, 255, 255, 0.54);

  font-size: 0.9rem;
}



/* =====================================================
   AREAS
===================================================== */

.areas-section {
  background: var(--surface);
}


.areas-grid {
  display: grid;

  grid-template-columns:
    0.9fr 1.1fr;

  align-items: center;

  gap: 80px;
}


.areas-copy p {
  color: var(--muted);
}


.area-list {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 10px;
}


.area-list span {
  min-height: 68px;

  padding: 12px;

  display: grid;

  place-items: center;

  border:
    1px solid var(--border);

  border-radius: 13px;

  color: #444;

  background: var(--white);

  text-align: center;

  font-size: 0.86rem;

  font-weight: 700;
}



/* =====================================================
   GOODS
===================================================== */

.goods-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 15px;
}


.goods-grid > div {
  min-height: 190px;

  padding: 25px;

  display: grid;

  align-content: start;

  border:
    1px solid var(--border);

  border-radius: 17px;
}


.goods-grid span {
  color: var(--primary);

  font-size: 0.72rem;

  font-weight: 850;
}


.goods-grid strong {
  margin-top: 25px;

  font-size: 1.12rem;
}


.goods-grid small {
  margin-top: 5px;

  color: var(--muted);

  font-size: 0.86rem;
}



/* =====================================================
   INTERCITY
===================================================== */

.intercity-section {
  color: var(--white);

  background:
    linear-gradient(
      118deg,
      #191414,
      #2f1b19
    );
}


.intercity-grid {
  display: grid;

  grid-template-columns:
    1fr 0.85fr;

  align-items: center;

  gap: 80px;
}


.intercity-grid h2 {
  color: var(--white);
}


.intercity-grid p {
  color:
    rgba(255, 255, 255, 0.58);
}


.route-panel {
  min-height: 190px;

  padding: 30px;

  display: grid;

  grid-template-columns:
    1fr auto 1fr;

  align-items: center;

  gap: 20px;

  border:
    1px solid
    rgba(255, 255, 255, 0.13);

  border-radius: 22px;

  background:
    rgba(255, 255, 255, 0.06);
}


.route-panel div {
  display: grid;

  text-align: center;
}


.route-panel span {
  color:
    rgba(255, 255, 255, 0.46);

  font-size: 0.74rem;

  text-transform: uppercase;

  letter-spacing: 0.1em;
}


.route-panel strong {
  margin-top: 4px;

  font-size: 1.18rem;
}


.route-panel > b {
  color: #f5aaa4;

  font-size: 1.6rem;
}



/* =====================================================
   FAQ
===================================================== */

.faq-layout {
  display: grid;

  grid-template-columns:
    0.72fr 1.28fr;

  gap: 76px;
}


.faq-heading {
  position: sticky;

  top: 125px;

  align-self: start;
}


.faq-list {
  border-top:
    1px solid var(--border);
}


.faq-item {
  border-bottom:
    1px solid var(--border);
}


.faq-item button {
  width: 100%;

  min-height: 82px;

  padding: 18px 0;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  border: 0;

  color: var(--black);

  background: transparent;

  text-align: left;

  font-size: 1.02rem;

  font-weight: 800;
}


.faq-item button b {
  width: 34px;
  height: 34px;

  flex: 0 0 auto;

  display: grid;

  place-items: center;

  border-radius: 50%;

  color: var(--primary);

  background: var(--primary-soft);

  font-size: 1.2rem;
}


.faq-answer {
  display: grid;

  grid-template-rows: 0fr;

  transition:
    grid-template-rows 280ms ease;
}


.faq-answer > p {
  min-height: 0;

  margin: 0;

  overflow: hidden;

  color: var(--muted);
}


.faq-item.open
.faq-answer {
  grid-template-rows: 1fr;
}


.faq-item.open
.faq-answer > p {
  padding-bottom: 22px;
}



/* =====================================================
   OTHER LOCATIONS
===================================================== */

.nearby-locations {
  background: var(--surface);
}


.other-location-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 15px;
}


.other-location-grid a {
  min-height: 110px;

  padding: 21px;

  display: grid;

  grid-template-columns:
    44px 1fr auto;

  align-items: center;

  gap: 15px;

  border:
    1px solid var(--border);

  border-radius: 17px;

  background: var(--white);

  transition:
    transform var(--transition),
    box-shadow var(--transition);
}


.other-location-grid a:hover {
  transform:
    translateY(-4px);

  box-shadow:
    var(--shadow-sm);
}


.other-location-grid > a > span {
  width: 40px;
  height: 40px;

  display: grid;

  place-items: center;

  border-radius: 11px;

  color: var(--primary);

  background: var(--primary-soft);

  font-size: 0.73rem;

  font-weight: 850;
}


.other-location-grid div {
  display: grid;
}


.other-location-grid small {
  color: var(--muted);
}


.other-location-grid b {
  color: var(--primary);
}



/* =====================================================
   CTA
===================================================== */

.location-cta {
  padding-block: 60px;

  color: var(--white);

  background: var(--primary);
}


.location-cta-inner {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 50px;
}


.cta-eyebrow {
  color:
    rgba(255, 255, 255, 0.7);
}


.location-cta h2 {
  max-width: 760px;

  margin:
    7px 0 8px;

  font-size:
    clamp(1.8rem, 3vw, 2.55rem);

  line-height: 1.12;
}


.location-cta p {
  margin: 0;

  color:
    rgba(255, 255, 255, 0.72);
}


.cta-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;
}



/* =====================================================
   FOOTER
===================================================== */

.site-footer {
  padding:
    64px 0 100px;

  color:
    rgba(255, 255, 255, 0.7);

  background: var(--black);
}


.footer-grid {
  display: grid;

  grid-template-columns:
    1.4fr
    repeat(3, 1fr);

  gap: 50px;
}


.brand-footer img {
  width: 128px;
}


.brand-footer strong,
.footer-grid h3 {
  color: var(--white);
}


.footer-brand > p {
  max-width: 350px;
}


.footer-contact {
  display: grid;

  gap: 6px;

  color: var(--white);

  font-weight: 700;
}


.footer-grid >
div:not(.footer-brand) {
  display: grid;

  align-content: start;

  gap: 10px;
}


.footer-bottom {
  margin-top: 50px;

  padding-top: 24px;

  display: flex;

  justify-content: space-between;

  gap: 24px;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.1);

  font-size: 0.86rem;
}


.footer-bottom p {
  margin: 0;
}


.footer-bottom div {
  display: flex;

  gap: 18px;
}


.mobile-actions {
  display: none;
}



/* =====================================================
   ANIMATION
===================================================== */

[data-reveal] {
  opacity: 0;

  transition:
    opacity 0.68s ease,
    transform 0.68s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );

  transition-delay:
    var(--delay, 0ms);
}


[data-reveal="up"] {
  transform:
    translateY(25px);
}


[data-reveal="left"] {
  transform:
    translateX(-30px);
}


[data-reveal="right"] {
  transform:
    translateX(30px);
}


[data-reveal="scale"] {
  transform:
    scale(0.97);
}


[data-reveal].is-visible {
  opacity: 1;

  transform: none;
}



/* =====================================================
   TABLET
===================================================== */

@media
(max-width: 950px) {

  .utility-bar {
    display: none;
  }


  .nav-toggle {
    display: block;
  }


  .primary-nav {
    position: absolute;

    top:
      calc(100% + 8px);

    left: 0;
    right: 0;

    display: none;

    flex-direction: column;

    align-items: stretch;

    gap: 0;

    padding: 10px;

    border:
      1px solid var(--border);

    border-radius: 16px;

    background: var(--white);

    box-shadow:
      var(--shadow-md);
  }


  .primary-nav.open {
    display: flex;
  }


  .primary-nav a {
    padding: 12px 10px;
  }


  .location-hero-grid {
    min-height: auto;

    grid-template-columns: 1fr;

    gap: 38px;
  }


  .hero-enquiry-card {
    justify-self: start;
  }


  .intro-grid,
  .city-why-grid,
  .areas-grid,
  .intercity-grid,
  .faq-layout {
    grid-template-columns: 1fr;

    gap: 40px;
  }


  .faq-heading {
    position: static;
  }


  .city-services-grid,
  .process-grid,
  .goods-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .other-location-grid {
    grid-template-columns: 1fr;
  }


  .footer-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

}



/* =====================================================
   MOBILE
===================================================== */

@media
(max-width: 640px) {

  body {
    padding-bottom: 64px;
  }


  .container {
    width:
      min(
        calc(100% - 24px),
        var(--container)
      );
  }


  .section-pad {
    padding-block: 64px;
  }


  .nav-wrap {
    min-height: 68px;
  }


  .brand img {
    width: 82px;
  }


  .brand strong {
    max-width: 175px;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;

    font-size: 0.91rem;
  }


  .location-hero-grid {
    padding-block: 55px;
  }


  .location-hero-copy h1 {
    font-size:
      clamp(
        2.65rem,
        13vw,
        4rem
      );
  }


  .hero-actions {
    width: 100%;
  }


  .hero-actions .btn {
    flex:
      1 1 100%;
  }


  .hero-enquiry-card {
    width: 100%;

    padding: 24px;
  }


  .city-services-grid,
  .process-grid,
  .goods-grid {
    grid-template-columns: 1fr;
  }


  .why-visual {
    min-height: 420px;
  }


  .why-visual img {
    min-height: 420px;
  }


  .area-list {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .route-panel {
    grid-template-columns: 1fr;

    text-align: center;
  }


  .location-cta-inner {
    flex-direction: column;

    align-items: flex-start;
  }


  .cta-actions {
    width: 100%;
  }


  .cta-actions .btn {
    flex:
      1 1 100%;
  }


  .footer-grid {
    grid-template-columns: 1fr;
  }


  .footer-bottom {
    flex-direction: column;
  }


  .mobile-actions {
    position: fixed;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 1200;

    height: 64px;

    display: grid;

    grid-template-columns:
      repeat(3, 1fr);

    color: var(--white);

    background: var(--black);

    box-shadow:
      0 -8px 24px
      rgba(0, 0, 0, 0.16);
  }


  .mobile-actions a {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 6px;

    border-right:
      1px solid
      rgba(255, 255, 255, 0.12);

    font-size: 0.82rem;

    font-weight: 800;
  }


  .mobile-actions a:last-child {
    border-right: 0;

    background: var(--primary);
  }

}



/* =====================================================
   REDUCED MOTION
===================================================== */

@media
(prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }


  *,
  *::before,
  *::after {
    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.01ms !important;
  }


  [data-reveal] {
    opacity: 1 !important;

    transform: none !important;
  }

}