/* Jake's Marine — professional local-shop one-pager */

:root {
  --blue: #1874bc;
  --blue-dark: #125a94;
  --blue-ink: #0a3d6b;
  --text: #1a1a1a;
  --muted: #4a4a4a;
  --line: #e2e6ea;
  --bg-soft: #f5f8fb;
  --bg-alt: #f7f7f7;
  --white: #fff;
  --radius: 6px;
  --wrap: min(1040px, calc(100% - 2rem));
  --shadow-header: 0 1px 0 var(--line), 0 4px 12px rgba(0, 0, 0, 0.04);
  --focus: 0 0 0 3px rgba(24, 116, 188, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue-ink);
}

a:hover {
  color: var(--blue);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 0.55rem 1rem;
  z-index: 100;
  border-radius: 0 0 var(--radius) 0;
}

.skip-link:focus {
  left: 0;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

/* ——— Header ——— */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: var(--shadow-header);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  padding: 0.7rem 0;
}

.logo-link {
  flex-shrink: 0;
  line-height: 0;
}

.logo-link:focus-visible {
  border-radius: var(--radius);
}

.logo {
  height: 48px;
  width: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  font-size: 0.9375rem;
  font-weight: 600;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  padding: 0.2rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  color: var(--blue);
  text-decoration: none;
  border-bottom-color: var(--blue);
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.header-search {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
}

.header-call {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 800px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    padding: 0.15rem 0 0.4rem;
    gap: 0.35rem 0.9rem;
    border-top: 1px solid var(--line);
    padding-top: 0.55rem;
  }

  .logo {
    height: 42px;
  }

  .header-actions {
    margin-left: auto;
  }
}

@media (max-width: 420px) {
  .header-call .btn-label {
    /* keep full number — important CTA */
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
  text-align: center;
  line-height: 1.25;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-call {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.btn-call:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: #fff;
  text-decoration: none;
}

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border-color: #c5cdd5;
}

.btn-secondary:hover {
  background: var(--bg-soft);
  border-color: var(--blue);
  color: var(--blue-ink);
  text-decoration: none;
}

.btn-block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.85rem;
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
}

/* ——— Hero ——— */
.hero {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}

.hero-photo {
  width: 100%;
  max-height: min(52vh, 480px);
  object-fit: cover;
  object-position: center 40%;
  background: #d0d5da;
}

.hero-text {
  padding: 1.75rem 0 2.15rem;
}

.hero-text h1 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.55rem, 3.8vw, 2.05rem);
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
}

.hero-tagline {
  margin: 0 0 1.3rem;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.05rem;
}

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

