/* ============================================================
   FONTS
   ============================================================ */

@font-face {
  font-family: 'Pochaevsk';
  src: url('Pochaevsk/Pochaevsk-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   VARIABLES
   ============================================================ */

:root {
  --color-bg:         #FFF7EF;
  --color-primary:    #0A3A4E;
  --color-secondary:  #4A7080;
  --color-highlight:  #D99125;
  --color-highlight2: #0E82A9;

  --font-header: 'Pochaevsk', Georgia, serif;
  --font-body:   'Parastoo', 'Segoe UI', Arial, sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-bg);
}

.nav-inner {
  width: 100%;
  padding: 0 0 0 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.logo-img {
  height: 38px;
  width: auto;
  margin-top: 6px;
}

.nav-sax-img {
  height: 48px;
  width: auto;
  opacity: 0.75;
  margin-bottom: 6px;
  margin-right: -2rem;
}

.nav-centre {
  display: flex;
  justify-content: center;
}

.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-primary);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--color-highlight);
}

.nav-contact-btn {
  display: flex;
  align-items: center;
  padding: 0 2rem;
  background-color: var(--color-highlight2);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.nav-contact-btn:hover {
  background-color: var(--color-primary);
}

.nav-service-label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-secondary);
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  user-select: none;
}


/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/saxophone_playing_background.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 247, 239, 0.97) 0%,
    rgba(255, 247, 239, 0.94) 37%,
    rgba(255, 247, 239, 0.70) 50%,
    rgba(255, 247, 239, 0.15) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 2rem 11rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
}

.hero-text h1 {
  font-family: var(--font-header);
  font-size: 3rem;
  font-weight: normal;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.hero-location {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  opacity: 0.8;
}

.hero-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.hero-list li {
  font-family: var(--font-body);
  font-size: 1.45rem;
  color: var(--color-primary);
  line-height: 1.4;
}

.hero-list li + li::before {
  content: '\25C6';
  color: var(--color-highlight);
  font-size: 0.55rem;
  margin: 0 0.75rem;
  vertical-align: middle;
}

.hero-options {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: stretch;
}

.option-card {
  flex: 1;
  background-color: rgba(255, 247, 239, 0.38);
  border: 1px solid rgba(255, 247, 239, 0.55);
  border-radius: 3px;
  padding: 1.2rem 1.4rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.25s ease;
}

.option-card:hover {
  transform: scale(1.03);
}

.option-price {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-highlight);
  letter-spacing: 0.03em;
  text-align: center;
}

.option-card h3 {
  font-family: var(--font-header);
  font-size: 1.4rem;
  font-weight: normal;
  color: var(--color-primary);
  letter-spacing: 0.01em;
  display: block;
  width: fit-content;
  margin: 0 auto 0.75rem;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-highlight);
}

.option-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.option-list li {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-primary);
  line-height: 1.5;
  padding-left: 0.9rem;
  position: relative;
}

.option-list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--color-highlight);
}

/* ============================================================
   EVENT TYPES
   ============================================================ */

.events {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0 2rem;
  max-width: 1100px;
  margin: -6rem auto 4rem;
  position: relative;
  z-index: 5;
  background: transparent;
}

.event-card {
  position: relative;
  overflow: hidden;
  height: 500px;
  border-radius: 4px;
}

.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.event-card:hover img {
  transform: scale(1.04);
}

.event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 58, 78, 0.82) 0%,
    rgba(10, 58, 78, 0.4) 14%,
    rgba(10, 58, 78, 0) 30%
  );
  z-index: 1;
}

.event-label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  z-index: 2;
}

.event-label h1 {
  font-family: var(--font-header);
  font-size: 2rem;
  font-weight: normal;
  color: #ffffff;
  letter-spacing: 0.02em;
}

/* ============================================================
   EXPERIENCE
   ============================================================ */

.experience {
  padding: 4.5rem 0;
  background-color: #ffffff;
  max-width: calc(50vw + 550px);
  margin: -5rem auto 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 -12px 40px rgba(10, 58, 78, 0.1);

  /* initial scroll-animation state */
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.experience.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.experience-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.section-heading {
  font-family: var(--font-header);
  font-size: 2.75rem;
  font-weight: normal;
  color: var(--color-primary);
  display: inline-block;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--color-highlight);
  margin-bottom: 1rem;
}

.experience-text p {
  font-size: 1.15rem;
  color: var(--color-primary);
  line-height: 1.75;
}

