/* =========================================================
   Bogdan Tennis Coaching — styles
   ========================================================= */

:root {
  --green: #1a3b2e;
  --green-700: #132b22;
  --green-50: #eef3f0;
  --sand: #d4c5a0;
  --sand-soft: #e8dcc0;
  --ink: #111214;
  --ink-soft: #3b3f44;
  --muted: #6b7076;
  --line: #e6e6e6;
  --bg: #ffffff;
  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(10, 20, 15, 0.06);
  --shadow-md: 0 12px 40px rgba(10, 20, 15, 0.12);
  --container: 1120px;
  --nav-h: 72px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.muted { color: var(--muted); }

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 12px;
}

h1, h2, h3 {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 16px;
  line-height: 1.15;
}

h1 { font-size: clamp(40px, 7vw, 72px); font-weight: 800; }
h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; }
h3 { font-size: 20px; font-weight: 700; }

p { margin: 0 0 12px; }

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

.btn--primary {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--green-700); box-shadow: var(--shadow-md); }

/* On dark-green surfaces use sand CTA so it stands out */
.hero .btn--primary,
.section--trust .btn--primary {
  background: var(--sand);
  color: var(--green-700);
}
.hero .btn--primary:hover,
.section--trust .btn--primary:hover {
  background: #e8d9b3;
  color: var(--green-700);
}

