body {
  background: linear-gradient(to bottom right, var(--color-bg-light, #f6f5f3), var(--color-bg-medium, #ebe8e5));
}

/* ===============================
   Great Tales Media – Location Section
   =============================== */

.work-location-section {
  position: relative;
  width: 100%;
  height: clamp(224px, 29.4vh, 350px);
  overflow: hidden;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 -2px 0 rgba(241, 120, 36, 0.3);
  margin-bottom: 0;
  isolation: isolate;
}

/* Animated gradient accent line */
.work-location-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #f17824 20%,
    #ff8c3c 50%,
    #f17824 80%,
    transparent 100%
  );
  z-index: 10;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.work-location-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Bold cinematic gradient overlay */
.work-location-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 100% at 95% 50%,
      transparent 0%,
      rgba(0, 0, 0, 0.3) 40%,
      rgba(26, 26, 26, 0.7) 70%,
      rgba(10, 10, 10, 0.95) 100%
    ),
    linear-gradient(
      105deg,
      rgba(10, 10, 10, 0.98) 0%,
      rgba(46, 29, 8, 0.85) 20%,
      rgba(59, 47, 24, 0.60) 40%,
      rgba(241, 120, 36, 0.45) 65%,
      rgba(241, 120, 36, 0.25) 85%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.2) 0%,
      transparent 40%,
      rgba(0, 0, 0, 0.4) 100%
    );
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

.work-location-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  filter: brightness(0.8) contrast(1.15) saturate(1.25);
  transform: scale(1.08);
  transition: transform 10s cubic-bezier(0.19, 1, 0.22, 1),
              filter 2s ease-out;
}

.work-location-section:hover .work-location-bg img {
  transform: scale(1.18);
  filter: brightness(0.9) contrast(1.15) saturate(1.3);
}

.work-location-content {
  position: relative;
  width: 100%;
  max-width: 1400px;
  z-index: 2;
  height: 100%;
  padding: 0 8% 0 5%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Decorative accent element behind text */
.work-location-content::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(300px, 50vw, 650px);
  height: clamp(200px, 30vh, 350px);
  background:
    radial-gradient(
      ellipse at center,
      rgba(241, 120, 36, 0.15) 0%,
      rgba(241, 120, 36, 0.08) 30%,
      transparent 70%
    );
  filter: blur(60px);
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 0.9;
    transform: translateY(-50%) scale(1.1);
  }
}

.work-location-content h2 {
  margin: 0;
  font-family: "Grift", serif;
  font-weight: 900;
  font-size: clamp(1.694rem, 3.465vw, 3.465rem);
  line-height: 1;
  color: #ffffff;
  text-shadow:
    0 1px 2px rgba(241, 120, 36, 0.4),
    0 3px 12px rgba(0, 0, 0, 0.5),
    0 6px 24px rgba(0, 0, 0, 0.3),
    0 12px 48px rgba(0, 0, 0, 0.2);
  text-align: right;
  letter-spacing: -0.03em;
  max-width: 750px;
  padding: 0;
  animation: fadeInSlide 1s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
  filter: drop-shadow(0 0 20px rgba(241, 120, 36, 0.2));
}

.work-location-content h2 br {
  display: block;
}

/* Subtle animated underline accent */
.work-location-content h2::after {
  content: "";
  position: absolute;
  bottom: -16px;
  right: 0;
  width: clamp(100px, 18vw, 200px);
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #f17824 30%,
    #ff8c3c 70%,
    transparent 100%
  );
  border-radius: 2px;
  animation: expandLine 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.3s both;
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateX(40px);
    filter: blur(8px) drop-shadow(0 0 20px rgba(241, 120, 36, 0));
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0) drop-shadow(0 0 20px rgba(241, 120, 36, 0.2));
  }
}

@keyframes expandLine {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: clamp(100px, 18vw, 200px);
    opacity: 1;
  }
}

/* Tablet adjustments */
@media (max-width: 1024px) {
  .work-location-section {
    height: clamp(360px, 42vh, 480px);
  }

  .work-location-content {
    padding: 0 4%;
  }

  .work-location-content::before {
    width: clamp(250px, 45vw, 500px);
    height: clamp(180px, 28vh, 300px);
  }

  .work-location-content h2 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    max-width: 600px;
    padding-right: clamp(1rem, 2.5vw, 2.5rem);
    line-height: 1;
  }

  .work-location-content h2::after {
    bottom: -10px;
    width: clamp(60px, 12vw, 140px);
  }

  .work-location-bg::after {
    background:
      radial-gradient(
        ellipse 75% 100% at 92% 50%,
        transparent 0%,
        rgba(0, 0, 0, 0.35) 45%,
        rgba(26, 26, 26, 0.75) 75%,
        rgba(10, 10, 10, 0.92) 100%
      ),
      linear-gradient(
        105deg,
        rgba(10, 10, 10, 0.96) 0%,
        rgba(46, 29, 8, 0.8) 25%,
        rgba(59, 47, 24, 0.55) 45%,
        rgba(241, 120, 36, 0.4) 70%,
        rgba(241, 120, 36, 0.2) 90%,
        transparent 100%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.25) 0%,
        transparent 45%,
        rgba(0, 0, 0, 0.35) 100%
      );
  }
}