/* ——— Shared section chrome ——— */
.section {
  padding: 2.5rem 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-alt {
  background: var(--bg-soft);
}

.section-muted {
  background: var(--bg-alt);
}

.section h2 {
  margin: 0 0 0.65rem;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.lede {
  margin: 0 0 1.15rem;
  color: var(--muted);
  max-width: 42rem;
}

.subhead {
  margin: 1.5rem 0 0.7rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
}

.subhead:first-child {
  margin-top: 0;
}

.cta-line {
  margin: 1.15rem 0 0;
  font-weight: 600;
}

.cta-line a {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.cta-line a:hover {
  color: var(--blue);
}

/* ——— Photo gallery ——— */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 700px) {
  .photo-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
  }
}

.photo-grid figure {
  margin: 0;
  background: #e8ecf0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}

.photo-grid figcaption {
  padding: 0.45rem 0.55rem 0.55rem;
  font-size: 0.8rem;
  line-height: 1.35;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

/* ——— Services ——— */
.service-grid {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-grid li {
  margin: 0;
  padding: 0.9rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.section:not(.section-alt):not(.section-muted) .service-grid li {
  background: var(--bg-soft);
}

.service-grid strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text);
  font-size: 1rem;
}

.service-grid span {
  color: var(--muted);
  font-size: 0.95rem;
}

.years-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* ——— Simple bullet lists (ice fishing, drop-off) ——— */
.plain-list {
  margin: 0 0 0.5rem;
  padding-left: 1.2rem;
}

.plain-list li {
  margin-bottom: 0.4rem;
}

.plain-list.compact {
  columns: 1;
}

@media (min-width: 520px) {
  .plain-list.two-col {
    columns: 2;
    column-gap: 2rem;
  }

  .plain-list.two-col li {
    break-inside: avoid;
  }
}

/* ——— Parts catalog buttons ——— */
.parts-note {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.catalog-grid {
  list-style: none;
  margin: 0 0 0.5rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 560px) {
  .catalog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.catalog-grid li {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.catalog-extra {
  font-size: 0.85rem;
  color: var(--muted);
  padding-inline: 0.15rem;
}

.catalog-extra a {
  color: var(--blue-ink);
}

.supplier-block {
  margin-top: 0.35rem;
  padding: 1.15rem 1.15rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.section-alt .supplier-block {
  background: var(--white);
}

.supplier-block > p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.supplier-block .subhead {
  margin-top: 0;
}

.supplier-block .catalog-grid {
  margin-bottom: 0.65rem;
}

.supplier-extra {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.supplier-extra .brand-icon {
  width: auto;
  max-width: 180px;
  height: 40px;
  object-fit: contain;
  border-radius: 4px;
}

.supplier-extra .catalog-grid {
  margin-bottom: 0;
}


.soft-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}


/* ——— Brand product cards (Suzuki / batteries) ——— */
.brand-subhead {
  margin: 1.35rem 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.brand-cards {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .brand-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .brand-cards-suzuki {
    grid-template-columns: repeat(2, 1fr);
  }
}

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
  color: var(--blue-ink);
  font-weight: 600;
  text-align: center;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.brand-card:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.brand-card img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  background: var(--bg-soft);
  border-radius: 4px;
}

.brand-card span {
  font-size: 0.95rem;
}

/* ——— Hours + location ——— */
.info-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.hours-season {
  margin: 1.2rem 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.hours-season span {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.9rem;
}

.hours-season:first-of-type {
  margin-top: 0.15rem;
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid #d8dde2;
  font-size: 0.98rem;
}

.hours-list li span:last-child {
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

address {
  font-style: normal;
  margin: 0 0 0.75rem;
  line-height: 1.5;
}

.loc-links {
  margin: 0 0 0.65rem;
}

.loc-links a {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.contact-bits {
  margin: 0;
  line-height: 1.65;
}

.contact-bits a {
  text-decoration: none;
}

.contact-bits a:hover {
  text-decoration: underline;
}

/* ——— Drop-off ——— */
.dropoff-box {
  margin: 0;
  padding: 1.15rem 1.25rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-left: 4px solid var(--blue);
}

.dropoff-box .plain-list {
  margin: 0;
}

/* ——— Contact form ——— */
.contact-form {
  display: grid;
  gap: 0.95rem;
  max-width: 34rem;
  margin-top: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-form .optional {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.85rem;
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 0.65rem 0.75rem;
  border: 1px solid #b8c0c8;
  border-radius: var(--radius);
  width: 100%;
  background: var(--white);
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: var(--focus);
}

.contact-form .btn {
  justify-self: start;
}

.form-note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 400;
}

.form-status {
  margin: 0;
  font-weight: 500;
}

.form-status.ok {
  color: #0a5c2e;
}

.form-status.err {
  color: #8a1f1f;
}

/* ——— Footer ——— */
.site-footer {
  background: #15202b;
  color: #e8eef3;
  padding: 2rem 0 1.75rem;
  font-size: 0.95rem;
}

.site-footer a {
  color: #9ec5e8;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
  color: #c5dff5;
}

.site-footer p {
  margin: 0.3rem 0;
}

.footer-brand {
  font-size: 1.05rem;
  margin-bottom: 0.45rem !important;
}

.footer-small {
  margin-top: 1rem !important;
  color: #8a97a5;
  font-size: 0.85rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
}

.footer-nav a {
  color: #c5d3e0;
}


/* Photo focal points (portrait crops) */
.photo-grid img.obj-upper {
  object-position: center 25%;
}

.photo-grid img.obj-center {
  object-position: center center;
}

.cta-actions {
  margin: 1rem 0 0;
}

.cta-actions .btn {
  margin-top: 0.15rem;
}

@media (max-width: 520px) {
  .header-call,
  .header-search {
    padding: 0.55rem 0.75rem;
    font-size: 0.9rem;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
  }
}

.oem-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
}
@media (max-width: 700px) {
  .oem-columns {
    grid-template-columns: 1fr;
  }
}
.oem-columns .oem-col {
  margin: 0;
}

.oem-columns .oem-col.catalog-grid {
  grid-template-columns: 1fr;
}

.catalog-logo-grid {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 560px) {
  .catalog-logo-grid {
    grid-template-columns: 1fr;
  }
}

.catalog-logo-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 700px) {
  .catalog-logo-grid--3 {
    grid-template-columns: 1fr;
  }
}

.catalog-logo-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
  color: var(--blue-ink);
  font-weight: 600;
  text-align: center;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  height: 100%;
  box-sizing: border-box;
}
.catalog-logo-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.catalog-logo-btn img {
  width: 100%;
  max-width: 200px;
  max-height: 120px;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
}
.catalog-logo-btn span {
  font-size: 0.9rem;
  line-height: 1.25;
  color: inherit;
}


/* ——— Search modal ——— */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.search-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 1.25rem 1rem 2rem;
  overflow-y: auto;
}

.search-modal.is-open,
.search-modal:not([hidden]) {
  display: flex;
}

.search-modal[hidden] {
  display: none !important;
}

.search-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 61, 107, 0.45);
}

.search-modal-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  margin-top: 2.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  padding: 1.15rem 1.15rem 1.25rem;
}

.search-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.search-modal-header h2 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--blue-ink);
  line-height: 1.25;
}

.search-modal-close {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--text);
  width: 2.1rem;
  height: 2.1rem;
  border-radius: var(--radius);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.search-modal-close:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.search-modal-note {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.4;
}

.search-modal-input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.search-modal-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: var(--focus);
}