.venue-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-top: 0.25rem;
}

.venue-list li {
  font-size: 1.15rem;
  color: var(--color-primary);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.4;
}

.venue-list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--color-highlight);
}

/* ============================================================
   TESTIMONIALS & PHOTOS/VIDEOS
   ============================================================ */

.testimonials {
  padding: 4rem 0 3.5rem;
  background-color: var(--color-bg);
  border-top: 1px solid rgba(10, 58, 78, 0.08);
}

.testimonials .container {
  margin-bottom: 2rem;
}

.testimonials-scroller {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.testimonials-track-auto {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 0.5rem 3rem 1rem;
}

.testimonials-track-auto.is-centered {
  width: 100%;
  justify-content: center;
  padding: 0.5rem 2rem 1rem;
}

@keyframes testimonials-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(var(--testimonials-end, 0px)); }
}

.testimonial-card {
  width: 260px;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 8px;
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
  box-shadow: 0 2px 18px rgba(10, 58, 78, 0.07);
}

.testimonial-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid var(--color-highlight);
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-name {
  font-family: var(--font-header);
  font-size: 1rem;
  color: var(--color-primary);
  margin: 0;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-secondary);
  line-height: 1.65;
  font-style: italic;
  margin: 0.25rem 0 0;
  text-align: left;
  position: relative;
  padding-top: 0.5rem;
}

.testimonial-quote--short {
  font-size: 1.05rem;
}

.testimonial-quote::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 2.8rem;
  color: var(--color-highlight);
  line-height: 0;
  vertical-align: -0.85rem;
  margin-right: 0.1rem;
  font-style: normal;
}
.testimonial-quote::after {
  content: '\201D';
  font-family: Georgia, serif;
  font-size: 1rem;
  color: var(--color-highlight);
  margin-left: 0.2rem;
  font-style: normal;
}

/* ============================================================
   MEDIA CAROUSEL (Photos & Videos)
   ============================================================ */

.photos-videos .container {
  margin-bottom: 2rem;
}

.media-viewport {
  overflow: hidden;
  width: 100%;
}

.media-track {
  display: flex;
  gap: 1rem;
  padding: 0 2rem;
  transition: transform 0.35s ease;
  max-width: 1100px;
  margin: 0 auto;
}

.media-slide {
  flex: 0 0 calc(25% - 0.75rem);
  aspect-ratio: 3 / 4;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  background-color: rgba(10, 58, 78, 0.07);
}

.media-slide img,
.media-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-slide video {
  display: none;
}

.media-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

/* Shimmer skeleton */

.slide-shimmer {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 58, 78, 0.07);
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

.slide-shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 240, 220, 0.35) 25%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(220, 235, 255, 0.35) 75%,
    transparent 100%
  );
  transform: translateX(-200%) skewX(-15deg);
  animation: shimmer-sweep 1.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmer-sweep {
  0%   { transform: translateX(-200%) skewX(-15deg); }
  100% { transform: translateX(350%) skewX(-15deg); }
}

.slide-shimmer.shimmer-done {
  display: none;
}

/* Video poster + play button */

.video-poster {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 58, 78, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  transition: background-color 0.2s;
}

.video-poster:hover {
  background-color: rgba(10, 58, 78, 0.42);
}

.video-poster-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-poster .play-btn {
  position: relative;
  z-index: 1;
}

/* Pause overlay — hidden until video is paused */

.video-pause-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 58, 78, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.video-pause-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.video-pause-overlay:hover {
  background-color: rgba(10, 58, 78, 0.42);
}

.media-slide--video video {
  cursor: pointer;
}

.media-slide:not(.media-slide--video) {
  cursor: zoom-in;
}

.play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
  transition: background 0.2s, transform 0.2s;
}

.play-btn:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: scale(1.08);
}

.slider-btn {
  background: none;
  border: 1px solid var(--color-highlight);
  color: var(--color-highlight);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-bottom: 2px;
  transition: background-color 0.2s, color 0.2s;
}

.slider-btn:hover {
  background-color: var(--color-highlight);
  color: #ffffff;
}

.photos-videos {
  padding: 4rem 0 3.5rem;
  background-color: var(--color-bg);
  border-top: 1px solid rgba(10, 58, 78, 0.08);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  cursor: zoom-out;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: min(90vw, 960px);
  max-height: 90vh;
  object-fit: contain;
  display: block;
  border-radius: 2px;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.5);
  cursor: default;
  transition: opacity 0.15s ease;
}

