/* ============================================
   Mahone Bay Civic Marina — Main Stylesheet
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --navy: #1a2a3a;
  --navy-light: #243447;
  --ocean: #2c6e8a;
  --ocean-light: #3a8fad;
  --teal: #3db5a6;
  --sand: #f5f0e8;
  --sand-dark: #e8e0d0;
  --cream: #faf8f4;
  --white: #ffffff;
  --gold: #d4b455;
  --gold-light: #dfc06a;
  --rust: #b5522a;
  --text: #2d2d2d;
  --text-light: #5a6370;
  --text-muted: #8a9199;
  --border: #ddd8cf;
  --shadow: rgba(26, 42, 58, 0.12);
  --shadow-heavy: rgba(26, 42, 58, 0.2);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --header-height: 120px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--ocean);
  text-decoration: none;
  transition: color var(--transition);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p {
  margin-bottom: 1rem;
}

ul, ol {
  padding-left: 1.5rem;
}

/* --- Utility Classes --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.section--sand {
  background: var(--sand);
}

.section--navy {
  background: var(--navy);
  color: var(--sand);
}

.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: var(--white);
}

.section--ocean {
  background: linear-gradient(135deg, var(--ocean), var(--navy-light));
  color: var(--white);
}

.section--ocean h2,
.section--ocean h3 {
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header .subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.section--navy .section-header .subtitle,
.section--ocean .section-header .subtitle {
  color: var(--sand-dark);
}

.accent-line {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1rem auto;
  border-radius: 2px;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--ocean);
  color: var(--white);
  border-color: var(--ocean);
}

.btn--primary:hover {
  background: var(--ocean-light);
  border-color: var(--ocean-light);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 42, 58, 0.95);
  backdrop-filter: blur(10px);
  height: var(--header-height);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(26, 42, 58, 0.98);
  box-shadow: 0 2px 20px var(--shadow-heavy);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-icon {
  height: 101px;
  width: 125px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  padding: 0;
}

.nav-links a {
  display: block;
  padding: 0.5rem 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 4px;
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: all var(--transition);
  border-radius: 2px;
}

/* --- Hero Sections --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  margin-top: var(--header-height);
}

.hero--page {
  min-height: auto;
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a52 50%, #254d6a 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 42, 58, 0.55) 0%,
    rgba(26, 42, 58, 0.75) 100%
  );
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 3rem 2rem;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
}

.hero-content .hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.6;
}

.hero-coords {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 0.5rem 1.5rem;
  border-radius: 3px;
}

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

/* --- Wave Divider SVG --- */
.wave-divider {
  display: block;
  width: 100%;
  height: 60px;
  margin-top: -1px;
}

.wave-divider--flip {
  transform: scaleY(-1);
  margin-bottom: -1px;
  margin-top: 0;
}

/* --- Card Grids --- */
.card-grid {
  display: grid;
  gap: 2rem;
}

.card-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card-grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-heavy);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--sand-dark);
}

.card-body {
  padding: 1.75rem;
}

.card-body h3 {
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.card-body p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

/* --- Feature Rows (text + image side by side) --- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row--reverse {
  direction: rtl;
}

.feature-row--reverse > * {
  direction: ltr;
}

.feature-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow);
}

.feature-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--ocean), var(--navy));
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.feature-text h3 {
  margin-bottom: 0.75rem;
}

.feature-text p {
  color: var(--text-light);
}

/* --- Data Tables --- */
.data-table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: 0 4px 16px var(--shadow);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  color: var(--text);
  font-size: 0.95rem;
}

.data-table thead {
  background: var(--navy);
  color: var(--white);
}

.data-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.data-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr:nth-child(even) {
  background: var(--sand);
}

.data-table tbody tr:hover {
  background: var(--sand-dark);
}

.data-table tbody th {
  color: var(--navy);
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: normal;
}

/* --- Info Cards (icon + text) --- */
.info-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 16px var(--shadow);
  border-top: 4px solid var(--ocean);
}

.info-card h4 {
  margin-bottom: 0.5rem;
}

.info-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* --- Stat Bars --- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
}

