/* ==========================================================================
   ATS Automatic Transmission Service
   Cinematic Hero + Bento Grid Architecture 2026
   ========================================================================== */

:root {
  /* Core Brand Colors (Untouched) */
  --c-navy:           #072138;
  --c-navy-dark:      #041525;
  --c-orange:         #d7722e;
  
  /* Interface Colors */
  --c-white:          #ffffff;
  --c-bg:             #f1f5f9; /* Modern cool gray backdrop */
  --c-text:           #334155;
  --c-text-light:     #64748b;
  
  /* Typography */
  --font:             'Inter', system-ui, -apple-system, sans-serif;
  
  /* Bento Grid System Variables */
  --gap:              1.5rem;
  --rad:              24px;
}

@media (min-width: 900px) {
  :root {
    --gap: 2rem;
    --rad: 32px;
  }
}

/* === RESET & BASE === */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }

/* === MODERN BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-orange { 
  background: var(--c-orange); 
  color: var(--c-white) !important; 
  box-shadow: 0 4px 14px rgba(215, 114, 46, 0.3);
}
.btn-orange:hover {
  background: #c56525;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(215, 114, 46, 0.4);
}

.btn-navy { 
  background: var(--c-navy); 
  color: var(--c-white) !important; 
  box-shadow: 0 4px 14px rgba(7, 33, 56, 0.3);
}
.btn-navy:hover {
  background: var(--c-navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(7, 33, 56, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--c-white) !important;
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: var(--c-white);
  color: var(--c-navy) !important;
}

/* === CINEMATIC HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 90px;
  background: var(--c-navy); /* Solid crisp navy */
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
}

.header-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo img { height: 45px; width: auto; }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
}

.nav-desktop a:not(.btn) {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--c-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 0.5rem 0;
}
.nav-desktop a:not(.btn):hover { color: var(--c-white); }
.nav-desktop a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--c-orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.nav-desktop a:not(.btn):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-desktop .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.8125rem;
}

.hamburger {
  width: 48px;
  height: 48px;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.hamburger span:nth-child(1) { width: 24px; }
.hamburger span:nth-child(2) { width: 16px; }
.hamburger span:nth-child(3) { width: 20px; }
.hamburger:hover span { width: 24px; }
@media (min-width: 900px) { .hamburger { display: none; } }


/* === CINEMATIC HERO (NON-BENTO) === */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--c-navy);
  padding-top: 90px; /* Offset for fixed header */
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5; /* Darken the image to let text pop */
}

/* Gradient wipe to blend image into background */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,33,56,0.95) 0%, rgba(7,33,56,0.6) 50%, transparent 100%),
              linear-gradient(0deg, var(--c-bg) 0%, transparent 15%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-text-box {
  max-width: 700px;
}

.hero-kicker {
  display: inline-block;
  color: var(--c-orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero-kicker::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--c-orange);
  vertical-align: middle;
  margin-right: 1rem;
}

.hero-h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--c-white);
  margin-bottom: 2rem;
  font-weight: 900;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-desc {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}