/* Mobile adjustments */
@media (max-width: 760px) {
  .work-location-section {
    height: clamp(180px, 25vh, 240px);
    justify-content: center;
  }

  .work-location-section::before {
    height: 2px;
  }

  .work-location-bg img {
    filter: brightness(0.7) contrast(1.2) saturate(1.2);
    object-position: 60% center;
    transform: scale(1.1);
  }

  .work-location-section:hover .work-location-bg img {
    transform: scale(1.15);
  }

  .work-location-bg::after {
    background:
      radial-gradient(
        ellipse 70% 100% at 50% 50%,
        transparent 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(10, 10, 10, 0.9) 100%
      ),
      linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(46, 29, 8, 0.7) 40%,
        rgba(241, 120, 36, 0.4) 80%,
        rgba(241, 120, 36, 0.2) 100%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        transparent 35%,
        rgba(0, 0, 0, 0.45) 100%
      );
  }

  .work-location-content {
    padding: 0 5%;
    justify-content: center;
  }

  .work-location-content::before {
    width: clamp(180px, 50vw, 280px);
    height: clamp(120px, 20vh, 200px);
    filter: blur(35px);
  }

  .work-location-content h2 {
    font-size: clamp(1.4rem, 5.5vw, 2rem);
    line-height: 1.1;
    max-width: 100%;
    padding: 0 1rem;
    text-align: center;
    letter-spacing: -0.02em;
    text-shadow:
      0 1px 2px rgba(241, 120, 36, 0.3),
      0 3px 8px rgba(0, 0, 0, 0.5),
      0 6px 16px rgba(0, 0, 0, 0.4),
      0 10px 32px rgba(0, 0, 0, 0.25);
    filter: drop-shadow(0 0 16px rgba(241, 120, 36, 0.25));
  }

  .work-location-content h2::after {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(60px, 12vw, 100px);
    height: 3px;
  }

  .work-location-content h2 br {
    display: inline;
  }

  .work-location-content h2 br::after {
    content: " ";
  }
}

/* ===============================
   Great Tales Media – Evergreen Content Section
   =============================== */

.evergreen-section {
  background: transparent;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.evergreen-container {
  width: min(95%, 1200px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  margin: 0 auto;
}

.evergreen-image img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md, 16px);
  box-shadow: var(--shadow-md, 0 10px 25px rgba(0, 0, 0, 0.15));
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.evergreen-image img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg, 0 18px 30px rgba(0, 0, 0, 0.25));
}

.evergreen-text {
  color: #111;
}

.evergreen-text h2 {
  width: 100%;
  font-family: "Grift", serif;
  font-weight: 900;
  font-size: clamp(4.86rem, 6.84vw, 6.48rem);
  line-height: 0.8;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.evergreen-text .highlight {
  color: var(--color-accent, #f17824);
}

.evergreen-text .subtext {
  font-family: "Mallians", serif;
  font-size: 3.9rem;
  line-height: 0.8;
  font-weight: 400;
  font-style: italic;
  color: var(--color-accent, #f17824);
  margin-bottom: 1rem;
  margin-top: 0;
}

.evergreen-text .body-text {
  font-family: "Grift", serif;
  font-weight: 600;
  color: var(--color-text-medium, #444);
  line-height: 1.4;
  font-size: 1.2rem;
  margin-bottom: 1.8rem;
}

.evergreen-text .button {
  display: inline-block;
  background: var(--color-accent, #f17824);
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-xl, 30px);
  font-family: "Grift", serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: background 0.3s ease, transform 0.3s ease;
}

.evergreen-text .button:hover {
  background: var(--color-accent-hover, #ff8c3c);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
  .evergreen-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
  }

  .evergreen-image img {
    width: 85%;
    margin: 0 auto;
  }

  .evergreen-text {
    padding: 0 2rem;
  }

  .evergreen-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
  }

  .evergreen-text .body-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 760px) {
  .evergreen-section {
    padding: 70px 0 5px;
  }

  .evergreen-container {
    gap: 0px;
    width: 100%;
    overflow-x: hidden;
  }

  .evergreen-image img {
    width: 90%;
    max-width: 100%;
    height: auto;
  }

  .evergreen-text {
    padding: 0 1.2rem;
    max-width: 100%;
    word-wrap: break-word;
  }

  .evergreen-text h2 {
    font-size: clamp(4.35rem, 15.7vw, 7.07rem);
    line-height: 1;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .evergreen-text .subtext {
    font-size: clamp(2.66rem, 10.67vw, 3.34rem);
    line-height: 1;
    text-align: left;
  }

  .evergreen-text .body-text {
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: left;
  }
}

/* ===============================
   Great Tales Media – Showreel Section
   =============================== */

.showreel-section {
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.showreel-container {
  width: min(95%, 1200px);
  aspect-ratio: 16 / 9;
  position: relative;
  border-radius: var(--radius-sm, 12px);
  overflow: hidden;
  box-shadow: var(--shadow-xl, 0 15px 40px rgba(0, 0, 0, 0.35));
}

.showreel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-sm, 12px);
  transition: transform 1.5s ease, filter 1.5s ease;
  filter: brightness(0.9);
}

/* Optional subtle gradient overlay */
.showreel-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(46, 29, 8, 0.25), rgba(59, 47, 24, 0.15));
  pointer-events: none;
  z-index: 1;
  border-radius: var(--radius-sm, 12px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .showreel-section {
    padding: 60px 0;
  }

  .showreel-container {
    width: 90%;
    border-radius: 10px;
  }
}

@media (max-width: 760px) {
  .showreel-section {
    padding: 50px 0;
  }

  .showreel-container {
    width: 95%;
    border-radius: 8px;
  }

  .showreel-video {
    filter: brightness(1);
  }
}

.mute-toggle {
  position: absolute;
  bottom: 20px;
  right: 25px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s ease;
}

.mute-toggle:hover {
  background: rgba(0, 0, 0, 0.7);
}