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

  body {
    margin: 0;
    color: #fff; 
    font-family: Source Sans Pro, sans-serif;
    font-weight: 400;
    font-size: 0.8571428571428571rem;
    line-height: 1.5;
    background-color: #0d1414;
  }

  .cms-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
  }

  .intro-text {
    font-size: 1.22rem;
    color: #7f8383;
    margin: 1.2rem 0 0 0;
    max-width: 100%;
  }

  .content-row {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 1rem;
    margin: 3rem 0 2.5rem;
  }

  .interview-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  @media (max-width: 750px) {
    .content-row { 
      grid-template-columns: 1fr; 
    }
    .interview-block { 
      grid-template-columns: 1fr; 
    }
  }

  /* Gallery images */
  .gallery-img {
    width: 100%;
    display: block;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .gallery-img:hover {
    transform: scale(1.02);
    opacity: 0.9;
  }

  /* RIGHT CARD */
  .perfect-egg-card h1 {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.2;
    color: #d0d1d5;
    border-bottom: 0.1rem solid #7f8383;
    text-transform: uppercase;
    line-height: 2.5rem;
  }

  @media (max-width: 480px) {
    .perfect-egg-card h1 {
      font-size: 24px;
      line-height: 1.3;
    }
  }

  .temp-badge {
    display: inline-block;
    margin: 0.8rem 0 0.3rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: #cf1430;
    background-color: transparent;
    border: 0;
    cursor: pointer;
  }

  .temp-description {
    font-size: 1.15rem;
    color: #fff;
    margin: 0.8rem 0 1.2rem;
    font-style: italic;
  }

  @media (max-width: 480px) {
    .temp-description {
      font-size: 1rem;
    }
  }

  /* TASTE OF THE COLOURS — three cards */
  .colour-zone {
    margin: 3.5rem 0 1.5rem;
    padding-top: 2.8rem;
  }

  .colour-zone h3 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 1.2rem;
    text-decoration-color: #7f8383;
  }

  @media (max-width: 480px) {
    .colour-zone h3 {
      font-size: 1.8rem;
      text-underline-offset: 0.8rem;
    }
  }

  .card-trio {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }

  .flavour-card {
    flex: 1 1 200px;
    text-align: center;
    transition: 0.15s;
    cursor: pointer;
  }

  .flavour-card:hover {
    transform: translateY(-5px);
  }

  .flavour-card h4 {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
  }

  .flavour-card p {
    font-size: 1rem;
    color: #7f8383;
    line-height: 1.5;
  }

  /* LIGHTBOX GALLERY STYLES - FULLY RESPONSIVE */
  .lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .lightbox-overlay.active {
    display: flex;
    opacity: 1;
  }

  .lightbox-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
  }

  @media (max-width: 768px) {
    .lightbox-container {
      padding: 50px 30px;
    }
  }

  @media (max-width: 480px) {
    .lightbox-container {
      padding: 40px 15px;
    }
  }

  .lightbox-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  }

  .lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: 0.2s;
    z-index: 2001;
  }

  @media (max-width: 480px) {
    .lightbox-close {
      top: 10px;
      right: 10px;
      width: 40px;
      height: 40px;
      font-size: 2rem;
    }
  }

  .lightbox-close:hover {
    background: white;
    color: black;
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    transition: 0.2s;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  @media (max-width: 768px) {
    .lightbox-nav {
      font-size: 2rem;
      padding: 10px 15px;
    }
  }

  @media (max-width: 480px) {
    .lightbox-nav {
      font-size: 1.5rem;
      padding: 8px 12px;
    }
  }

  .lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  .lightbox-nav.prev {
    left: 10px;
  }

  .lightbox-nav.next {
    right: 10px;
  }

  @media (max-width: 480px) {
    .lightbox-nav.prev {
      left: 5px;
    }
    .lightbox-nav.next {
      right: 5px;
    }
  }

  .lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    white-space: nowrap;
  }

  @media (max-width: 480px) {
    .lightbox-counter {
      font-size: 0.9rem;
      padding: 6px 12px;
      bottom: 10px;
    }
  }

  /* COLOUR CARDS MODALS - FULLY RESPONSIVE */
  .modal-overlay {
    display: none;
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(15, 10, 8, 0.95);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
  }

  @media (max-width: 480px) {
    .modal-overlay {
      padding: 10px;
    }
  }

  .modal-overlay.active {
    display: flex;
  }

  .modal-content-box {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .modal-content-box img {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 4px;
  }

  @media (max-width: 768px) {
    .modal-content-box img {
      max-height: 70vh;
    }
  }

  @media (max-width: 480px) {
    .modal-content-box img {
      max-height: 60vh;
    }
  }

  .modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    width: 44px;
    height: 44px;
    background: #1f1a16b3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 200;
    line-height: 1;
    transition: 0.15s;
    z-index: 1001;
  }

  @media (max-width: 768px) {
    .modal-close {
      top: -10px;
      right: -10px;
      width: 40px;
      height: 40px;
      font-size: 2rem;
    }
  }

  @media (max-width: 480px) {
    .modal-close {
      top: -5px;
      right: -5px;
      width: 36px;
      height: 36px;
      font-size: 1.8rem;
    }
  }

  .modal-close:hover {
    background: #f0daca;
    color: #2b1f1a;
  }

  .modal-title {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px black;
    background: rgba(0,0,0,0.5);
    padding: 12px;
    border-radius: 4px;
    margin-top: 10px;
  }

  @media (max-width: 768px) {
    .modal-title {
      font-size: 1rem;
      bottom: -35px;
      padding: 10px;
    }
  }

  @media (max-width: 480px) {
    .modal-title {
      font-size: 0.9rem;
      bottom: -30px;
      padding: 8px;
    }
  }

  /* Touch-friendly improvements */
  @media (hover: none) and (pointer: coarse) {
    .gallery-img:hover {
      transform: none;
    }
    
    .lightbox-nav {
      padding: 20px 15px;
    }
    
    .modal-close, .lightbox-close {
      width: 50px;
      height: 50px;
    }
  }