.search-modal-results {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  max-height: min(50vh, 360px);
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.search-modal-results:empty {
  display: none;
}

.search-modal-results li {
  border-bottom: 1px solid var(--line);
}

.search-modal-results li:last-child {
  border-bottom: none;
}

.search-result-btn {
  display: block;
  width: 100%;
  text-align: left;
  appearance: none;
  border: none;
  background: transparent;
  padding: 0.7rem 0.85rem;
  cursor: pointer;
  font: inherit;
  color: var(--text);
  text-decoration: none;
}

.search-result-btn:hover,
.search-result-btn:focus {
  background: var(--white);
  color: var(--blue);
  outline: none;
}

.search-result-name {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
}

.search-result-meta {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.search-result-btn:hover .search-result-meta,
.search-result-btn:focus .search-result-meta {
  color: var(--blue-dark);
}

.search-result-empty {
  padding: 0.85rem;
  color: var(--muted);
  font-size: 0.9375rem;
}

.search-modal-footer {
  margin: 0;
  text-align: center;
}

.search-modal-footer .btn {
  width: 100%;
}

/* ——— Service card form links ——— */
.card-form-link {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.card-form-link:hover {
  color: var(--blue);
}

/* ——— Request forms (service + storage) ——— */
.request-forms {
  display: grid;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

@media (min-width: 760px) {
  .request-forms {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    align-items: start;
  }
}

.request-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem 1.25rem;
}

.request-card .subhead {
  margin: 0 0 0.85rem;
  color: var(--blue-ink);
}

.request-card .contact-form {
  max-width: none;
  margin-top: 0;
}

.contact-form select {
  font: inherit;
  padding: 0.65rem 0.75rem;
  border: 1px solid #b8c0c8;
  border-radius: var(--radius);
  width: 100%;
  background: var(--white);
  color: var(--text);
  appearance: auto;
}

.contact-form select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: var(--focus);
}

.checkbox-fieldset {
  margin: 0;
  padding: 0.65rem 0.75rem 0.75rem;
  border: 1px solid #b8c0c8;
  border-radius: var(--radius);
  background: var(--white);
}

.checkbox-fieldset legend {
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0 0.25rem;
}

.checkbox-row {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500 !important;
  font-size: 0.95rem !important;
  margin-top: 0.4rem;
}

.checkbox-row input[type="checkbox"] {
  width: auto;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--blue);
}


/* ——— OEM logo buttons (prop + parts lookup) ——— */
.oem-logo-btn {
  --oem-logo: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 4.25rem;
  padding: 1.15rem 1.15rem;
  border: 1px solid #c5cdd5;
  border-radius: var(--radius);
  background-color: var(--white);
  background-image: var(--oem-logo);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  color: var(--text);
  text-decoration: none;
  text-align: center;
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.oem-logo-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.78);
  pointer-events: none;
  z-index: 0;
}

