/* ============================================================
   K & T Contracting LLC – Shared Stylesheet (Corrected Version)
   STRICT CORRECTION MODE — Original structure preserved
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --navy:       #0d1b2a;
  --navy-mid:   #162236;
  --navy-light: #1e3050;
  --gold:       #c8951f;
  --gold-light: #e6ab35;
  --gold-pale:  #f5e6c4;
  --white:      #ffffff;
  --off-white:  #f7f5f0;
  --gray-100:   #f0eff0;
  --gray-300:   #d1cfd6;
  --gray-500:   #888494;
  --gray-700:   #4a4656;
  --text-dark:  #1a1823;
  --text-body:  #3d3a47;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.12);
  --shadow-md:  0 6px 24px rgba(0,0,0,.18);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.24);
  --radius:     6px;
  --radius-lg:  12px;
  --transition: all .25s ease;
  --max-width:  1180px;
  --header-h:   76px; /* confirmed correct */
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(1.9rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 3.5vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.55rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
}
.section      { padding: 80px 0; }
.section--alt  { background: var(--off-white); }
.section--dark { background: var(--navy); color: var(--white); }
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-intro {
  max-width: 660px;
  font-size: 1.03rem;
  color: var(--gray-700);
  margin-bottom: 48px;
}
.section--dark .section-intro { color: var(--gray-300); }
.text-center { text-align: center; }
.text-center .section-intro { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,149,31,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---------- TOP CONTACT BAR (Corrected to GOLD) ---------- */
.contact-bar {
  background: var(--gold);        /* corrected */
  padding: 6px 24px;             /* tightened for gold bar */
  display: flex;
  justify-content: center;       /* corrected */
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
}
.contact-bar a {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy);            /* corrected */
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* ---------- Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,.3);
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

/* Corrected logo size (matches inner pages) */
.nav-logo-img {
  height: 42px;       /* confirmed correct */
  width: auto;
  max-width: 190px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  padding: 8px 11px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(255,255,255,.06);
}

.nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: .74rem !important;
  font-weight: 700 !important;
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 18px !important;
  border-radius: var(--radius) !important;
  margin-left: 8px;
  letter-spacing: .06em !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}
/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 24px;
  max-width: var(--max-width);
  margin-inline: auto;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  max-width: 680px;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Page Hero ---------- */
.page-hero {
  background: var(--navy);
  padding: 60px 24px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px 2px 0 0;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p  {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  max-width: 580px;
  margin-inline: auto;
}

/* ---------- Cards ---------- */
.card-grid { display: grid; gap: 24px; }

/* FIXED: Kitchen + Bathroom forced 2-grid */
.services-remodel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 24px;
}

.card-grid--2 { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.card-grid--3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.card-grid--4 { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold-pale);
}
.card-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.card p  { font-size: .93rem; color: var(--gray-700); }

/* Card with top image */
.card-top-img {
  width: calc(100% + 56px);
  margin: -32px -28px 24px;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* ---------- Gold bar ---------- */
.gold-bar {
  width: 48px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 22px;
}
.gold-bar--center { margin-inline: auto; }

/* ---------- Images ---------- */
.section-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.process-img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  margin: 8px 0 40px;
}
.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--gold);
  padding: 56px 24px;
  text-align: center;
}
.cta-banner h2 { color: var(--navy); margin-bottom: 10px; }
.cta-banner p  {
  color: var(--navy);
  opacity: .8;
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 28px;
}

/* ---------- Stats ---------- */
.stat-bar {
  background: var(--navy);
  padding: 44px 24px;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 28px;
  text-align: center;
  max-width: var(--max-width);
  margin-inline: auto;
}
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.68);
  font-weight: 500;
  letter-spacing: .04em;
}

/* ---------- Split Layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

/* ---------- Area Chips ---------- */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
}
.area-chip {
  background: var(--white);
  border: 2px solid var(--gold-pale);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.area-chip:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
}
.area-chip::before {
  content: '📍'; /* updated emoji preserved */
  font-size: .95rem;
}
/* ---------- Process Steps ---------- */
.process-steps { display: flex; flex-direction: column; }
.process-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--gray-100);
}
.process-step:last-child { border-bottom: none; }
.step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-body h3 { margin-bottom: 8px; font-size: 1.15rem; }
.step-body p  { color: var(--gray-700); font-size: .95rem; }

/* ---------- Why Us ---------- */
.why-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
}
.why-feature { display: flex; gap: 18px; align-items: flex-start; }
.why-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}
.why-feature h3 { font-size: 1.05rem; margin-bottom: 5px; }
.why-feature p  { font-size: .91rem; color: var(--gray-700); }

