/* ════════════════════════════════════════════════════════
   CRIMSON HARBOUR MARINA – SLIP #15 FOR SALE
   Tampa, FL 33602 | Garrison Channel
   SEO-Optimized Property Listing Website
   ════════════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0a1628;
  --navy-mid:  #112244;
  --blue:      #1a4a7a;
  --sky:       #1e90ff;
  --sky-light: #7ec8e3;
  --teal:      #00c9b8;
  --gold:      #f5a623;
  --white:     #ffffff;
  --off-white: #f4f8fc;
  --gray-lt:   #e8eef4;
  --gray:      #8899aa;
  --text:      #1c2d3f;
  --text-mid:  #3d5166;
  --shadow:    0 4px 24px rgba(10,22,40,.14);
  --shadow-lg: 0 12px 48px rgba(10,22,40,.22);
  --radius:    12px;
  --radius-lg: 20px;
  --transition: .3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
h1, h2, h3 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

.section-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.section-lead {
  font-size: 1.08rem;
  color: var(--text-mid);
  margin: 12px 0 40px;
  max-width: 640px;
}

/* ════════════════════════════════════
   NAVBAR
════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(10,22,40,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
}
.nav-brand i { color: var(--teal); font-size: 1.2rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links li a {
  color: rgba(255,255,255,.88);
  font-size: .92rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}
.nav-links li a:hover { color: #fff; background: rgba(255,255,255,.1); }

.btn-nav {
  background: var(--teal) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 9px 22px !important;
  border-radius: 50px !important;
}
.btn-nav:hover { background: #00e6d4 !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(10,22,40,.97);
  padding: 16px 24px 24px;
}
.mobile-menu a {
  color: rgba(255,255,255,.88);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,.88) 0%,
    rgba(10,22,40,.72) 50%,
    rgba(26,74,122,.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 140px 24px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,201,184,.2);
  border: 1px solid rgba(0,201,184,.5);
  color: var(--teal);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  margin-bottom: 8px;
  font-size: clamp(2.4rem, 6vw, 4rem);
}
.hero-accent { color: var(--teal); }

.hero-sub {
  color: rgba(255,255,255,.75);
  font-size: clamp(.95rem, 2vw, 1.15rem);
  font-weight: 400;
  margin-bottom: 28px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.hero-tags span {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  font-size: .85rem;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 50px;
}
.hero-tags i { color: var(--teal); }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--teal);
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 32px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(0,201,184,.35);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn-primary:hover {
  transform: translateY(-3px);
  background: #00e6d4;
  box-shadow: 0 10px 32px rgba(0,201,184,.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.4);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 30px;
  border-radius: 50px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-3px);
}

.hero-mls {
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  letter-spacing: .08em;
}

/* ════════════════════════════════════
   STATS BAR
════════════════════════════════════ */
.stats-bar {
  background: var(--navy);
  padding: 0;
  overflow: hidden;
}

.stats-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
}

.stat {
  flex: 1;
  min-width: 160px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 20px;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background var(--transition);
}
.stat:last-child { border-right: none; }
.stat:hover { background: rgba(255,255,255,.05); }

.stat > i {
  font-size: 1.4rem;
  color: var(--teal);
  min-width: 28px;
  text-align: center;
}
.stat div { display: flex; flex-direction: column; }
.stat-label { font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gray); }
.stat-value { font-size: .9rem; font-weight: 700; color: var(--white); }

/* ════════════════════════════════════
   DESCRIPTION
════════════════════════════════════ */
.section-description {
  padding: 96px 0;
  background: var(--white);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.desc-text h2 { color: var(--navy); margin-bottom: 20px; }
.desc-text p  { color: var(--text-mid); margin-bottom: 18px; line-height: 1.8; }
.desc-text strong { color: var(--navy); }

.desc-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--off-white);
  border: 1.5px solid var(--gray-lt);
  color: var(--navy);
  font-size: .82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
}
.badge i { color: var(--teal); }

