 @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;1,400&family=Teko:wght@400;500;600&display=swap');

:root {
    --bg-base: #1A1818;
    --bg-surface: #262323;
    --brand-red: #EA1C26;
    --brand-orange: #F7951C;
    --text-main: #E8E8E8;
    --text-muted: #9A9595;
    --border-subtle: #3A3636;
  }

  body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 2rem;
    line-height: 1.6;
  }

  a {
    color: var(--brand-orange);
    text-decoration: none;
    border-bottom: 1px solid rgba(247, 149, 28, 0.3);
    transition: color 0.2s, border-color 0.2s;
  }

  a:hover {
    color: var(--text-main);
    border-color: rgba(232, 232, 232, 0.5);
  }

  a:focus-visible,
  button:focus-visible,
  .member-thumb:focus-visible {
    outline: 2px solid var(--brand-orange);
    outline-offset: 3px;
  }

  /* ── Nav ── */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    margin: -2rem -2rem 2rem -2rem;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-subtle);
  }

  header nav {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr auto 1fr 1fr;
    align-items: center;
    padding: 0 2rem;
  }

  .nav-logo {
    border-bottom: none;
  }

  .nav-logo img {
    display: block;
    width: 125px;
    height: auto;
    padding: 0.6rem 0;
  }

  .nav-links {
    display: contents;
  }


  .nav-links a {
    color: var(--text-muted);
    border-bottom: none;
    font-family: 'Teko', sans-serif;
    font-size: 1.8rem;
    line-height: 1.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1.2rem 1.4rem;
    transition: color 0.2s;
    text-align: center;
    justify-self: center;
  }

  .nav-links a:hover {
    color: var(--text-main);
  }

  .nav-links a.active {
    color: var(--brand-red);
  }

  .nav-toggle {
    display: none;
  }

  header hr,
  footer hr {
    display: none;
  }

  /* ── Footer ── */
  footer {
    margin: 3rem -2rem -2rem -2rem;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    padding: 1.5rem 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
  }

  footer p {
    margin: 0.4rem 0;
  }

  footer a {
    color: var(--text-muted);
    border-bottom: none;
    transition: color 0.2s;
  }

  footer a:hover {
    color: var(--text-main);
  }

  .footer-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 1.2rem;
    margin-bottom: 0.75rem;
  }

  .footer-social__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border-bottom: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color 0.2s, transform 0.2s;
  }

  .footer-social__link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
  }

  .footer-social__link:hover {
    transform: translateY(-2px);
  }

  .footer-social__link--facebook:hover  { color: #1877f2; }
  .footer-social__link--youtube:hover   { color: #ff0000; }
  .footer-social__link--spotify:hover   { color: #1db954; }
  .footer-social__link--apple:hover     { color: #fc3c44; }

  /* ── Hero ── */
  #hero {
    position: relative;
    margin: -2rem -2rem 0 -2rem;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
  }

  .hero-slides {
    position: absolute;
    inset: 0;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--focal, center);
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
  }

  .hero-slide.active {
    opacity: 1;
  }

  .hero-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 3.5rem;
    font-weight: 100;
    line-height: 1;
    cursor: pointer;
    padding: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    transition: color 0.2s, transform 0.2s;
    z-index: 10;
  }

  .hero-btn:hover {
    color: #fff;
  }

  .hero-btn--prev { left: 0.75rem; }
  .hero-btn--next { right: 0.75rem; }

  .hero-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
  }

  .hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
  }

  .hero-dot.active,
  .hero-dot:hover {
    background: #fff;
    transform: scale(1.3);
  }

  #hero h1 {
    text-shadow: 0 4px 18px var(--brand-red);
  }

  .hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem 2rem 2.5rem 2rem;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.85));
    text-align: center;
  }

  .hero-form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    max-width: 420px;
    margin: 1.2rem auto 0 auto;
  }

  .hero-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.6rem 1rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    border-radius: 4px;
  }

  .hero-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }

  .hero-form input:focus {
    outline: none;
    border-color: var(--brand-orange);
    background: rgba(255, 255, 255, 0.18);
  }

  .hero-form button {
    background: var(--brand-red);
    color: #fff;
    border: none;
    padding: 0.6rem 1.2rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    border-radius: 4px;
    white-space: nowrap;
    align-self: auto;
    transition: background 0.2s;
  }

  .hero-form button:hover {
    background: #c4151e;
  }

  main {
    max-width: 1100px;
    margin: 0 auto;
  }

  section {
    margin-bottom: 3rem;
  }

  /* ── Profil + Members layout ── */
  .profil-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
  }

  .profil-text p {
    margin-top: 0;
  }

  .profil-members {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .member-big {
    position: relative;
    margin: 0 0 0.6rem 0;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
    background: var(--bg-surface);
  }

  .member-big img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: opacity 0.25s ease;
  }

  .member-big figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1rem 0.8rem 1rem;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
    font-family: 'Teko', sans-serif;
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
  }

  .member-big figcaption span {
    font-size: 0.9rem;
    color: var(--brand-orange);
    font-family: 'Open Sans', sans-serif;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
  }

  .member-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
  }

  .member-thumb {
    margin: 0;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.45;
    border: 2px solid transparent;
    transition: opacity 0.2s, border-color 0.2s;
  }

  .member-thumb.active {
    opacity: 1;
    border-color: var(--brand-red);
  }

  .member-thumb:hover {
    opacity: 0.8;
  }

  .member-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  h1, h2, h3, h4 {
    font-family: 'Teko', sans-serif;
    line-height: 1;
    text-transform: uppercase;
  }

  h1 {
    font-size: 5rem;
    margin-top: 5rem;
    margin-bottom: 3rem;
    color: var(--text-main);
  }

  h2 {
    font-size: 3.2rem;
    border-bottom: 3px solid var(--brand-red);
    display: block;
    width: fit-content;
    padding-bottom: 0.2rem;
    clear: both;
    margin: 3.5rem 0 1.5rem 0;
  }

  h3 {
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
  }

  h4 {
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
  }

  /* Reset heading margins inside card components */
  .track h3 {
    margin: 0;
  }

  /* ── Figures ── */
  figure {
    margin: 1.5rem 0;
    max-width: 800px;
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    padding: 0.75rem;
  }

  figure img {
    display: block;
    width: 100%;
    max-height: 800px;
    object-fit: cover;
    border-radius: 2px;
  }

  figcaption {
    color: var(--text-muted);
    line-height: 1.55;
    margin-top: 0.5rem;
    font-style: italic;
  }

  /* ── Video grid ── */
  .video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .video-grid figure {
    margin: 0;
    background: var(--bg-surface);
    border-radius: 4px;
    overflow: hidden;
  }

  .video-grid iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
  }

  .lite-yt {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    background: #000;
    overflow: hidden;
  }

  .lite-yt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s;
  }

  .lite-yt:hover img {
    opacity: 0.75;
  }

  .lite-yt__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(0, 0, 0, 0.75);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    pointer-events: none;
  }

  .lite-yt:hover .lite-yt__play {
    background: var(--brand-red);
    transform: translate(-50%, -50%) scale(1.1);
  }

  .lite-yt__play::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 20px;
    border-color: transparent transparent transparent #fff;
    margin-left: 4px;
  }

  .video-grid figcaption {
    padding: 0.5rem 0.75rem;
    font-size: 0.82rem;
    color: var(--text-muted);
  }

  /* ── Photo galleries ── */
  #gallery-root {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .gallery-block__title {
    letter-spacing: 0.05em;
    margin: 0 0 0.5rem;
  }

  .gallery-viewer {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 4px;
    background: var(--bg-surface);
    outline: none;
  }

  .gallery-viewer:focus {
    box-shadow: 0 0 0 2px var(--brand-orange);
  }

  .gallery-viewer__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: opacity 0.15s ease;
  }

  .gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }

  .gallery-btn:hover {
    background: rgba(0, 0, 0, 0.85);
  }

  .gallery-btn--prev { left: 0.5rem; }
  .gallery-btn--next { right: 0.5rem; }

  .gallery-counter {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0.4rem 0 0;
  }

  /* ── Album header ── */
  .album-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 2rem;
  }

  .album-info p {
    margin-top: 0;
  }

  .stream-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
  }

  .stream-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 24px;
    border-bottom: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: filter 0.2s, transform 0.2s;
    white-space: nowrap;
  }

  .stream-btn:hover {
    filter: brightness(1.15);
    transform: translateY(-1px);
  }

  .stream-btn svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: currentColor;
    flex-shrink: 0;
  }

  .stream-btn--spotify  { background: #1DB954; color: #000; }
  .stream-btn--apple    { background: #fc3c44; color: #fff; }
  .stream-btn--youtube  { background: #FF0000; color: #fff; }



  /* ── Testimonials (reference.html) ── */
  .testimonial {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-subtle);
  }

  .testimonial:first-of-type {
    margin-top: 3rem;
  }

  .testimonial:last-of-type {
    border-bottom: none;
  }

  .testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
  }

  .testimonial-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
    border: 2px solid var(--border-subtle);
  }

  .testimonial-title {
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    line-height: 1.1;
    text-transform: uppercase;
    border-bottom: none;
    margin: 0;
    padding: 0;
  }

  .testimonial-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: start;
  }

  .band-note {
    padding: 1rem 1.2rem;
    background: var(--bg-base);
    border-left: 4px solid var(--border-subtle);
    border-radius: 0 4px 4px 0;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
  }

  .band-note::before {
    content: 'Z pohledu kapely';
    display: block;
    font-family: 'Teko', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--brand-red);
    font-style: normal;
    margin-bottom: 0.4rem;
  }

  form { 
    display: flex; 
    flex-direction: column; 
    gap: 1rem; 
    max-width: 500px;
  }
  
  input { 
    background: var(--bg-surface); 
    border: 1px solid var(--border-subtle); 
    color: white; 
    padding: 1rem; 
    font-family: inherit; 
    border-radius: 4px;
  }
  
  input:focus { 
    outline: none; 
    border-color: var(--brand-red); 
  }
  
  button { 
    background: var(--brand-red); 
    color: white; 
    border: none; 
    padding: 12px 24px; 
    cursor: pointer; 
    font-weight: 600; 
    font-family: 'Open Sans', sans-serif; 
    text-transform: uppercase; 
    align-self: flex-start; 
    border-radius: 4px; 
    transition: background 0.2s;
  }
  
  button:hover {
    background: #c4151e;
  }

  /* ── Story navigation ── */
  .story-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
  }

  .story-nav a,
  .story-nav span {
    font-family: 'Teko', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    border-bottom: none;
    transition: color 0.2s;
  }

  .story-nav__prev,
  .story-nav__next {
    color: var(--text-muted);
  }

  .story-nav__prev { text-align: left; }
  .story-nav__next { text-align: right; }

  .story-nav__home {
    color: var(--brand-red);
    text-align: center;
    white-space: nowrap;
  }

  .story-nav a:hover {
    color: var(--text-main);
  }

  /* ── Card rows (responsive auto-fit grid) ── */
  .card-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
  }

  /* CARD COMPONENTS */
  .card {
    background: var(--bg-surface);
    border-radius: 6px;
    padding: 1rem;
    border: 0;
    transition: background 0.5s, border-color 0.2s;
  }

  a.card:hover {
    background: #2e2a2a;
    border-color: #c4751a;
    color: var(--text-main);
  }

  .orange-border {
    border-left: 4px solid var(--brand-orange);
  }

  a.orange-border:hover {
    border-color: var(--text-main);
  }

  .flex-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .flex-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .card p {
    color: var(--text-muted);
    line-height: 1.6;
  }

  .card h3 {
    font-size: 3rem;
    font-weight: normal;
    margin: 0;
  }

  .card .white-text {
    color: var(--text-main);
  }

  .small-text {
    font-size: 0.9rem;
  }

  .card svg {
    float: left;
    padding: 1rem 1rem 0 0;
    width: 3rem;
    height: 3rem;
    color: var(--brand-orange);
    flex-shrink: 0;
  }

  .card img {
    max-width: 100%;
  }
  
  blockquote {
    margin: 1rem 0;
    font-style: italic;
  }


  blockquote footer {
    margin: 0;
    padding: 1rem 0 0 0;
    color: var(--brand-orange);
    font-weight: bold;
    text-align: right;
    background: none;
  }


  /* ── Booking page ── */
  .booking-intro {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2.5rem;
  }

  .booking-intro__video {
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg-surface);
  }

  .booking-intro__video iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
  }

  /* Collapsible repertoire */
  .repertoire-details {
    margin-top: 1rem;
  }

  .repertoire-summary {
    cursor: pointer;
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Teko', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--brand-orange);
    padding: 0.4rem 0;
  }

  .repertoire-summary::-webkit-details-marker { display: none; }

  .repertoire-summary::before {
    content: '▶';
    font-size: 0.7rem;
    transition: transform 0.2s;
  }

  details[open] > .repertoire-summary::before {
    transform: rotate(90deg);
  }

  .repertoire-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem 1.5rem;
    margin-top: 1rem;
    padding: 1.2rem 1.4rem;
    background: var(--bg-surface);
    border-left: 4px solid var(--border-subtle);
    border-radius: 0 4px 4px 0;
  }

  .repertoire-genre h4 {
    font-size: 1rem;
    color: var(--brand-orange);
    margin: 0 0 0.2rem;
  }

  .genre-artists {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.55;
  }

  /* ── Booking form ── */
  .booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 680px;
    margin: 1.5rem 0 1.5rem;
  }

  .booking-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .booking-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .booking-form__field label {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
  }

  .booking-form__field input,
  .booking-form__field select,
  .booking-form__field textarea {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    color: var(--text-main);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    padding: 0.55rem 0.75rem;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s;
  }

  .booking-form__field input:focus,
  .booking-form__field select:focus,
  .booking-form__field textarea:focus {
    outline: none;
    border-color: var(--brand-orange);
  }

  .booking-form__field input::placeholder,
  .booking-form__field textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
  }

  .booking-form__field select option {
    background: var(--bg-surface);
  }

  .booking-form__field textarea {
    resize: vertical;
  }

  .booking-form__submit {
    align-self: flex-start;
    background: var(--brand-orange);
    color: #111;
    border: none;
    border-radius: 4px;
    font-family: 'Teko', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.55rem 1.8rem;
    cursor: pointer;
    transition: background 0.2s;
  }

  .booking-form__submit:hover {
    background: var(--text-main);
  }

  /* ── Responsive breakpoints ── */

  @media (max-width: 768px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.6rem; }

    .booking-intro {
      grid-template-columns: 1fr;
    }

    .booking-intro__video {
      order: 2;
    }

    .album-header {
      grid-template-columns: 1fr;
    }

    .album-header iframe {
      height: 240px;
    }

    .profil-layout {
      grid-template-columns: 1fr;
    }

    #hero {
      height: 40vh;
      min-height: 220px;
    }

    header nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
    }

    .nav-links {
      display: none;
    }

    .nav-logo { order: 1; }

    .nav-toggle {
      order: 2;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-self: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.75rem;
      color: var(--text-muted);
    }

    .nav-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: currentColor;
      transition: transform 0.25s, opacity 0.25s;
    }

    header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
    header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .nav-links {
      order: 3;
      display: none;
      width: 100%;
      flex-direction: column;
    }

    header.nav-open .nav-links {
      display: flex;
      flex-direction: column;
      width: 100%;
    }

    .nav-links a {
      font-size: 1.6rem;
      padding: 0.9rem 2rem;
      border-top: 1px solid var(--border-subtle);
    }

    .nav-links--right a:last-child {
      border-bottom: 1px solid var(--border-subtle);
    }
  }

  @media (max-width: 600px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }

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

  @media (max-width: 400px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.9rem; }

    .booking-form__row {
      grid-template-columns: 1fr;
    }

    .member-big {
      display: none;
    }

    .member-thumbs {
      grid-template-columns: 1fr;
    }

    .member-thumb {
      aspect-ratio: 4/3;
      opacity: 1;
      border-color: transparent;
      cursor: default;
    }
  }