/* ---------- Contact Form ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gray-700);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: .94rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,149,31,.14);
}
.form-group textarea { resize: vertical; min-height: 140px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { background: var(--gray-100); padding: 9px 24px; }
.breadcrumb-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  color: var(--gray-700);
}
.breadcrumb-inner a { color: var(--gray-700); transition: var(--transition); }
.breadcrumb-inner a:hover { color: var(--gold); }
.breadcrumb-sep { opacity: .5; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 44px;
  padding-bottom: 44px;
}
.footer-logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 12px;
}
.footer-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-desc { font-size: .88rem; line-height: 1.7; }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 7px; }
.footer-col ul a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--gold); padding-left: 3px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .88rem;
  margin-bottom: 9px;
}
.footer-contact-icon { font-size: .95rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a {
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: .8rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split--reverse { direction: ltr; }
  .why-row { grid-template-columns: 1fr; gap: 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }
  .section-img { height: 280px; }
  .about-img   { height: 300px; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }

  /* Mobile Nav */
  .nav-links {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 12px 20px 20px;
    border-top: 1px solid rgba(255,255,255,.08);
    gap: 2px;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .nav-links .nav-cta {
    display: flex !important;
    justify-content: center;
    margin: 8px 0 0;
    background: var(--gold) !important;
    color: var(--navy) !important;
    padding: 13px 20px !important;
    border-radius: var(--radius) !important;
    margin-left: 0;
    font-size: .82rem !important;
  }

  .section { padding: 52px 0; }
  .hero-content { padding: 64px 20px; }
  .hero { min-height: 75vh !important; }

  .process-step { grid-template-columns: 1fr; gap: 14px; }
  .step-num { width: 48px; height: 48px; font-size: 1.05rem; }

  .stat-num { font-size: 2rem; }
  .process-img { height: 210px; }

  .card-grid--2,
  .card-grid--3,
  .card-grid--4 { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
  .contact-bar { justify-content: center; font-size: .7rem; }
  .contact-bar a { font-size: .7rem; }
  .cta-banner { padding: 44px 20px; }
  .card { padding: 24px 20px; }
  .card-top-img { width: calc(100% + 40px); margin: -24px -20px 20px; }
  .section-img { height: 220px; }
  .about-img   { height: 240px; }
}
/* PROCESS GRID — FIX FOR SIDE‑BY‑SIDE LAYOUT */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  align-items: start;
}

/* Tablet */
@media (max-width: 1100px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
<div class="process-grid">

  <div>
    <div class="process-step-num"><span>1</span></div>
    <h4>You Call or Email</h4>
    <p>Tell us what you're working on. We listen and give you a straight answer.</p>
  </div>

  <div>
    <div class="process-step-num"><span>2</span></div>
    <h4>We Come Out</h4>
    <p>We visit the site and understand exactly what you need done.</p>
  </div>

  <div>
    <div class="process-step-num"><span>3</span></div>
    <h4>You Get a Real Proposal</h4>
    <p>Written scope, timeline, and price — all in plain language.</p>
  </div>

  <div>
    <div class="process-step-num"><span>4</span></div>
    <h4>We Get to Work</h4>
    <p>Same crew from day one to final walkthrough.</p>
  </div>

  <div>
    <div class="process-step-num"><span>5</span></div>
    <h4>Done When You Say So</h4>
    <p>We walk the finished project with you.</p>
  </div>

</div>

<div class="text-center" style="margin-top:44px;">
  <a href="process.html" class="btn btn-primary">See the Full Process</a>
</div>

/* SERVICE LIST GRID — MATCH ORIGINAL LAYOUT */
.service-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .service-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .service-list-grid {
    grid-template-columns: 1fr;
  }
}

/* SERVICE LIST ITEM */
.service-list-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

/* ICONS */
.service-list-icon {
  font-size: 1.6rem;
  line-height: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* MOBILE FOOTER REORDERING */
@media (max-width: 860px) {
  .footer-grid {
    display: flex;
    flex-direction: column;
  }

  /* MENU (Navigation) first */
  .footer-col:nth-child(2) {
    order: 1;
  }

  /* Cities second */
  .footer-col:nth-child(3) {
    order: 2;
  }

  /* Contact third */
  .footer-col:nth-child(4) {
    order: 3;
  }

  /* Brand last */
  .footer-col.footer-brand {
    order: 4;
  }
}

/* MOBILE FOOTER REORDERING — CORRECTED FOR YOUR HTML */
@media (max-width: 860px) {

  .footer-grid {
    display: flex;
    flex-direction: column;
  }

  /* MENU (Navigation) first */
  .footer-col:nth-of-type(1) {
    order: 1;
  }

  /* Cities / Service Areas second */
  .footer-col:nth-of-type(2) {
    order: 2;
  }

  /* Contact third */
  .footer-col:nth-of-type(3) {
    order: 3;
  }

  /* Brand last */
  .footer-brand {
    order: 4;
  }
}
/* MOBILE FOOTER REORDERING — MATCHES YOUR FOOTER HTML */
@media (max-width: 860px) {
  .footer-grid {
    display: flex;
    flex-direction: column;
  }

  /* Navigation (Menu) FIRST */
  .footer-col:nth-of-type(2) {
    order: 1;
  }

  /* Cities SECOND */
  .footer-col:nth-of-type(3) {
    order: 2;
  }

  /* Contact THIRD */
  .footer-col:nth-of-type(4) {
    order: 3;
  }

  /* Brand LAST */
  .footer-col.footer-brand {
    order: 4;
  }

  /* OPTIONAL: Rename "Navigation" → "Menu" without touching HTML */
  .footer-col:nth-of-type(2) h4 {
    font-size: 0;
  }
  .footer-col:nth-of-type(2) h4::after {
    content: "Menu";
    font-size: 1.1rem;
  }
}
/* MOBILE NAV BEHAVIOR */
@media (max-width: 860px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: var(--navy);
    padding: 20px;
    gap: 14px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}

/* DESKTOP NAV BEHAVIOR */
@media (min-width: 861px) {
  .nav-links {
    display: flex !important;
    flex-direction: row;
    gap: 24px;
  }

  .nav-toggle {
    display: none !important;
  }
}