.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  opacity: 0.75;
  padding: 0.5rem;
  transition: opacity 0.15s;
  z-index: 501;
  line-height: 0;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-bottom: 2px;
  transition: background 0.2s;
  z-index: 501;
}

.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox-video-wrap {
  max-width: min(90vw, 960px);
  max-height: 90vh;
  display: none;
  flex-direction: column;
  align-items: center;
  cursor: default;
}

.lightbox-video {
  max-width: 100%;
  max-height: calc(90vh - 2.5rem);
  border-radius: 2px;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.5);
  background: #000;
  display: block;
  cursor: default;
}

.lightbox-dblclick-hint {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.72rem;
  font-family: var(--font-body);
  margin-top: 0.5rem;
  letter-spacing: 0.03em;
  user-select: none;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  padding: 2.25rem;
  display: flex;
  justify-content: center;
  background-color: var(--color-bg);
  border-top: 1px solid rgba(10, 58, 78, 0.1);
}

.footer-instagram {
  display: inline-flex;
  transition: opacity 0.2s;
}

.footer-instagram:hover {
  opacity: 0.8;
}

.instagram-icon {
  width: 32px;
  height: 32px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-page {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 5rem 2rem 6rem;
}

.contact-box {
  width: 100%;
  max-width: 580px;
}

.contact-box h1 {
  font-family: var(--font-header);
  font-size: 3rem;
  font-weight: normal;
  color: var(--color-primary);
  line-height: 1.2;
  display: inline-block;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--color-highlight);
  margin-bottom: 2.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-secondary);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-primary);
  background-color: #ffffff;
  border: 1px solid rgba(10, 58, 78, 0.2);
  border-radius: 3px;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-highlight2);
}

.form-group input.is-invalid,
.form-group textarea.is-invalid {
  border-color: rgba(10, 58, 78, 0.2);
  border-bottom-color: #c0392b;
}

.form-group input.is-invalid:focus,
.form-group textarea.is-invalid:focus {
  border-color: rgba(10, 58, 78, 0.2);
  border-bottom-color: #c0392b;
}

.form-group textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(10, 58, 78, 0.3);
}

.submit-btn-wrap {
  position: relative;
  display: inline-block;
  margin-top: 0.5rem;
}

.submit-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  padding: 0.4rem 0.75rem;
  border-radius: 3px;
  white-space: nowrap;
  pointer-events: none;
}

.submit-btn-wrap.has-tooltip:hover .submit-tooltip {
  display: block;
}

.submit-btn {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #ffffff;
  background-color: var(--color-primary);
  border: none;
  border-radius: 3px;
  padding: 0.85rem 2.5rem;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background-color 0.2s, opacity 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.submit-btn.is-faded {
  opacity: 0.4;
  cursor: not-allowed;
}

.submit-btn:hover {
  background-color: var(--color-highlight2);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: form-spin 0.7s linear infinite;
  flex-shrink: 0;
}

@keyframes form-spin {
  to { transform: rotate(360deg); }
}

.form-loading {
  opacity: 0.55;
  pointer-events: none;
}

.form-loading .btn-spinner {
  display: block;
}

.form-success {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-primary);
  line-height: 1.6;
  padding: 1.5rem 0;
}

.form-error {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #c0392b;
}

.form-group .form-error {
  min-height: 1.2em;
}

.error-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.error-modal[hidden] {
  display: none;
}

.error-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 58, 78, 0.45);
}

.error-modal-box {
  position: relative;
  background: var(--color-bg);
  border-radius: 4px;
  padding: 2rem 2rem 1.75rem;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(10, 58, 78, 0.18);
}

.error-modal-close {
  position: absolute;
  top: 0.6rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--color-secondary);
  cursor: pointer;
  padding: 0.2rem 0.3rem;
  transition: color 0.15s;
}

.error-modal-close:hover {
  color: var(--color-primary);
}

.error-modal-box p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-primary);
  line-height: 1.65;
  margin: 0;
  padding-right: 1rem;
}

.error-modal-box a {
  color: var(--color-highlight2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 860px) {
  .events {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .event-card {
    height: 320px;
  }

  .experience-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .nav-centre {
    display: none;
  }

  .nav-inner {
    grid-template-columns: 1fr auto;
  }

  .hero-options {
    flex-direction: column;
  }

  .hero-overlay {
    background: rgba(255, 247, 239, 0.9);
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .media-slide {
    flex: 0 0 calc(80% - 0.5rem);
  }
}
