/* =========================================================
   Abundant Catch & Charters, LLC
   Palette: subdued blues + mist grey (boat color),
   with a warm sunset accent (from the logo) reserved
   for the single most important action — Call.
   ========================================================= */
:root {
  --deep:      #14314a;   /* deep subdued navy   */
  --deep-2:    #0f2637;   /* darker navy (footer) */
  --sea:       #2d6a86;   /* subdued steel blue (accent) */
  --sea-dark:  #245a73;
  --mist:      #cdd6d8;   /* mist grey — the boat color */
  --mist-soft: #e7ecee;
  --paper:     #f6f8f9;   /* cool near-white ground */
  --ink:       #1b2a33;   /* body text */
  --muted:     #5c6f79;   /* secondary text */
  --line:      #dbe2e4;   /* hairlines */
  --sun:       #e2673a;   /* warm sunset — Call CTA only */
  --sun-dark:  #cf5a30;
  --white:     #ffffff;
  --serif:     "DM Serif Display", Georgia, "Times New Roman", serif; /* display headings */
  --radius:    16px;
  --shadow:    0 18px 50px rgba(15, 38, 55, 0.12);
  --maxw:      1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px; /* offset for fixed nav on anchor jumps */
}

body {
  font-family: "Sora", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.12; }

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sea);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--lg { padding: 16px 28px; font-size: 15px; }

.btn--call { background: var(--sun); color: #fff; box-shadow: 0 10px 26px rgba(226, 103, 58, 0.35); }
.btn--call:hover { background: var(--sun-dark); }

.btn--sea { background: var(--sea); color: #fff; }
.btn--sea:hover { background: var(--sea-dark); }

.btn--ghost { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.5); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,0.22); }

.btn--ghost-dark { background: transparent; color: var(--deep); border-color: var(--mist); }
.btn--ghost-dark:hover { background: var(--white); border-color: var(--sea); }

/* ===================== HEADER / NAV ===================== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px clamp(16px, 3vw, 32px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.topbar.scrolled {
  background: rgba(15, 38, 55, 0.92);
  backdrop-filter: blur(10px) saturate(140%);
  box-shadow: 0 6px 24px rgba(15, 38, 55, 0.25);
}

/* Interior pages: header is always solid and sits in normal flow (sticky) */
.topbar--solid {
  position: sticky;
  background: rgba(15, 38, 55, 0.97);
  backdrop-filter: blur(10px) saturate(140%);
  box-shadow: 0 6px 24px rgba(15, 38, 55, 0.22);
}

/* Landing page: lock to the viewport, no scrolling */
body.landing { overflow: hidden; height: 100vh; height: 100svh; }
.landing .hero { height: 100vh; height: 100svh; min-height: 0; }

/* Active nav link */
.nav__links a.is-active {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--sun);
  text-underline-offset: 7px;
  text-decoration-thickness: 2px;
}

/* ---------- Interior page heading band ---------- */
.pagehead {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 40px) clamp(8px, 2vw, 20px);
}
.pagehead h1 {
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 400;
  color: var(--deep);
  letter-spacing: 0.01em;
  margin-top: 10px;
  text-wrap: balance;
}
.pagehead p {
  margin-top: 14px;
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 18px);
}
/* First section after a page heading shouldn't double up the top padding */
.pagehead + .section { padding-top: clamp(28px, 4vw, 48px); }

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
}

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; flex-shrink: 0; }
.brand__logo {
  width: 64px; height: 64px;
  filter: drop-shadow(0 3px 12px rgba(0,0,0,0.45));
  transition: transform 0.3s ease;
}
.topbar.scrolled .brand__logo { transform: scale(0.78); }
.brand__name {
  display: flex; flex-direction: column;
  font-family: var(--serif);
  font-weight: 400; font-size: 18px; line-height: 1.05;
  color: #fff; letter-spacing: 0.01em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.brand__name span { font-family: "Sora", sans-serif; font-size: 11px; font-weight: 600; opacity: 0.85; letter-spacing: 0.03em; }

.nav__menu { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); margin-left: auto; }
.nav__links { list-style: none; display: flex; align-items: center; gap: clamp(12px, 1.8vw, 26px); }
.nav__links a {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
  transition: color 0.2s ease;
}
.nav__links a:hover { color: #fff; }

.nav__toggle {
  display: none;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px;
}
.nav__toggle span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(20px, 3vw, 40px);
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("images/hero.jpg"), url("images/hero.svg");
  background-size: cover;
  background-position: center;
  background-color: #14607a;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,30,44,0.25) 0%, transparent 35%, transparent 45%, rgba(10,30,44,0.55) 100%),
    linear-gradient(90deg, rgba(10,30,44,0.4) 0%, transparent 50%);
}