.oem-logo-btn__label {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: var(--text);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.95), 0 1px 0 rgba(255, 255, 255, 0.9);
}

.oem-logo-btn:hover {
  border-color: var(--blue);
  background-color: var(--bg-soft);
  text-decoration: none;
  color: var(--blue-ink);
  box-shadow: 0 1px 0 rgba(15, 61, 92, 0.06);
}

.oem-logo-btn:hover::before {
  background: rgba(255, 255, 255, 0.72);
}

.oem-logo-btn:hover .oem-logo-btn__label {
  color: var(--blue-ink);
}

.oem-logo-btn--prop {
  --oem-logo: url("../images/brands/oem/prop-selector-bg.jpg");
  background-size: cover;
  min-height: 4.75rem;
  padding: 1.35rem 1.25rem;
}

.oem-logo-btn--prop::before {
  background: rgba(255, 255, 255, 0.72);
}

.oem-logo-btn--prop .oem-logo-btn__label {
  font-size: 1.08rem;
}

.oem-logo-btn--mercury { --oem-logo: url("../images/brands/oem/mercury.png"); }
.oem-logo-btn--yamaha,
.oem-logo-btn--yamaha-ps { --oem-logo: url("../images/brands/oem/yamaha-gray-bg.jpg"); }
.oem-logo-btn--honda { --oem-logo: url("../images/brands/oem/honda-marine-bg.jpg"); }
.oem-logo-btn--tohatsu { --oem-logo: url("../images/brands/oem/tohatsu.png"); }
.oem-logo-btn--brp { --oem-logo: url("../images/brands/oem/brp-bg.jpg"); }
.oem-logo-btn--polaris { --oem-logo: url("../images/brands/oem/polaris.png"); }
.oem-logo-btn--kawasaki { --oem-logo: url("../images/brands/oem/kawasaki.png"); }

.oem-columns .oem-logo-btn {
  /* logos slightly more visible under scrim */
  background-size: 72% auto;
}

/* OEM readability overrides */
.oem-logo-btn--yamaha,
.oem-logo-btn--yamaha-ps {
  --oem-logo: url("../images/brands/oem/yamaha-gray-bg.jpg");
  background-size: cover;
  background-position: center;
}

.oem-logo-btn--honda {
  --oem-logo: url("../images/brands/oem/honda-marine-bg.jpg");
  background-size: cover;
  background-position: center;
}

.oem-logo-btn--honda::before {
  background: rgba(255, 255, 255, 0.55);
}

.oem-logo-btn--brp {
  --oem-logo: url("../images/brands/oem/brp-bg.jpg");
  background-size: cover;
  background-position: center;
}

.oem-logo-btn--brp::before {
  background: rgba(255, 255, 255, 0.62);
}
