/* Andy Plester Golf — Brum Eats–style, logo colours: green #32CD32, black, white */
:root {
  --green: #32CD32;
  --green-dark: #2ab82a;
  --black: #0a0a0a;
  --white: #fafafa;
  --gray: #737373;
  --gray-light: #a3a3a3;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--green) var(--black);
}

html::-webkit-scrollbar {
  width: 10px;
}

html::-webkit-scrollbar-track {
  background: var(--black);
}

html::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 5px;
}

html::-webkit-scrollbar-thumb:hover {
  background: var(--green-dark);
}

body {
  margin: 0;
  font-family: "Syne", system-ui, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header — Brum Eats style: logo left, nav center, CTA right */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  gap: 1.5rem;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.header-logo:hover {
  opacity: 0.9;
}

.header-logo:hover .header-logo-accent {
  color: var(--green-dark);
}

.header-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.header-logo-text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-logo-name {
  color: var(--white);
}

.header-logo-accent {
  color: var(--green);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  flex: 1;
  max-width: 50%;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.9;
  transition: opacity 0.2s, color 0.2s, transform 0.2s;
}

.nav-link:hover {
  opacity: 1;
  color: var(--green);
  transform: translateY(-1px);
}

.header-cta {
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  border: 2px solid var(--green);
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.header-cta:hover {
  background: var(--green);
  color: var(--black);
  box-shadow: 0 4px 16px rgba(50, 205, 50, 0.35);
  transform: translateY(-1px);
}

/* Hamburger — hidden on desktop */
.menu-toggle {
  display: none;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

.site-header.is-open .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu panel */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  max-width: 85vw;
  height: 100vh;
  background: var(--black);
  padding: 5rem 1.5rem 2rem;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 98;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu-link {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s;
}

.mobile-menu-link:hover {
  color: var(--green);
}

.mobile-menu-cta {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--green);
  padding: 0.85rem 1.25rem;
  border-radius: 9999px;
  text-align: center;
  transition: background 0.2s;
}

.mobile-menu-cta:hover {
  background: var(--green-dark);
}

.mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 97;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.site-header.is-open .mobile-menu {
  transform: translateX(0);
}

.mobile-menu-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Hero — Brum Eats layout: spaced content left, schedule right, scroll hint at bottom */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.85;
}

.hero-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Strong vignette (Brum Eats–style) + left scrim so text is always readable on bright frames */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  /* Stronger vignette: darker edges, smaller “bright” center */
  background: radial-gradient(
    ellipse 75% 75% at 55% 45%,
    rgba(10, 10, 10, 0.25) 0%,
    rgba(10, 10, 10, 0.5) 40%,
    rgba(10, 10, 10, 0.78) 70%,
    rgba(10, 10, 10, 0.95) 100%
  );
}

/* Left-side scrim: keeps text clear over bright sky/background */
.hero-video-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.82) 0%,
    rgba(10, 10, 10, 0.35) 38%,
    transparent 62%
  );
  pointer-events: none;
}

/* Top fade so nav + title stay readable */
.hero-video-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.55) 0%,
    transparent 28%
  );
  pointer-events: none;
}

/* Softer vignette on mobile */
@media (max-width: 767px) {
  .hero-video-overlay {
    background: radial-gradient(
      ellipse 80% 80% at 50% 50%,
      rgba(10, 10, 10, 0.15) 0%,
      rgba(10, 10, 10, 0.35) 45%,
      rgba(10, 10, 10, 0.6) 75%,
      rgba(10, 10, 10, 0.82) 100%
    );
  }

  .hero-video-overlay::before {
    background: linear-gradient(
      to right,
      rgba(10, 10, 10, 0.6) 0%,
      rgba(10, 10, 10, 0.2) 40%,
      transparent 65%
    );
  }

  .hero-video-overlay::after {
    background: linear-gradient(
      to bottom,
      rgba(10, 10, 10, 0.4) 0%,
      transparent 35%
    );
  }

  .hero-sub-desktop {
    display: none;
  }

  .hero-sub-mobile {
    display: block;
  }
}

/* Brum Eats–style squares grid over the video */
.hero-video-squares {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5.5rem 2rem 5rem;
  gap: 3rem;
  text-align: left;
}

.hero-content {
  max-width: 42rem;
  margin-left: 2rem;
}

@media (min-width: 900px) {
  .hero-content {
    margin-left: 4rem;
  }
}

.hero-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--green);
  margin: 0 0 0.85rem;
}