/* Bottom layout: text left, cards right */
.hero__bottom {
  position: relative; z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 48px);
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
}

.hero__left { max-width: 520px; }

.hero__eyebrow {
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}
.headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 6.5vw, 86px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: #fff;
  text-shadow: 0 6px 30px rgba(0,0,0,0.35);
}
.hero__tagline {
  font-family: "Sora", sans-serif;
  margin-top: 16px;
  max-width: 400px;
  font-size: clamp(14px, 1.2vw, 16px);
  color: rgba(255,255,255,0.8);
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.hero__cta { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }

/* Right-side stacked cards */
.hero__right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 280px;
  flex-shrink: 0;
}
.hero__card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hero__card:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.3);
}
.hero__card-label {
  font-family: "Sora", sans-serif;
  font-size: 14px; font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}
.hero__card-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* ===================== SECTIONS (shared) ===================== */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 9vw, 100px) clamp(20px, 4vw, 40px);
}
/* Dark section variant for below-fold */
.section--dark {
  background: #242426;
  color: #e8e8e8;
  max-width: none;
}
.section--dark .section__inner { max-width: var(--maxw); margin: 0 auto; }
.section--dark h2 { color: #fff; }
.section--dark .section__lead { color: rgba(255,255,255,0.55); }

.section__head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 48px); }
.section__head h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--deep);
  margin-top: 10px;
}
.section__lead { margin-top: 12px; font-size: clamp(15px, 1.3vw, 17px); color: var(--muted); }

/* ---------- Trust strip ---------- */
.trust { background: #1c1c1e; color: #fff; }
.trust__grid {
  list-style: none;
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(40px, 6vw, 64px) clamp(20px, 4vw, 40px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 40px);
}
.trust__grid li { display: flex; flex-direction: column; gap: 8px; }
.trust__ico { font-size: 28px; }
.trust__grid h3 {
  font-family: "Sora", sans-serif;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #e8e8e8;
}
.trust__grid p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.5; }

/* ---------- Cards (charters) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 22px); }
.card {
  position: relative;
  background: #2c2c2e;
  border: 1px solid #3a3a3c;
  border-radius: 0;
  padding: clamp(24px, 2.6vw, 32px);
  display: flex; flex-direction: column;
  transition: border-color 0.2s ease;
}
.card:hover { border-color: #555; }
.card__tag {
  position: absolute; top: 0; left: 0;
  background: var(--sun); color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px;
}
.card h3 {
  font-family: "Sora", sans-serif;
  font-size: 18px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.03em;
  color: #fff; margin-bottom: 8px;
}
.card__meta {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 14px;
}
.card > p { color: rgba(255,255,255,0.6); font-size: 14px; }
.card__list { list-style: none; margin: 16px 0 22px; display: flex; flex-direction: column; gap: 8px; }
.card__list li { position: relative; padding-left: 22px; font-size: 14px; color: rgba(255,255,255,0.8); }
.card__list li::before {
  content: "\2713"; position: absolute; left: 0; top: 0;
  color: var(--sun); font-weight: 800;
}
.card__cta {
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 22px;
  border: 1.5px solid var(--sun);
  font-family: "Sora", sans-serif;
  font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: #fff; background: var(--sun);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.card__cta:hover { background: var(--sun-dark); border-color: var(--sun-dark); }

/* ---------- About ---------- */
.about { }
.about__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.about__photo { }
.about__photo-inner {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--mist-soft), var(--mist));
  border: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  color: var(--sea); box-shadow: var(--shadow);
}
.about__photo-inner img { width: 45%; opacity: 0.5; filter: saturate(0.6); }
.about__photo-inner span { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.about__body h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 400; color: var(--deep); margin: 10px 0 18px; text-wrap: balance; }
.about__body p { color: var(--muted); margin-bottom: 16px; font-size: 16px; }
.about__body strong { color: var(--ink); }
.about__quote {
  padding: 6px 0;
  margin: 22px 0;
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 400; font-style: italic;
  color: var(--deep);
}

/* ---------- Species / On the water ---------- */
.species { }
.species__grid {
  list-style: none;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.8vw, 22px);
}
.species__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.species__card:hover { transform: translateY(-3px); border-color: var(--sea); }
.species__card span { font-size: 30px; display: block; margin-bottom: 10px; filter: grayscale(0.15); }
.species__card h3 { font-size: 19px; font-weight: 400; color: var(--deep); }
.species__card p { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sea); margin-top: 4px; }