.btn--outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--outline:hover { background: var(--green); color: #fff; }

.btn--sm { padding: 10px 16px; font-size: 14px; }
.btn--lg { padding: 16px 28px; font-size: 16px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--ink);
  font-size: 16px;
}
.nav__brand:hover { text-decoration: none; }
.nav__brand-mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--green);
  color: var(--sand);
  display: grid; place-items: center;
  font-weight: 800;
}
.nav__brand-short { display: none; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
}
.nav__links a:hover { color: var(--green); text-decoration: none; }
.nav__burger {
  display: none;
  background: transparent; border: 0;
  flex-direction: column; gap: 5px;
  padding: 10px;
  cursor: pointer;
}
.nav__burger span {
  width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 14px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.nav__mobile a {
  color: var(--ink);
  font-weight: 600;
  font-size: 17px;
}

@media (max-width: 820px) {
  .nav__brand-text { display: none; }
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__mobile[data-open="true"] { display: flex; }
}

@media (max-width: 820px) {
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 0;
  }
  .nav__inner {
    justify-content: space-between;
    height: 64px;
    padding-top: env(safe-area-inset-top, 0);
  }
  .nav__brand { display: inline-flex; }
  .nav__brand-mark { display: none; }
  .nav__brand-short {
    display: inline;
    color: #fff;
    font-weight: 800;
    font-size: 17px;
    letter-spacing: 0.18em;
    text-shadow: 0 1px 8px rgba(0,0,0,0.45);
  }
  .nav__burger {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    padding: 10px 0;
    box-shadow: none;
    filter: drop-shadow(0 1px 6px rgba(0,0,0,0.4));
  }
  .nav__burger span {
    background: #fff;
    width: 24px;
    height: 2px;
  }
  .nav__mobile {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(10, 30, 22, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 0;
    padding: 20px 24px 28px;
    z-index: 60;
  }
  .nav__mobile a { color: #fff; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: var(--green);
  z-index: 0;
}
.hero__image {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero.jpg");
  background-size: cover;
  background-position: center center;
  z-index: 0;
}
/* Dark gradient — strong on the left where text sits, transparent over Bogdan */
.hero__overlay {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(10, 30, 22, 0.88) 0%,
      rgba(10, 30, 22, 0.78) 28%,
      rgba(10, 30, 22, 0.40) 50%,
      rgba(10, 30, 22, 0.10) 70%,
      rgba(10, 30, 22, 0.00) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero__content-inner {
  max-width: 560px;
  width: 100%;
}

@media (max-width: 820px) {
  .hero { min-height: 0; }
  /* Bogdan is on the right third of the source image — shift the crop so he sits center on mobile */
  .hero__image { background-position: 72% center; }
  /* On mobile: bottom-up gradient so text sits at the bottom, image fills the top */
  .hero__overlay {
    background:
      linear-gradient(180deg,
        rgba(10, 30, 22, 0.00) 0%,
        rgba(10, 30, 22, 0.02) 30%,
        rgba(10, 30, 22, 0.45) 55%,
        rgba(10, 30, 22, 0.86) 82%,
        rgba(10, 30, 22, 0.96) 100%);
  }
  .hero .container.hero__content {
    min-height: 96vh;
    align-items: center;
    justify-content: center;
    padding-top: 400px;
    padding-right: 20px;
    padding-bottom: 60px;
    padding-left: 20px;
  }
  .hero__content-inner {
    max-width: none;
    text-align: center;
  }
  .hero__title {
    font-size: 36px;
    margin-bottom: 12px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.025em;
  }
  .hero__sub {
    font-size: 16px;
    margin-bottom: 4px;
    color: rgba(255,255,255,0.92);
  }
  .hero__body {
    display: none;
  }
  .hero__cta {
    width: 100%;
    margin-top: 44px;
    padding: 18px 24px;
    font-size: 16px;
    justify-content: space-between;
    border-radius: 14px;
  }
  .hero__cta-arrow {
    font-size: 20px;
    font-weight: 700;
  }
  .hero__pills {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .hero__pills li {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .hero__trust {
    margin: 14px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.78);
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.4;
  }
  .hero__trust-star {
    color: var(--sand);
    font-size: 15px;
  }
}
@media (min-width: 821px) {
  .hero__cta-arrow,
  .hero__pills,
  .hero__trust { display: none; }
}
.hero__title {
  color: #fff;
  margin-bottom: 18px;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.08;
  white-space: nowrap;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
@media (max-width: 820px) {
  .hero__title { white-space: normal; }
}
.hero__sub {
  font-size: clamp(18px, 2.4vw, 22px);
  color: rgba(255,255,255,0.94);
  margin-bottom: 6px;
  font-weight: 500;
  text-shadow: 0 1px 10px rgba(0,0,0,0.35);
}
.hero__body {
  color: rgba(255,255,255,0.82);
  margin-bottom: 44px;
  font-size: 16px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.35);
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(64px, 9vw, 120px) 0;
}
.section--about { background: #fff; }
.section--services { background: var(--green-50); }
.section--schedule { background: #fff; }
.section--locations { background: #fff; border-top: 1px solid var(--line, #ececea); }
.section--trust { background: var(--green); color: #fff; }
.section--book { background: #fff; }

.section__head {
  max-width: 720px;
  margin-bottom: 48px;
}

/* ---------- About ---------- */
.grid { display: grid; gap: 48px; }
.grid--about {
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
}
.about__photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: url("assets/about.jpg") center/cover no-repeat;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.credentials {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.credentials li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 16px;
}
.credentials span {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: var(--sand);
  display: grid; place-items: center;
  font-weight: 800;
  flex-shrink: 0;
}

@media (max-width: 820px) {
  .grid--about { grid-template-columns: 1fr; }
  .about__photo { max-width: 420px; margin: 0 auto; }
}

/* ---------- Services ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}
.cards .card { grid-column: span 2; }
/* When there are 5 cards: top row 3 cards (span 2 each), bottom row 2 cards (span 3 each) */
.cards .card:nth-child(n+4) { grid-column: span 3; }
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__img {
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  margin-bottom: 18px;
}
.card__img--private     { background-image: url("assets/service-private.jpg"); background-position: center center; }
.card__img--adults      { background-image: url("assets/service-adults.jpg"); background-position: center center; }
.card__img--performance { background-image: url("assets/service-performance.jpg"); background-position: center center; }
.card__img--kids        { background-image: url("assets/service-recreational.jpg"); background-position: center center; }
.card__img--juniors     { background-image: url("assets/service-juniors.jpg"); background-position: center center; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-soft); }
.card__price {
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 15px;
}
.card__price strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.card__features {
  list-style: none;
  padding: 0;
  margin: 4px 0 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.card__features li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--ink-soft, #4a5247);
  line-height: 1.4;
}
.card__features li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green, #1a3b2e);
  opacity: 0.55;
}
.card__actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.card__actions .btn { align-self: stretch; }

@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .cards .card,
  .cards .card:nth-child(n+4) { grid-column: auto; }
}
@media (max-width: 640px)  {
  .cards { grid-template-columns: 1fr; }
  .cards .card,
  .cards .card:nth-child(n+4) { grid-column: auto; }
}

.card__when {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  margin: 6px 0 10px;
  padding: 6px 12px;
  background: rgba(26, 59, 46, 0.08);
  color: var(--green, #1a3b2e);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.15s ease;
}
.card__when:hover { background: rgba(26, 59, 46, 0.15); }
.card__when span { transition: transform 0.15s ease; }
.card__when:hover span { transform: translateX(2px); }

/* ---------- Inline card details (callout) ---------- */
.card__details {
  margin: 14px 0 18px;
  padding: 14px 16px;
  background: rgba(26, 59, 46, 0.04);
  border-left: 3px solid var(--green, #1a3b2e);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card__details p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft, #4a5247);
  margin: 0;
}
.card__details-label {
  font-size: 10.5px !important;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green, #1a3b2e) !important;
  margin-bottom: 2px !important;
}

/* ---------- Locations ---------- */
.grid--locations {
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
}
.locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.location {
  background: var(--green-50);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(26,59,46,0.1);
}
.location h3 {
  font-size: 14px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.location p { margin: 0; font-size: 17px; }
.location__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.location__list li {
  position: relative;
  padding-left: 16px;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.4;
}
.location__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.55;
}
@media (max-width: 820px) {
  .grid--locations { grid-template-columns: 1fr; }
  .locations { grid-template-columns: 1fr; }
}

/* ---------- Trust ---------- */
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
}
.trust__item h3 { color: #fff; margin-bottom: 6px; }
.trust__item p { color: rgba(255,255,255,0.75); font-size: 15px; }
.trust__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(212,197,160,0.18);
  color: var(--sand);
  display: grid; place-items: center;
  font-size: 22px;
  margin-bottom: 16px;
}
@media (max-width: 720px) { .trust { grid-template-columns: 1fr; gap: 24px; } }

/* ---------- Book / Form ---------- */
.book {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.book__intro { position: sticky; top: calc(var(--nav-h) + 24px); }
.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}
.form input, .form select, .form textarea {
  font: inherit;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(26,59,46,0.08);
}
.form textarea { resize: vertical; min-height: 90px; }
.form .hp {
  position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0;
}
.form__status {
  margin: 4px 0 0;
  font-size: 14px;
  min-height: 1em;
}
.form__status--ok { color: #0e7a4a; }
.form__status--err { color: #b02a2a; }
.form button[disabled] { opacity: .6; cursor: wait; }

@media (max-width: 900px) {
  .book { grid-template-columns: 1fr; gap: 32px; }
  .book__intro { position: static; }
  .form__row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.8);
  padding: 48px 0 24px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__brand { color: #fff; font-weight: 800; font-size: 18px; margin: 0 0 4px; }
.footer .muted { color: rgba(255,255,255,0.55); }
.footer__contacts { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__contacts a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.footer__contacts a:hover { color: var(--sand); text-decoration: none; }
.footer__copy {
  margin: 28px 0 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
}

/* ---------- Floating CTA ---------- */
.fab-book {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  background: var(--sand);
  color: var(--green-700);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(0,0,0,0.30);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity .25s ease, transform .25s ease, background .2s ease;
}
.fab-book:hover {
  background: #e8d9b3;
  text-decoration: none;
}
.fab-book.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, html { transition: none; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Schedule section ---------- */
.section__sub {
  margin-top: 12px;
  color: var(--muted, #6f7773);
  font-size: 16px;
  max-width: 640px;
}
.schedule {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 36px;
}
/* If the last card is alone in its row (5 total), stretch it across both columns */
.schedule .schedule__card:nth-child(5):last-child { grid-column: 1 / -1; }
.schedule__card {
  background: #fff;
  border: 1px solid var(--line, #ececea);
  border-radius: var(--radius, 14px);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.schedule__card:hover {
  border-color: rgba(26, 59, 46, 0.25);
  box-shadow: var(--shadow-sm);
}
.schedule__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid var(--line, #ececea);
  padding-bottom: 12px;
}
.schedule__program {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink, #111);
}
.schedule__season {
  flex-shrink: 0;
  background: var(--green, #1a3b2e);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.schedule__rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.schedule__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.5;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}
.schedule__row:last-child { border-bottom: none; }
.schedule__days {
  color: var(--ink-soft, #4a5247);
  font-weight: 500;
}
.schedule__time {
  color: var(--ink, #111);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.schedule__note {
  color: var(--ink-soft, #4a5247);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
  font-style: italic;
}
.schedule__cta {
  margin-top: 28px;
  text-align: center;
  color: var(--ink-soft, #4a5247);
  font-size: 15px;
}
.schedule__cta a {
  color: var(--green, #1a3b2e);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.schedule__cta a:hover { opacity: 0.75; }

@media (max-width: 720px) {
  .schedule { grid-template-columns: 1fr; }
  .schedule__head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .schedule__row { flex-direction: column; align-items: flex-start; gap: 2px; padding: 8px 0; }
  .schedule__time { font-size: 16px; }
}