.desc-image-wrap {
  position: sticky;
  top: 88px;
}

.desc-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.img-caption {
  margin-top: 12px;
  font-size: .82rem;
  color: var(--gray);
  text-align: center;
  line-height: 1.6;
}
.img-caption i { color: var(--sky); margin-right: 4px; }

/* ════════════════════════════════════
   FEATURES
════════════════════════════════════ */
.section-features {
  padding: 96px 0;
  background: var(--off-white);
}
.section-features h2 { color: var(--navy); margin-bottom: 8px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feat-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feat-icon i { color: var(--teal); font-size: 1.3rem; }

.feature-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.05rem; }
.feature-card p  { color: var(--text-mid); font-size: .9rem; line-height: 1.7; }

/* ════════════════════════════════════
   GALLERY
════════════════════════════════════ */
.section-gallery {
  padding: 96px 0;
  background: var(--navy);
}
.section-gallery .section-eyebrow { color: var(--sky-light); }
.section-gallery h2 { color: var(--white); }
.section-gallery .section-lead { color: rgba(255,255,255,.65); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
  padding: 0 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.gallery-item--main {
  grid-column: 1 / 3;
  grid-row: 1;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--navy-mid);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform .5s ease;
}
.gallery-item--main img { aspect-ratio: 16/9; }
.gallery-item:hover img { transform: scale(1.07); }

.gallery-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,22,40,.9));
  color: var(--white);
  font-size: .82rem;
  font-weight: 500;
  padding: 24px 14px 12px;
  transform: translateY(100%);
  transition: transform var(--transition);
}
.gallery-item:hover figcaption { transform: translateY(0); }

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.94);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lb-inner {
  max-width: min(90vw, 1100px);
  text-align: center;
}
.lb-inner img {
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lb-inner p {
  color: rgba(255,255,255,.7);
  font-size: .88rem;
  margin-top: 12px;
}

.lb-close, .lb-prev, .lb-next {
  position: fixed;
  background: rgba(255,255,255,.12);
  border: none;
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  width: 48px; height: 48px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lb-close { top: 20px; right: 20px; }
.lb-prev  { left: 16px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 16px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.28); }

/* ════════════════════════════════════
   LOCATION
════════════════════════════════════ */
.section-location {
  padding: 96px 0;
  background: var(--white);
}
.section-location h2 { color: var(--navy); margin-bottom: 8px; }

.location-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 24px;
  align-items: start;
}

.location-details h3 {
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 14px;
  margin-top: 28px;
}
.location-details h3:first-child { margin-top: 0; }
.location-details p { color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.location-details strong { color: var(--navy); }

.location-list { margin: 0 0 28px; }
.location-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-lt);
  font-size: .95rem;
  color: var(--text-mid);
}
.location-list li:last-child { border-bottom: none; }
.location-list li i { color: var(--sky); min-width: 18px; margin-top: 3px; }
.location-list strong { color: var(--navy); }