/* === BENTO GRID SYSTEM (FOR CONTENT SECTIONS) === */
.bento-wrapper {
  padding: var(--gap) 2rem 4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

main:not(#main-content).bento-wrapper,
.content-no-hero {
  padding-top: 120px; /* Offset for fixed header on landing pages */
}

.hero + .bento-wrapper {
  margin-top: -6rem; /* Pull the bento grid up over the hero gradient slightly */
  padding-top: var(--gap); /* Reset padding since we already handled the header in the hero */
}

@media (max-width: 899px) {
  .hero {
    min-height: auto;
    padding-bottom: 5rem;
  }

  .hero + .bento-wrapper {
    margin-top: -2rem;
  }
}

.bento-row {
  display: grid;
  gap: var(--gap);
}

.bento-box {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border-radius: var(--rad);
  padding: 2.5rem;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px -10px rgba(7, 33, 56, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
  border: 1px solid rgba(7, 33, 56, 0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bento-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(7, 33, 56, 0.12), 0 0 24px rgba(215, 114, 46, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
}

@media (min-width: 900px) {
  .bento-box { padding: 4rem; }
}

.bento-box.bg-navy { 
  background: linear-gradient(145deg, #0a2e4f 0%, #041525 100%);
  color: var(--c-white); 
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.bento-box.bg-navy:hover {
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4), 0 0 30px rgba(7, 33, 56, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.bento-box.bg-orange { 
  background: linear-gradient(145deg, #f28b46 0%, #bf6225 100%);
  color: var(--c-white); 
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 30px -10px rgba(215, 114, 46, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.bento-box.bg-orange:hover {
  box-shadow: 0 20px 40px -10px rgba(215, 114, 46, 0.4), 0 0 30px rgba(215, 114, 46, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.bento-box.p-0 { padding: 0; background: var(--c-white); box-shadow: 0 10px 30px -10px rgba(7, 33, 56, 0.1); }
.bento-box.p-0:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -10px rgba(7, 33, 56, 0.15); }

/* Grid Configurations */
.grid-3 { grid-template-columns: 1fr; }
.grid-about { grid-template-columns: 1fr; }
.grid-details { grid-template-columns: 1fr; }
.grid-map { grid-template-columns: 1fr; }

@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-about { grid-template-columns: 1fr 1.2fr; }
  .grid-details { grid-template-columns: 1.2fr 1fr; }
  .grid-map { grid-template-columns: 1fr 1.2fr; }
}

/* === TYPOGRAPHY FOR BENTO === */
.section-h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--c-navy);
  font-weight: 800;
}

.box-h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--c-navy);
  font-weight: 800;
}

.text-muted { color: var(--c-text-light); }
.text-white-muted { color: rgba(255,255,255,0.7); }
.text-white { color: var(--c-white); }
.text-lg { font-size: 1.125rem; }
.mt-4 { margin-top: 1.5rem; }

/* === SERVICES BENTO === */
.service-box { padding: 0; justify-content: space-between; }
.service-content { padding: 2.5rem 2.5rem 0 2.5rem; }
.service-content h2 { 
  font-size: 1.5rem; 
  color: var(--c-navy); 
  margin-bottom: 1rem; 
  line-height: 1.2; 
  font-weight: 800; 
  letter-spacing: -0.02em;
}
.service-content p { color: var(--c-text-light); }
.service-img-wrap { padding: 2.5rem; margin-top: auto; }
.service-img-wrap img {
  border-radius: calc(var(--rad) / 1.5);
  width: 100%;
  height: 240px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* === LISTS === */
.custom-list { list-style: none; padding: 0; }
.custom-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.custom-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--c-orange);
  font-weight: bold;
}
.custom-list strong { color: var(--c-navy); }
.bg-navy .custom-list strong { color: var(--c-white); }

/* === UTILS === */
.flex-col-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.text-center { text-align: center; align-items: center; }
.bento-img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }

/* === REVIEWS BENTO === */
.reviews-row {
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .reviews-row {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
  }
  .reviews-row .reviews-header {
    grid-column: 1 / -1;
    grid-row: span 1;
  }
}
@media (min-width: 1200px) {
  .reviews-row {
    grid-template-columns: 1.1fr 1fr 1fr;
  }
  .reviews-row .reviews-header {
    grid-column: 1;
    grid-row: span 2;
  }
}

.reviews-header {
  justify-content: center;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}

.stars-row {
  display: inline-flex;
  gap: 0.25rem;
  margin-top: 0.75rem;
}
.stars-row .star {
  width: 20px;
  height: 20px;
  fill: #f5b841;
  filter: drop-shadow(0 2px 4px rgba(245, 184, 65, 0.3));
}
.reviews-header .stars-row .star {
  width: 28px;
  height: 28px;
}

.review-card {
  padding: 2rem;
  justify-content: space-between;
}
.review-card .review-body {
  color: var(--c-text);
  font-size: 1rem;
  line-height: 1.65;
  margin: 1rem 0 1.25rem;
  font-style: normal;
  border: none;
  padding: 0;
  quotes: "\201C""\201D";
}
.review-card .review-body::before {
  content: open-quote;
  color: var(--c-orange);
  font-weight: 700;
  margin-right: 0.1em;
}
.review-card .review-body::after {
  content: close-quote;
  color: var(--c-orange);
  font-weight: 700;
  margin-left: 0.1em;
}
.review-card .review-author {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--c-navy);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  margin-top: auto;
}
.review-card .review-author::before {
  content: "— ";
  color: var(--c-text-light);
}

/* === SERVICE BOX (homepage) as link === */
a.service-box {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.service-box:hover .service-link {
  color: var(--c-orange);
  transform: translateX(4px);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-navy);
  transition: color 0.2s ease, transform 0.25s ease;
}

/* Inline link inside dark (orange) bento paragraph */
.link-inline-light {
  color: var(--c-white);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.4);
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.link-inline-light:hover {
  color: var(--c-navy-dark);
  text-decoration-color: var(--c-navy-dark);
}

/* === LANDING-PAGE MINI REVIEW === */
.mini-review-row {
  grid-template-columns: 1fr;
}
.mini-review {
  padding: 2.5rem;
}
@media (min-width: 900px) {
  .mini-review { padding: 3rem; }
}
.mini-review-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 700px) {
  .mini-review-head {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
}
.mini-review-rating {
  font-size: 1rem;
  color: var(--c-text-light);
  letter-spacing: -0.01em;
}
.mini-review-rating strong {
  color: var(--c-navy);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-right: 0.1em;
}
.mini-review-rating span {
  color: var(--c-text-light);
  font-weight: 500;
}
.mini-review-title {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--c-navy);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-top: 0.25rem;
}
.mini-review-body {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--c-text);
  margin: 0 0 1.25rem;
  border-left: 3px solid var(--c-orange);
  padding: 0.25rem 0 0.25rem 1.25rem;
  font-style: normal;
}
.mini-review-author {
  display: block;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--c-text-light);
  font-weight: 600;
  margin-bottom: 1.75rem;
}
.mini-review-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.mini-review-cta svg {
  transition: transform 0.25s ease;
}
.mini-review-cta:hover svg {
  transform: translateX(3px);
}

/* === LANDING-PAGE RELATED BLOCK === */
.related-row {
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .related-row { grid-template-columns: 1fr 1fr; }
}
.related-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.25rem;
}
.related-list li {
  border-bottom: 1px solid rgba(7, 33, 56, 0.08);
}
.related-list li:last-child {
  border-bottom: none;
}
.related-list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  text-decoration: none;
  color: var(--c-navy);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
}
.related-list a::after {
  content: "→";
  color: var(--c-orange);
  font-weight: 700;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.related-list a:hover {
  color: var(--c-orange);
}
.related-list a:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.related-list .rel-city {
  color: var(--c-text-light);
  font-weight: 500;
  font-size: 0.9375rem;
}

.related-list-dark li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.related-list-dark a {
  color: var(--c-white);
}
.related-list-dark a:hover {
  color: var(--c-orange);
}
.related-list-dark .rel-city {
  color: rgba(255,255,255,0.55);
}

/* === FAQ BENTO === */
.faq-row {
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .faq-row { grid-template-columns: 1fr 1.4fr; }
}

.faq-intro {
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.faq-list {
  padding: 0;
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid rgba(7, 33, 56, 0.08);
  transition: background 0.2s ease;
}
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  list-style: none;
  padding: 1.75rem 2.5rem 1.75rem 2rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--c-navy);
  font-size: 1.05rem;
  line-height: 1.4;
  position: relative;
  transition: color 0.2s ease;
}
@media (min-width: 900px) {
  .faq-item summary { padding: 2rem 3.5rem 2rem 3rem; font-size: 1.125rem; }
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--c-orange);
  border-bottom: 2px solid var(--c-orange);
  transform: translateY(-75%) rotate(45deg);
  transition: transform 0.3s ease;
}
@media (min-width: 900px) {
  .faq-item summary::after { right: 2.5rem; }
}
.faq-item[open] summary::after {
  transform: translateY(-25%) rotate(-135deg);
}
.faq-item[open] summary { color: var(--c-orange); }
.faq-item summary:hover { color: var(--c-orange); }
.faq-item .faq-answer {
  padding: 0 2rem 1.75rem 2rem;
  color: var(--c-text-light);
  font-size: 1rem;
  line-height: 1.7;
}
@media (min-width: 900px) {
  .faq-item .faq-answer { padding: 0 3rem 2rem 3rem; }
}