/* --- Timeline --- */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.55rem;
  top: 0.3rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 0.25rem;
}

.timeline-item p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* --- Accordion --- */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  background: var(--white);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: background var(--transition);
}

.accordion-header:hover {
  background: var(--sand);
}

.accordion-icon {
  font-size: 1.5rem;
  transition: transform var(--transition);
  color: var(--ocean);
  font-style: normal;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* --- Footer --- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-about p {
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: var(--gold);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-row--reverse {
    direction: ltr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .card-grid--2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 85px;
  }

  .logo-icon {
    height: 66px;
    width: 82px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 2rem;
    gap: 0.5rem;
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .hero {
    min-height: 70vh;
  }

  .hero--page {
    min-height: auto;
    padding: 3rem 0;
  }

  .avail-bar {
    padding: 0.75rem 1rem;
  }

  .avail-bar__inner {
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .avail-bar__title {
    width: 100%;
    text-align: center;
    font-size: 0.6rem;
  }

  .avail-bar__instruments {
    gap: 1rem;
  }

  .avail-bar__dial-ring {
    width: 44px;
    height: 44px;
  }

  .avail-bar__dial-value {
    font-size: 1rem;
  }

  .avail-bar__dial-label {
    font-size: 0.6rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid--3 {
    grid-template-columns: 1fr;
  }
}

/* --- Reduced motion preference --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- Anchor offset for fixed header --- */
[id] {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

/* --- Availability Bar --- */
.avail-bar {
  background: linear-gradient(180deg, #c9a84c, #a88a30);
  border-top: 3px solid #b8972e;
  border-bottom: 3px solid #b8972e;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  padding: 0.9rem 2rem;
}

.avail-bar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.avail-bar__title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.85;
}

.avail-bar__instruments {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.avail-bar__dial {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.avail-bar__dial-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1e3448, var(--navy));
  border: 3px solid #8a7030;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avail-bar__dial-value {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
  text-shadow: 0 0 6px rgba(212, 180, 85, 0.4);
  line-height: 1;
}

.avail-bar__dial-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.8;
}

.avail-bar__divider {
  width: 2px;
  height: 32px;
  background: rgba(26, 42, 58, 0.3);
  border-radius: 1px;
}

.avail-bar__cta {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--navy);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: background var(--transition), color var(--transition);
}

.avail-bar__cta:hover {
  background: #1e3a52;
  color: var(--white);
}

/* --- Page-specific gradient heroes --- */
.hero-gradient--blue {
  background: linear-gradient(135deg, #1a3a5c 0%, #1a2a3a 40%, #2c5e7a 100%);
}

.hero-gradient--teal {
  background: linear-gradient(135deg, #1a3a4a 0%, #1a2a3a 40%, #2a5a5a 100%);
}

.hero-gradient--gold {
  background: linear-gradient(135deg, #2a2a1a 0%, #1a2a3a 40%, #3a3a2a 100%);
}

.hero-gradient--green {
  background: linear-gradient(135deg, #1a3a2a 0%, #1a2a3a 40%, #2a4a3a 100%);
}

/* --- Lists in content --- */
.content-list {
  list-style: none;
  padding: 0;
}

.content-list li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  color: var(--text-light);
}

.content-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* --- Blockquote --- */
.pull-quote {
  border-left: 4px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: var(--sand);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-light);
}

.pull-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ocean);
}

/* --- Map placeholder --- */
.map-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--navy-light), var(--ocean));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  margin: 2rem 0;
}

/* --- Contact form --- */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 2px solid var(--ocean);
  outline-offset: 1px;
  border-color: var(--ocean);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* --- Badge --- */
.badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge--gold {
  background: rgba(201, 168, 76, 0.15);
  color: #8a7030;
}

.badge--teal {
  background: rgba(61, 181, 166, 0.15);
  color: #267a6e;
}

.badge--ocean {
  background: rgba(44, 110, 138, 0.15);
  color: var(--ocean);
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 4px 4px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  color: var(--white);
}

/* --- Screen-reader only utility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

/* --- Focus visible for all interactive elements --- */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--ocean);
  outline-offset: 2px;
  border-radius: 2px;
}