.reviews {
  margin-top: clamp(36px, 5vw, 56px);
  background: var(--mist-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  text-align: center;
}
.reviews__stars { color: var(--sun); font-size: 24px; letter-spacing: 4px; margin-bottom: 10px; }
.reviews p { color: var(--muted); font-size: 16px; margin-bottom: 18px; }
.reviews__links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px 22px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq details[open] { border-color: var(--sea); box-shadow: var(--shadow); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 30px 16px 0;
  font-weight: 700; font-size: 16.5px; color: var(--deep);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 22px; font-weight: 400; color: var(--sea); transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 0 18px; color: var(--muted); font-size: 15.5px; }

/* ---------- Contact ---------- */
.contact { }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: stretch; }
.contact__info h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 400; color: var(--deep); margin: 10px 0 4px; text-wrap: balance; }
.contact__list { list-style: none; margin: 26px 0; display: flex; flex-direction: column; gap: 18px; }
.contact__list li { display: flex; flex-direction: column; gap: 2px; }
.contact__label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sea); }
.contact__list a, .contact__list span:not(.contact__label) { font-size: 17px; color: var(--ink); text-decoration: none; font-weight: 500; }
.contact__list a:hover { color: var(--sea); }
.contact__social { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.social { font-weight: 700; color: var(--sea); text-decoration: none; font-size: 15px; }
.social:hover { color: var(--sea-dark); text-decoration: underline; }
.contact__map {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  min-height: 380px;
}
.contact__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ===================== FOOTER ===================== */
.footer { background: #141414; color: rgba(255,255,255,0.7); }
.footer__grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(44px, 6vw, 72px) clamp(20px, 4vw, 40px) 32px;
  display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: clamp(28px, 4vw, 48px);
}
.footer__brand { display: flex; gap: 16px; align-items: flex-start; }
.footer__brand img { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.9); padding: 3px; flex-shrink: 0; }
.footer__brand strong { color: #fff; font-family: var(--serif); font-weight: 400; font-size: 19px; display: block; margin-bottom: 6px; }
.footer__brand p { font-size: 14px; max-width: 34ch; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { color: rgba(255,255,255,0.82); text-decoration: none; font-size: 15px; }
.footer__links a:hover { color: #fff; }
.footer__contact { display: flex; flex-direction: column; gap: 10px; }
.footer__contact a, .footer__contact span { color: rgba(255,255,255,0.82); text-decoration: none; font-size: 15px; }
.footer__contact a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: var(--maxw); margin: 0 auto;
  padding: 20px clamp(20px, 4vw, 40px);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,0.6);
}

/* ===================== REVEAL ANIMATION =====================
   Gated on .js so that, without JavaScript, all content stays
   fully visible (progressive enhancement — never hide content
   the visitor can't get back). */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal.in { opacity: 1; transform: none; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(80vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 28px; padding: 40px;
    background: rgba(15, 38, 55, 0.98); backdrop-filter: blur(10px);
    transform: translateX(100%); transition: transform 0.3s ease;
    margin-left: 0;
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__links { flex-direction: column; align-items: flex-start; gap: 22px; }
  .nav__links a { font-size: 20px; }

  .hero__bottom { flex-direction: column; align-items: flex-start; }
  .hero__right { width: 100%; flex-direction: row; overflow-x: auto; gap: 10px; }
  .hero__card { min-width: 200px; flex-shrink: 0; }

  .trust__grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .about__photo-inner { aspect-ratio: 16 / 10; }
  .species__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .species__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .species__card:hover, .phone-fab:hover { transform: none; }
  .hero__scroll::after { animation: none; }
}

/* ---------- Mobile phone FAB ---------- */
.phone-fab {
  display: none;
  position: fixed; bottom: 20px; right: 20px; z-index: 99;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--sun); color: #fff;
  align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(226, 103, 58, 0.45);
  text-decoration: none;
  transition: transform 0.15s ease;
}
.phone-fab:hover { transform: scale(1.08); }
.phone-fab svg { width: 24px; height: 24px; }
@media (max-width: 900px) {
  .phone-fab { display: flex; }
}

/* ---------- Scroll hint ---------- */
.hero__scroll {
  position: absolute; z-index: 2;
  bottom: clamp(16px, 3vw, 32px);
  left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  text-decoration: none;
}
.hero__scroll::after {
  content: "";
  width: 18px; height: 18px;
  border-right: 2px solid rgba(255,255,255,0.7);
  border-bottom: 2px solid rgba(255,255,255,0.7);
  transform: rotate(45deg);
  animation: scrollDrift 2.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
@keyframes scrollDrift {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.7; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* Keyboard focus visibility */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
  border-radius: 4px;
}