/* === FOOTER === */
.site-footer-wrap {
  background: var(--c-navy-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: var(--gap);
}

.footer-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

@media (min-width: 700px) {
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .footer-top { grid-template-columns: 1.6fr repeat(4, 1fr); }
}

/* Brand column */
.footer-brand img {
  height: 38px;
  width: auto;
  margin-bottom: 1.25rem;
}
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 1.25rem;
}
.footer-phone {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-orange);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.footer-phone:hover { color: #e8863a; }

.footer-brand address {
  font-style: normal;
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  line-height: 1.7;
}
.footer-brand address span {
  display: block;
  margin-top: 0.5rem;
}

/* Nav columns */
.footer-col h4 {
  color: var(--c-white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul a {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.4;
  transition: color 0.2s ease;
}
.footer-col ul a:hover { color: var(--c-orange); }

/* Bottom bar */
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  padding: 1.75rem 0;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.powered-by {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}
.powered-by img {
  opacity: 0.5;
  transition: opacity 0.3s;
}
.powered-by a:hover img { opacity: 0.9; }

/* === MOBILE NAV OVERLAY === */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(7, 33, 56, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  padding: 6rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav.is-open { transform: translateY(0); }

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  font-size: 3rem;
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
}

.mobile-nav a:not(.btn) {
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: -0.03em;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 1rem;
}

.mobile-nav .btn { 
  margin-top: auto; 
  justify-content: center; 
  font-size: 1rem; 
  padding: 1.25rem 2rem;
}