.hero-sub {
  font-size: 0.9rem;
  color: var(--gray-light);
  margin: 0 0 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.hero-sub-mobile {
  display: none;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 4.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.02em;
  margin: 0 0 1.5rem;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hero-title em.hero-title-accent {
  font-style: normal;
  color: var(--green);
}

.hero-ambassador {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-light);
  margin: 0 0 1.25rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.hero-tagline {
  font-size: 1.05rem;
  color: var(--gray-light);
  margin: 0 0 2.25rem;
  max-width: 36rem;
  line-height: 1.55;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}

/* Schedule block right side — badge above Mon · Wed · Sat, part of same block */
.hero-schedule-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: nowrap;
}

.hero-schedule-desktop-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--green);
  margin: 0 0 0.25rem;
  width: 100%;
}

.hero-schedule-block-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.schedule-line {
  width: 1px;
  height: 5rem;
  background: var(--green);
  opacity: 0.85;
  flex-shrink: 0;
}

.schedule-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.schedule-days {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white);
}

.schedule-line-inner {
  width: 2rem;
  height: 1px;
  margin: 0.5rem 0;
  background: var(--green);
  opacity: 0.85;
}

.schedule-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-light);
}

.schedule-time-main {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
}

.schedule-tz {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-light);
}

/* Mobile-only: "New videos every" + schedule, locked under CTA buttons, left-aligned */
.hero-schedule-mobile {
  display: none;
}

@media (max-width: 699px) {
  .hero-schedule-mobile {
    display: block;
    margin-top: 3.5rem;
    text-align: left;
  }

  .hero-schedule-mobile-badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--green);
    margin: 0 0 0.6rem;
  }

  .hero-schedule-mobile .schedule-stack {
    margin: 0;
  }

  .scroll-hint {
    z-index: 5;
    bottom: 1.25rem;
  }

  .hero {
    padding-bottom: 3.5rem;
  }
}

/* Scroll to explore — fixed at bottom of viewport */
.scroll-hint {
  position: absolute;
  bottom: 1.75rem;
  left: 2rem;
  margin: 0;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gray);
  animation: fadeInOut 2s ease-in-out infinite;
  z-index: 2;
}

@media (min-width: 900px) {
  .scroll-hint {
    left: 4rem;
  }
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 9999px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-primary {
  background: var(--green);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--green-dark);
  color: var(--black);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  border-color: var(--white);
  color: var(--white);
}

.btn-large {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

@keyframes fadeInOut {
  50% { opacity: 0.5; }
}

/* Ticker — full-width green bar, black text (Brum Eats style) */
.ticker {
  width: 100%;
  background: var(--green);
  padding: 0.7rem 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.ticker-inner span {
  padding-right: 3rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--black);
  font-weight: 600;
  white-space: nowrap;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Sections — wider on desktop (Brum Eats style) */
.section {
  padding: 5rem 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--green);
  margin: 0 0 0.5rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin: 0 0 2rem;
  text-transform: uppercase;
}

@media (max-width: 699px) {
  .section-title {
    font-size: clamp(1.35rem, 4.5vw, 1.75rem);
  }
}

.section-title em {
  font-style: normal;
  color: var(--green);
}

/* About */
.about-content {
  margin-bottom: 2.5rem;
}

.about-content p {
  margin: 0 0 1rem;
  color: var(--gray-light);
  font-size: 1.05rem;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 2rem;
}

.features li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 1rem;
  align-items: start;
  padding: 1rem;
  border-radius: 0.5rem;
  transition: background 0.25s;
}

.features li:hover {
  background: rgba(255, 255, 255, 0.03);
}

.feature-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.features strong {
  grid-column: 2;
  font-size: 1rem;
  color: var(--white);
}

.features span:last-child {
  grid-column: 2;
  color: var(--gray-light);
  font-size: 0.95rem;
}

/* Drills CTA */
.drills-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--black);
  background: var(--green);
  padding: 0.35rem 0.75rem;
  border-radius: 0.25rem;
  margin: 0 0 0.75rem;
}

.drills-cta {
  background: linear-gradient(
    180deg,
    rgba(50, 205, 50, 0.06) 0%,
    transparent 100%
  );
  border-radius: 1rem;
}

.drills-lead {
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
  color: var(--gray-light);
}

.drills-body {
  font-size: 0.98rem;
  color: var(--gray-light);
  line-height: 1.6;
  margin: 0 0 1rem;
  max-width: 38rem;
}

.drills-list {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--gray-light);
  font-size: 0.98rem;
  line-height: 1.7;
}

.drills-list li {
  margin-bottom: 0.35rem;
}


.drills-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.drills-benefits li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--gray-light);
}

.drills-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.drills-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gray-light);
  margin: 0 0 1.5rem;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  gap: 1.5rem;
}