.water-access { margin-top: 28px; }
.water-access h3 { color: var(--navy); margin-bottom: 16px; }
.water-access h3 i { color: var(--teal); margin-right: 8px; }

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.access-grid > div {
  background: var(--off-white);
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.access-grid strong { color: var(--navy); display: block; margin-bottom: 2px; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 88px;
}
.map-wrap iframe { display: block; }
.map-caption {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  text-align: center;
  padding: 12px;
}
.map-caption i { color: var(--sky); margin-right: 6px; }

/* ════════════════════════════════════
   WHY BUY
════════════════════════════════════ */
.section-why {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.section-why .section-eyebrow { color: var(--sky-light); }
.section-why h2 { color: var(--white); margin-bottom: 8px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.why-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: background var(--transition), transform var(--transition);
}
.why-card:hover { background: rgba(255,255,255,.12); transform: translateY(-5px); }
.why-card > i { font-size: 2rem; color: var(--teal); margin-bottom: 18px; display: block; }
.why-card h3 { color: var(--white); margin-bottom: 12px; font-size: 1.05rem; }
.why-card p  { color: rgba(255,255,255,.65); font-size: .9rem; line-height: 1.7; }

/* ════════════════════════════════════
   CONTACT
════════════════════════════════════ */
.section-contact {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0d2040 100%);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 { color: var(--white); margin-bottom: 16px; }
.contact-info > p { color: rgba(255,255,255,.7); line-height: 1.8; margin-bottom: 32px; }

.contact-details { margin-bottom: 32px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-item > i {
  color: var(--teal);
  font-size: 1.2rem;
  min-width: 24px;
  margin-top: 2px;
}
.contact-item div { display: flex; flex-direction: column; }
.contact-item strong { color: var(--white); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 2px; }
.contact-item span { color: rgba(255,255,255,.7); font-size: .95rem; }

.listing-links { display: flex; flex-direction: column; gap: 12px; }
.listing-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .9rem;
  transition: transform var(--transition), opacity var(--transition);
  width: fit-content;
}
.listing-link:hover { transform: translateX(4px); opacity: .85; }
.listing-link.zillow { background: #006aff; color: #fff; }
.listing-link.mls    { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.25); }

/* FORM */
.contact-form-wrap {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.contact-form-wrap h3 { color: var(--white); margin-bottom: 28px; font-size: 1.3rem; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 7px;
}
.form-group label span { color: var(--teal); }
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.09);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 10px;
  color: var(--white);
  font-family: inherit;
  font-size: .95rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.35); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: rgba(255,255,255,.13);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  justify-content: center;
  background: var(--teal);
  color: var(--navy);
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0,201,184,.3);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn-submit:hover {
  background: #00e6d4;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,201,184,.45);
}

.form-note { color: rgba(255,255,255,.4); font-size: .8rem; text-align: center; margin-top: 12px; }

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(0,201,184,.15);
  border: 1px solid rgba(0,201,184,.4);
  color: var(--teal);
  font-size: .9rem;
  font-weight: 500;
  padding: 14px 18px;
  border-radius: 10px;
  margin-top: 16px;
}
.form-success.visible { display: flex; }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.footer {
  background: #060e1a;
  padding: 40px 0 32px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 10px;
}
.footer-brand i { color: var(--teal); }

.footer-address {
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  margin-bottom: 12px;
}

.footer-keywords {
  color: rgba(255,255,255,.3);
  font-size: .8rem;
  margin-bottom: 16px;
}
.footer-keywords a {
  color: rgba(255,255,255,.3);
  transition: color var(--transition);
}
.footer-keywords a:hover { color: var(--sky-light); }

.footer-disclaimer {
  color: rgba(255,255,255,.25);
  font-size: .75rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* ════════════════════════════════════
   SCROLL ANIMATIONS
════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .two-col       { grid-template-columns: 1fr; gap: 40px; }
  .desc-image-wrap { position: static; }
  .location-wrap { grid-template-columns: 1fr; gap: 40px; }
  .map-wrap { position: static; }
  .contact-wrap  { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding-top: 110px; }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 16px;
  }
  .gallery-item--main { grid-column: 1 / 3; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { gap: 0; }
  .stat { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .access-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .gallery-grid  { grid-template-columns: 1fr; }
  .gallery-item--main { grid-column: 1; }
  .why-grid      { grid-template-columns: 1fr; }
  .access-grid   { grid-template-columns: 1fr; }
  .hero-cta      { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .contact-form-wrap { padding: 28px 20px; }
  .stat { min-width: 100%; }
}

/* ── Print ── */
@media print {
  .navbar, .lightbox { display: none; }
  .hero { min-height: auto; padding: 40px 24px; }
  .hero-bg, .hero-overlay { display: none; }
  .hero-title, .hero-sub, .hero-tags, .hero-badge { color: var(--navy) !important; }
}