.testimonial {
  margin: 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0.75rem;
  border-left: 3px solid var(--green);
  transition: background 0.25s, box-shadow 0.25s, border-left-color 0.25s;
}

.testimonial:hover {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-left-color: var(--green-dark);
}

.testimonial p {
  margin: 0 0 0.75rem;
  color: var(--gray-light);
  font-size: 0.95rem;
}

.testimonial cite {
  font-size: 0.85rem;
  color: var(--gray);
  font-style: normal;
}

/* Watch / Skillest */
.watch-lead {
  margin: 0 0 1.5rem;
  color: var(--gray-light);
}

/* Follow — Brum Eats style: horizontal bar with segments + hover */
.follow {
  max-width: 72rem;
}

.social-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 2.5rem;
  border: 1px solid rgba(50, 205, 50, 0.35);
  border-radius: 0.5rem;
  overflow: hidden;
  background: rgba(50, 205, 50, 0.08);
}

.social-bar-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 1.25rem 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, color 0.2s;
}

.social-bar-item:last-child {
  border-right: none;
}

.social-bar-item:hover {
  background: rgba(50, 205, 50, 0.2);
}

.social-bar-item:hover .social-bar-handle,
.social-bar-item:hover .social-bar-arrow {
  color: var(--green);
}

.social-bar-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green);
  margin-bottom: 0.35rem;
}

.social-bar-handle {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.2s;
}

.social-bar-arrow {
  font-size: 0.9rem;
  color: var(--gray-light);
  margin-top: 0.25rem;
  transition: color 0.2s, transform 0.2s;
}

.social-bar-item:hover .social-bar-arrow {
  transform: translate(2px, -2px);
}

@media (max-width: 699px) {
  .social-bar {
    grid-template-columns: 1fr;
  }

  .social-bar-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .social-bar-item:last-child {
    border-bottom: none;
  }
}

.contact-block {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-block h4 {
  font-size: 1rem;
  margin: 0 0 0.25rem;
}

.contact-block p {
  color: var(--gray-light);
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}

.contact-block a {
  color: var(--green);
  font-weight: 500;
  transition: color 0.2s, text-decoration 0.2s;
}

.contact-block a:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

/* Footer */
.site-footer {
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .footer-logos {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 1rem;
    max-width: 100%;
    align-items: center;
    justify-content: center;
  }

  .footer-pga-logo {
    max-width: 80px;
    max-height: 40px;
  }
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-pga-logo {
  height: auto;
  max-height: 48px;
  width: auto;
  max-width: 120px;
  opacity: 0.9;
}

.logo-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0 0 0.25rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--gray);
  margin: 0 0 0.5rem;
}

.footer-ambassador {
  font-size: 0.75rem;
  color: var(--gray);
  margin: 0;
}

.footer-ambassador a {
  color: var(--green);
  font-weight: 600;
}

.footer-ambassador a:hover {
  text-decoration: underline;
}

.footer-legal {
  font-size: 0.8rem;
  margin: 0.75rem 0 0;
}

.footer-legal a {
  color: var(--gray);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--green);
}

/* Privacy / cookie consent banner */
.privacy-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.97);
  border-top: 1px solid rgba(50, 205, 50, 0.3);
  padding: 1rem 1.5rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.privacy-banner[hidden] {
  display: none;
}

.privacy-banner-text {
  margin: 0;
  font-size: 0.85rem;
  color: var(--gray-light);
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}

.privacy-banner-text a {
  color: var(--green);
  text-decoration: underline;
}

.privacy-banner-text a:hover {
  color: var(--green-dark);
}

.privacy-banner-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.privacy-banner-link {
  font-size: 0.8rem;
  color: var(--gray-light);
  text-decoration: underline;
}

.privacy-banner-link:hover {
  color: var(--green);
}

.privacy-banner-accept {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--black);
  background: var(--green);
  border: none;
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.privacy-banner-accept:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .nav,
  .header-cta {
    display: none !important;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .mobile-menu-backdrop {
    display: block;
  }
}

@media (max-width: 699px) {
  .hero-schedule-block {
    display: none;
  }

  .hero-body {
    padding: 8rem 1.5rem 1.5rem;
  }

  .hero-content {
    margin-left: 0;
  }
}

@media (min-width: 768px) {
  .hero-body {
    padding: 6rem 2rem 5rem;
  }

  .section {
    padding: 6rem 2rem;
  }

  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .features li {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .features strong,
  .features span:last-child {
    grid-column: 1;
  }

  .feature-icon {
    margin: 0 auto;
  }
}
