:root{

  --pn-media-contrast: 1.5;
  --pn-media-sepia: 0.03;
  --pn-media-hue: 0deg;
  --pn-media-sat: 0.6;
  --pn-media-brightness: 0.8;
  --tl-font: 'Instrument Serif', serif;
  --tl-size: clamp(2.5rem, 7vw, 3.8rem);
  --tl-weight: 400;
  --tl-color: #FFFFFF;
  --tl-gap: 0.35em;
  --tl-stagger: 600ms;
  --body-font: 'Inter', sans-serif;
  --body-weight: 500;
  --body-tracking: 0.15em;
  --tl-dur: 900ms;
  --tl-blur: 6px;

  --text-primary: #120a0a;
  --text-body: #FFFFFF;
  --text-accent: #f4b7cc;

  --link-default: #f3e1ebd7;
  --link-hover: #f3e1ebd7;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --measure: 70ch;

}

body.home {
  --text-primary: #120a0a;
  --text-accent: #120a0acf;
  --tl-color: #FFFFFF;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  animation: fadeInOverlay 0.3s ease forwards;
}

@keyframes fadeInOverlay {
  to {
    opacity: 1;
  }
}

.modal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bio-modal {
  border-radius: 16px;
  max-width: 90vw;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: modalFadeIn 0.4s ease forwards;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.bio-modal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  z-index: 0;
  border-radius: 16px;
  background:
    radial-gradient(ellipse at center, rgba(49, 9, 34, 0) 0%, rgba(232, 205, 175, 0) 0%, rgba(213, 56, 127, 0.103) 100%),
    linear-gradient(rgba(109, 8, 72, 0.571), rgba(23, 2, 15, 0.495), rgba(0, 0, 0, 0.735) 100%),
    url('images/Background/280305838-discover-beauty-earth-aerial-v.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter:
    contrast(var(--pn-media-contrast))
    brightness(var(--pn-media-brightness))
    sepia(var(--pn-media-sepia))
    hue-rotate(var(--pn-media-hue))
    saturate(var(--pn-media-sat));
  pointer-events: none;
}

.bio-modal > * {
  position: relative;
  z-index: 1;
}

.bio-modal-scroll {
  position: relative;
  z-index: 1;
  overflow-y: auto;
  max-height: 90vh;
  padding: 40px;
}

@media (min-width: 1024px) {
  .bio-modal {
    max-width: 900px;
    max-height: 85vh;
  }
  .bio-modal-scroll {
    max-height: 85vh;
  }
}

.bio-modal-close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 24px;
  transition: all 0.3s ease;
  z-index: 2002;
}

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

.bio-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.bio-modal h2 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  display: inline-block;
  width: 100%;
  padding-bottom: 20px;
}

.bio-modal h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: var(--text-accent);
  border-radius: 2px;
  opacity: 0.6;
}

.bio-modal p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
  color: var(--text-body);
  text-align: center;
  font-weight: 400;
}

.bio-modal .contact-btn {
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: fit-content;
}

.read-more-btn {
  display: inline-block;
  padding: 13px 24px;
  background: rgba(166, 140, 128, 0.15);
  border: 1px solid rgba(166, 140, 128, 0.3);
  border-radius: 12px;
  color: var(--btn-primary-bg);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  font-family: var(--body-font);
  transition: all 0.3s ease;
  margin-top: 20px;
}

.read-more-btn:hover {
  background: rgba(166, 140, 128, 0.25);
  border-color: rgba(166, 140, 128, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.read-more-btn:active {
  transform: translateY(0);
}

html {
  overflow-y: scroll;
  scrollbar-gutter: stable both-edges;
  scrollbar-width: none;
}
html::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: var(--body-font);
  font-size: 20px;
  font-weight: var(--body-weight);
  letter-spacing: var(--body-tracking);
  line-height: 1.6;
  color: var(--text-body);
}

body {
  overflow-x: hidden;
  max-width: 100vw;
  font-weight: 600;
  display: flex;
  flex-direction: column;
}

.content-frame {
  flex: 1 !important;
  padding: 20px 60px 20px 60px;
  padding-top: 70px !important;
  margin: 0 auto;
  min-width: unset;
  max-width: 1400px;
  width: 100%;
  height: auto !important;
  z-index: 2;

  border: none;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: transparent;
  box-shadow: none;

  box-sizing: border-box;
  display: block !important;
  overflow: visible;
}

body.home .content-frame {
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

body.home .content-frame,
body.work .content-frame,
body.contact .content-frame,
body.about .content-frame {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

body.home .hero {
  padding: 60px 0 80px 0;
  width: 100%;
  margin: 0;
}

body.home .hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

body.home .hero-left {
  align-items: center;
  text-align: center;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.home .contact-btn {
  margin: 0 auto;
  margin-top: 70px;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  align-self: center;
  display: block;
  text-align: center;
  width: fit-content;
}

body.home,
body.about,
body.work,
body.contact {
  display: flex;
  flex-direction: column;
  min-height: 100vh;

}

body.home .video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  object-fit: cover;

  animation: slowDrift 60s ease-in-out infinite alternate;

  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;

}

@keyframes slowDrift {
  0% {
    transform: scale(1.02) translateX(-1%);
  }
  100% {
    transform: scale(1.05) translateX(1%);
  }
}

body.about::after,
body.work::after,
body.contact::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  filter: contrast(var(--pn-media-contrast))
          brightness(var(--pn-media-brightness))
          sepia(var(--pn-media-sepia))
          hue-rotate(var(--pn-media-hue))
          saturate(var(--pn-media-sat))
          blur(0.5px);
}

body.about::after {
  background-image:
  radial-gradient(ellipse at center, rgba(49, 9, 34, 0) 0%, rgba(232, 205, 175, 0) 0%, rgba(213, 56, 127, 0.103) 120%),
  linear-gradient(rgba(199, 31, 137, 0.203), rgba(23, 2, 15, 0.601), rgba(0, 0, 0, 0.45)120%),
  url('images/Background/280305838-discover-beauty-earth-aerial-v.webp');
  background-color: #c96fb5af;
}
body.work::after {
  background-image:
  radial-gradient(ellipse at center, rgba(49, 9, 34, 0) 0%, rgba(232, 205, 175, 0) 0%, rgba(213, 56, 127, 0.103) 120%),
  linear-gradient(rgba(199, 31, 137, 0.203), rgba(23, 2, 15, 0.495), rgba(0, 0, 0, 0.735)120%),
  url('images/Background/280305705-discover-beauty-earth-aerial-v.webp');
  background-color: #c96fb5af;
}

body.contact::after {
  background-image:
  radial-gradient(ellipse at center, rgba(49, 9, 34, 0) 0%, rgba(232, 205, 175, 0) 0%, rgba(213, 56, 127, 0.103) 120%),
  linear-gradient(rgba(199, 31, 137, 0.203), rgba(23, 2, 15, 0.418), rgba(0, 0, 0, 0.628)120%),
  url('images/Background/111575168-sunset-pink-salty-syvash-lake-.webp');
  background-color: #c96fb5af;
}

@media (max-width: 767px) {
body.about::after {
  background-image:
  radial-gradient(ellipse at center, rgba(49, 9, 34, 0) 0%, rgba(232, 205, 175, 0) 0%, rgba(213, 56, 127, 0.103) 120%),
  linear-gradient(rgba(199, 31, 137, 0.203), rgba(23, 2, 15, 0.301), rgba(226, 130, 82, 0.587)120%),
  url('images/Background/Mobile/280305838-discover-beauty-earth-aerial-v.webp');
  background-color: #c96fb5af;
}
body.work::after {
  background-image:
  radial-gradient(ellipse at center, rgba(49, 9, 34, 0) 0%, rgba(232, 205, 175, 0) 0%, rgba(213, 56, 127, 0.103) 120%),
  linear-gradient(rgba(227, 88, 176, 0), rgba(42, 9, 29, 0.6), rgba(0, 0, 0, 0.385)80%),
  url('images/Background/Mobile/280305705-discover-beauty-earth-aerial-v.webp');
  background-color: #c96fb5af;
}

body.contact::after {
  background-image:
  radial-gradient(ellipse at center, rgba(49, 9, 34, 0) 0%, rgba(232, 205, 175, 0) 0%, rgba(213, 56, 127, 0.103) 120%),
  linear-gradient(rgba(199, 31, 137, 0.178), rgba(23, 2, 15, 0.632), rgba(0, 0, 0, 0.192)100%),
  url('images/Background/Mobile/111575168-sunset-pink-salty-syvash-lake-.webp');
  background-color: #c96fb5af;
}
}

@keyframes slowImageDrift {
  0% {
    transform: scale(1.02) translateX(-0.5%);
  }
  100% {
    transform: scale(1.04) translateX(0.5%);
  }
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

.content-frame, header, footer {
  position: relative;
  z-index: 1;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: transparent !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 60px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 20px;
  box-sizing: border-box;
}

.header-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;

  height: 70px;
   backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  z-index: 900;
  pointer-events: none;
}

.header-overlay::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    #642846, 20%,
    #642846, 50%,
    #642846, 80%,
    transparent 100%
  );
  box-shadow: 0 1px 3px rgba(45, 10, 25, 0.5);
  z-index: 950;
}

.logo {
  margin-left: -6px;
  flex-shrink: 0;
  margin-top: 3px;
  z-index: 1000;
}

.logo img {
  height: 46px;
  width: auto;
  aspect-ratio: 991 / 226;
  display: block;
  transition: all 0.3s ease;
}

nav {
  z-index: 1000;
  justify-self: end;
}

nav ul {
  margin: 0;
  list-style: none;
  display: flex;
  gap: 46px;
  padding: 0;
}

nav a {
  font-family: var(--body-font);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  color: var(--text-primary);
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--btn-primary-bg), var(--brand-accent));
  transition: width 0.4s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: #FFFFFF;
  text-decoration: none;
}

nav a.active {
  color: var(--btn-primary-bg);
  position: relative;
  animation: activeGlow 3s ease-in-out infinite;
}

@keyframes activeGlow {
  0%, 100% {
    text-shadow: 0 0 5px rgba(166, 140, 128, 0.3);
  }
  50% {
    text-shadow: 0 0 8px rgba(166, 140, 128, 0.5);
  }
}

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

nav a.active:hover::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--btn-primary-bg), var(--brand-accent));
  border-radius: 1px;
}

a {
  color: var(--link-default);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
#sound-word:focus-visible {
  outline: 1px solid rgba(244, 183, 204, 0.85);
  outline-offset: 4px;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px 80px 20px;
  min-height: 100vh;
  position: relative;
}

.hero-content,
.hero-left,
.hero-right {
  max-width: 100%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding-right: 20px;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero h2 {
  font-size: 30px;
  font-weight: 500;
}

.hero h2.tagline {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.parallax-layer {
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.parallax-slow {
  transform: translateY(var(--parallax-offset, 0px));
}

.parallax-medium {
  transform: translateY(calc(var(--parallax-offset, 0px) * 0.5));
}

@media (pointer: coarse) {
  .parallax-layer,
  .parallax-slow,
  .parallax-medium {
    --parallax-offset: 0px !important;
    transform: none !important;
    transition: none !important;
  }
}

.hero {
  perspective: 1000px;
}

.hero-left,
.hero-right {
  perspective-origin: center;
}

.hero h2 {
  font-size: 30px;
  font-weight: 500;
}

.hero p {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 2px;
}

section {
  padding: 20px 0;
  text-align: center;
}

h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-family: var(--body-font);
}

h2 {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  font-weight: 500;
  letter-spacing: var(--body-tracking);
  margin-bottom: 1.5rem;
  font-family: var(--body-font);
  color: var(--text-body);
}

.tagline {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.01em;
  opacity: 0.9;
}

.hero .contact-btn {
  margin: 16px auto 24px auto;
  display: inline-block;
}

@media (min-width: 768px) {
  body.home .content-frame {
    display: flex !important;
    flex-direction: column;
  }

  body.home .hero {
    flex: 1;
    display: flex;
    justify-content: center;
    min-height: auto;
    padding: 36px 0 12px 0;
  }

  body.home .hero-content {
    gap: 28px;
    transform: translateY(-2vh);
  }

  body.home .contact-btn {
    margin: 6% auto 0 auto;
  }

  body.home .bottom-text-glass {
    margin: 0 auto 8px auto;
  }
}

@media (max-width: 767px) {
  .hero .contact-btn {
    margin: 15px auto 120px auto;
    position: relative;
    z-index: 100;
  }

  body.home .hero {
    padding: 100px 0 60px 0;
  }

  body.home .hero-content {
    gap: 80px;
  }

  .hero h2.tagline {
    margin-top: 5px;
    margin-bottom: 15px;
  }

  .content-frame {
    padding-bottom: 20px !important;
  }
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .btn-primary {
  margin-top: 0px;
}
.btn-primary {
  font-size: 15px !important;
  font-weight: 600 !important;
  position: relative;
  overflow: hidden;
}

.contact-btn:hover,
.contact-btn:focus,
.btn-primary:hover,
.btn-primary:focus,
.read-more-btn:hover,
.read-more-btn:focus {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.btn-primary:hover,
.contact-btn:hover,
.read-more-btn:hover {
  background-color: var(--btn-primary-hover);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.film-strip {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 20px auto !important;
  padding: 18px 0 0px 0;
  max-width: 1400px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  backdrop-filter: blur(20px) saturate(120%);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  justify-content: center;
}

.film-strip:hover {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.poster-track {
  display: flex;
  animation: scroll-posters 60s linear infinite;
  --scroll-width: calc(-100% / 2);
  padding: 0;
  border: none;
  margin: 0;
  width: max-content;
  height: auto;
  align-items: center;
  min-height: 280px;
}

.poster {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  transition: transform 0.3s ease;
  cursor: pointer;
  margin-right: 16px;
  width: 180px;
  height: 260px;
  overflow: hidden;
  border-radius: 10px;
  align-self: center;
}

.poster:last-child {
  margin-right: 0;
}
.poster img {
  width: 180px;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  filter: contrast(var(--pn-media-contrast))
          brightness(var(--pn-media-brightness))
          sepia(var(--pn-media-sepia))
          hue-rotate(var(--pn-media-hue))
          saturate(var(--pn-media-sat));
}

.poster-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.75);
  color: var(--text-accent);
  padding: 10px 8px 8px 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 12px;
  text-align: center;
  border-radius: 0 0 10px 10px;
  max-width: 100%;
  overflow-wrap: break-word;
  z-index: 2;
}

.poster:hover {
  transform: scale(1.05);
  z-index: 2;
}

.poster:hover .poster-overlay {
  opacity: 1;
}

@keyframes scroll-posters {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(var(--scroll-width, -50%));
  }
}

.content-frame section,
section {
  margin-top: 1em;
  padding-top: 0;
}

body.work section:first-of-type {
  max-width: none;
  margin: 0;
  width: 100%;
}
body.work section {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.full-bio__card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0px;
  height: auto;
}

.social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 16px;
  margin-top: -12px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #ffffff;
  transition: color 160ms ease, transform 160ms ease;
  text-decoration: none;
}

.social-icon:hover {
  color: #6b4343;
  transform: translateY(-2px);
}

.full-bio__card .section-card--awards {
  width: 100%;
  margin-top: 4px;
  padding-top: 14px;
  min-height: 300px !important;
  flex-grow: 1;
}

.full-bio__card .section-card--awards .section-card__right {
  background: transparent;
  padding: 0;
  border-radius: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.section-card--awards .section-card__right {
  background: rgba(255,255,255,0.03);
  padding: 16px;
  border-radius: 8px;
}
.full-bio__card .section-card--awards .section-card__right h2{
  margin: 0 0 8px 0;
  font-size: 1.3rem !important;
  font-weight: 600 !important;
  letter-spacing: var(--body-tracking);
  font-family: var(--body-font);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.full-bio__card .section-card--awards .section-card__right h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--text-accent);
  border-radius: 2px;
  opacity: 0.6;
}

.section-card--awards .section-card__right h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  font-family: var(--body-font);
  letter-spacing: var(--body-tracking);
}

.section-card--awards .section-card__right h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--text-accent);
  border-radius: 2px;
  opacity: 0.6;
}
.academy-marker {
  display: inline-flex;
  align-items: center;
  margin-right: 0.45em;
  transform: translateY(-0.02em);
}

.academy-marker::before {
  content: "▲";
  color: #D4AF37;
  font-size: 0.58em;
  line-height: 1;
}

.section-card--awards .section-card__right {
  text-align: center;
}

.section-card--awards .bio-bullets {
  text-align: center;
  display: inline-block;
  padding-left: 0;
}

.team-members-full {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: stretch;
}

.team-member-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  height: 100%;
  align-self: stretch;
}

.team-member-card .full-bio__card {
  max-width: 100%;
  width: 100%;
  min-height: 950px;
  flex: 1;
}

.team-member-card .read-more-btn {
  margin-top: 0;
}

@media (max-width: 1024px) {
  .team-members-full {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }

  .team-member-card .full-bio__card {
    min-height: 0;
  }

  .full-bio__photo {
    width: clamp(210px, 34vw, 250px);
    height: clamp(210px, 34vw, 250px);
  }
}

@media (max-width: 767px) {
  .team-members-full {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .team-member-card {
    gap: 12px;
  }
  .team-member-card .full-bio__card {
    max-width: 100%;
    padding: 18px 10px;
    background: linear-gradient(180deg, rgba(30, 24, 20, 0.4), rgba(30, 24, 20, 0.3)) !important;
  }
  .full-bio__role {
    font-size: 0.75rem;
  }
  .section-card__right h2 {
    font-size: 1.1rem;
  }
  .full-bio__card .section-card--awards .section-card__right h2 {
    font-size: 1.1rem !important;
  }
}

.full-bio__title {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 8px;
}

.full-bio__title h1 {
  font-size: 2rem;
  margin-top: 10px;
  margin: 0 0 8px 0;
  color: #FFFFFF;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.full-bio__role {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  text-align: center;
}

.full-bio__photo {
  width: 250px;
  height: 250px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 38%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  filter:
    contrast(var(--pn-media-contrast))
    brightness(var(--pn-media-brightness))
    sepia(var(--pn-media-sepia))
    hue-rotate(var(--pn-media-hue))
    saturate(var(--pn-media-sat));
  margin: 0 auto;
  margin-top: 0;
  display: block;
}

.full-bio__photo--leah {
  object-position: center 34%;
}

.section-card__right h2 {
  margin-top: 0px;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.section-card__right p {
  line-height: 1.7;
  font-size: 1rem;
  color: var(--tl-color);
  max-width: none;
  width: 100%;
  margin: 0;
  margin-top: 0px;
  background: rgba(30, 24, 20, 0.16);
  border-radius: 18px;
  padding: 20px 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  box-sizing: border-box;

}
.section-card__right {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-card__right h2 {
  text-align: center;
  color: #FFFFFF;
  font-family: var(--body-font);
  font-weight: 500;
  letter-spacing: var(--body-tracking);
}

.section-card__right .bio-bullets {
  text-align: center;
  display: inline-block;
  list-style: none;
  padding-left: 0;
  font-family: var(--body-font);
  font-weight: 500;
  letter-spacing: var(--body-tracking);
  font-size: 0.95rem;
}

.section-card--awards .section-card__right {
  text-align: center;
}

.contact-wrap {
  padding: 40px 0;
  margin: 0;
  width: 100%;
}

.contact-card {
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
  border: none;
  box-shadow: none;
  width: 100%;
  padding: 0;
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10px !important;
  align-items: start;
  max-width: none;
  width: 100%;
}

.contact-form {
  max-width: 500px;
  margin-right: 0;
  margin-left: auto;
  padding: 18px 24px;
  text-align: left;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: var(--text-body);
  border: 1px solid transparent;
  margin-top: 55px !important;
  position: relative;
}

.contact-form::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  pointer-events: none;
  z-index: 2;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  padding: 14px 0;
  font-size: 1rem;
  margin-bottom: 18px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.6);
  backdrop-filter: none;
  font-family: var(--body-font);
  font-weight: var(--body-weight);
  letter-spacing: var(--body-tracking);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--text-accent);
  box-shadow: none;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 1px solid rgba(244, 183, 204, 0.85);
  outline-offset: 4px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.turnstile-widget {
  display: block;
  min-height: 65px;
  margin: 4px 0 18px;
  max-width: 100%;
  overflow: hidden;
}

.form-status {
  min-height: 1.4em;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.form-status.success {
  color: #f4b7cc;
}

.form-status.error {
  color: #ffd1d1;
}

.contact-form button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 10px;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.contact-info {
  text-align: left;
  color: var(--tl-color);

}

.contact-photo {
  margin-top: 30px;
  width: 85%;
  max-width: 300px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.8) contrast(1.1) hue-rotate(-5deg) saturate(0.7);
}

.contact-intro {
  margin-top: 50px !important;
  margin-bottom: 20px;
  line-height: 1.6;
  font-family: var(--body-font);
  font-weight: var(--body-weight);
  letter-spacing: var(--body-tracking);
  color: var(--text-body);
  font-size: 1rem;
  text-align: left;
}

.contact-title {
  font-family: var(--body-font);
  font-weight: var(--tl-weight);
  line-height: 1.1;
  font-size: clamp(2.2rem, 5vw, 3rem) !important;
  color: var(--tl-color);
  margin: 0;
  margin-top: 70px !important;
  letter-spacing: 0.01em;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  body.contact .content-frame {
    display: flex !important;
    flex-direction: column;
    padding-bottom: 8px;
  }

  body.contact .contact-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 10px 0 8px;
  }

  body.contact .contact-card {
    width: 100%;
  }

  body.contact .contact-grid {
    align-items: center;
  }

  body.contact .contact-wrap .contact-title {
    margin-top: 0 !important;
    font-size: clamp(2rem, 4.4vw, 2.75rem) !important;
  }

  body.contact .contact-intro {
    margin-top: 28px !important;
    margin-bottom: 14px;
    line-height: 1.45;
  }

  body.contact .contact-photo {
    margin-top: 18px;
    max-width: clamp(190px, 24vh, 260px);
  }

  body.contact .contact-form {
    margin-top: 0 !important;
    padding: 14px 22px;
  }

  body.contact .contact-form input,
  body.contact .contact-form textarea {
    padding: 10px 0;
    margin-bottom: 12px;
  }

  body.contact .contact-form textarea {
    min-height: 90px;
  }

  body.contact .contact-form button {
    padding: 12px 24px;
  }
}

.contact-intro-section {
  opacity: 0;
}

.contact-btn,
.btn-primary,
.read-more-btn {
  margin: 15px 0 15px 0;
  display: inline-block;
  padding: 16px 32px;
  font-size: 14px;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-align: center;
  font-family: var(--body-font);

  background: rgba(166, 140, 128, 0.15);
  color: var(--btn-primary-bg);
  border: 1px solid rgba(166, 140, 128, 0.3);
  backdrop-filter: blur(8px);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.read-more-btn {
  padding: 13px 24px;
  margin-top: 20px;
  cursor: pointer;
  appearance: none;
}

.contact-btn::before,
.btn-primary::before,
.read-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}

.contact-btn:hover::before,
.btn-primary:hover::before,
.read-more-btn:hover::before {
  left: 100%;
}

.contact-btn:hover,
.btn-primary:hover,
.read-more-btn:hover {
  background: rgba(166, 140, 128, 0.25);
  border-color: rgba(166, 140, 128, 0.5);
  color: var(--btn-primary-bg);
  box-shadow:
    0 3px 12px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

body.work .contact-btn {
  margin-top: 20px;
  font-size: 15px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  appearance: none;
  -webkit-appearance: none;
}

.mobile-menu-toggle .hamburger {
  display: flex;
  flex-direction: column;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-primary);
  margin: 3px 0;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 997;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(30, 24, 20, 0.95);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  z-index: 998;
  padding: 100px 40px 40px;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
}

.mobile-nav-menu.open {
  right: 0;
}

.mobile-nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.mobile-nav-menu a {
  color: #f3e1ebd7;
  position: relative;
  font-size: 1.7rem;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
  color: #FFFFFF;
  font-size: 1.9rem;
}

.mobile-nav-menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 8px;
  height: 2px;
  background: linear-gradient(90deg, var(--btn-primary-bg), var(--brand-accent));
  width: 0;
  transition: width 0.3s;
  border-radius: 1px;
}

.mobile-nav-menu a:hover::after,
.mobile-nav-menu a:focus::after {
  width: 100%;
}

@media (max-width: 1024px) {
  body.home .video-background {

    appearance: none;
    -webkit-appearance: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);

    object-position: 65% center;
    background-image: url("videos/mobile/Pink Lake video.webp");
    background-size: cover;
    background-position: 65% center;
    background-repeat: no-repeat;
  }
}

@media (max-width: 767px) {
  body.about::after,
  body.work::after,
  body.contact::after {

    background-attachment: scroll !important;
    will-change: auto;
  }
}

@media (max-width: 767px) {
  :root {
    --tl-size: 2.5rem;
  }

  .parallax-layer,
  .parallax-slow,
  .parallax-medium {
    --parallax-offset: 0px !important;
    transform: none !important;
    transition: none !important;
  }

  .tagline-fade,
  .fade-in-after-tagline {
    transform: none !important;
  }

  .content-frame {
    padding-top: 70px !important;
    padding: 20px 15px 20px 15px;
    padding-top: 70px !important;
    padding-bottom: 20px !important;
    margin: 0;
    border: none;
    border-radius: 0;
    min-width: unset !important;
    width: 100%;
    height: auto;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    overflow-x: hidden;
    position: relative;
  }

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
  padding: 10px 15px;
  background: transparent !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-sizing: border-box;
}
  .header-overlay {
    height: 70px;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
  }

  .logo img {
    height: 36px;
    margin-left: 0px;
  }

  .mobile-menu-toggle {
    justify-self: end;
    display: flex;
  }

  header > nav {
    display: none !important;
  }

  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }

  .hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 10px;
  }

  .hero-content {
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding: 0;
    width: 100%;
    text-align: center;
  }

  .hero-left {
    align-items: center;
    text-align: center;
    padding: 0;
    width: 100%;
    order: 1;
  }

  .hero-right {
    order: 2;
    width: 100%;
  }

  body.home .hero {
    justify-content: flex-start;
    padding-top: 120px;
    padding-bottom: 20px;
    min-height: auto;
  }

  body.home .contact-btn {
    padding: 12px 24px;
    font-size: 14px;
    margin: 0;
    margin-top: 60px !important;
  }

@media (max-width: 767px) and (min-height: 750px) {
  body.home .hero {
    justify-content: center;
    padding-top: 0;
    padding-bottom: 18vh;
  }
}

  .contact-wrap {
    position: relative;
    z-index: 2;
  }

  .about-body-content {
    grid-template-columns: 1fr !important;
    gap: 20px;
    width: 100%;
    padding: 0;
  }

  .about-body-left {
    width: 100%;
    padding: 0;
  }

  .about-body-right {
    width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .contact-card {
    padding: 0 !important;
    position: relative;
    z-index: 2;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
  }

  .contact-info {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: visible;
    box-sizing: border-box;
  }

  .contact-photo {
    width: 70%;
    max-width: 220px;
    aspect-ratio: 1 / 1;
    margin: 20px auto 0;
  }

  .contact-intro-section {
    width: 100%;
  }

  .contact-intro {
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    padding: 0 0 !important;
  }

  .film-strip {
    margin: 20px -15px;
    padding: 12px 0;
    display: flex;
    align-items: center;
    min-height: 0;
    height: auto;
    padding-bottom: 0 !important;
  }

  .poster-track {
    align-items: center;
    min-height: 260px;
    height: auto;
    padding: 0;
    margin: 0;
  }
  .poster,
  .poster img {
    width: 170px;
    height: 240px;
  }
  .poster {
    margin-bottom: 0;
  }

  .poster-overlay {
    font-size: 0.68rem;
    padding-top: 22px !important;
    padding-bottom: 10px !important;
    min-height: 48px;
    box-sizing: border-box;
  }

  .poster.active .poster-overlay {
    opacity: 1;
  }

  .work-hero-content {
    grid-template-columns: 1fr !important;
    gap: 20px;
    text-align: center;
  }

  .work-hero-left {
    order: 1;
    align-items: center;
    text-align: center;
    padding: 0;
    width: 100%;
  }

  .work-hero-right {
    order: 2;
    width: 100%;
    justify-content: center !important;
    align-items: center;
    text-align: center;
  }

  .work-hero-right p {
    max-width: 100% !important;
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .work-heading {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: center !important;
    font-size: 2.2rem !important;
    margin-top: 30px !important;
  }

  .tagline-typed {
    font-size: 3.2rem !important;
    text-align: center;
    line-height: 1.2;
    margin-top: 50px !important;
    margin-bottom: 24px !important;
  }
  .contact-title {
    text-align: center;
    margin-top: 25px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    font-size: 2rem !important;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
  }
  .contact-intro {
    text-align: center;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box;
    font-family: var(--body-font);
    font-weight: var(--body-weight);
    letter-spacing: var(--body-tracking) !important;
    font-size: 1rem;
  }

  .contact-intro a {
    white-space: nowrap;
  }
  .contact-form {
    background: transparent !important;
    padding: 18px 15px !important;
    margin: 20px 0 0 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    display: block !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    border: none !important;
    box-sizing: border-box !important;
  }

  .contact-form::after {
    display: none;
  }

  .contact-form input,
  .contact-form textarea {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
    padding: 14px 0 !important;
  }

  .contact-form button,
  .btn-primary {
    background: rgba(166, 140, 128, 0.15) !important;
    border: 1px solid rgba(166, 140, 128, 0.3) !important;
    color: var(--btn-primary-bg) !important;
    backdrop-filter: blur(8px) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  }

    .about-body-content {
    grid-template-columns: 1fr !important;
    gap: 10px;
    text-align: center;
  }

  .about-body-left {
    order: 1;
    align-items: center;
    text-align: center;
    padding: 0;
    width: 100%;
    margin-bottom: 0;
  }

  .about-body-right {
    order: 2;
    width: 100%;
    justify-content: center !important;
    align-items: center;
    text-align: center;
    margin-top: -20px !important;
  }

  .about-body-right p {
    max-width: 100% !important;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    margin-top: 0;
  }

  .about-heading {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: center !important;
    font-size: 3.0rem !important;
    margin-top: 30px !important;
    margin-bottom: 0 !important;
  }
}

@media (max-width: 480px) {
  .content-frame {
    padding: 18px 20px 18px 20px;
    padding-bottom: 20px !important;
    width: 100%;
    min-height: auto;
    height: auto;
    max-width: 100%;
  }

  .tagline-typed {
    margin-top: 70px !important;
    margin-bottom: 20px !important;
    font-size: 2rem !important;
  }

  .mobile-menu-toggle {
    display: flex;
  }
  header {
    padding: 10px 15px;
  }

  .logo img {
    height: 42px;
  }

  .film-strip {
    margin: 20px -12px;
    padding: 10px 0;
    padding-bottom: 0 !important;
  }
  .poster-track {
    min-height: 220px;
    height: auto;
  }
  .poster,
  .poster img {
    width: 140px;
    height: 210px;
  }
  .poster-overlay {
    font-size: 0.56rem;
    font-weight: 650;
    padding-top: 18px !important;
    padding-bottom: 8px !important;
  }

  .work-hero-right p {
    font-size: 0.95rem;
  }

  .work-heading {
    font-size: 2.2rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .about-body-right p {
    font-size: 0.95rem;
    text-align: center !important;
    margin-top: 0 !important;
  }

  .about-heading {
    font-size: 2.4rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 0 !important;
  }

  .section-card__right p {
    background: rgba(30, 24, 20, 0.35) !important;
  }

  .contact-form {
    background: linear-gradient(180deg, rgba(30, 24, 20, 0.4), rgba(30, 24, 20, 0.3)) !important;
  }
}

@media (max-width: 767px) {
  body::before {
    display: none;
  }

  .tagline-typed {
    font-size: 2.5rem !important;
  }
}

@media (max-width: 767px) {
  body.menu-open {
    overflow: hidden;
    height: 100dvh;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .content-frame {
    padding: 20px 30px;
    padding-top: 78px !important;
  }

  header {
    padding: 10px 30px;
  }

  nav ul {
    gap: 26px;
  }

  .parallax-layer,
  .parallax-slow,
  .parallax-medium {
    --parallax-offset: 0px !important;
    transform: none !important;
    transition: none !important;
  }

  body.home {
    min-height: 100svh;
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }

  body.home .content-frame {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column;
    overflow: visible;
    padding-bottom: 0 !important;
  }

  body.home .hero {
    flex: 1;
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  body.home .bottom-text-glass {
    margin: 4px auto 6px auto;
    font-size: 0.7rem;
    padding: 0.4em 1em;
  }

  body.home .site-footer {
    flex-shrink: 0;
  }

  .about-body-content,
  .work-hero-content {
    gap: 36px;
  }

  .contact-grid {
    gap: 30px !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  body.contact .contact-wrap {
    align-items: flex-start;
    padding-top: clamp(22px, 4vh, 54px);
    padding-bottom: clamp(28px, 5vh, 64px);
  }

  body.contact .contact-card {
    margin-left: auto;
    margin-right: auto;
    max-width: none;
  }

  body.contact .contact-grid {
    grid-template-columns: 1fr;
    gap: clamp(26px, 4vh, 44px) !important;
  }

  body.contact .contact-info {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(180px, 28vw, 240px);
    column-gap: clamp(24px, 4vw, 42px);
    align-items: center;
  }

  body.contact .contact-title {
    grid-column: 1 / -1;
    max-width: 720px;
  }

  body.contact .contact-intro {
    margin-top: 22px !important;
    margin-bottom: 0;
  }

  body.contact .contact-photo {
    width: 100%;
    max-width: none;
    margin: 22px 0 0;
  }

  body.contact .contact-form {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: clamp(18px, 3vw, 28px) clamp(24px, 4vw, 36px);
  }

  body.contact .contact-form input,
  body.contact .contact-form textarea {
    padding: 13px 0;
    margin-bottom: 16px;
  }

  body.contact .contact-form textarea {
    min-height: clamp(140px, 16vh, 190px);
  }
}

@media (max-width: 600px) {
  body.work {
    --tl-stagger: 30ms !important;
  }
  body.work section {
    text-align: center;
  }
  body.work section p {
    text-align: center;
  }
  .contact-intro {
    margin-top: 40px !important;
    font-size: 0.95rem;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  html, body {
    font-size: 18px;
  }

  h1 {
    font-size: clamp(2.2rem, 3.6vw, 3rem);
  }

  h2 {
    font-size: clamp(1.9rem, 3vw, 2.35rem);
  }

  nav a {
    font-size: 0.92rem;
    letter-spacing: 0.08em;
  }

  .tagline-typed {
    font-size: clamp(2.4rem, 5.2vw, 3.2rem) !important;
    line-height: 1.15;
  }

  .work-heading,
  body.about .about-heading,
  .contact-title {
    font-size: clamp(2rem, 4.4vw, 2.6rem) !important;
  }

  .contact-btn,
  .btn-primary {
    font-size: 13px;
    padding: 14px 26px;
  }
}

@media (max-width: 767px) {
  html, body {
    font-size: 17px;
  }

  .mobile-nav-menu a {
    font-size: 1.7rem;
    letter-spacing: 0.08em;
  }

  .mobile-nav-menu a:hover,
  .mobile-nav-menu a.active {
    font-size: 1.9rem;
    font-weight: 700;
  }

  body.home .tagline-typed {
    font-size: clamp(2.2rem, 9.8vw, 2.85rem) !important;
    font-weight: 600;
    line-height: 1.15;
  }

  body.home #sound-word {
    font-weight: 600;
  }

  .work-heading,
  .about-heading,
  .contact-title {
    font-size: clamp(1.85rem, 7vw, 2.25rem) !important;
  }

  .contact-btn,
  .btn-primary,
  .read-more-btn {
    font-size: 13px;
    padding: 13px 24px;
  }

  .about-body-right p,
  .work-hero-right p,
  .contact-intro {
    font-family: var(--body-font);
    font-size: 1rem;
    font-weight: var(--body-weight);
    letter-spacing: var(--body-tracking);
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  html, body {
    font-size: 16px;
  }

  .mobile-nav-menu a {
    font-size: 1.7rem;
  }

  .mobile-nav-menu a:hover,
  .mobile-nav-menu a.active {
    font-size: 1.9rem;
    font-weight: 700;
  }

  .contact-btn,
  .btn-primary,
  .read-more-btn {
    font-size: 12px;
    padding: 12px 20px;
  }

  .about-body-right p,
  .work-hero-right p,
  .contact-intro {
    font-size: 0.95rem;
  }
}

.hero-content,
.hero-left,
.hero-right,
.contact-grid {
  max-width: 100%;
  overflow: hidden;
}

body, html {
  overflow-x: hidden;
  max-width: 100vw;
}

* {
  box-sizing: border-box;
}

@keyframes readingReveal {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.tagline-typed {
  font: var(--tl-weight) var(--tl-size)/1.1 var(--body-font);
  color: var(--tl-color);
  letter-spacing: 0.01em;
  margin: 0;
  white-space: wrap;
  font-weight: 500;
}

.tagline-typed .word {
  display: inline-block;
  margin-right: var(--tl-gap);
  opacity: 0;
  filter: blur(var(--tl-blur));
  transform: translateY(0.25em);
  transition:
    opacity var(--tl-dur) ease,
    filter var(--tl-dur) ease,
    transform var(--tl-dur) ease;
}

.tagline-typed .word.in {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

#sound-word.gold {
  color: #230a16 !important;
}

@keyframes cinematicFade {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInContent {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.tagline-fade {
  font-family: var(--body-font);
  font-weight: var(--tl-weight);
  font-size: clamp(2.2rem, 5vw, 3rem);
  line-height: 1.1;
  color: var(--tl-color);
  letter-spacing: -0.02em;
  margin: 0;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  opacity: 0;
  display: block;
  width: 100%;
  box-sizing: border-box;
  animation: cinematicFade 1.4s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
  animation-delay: 0.3s;
  animation-iteration-count: 1;
  will-change: opacity, transform;
}

.fade-in-after-tagline {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInContent 1s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
  animation-delay: 1.4s;
  animation-iteration-count: 1;
}

@media (prefers-reduced-motion: reduce) {
  .tagline-typed .word {
    transition: none !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .tagline-fade {
    animation: none !important;
    opacity: 1 !important;
  }

  #sound-word.pulse .sound-icon-letter {
    animation: none !important;
  }
}
.hero {
  min-height: 80vh;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 10;
  padding-bottom: 10;
}

.about-body-content {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
  max-width: none;
  width: 100%;
  margin-bottom: 0px;
}

.about-body-left {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 0;
  padding-right: 0;
}

.about-body-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.about-body-right p {
  font-size: 1rem;
  font-family: var(--body-font);
  font-weight: var(--body-weight);
  letter-spacing: var(--body-tracking);
  color: var(--text-body);
  max-width: none;
  width: 100%;
  margin: 0;
  text-align: left;
  box-sizing: border-box;
  margin-top: 30px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

body.about .about-heading {
  font-family: var(--body-font);
  font-weight: var(--tl-weight);
  line-height: 1.1;
  font-size: clamp(2.2rem, 5vw, 3rem) !important;
  color: var(--text-body);
  margin: 0;
  margin-top: 30px;
  letter-spacing: 0.01em;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  text-align: left;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

body.work .work-heading,
body.contact .contact-title {
  font-family: var(--body-font);
  font-weight: var(--tl-weight);
  line-height: 1.1;
  font-size: clamp(2.2rem, 5vw, 3rem) !important;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

#sound-word {
  display: inline-block;
  color: #230a16;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transform-origin: 50% 58%;
  transition:
    color 0.35s ease,
    text-shadow 0.35s ease,
    transform 0.45s cubic-bezier(.22,.61,.36,1);
  cursor: pointer;
  opacity: 0;
  filter: blur(6px);
  transform: translateY(0.25em);
  will-change: transform;
}

#sound-word.in {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition:
    color 0.35s ease,
    text-shadow 0.35s ease,
    opacity 0.7s ease,
    filter 0.7s ease,
    transform 0.45s cubic-bezier(.22,.61,.36,1);
}

.sound-icon-letter {
  display: inline-block;
  width: 0.68em;
  height: 0.68em;
  margin: 0 0.01em;
  vertical-align: -0.08em;
  background-image: url("images/Logo/Pink Noise_icon.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.72;
  transform: scale(0.96);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

#sound-word.gold .sound-icon-letter {
  opacity: 0.9;
  transform: scale(1);
}

#sound-word:hover .sound-icon-letter,
#sound-word:focus .sound-icon-letter {
  opacity: 0.95;
  transform: scale(1.04);
}

@keyframes soundIconPulse {
  0%, 100% {
    opacity: 0.72;
    transform: scale(0.96);
  }
  45% {
    opacity: 0.95;
    transform: scale(1.14);
  }
}

#sound-word.pulse .sound-icon-letter {
  animation: soundIconPulse 1.4s ease 1;
}

#sound-word:hover,
#sound-word:focus {
  color: #230a16 !important;
  text-shadow: 0 4px 16px rgba(35,10,22,0.18);
}

@media (hover: hover) and (pointer: fine) {
  #sound-word.in:hover,
  #sound-word.in:focus {
    animation: soundHoverPulse 1.45s ease-in-out infinite;
    transform: translateY(0) scale(1);
  }
}

@keyframes soundHoverPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(0) scale(1.045);
  }
}

#sound-word.mobile-attention,
#sound-word.desktop-attention {
  animation: soundMobileAttention 2.6s ease-in-out 1;
}

#sound-word.mobile-attention .sound-icon-letter,
#sound-word.desktop-attention .sound-icon-letter {
  animation: soundMobileIconAttention 2.6s ease-in-out 1;
}

@keyframes soundMobileAttention {
  0%, 34%, 68%, 100% {
    transform: translateY(0) scale(1);
  }
  17%, 51% {
    transform: translateY(0) scale(1.045);
  }
}

@keyframes soundMobileIconAttention {
  0%, 34%, 68%, 100% {
    opacity: 0.9;
    transform: scale(1);
  }
  17%, 51% {
    opacity: 0.96;
    transform: scale(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  #sound-word.in:hover,
  #sound-word.in:focus,
  #sound-word.desktop-attention,
  #sound-word.mobile-attention,
  #sound-word.desktop-attention .sound-icon-letter,
  #sound-word.mobile-attention .sound-icon-letter {
    animation: none !important;
    transform: none !important;
  }

  #sound-word:hover .sound-icon-letter,
  #sound-word:focus .sound-icon-letter {
    transform: none !important;
  }
}

@keyframes soundPulse {
  0%   { color: #230a16; }
  40%  { color: #230a16; }
  60%  { color: #230a16; }
  100% { color: #230a16; }
}
@keyframes soundShake {
  10%, 90% { transform: translateX(-1px);}
  20%, 80% { transform: translateX(2px);}
  30%, 50%, 70% { transform: translateX(-3px);}
  40%, 60% { transform: translateX(3px);}
  0%, 100% { transform: translateX(0);}
}

#sound-word.pulse {
  animation:
    soundPulse 1.8s cubic-bezier(.36,.07,.19,.97) 1,
    soundShake 0.82s cubic-bezier(.36,.07,.19,.97) 1;
}
.bottom-text-glass {
  position: relative;
  left: 0;
  right: 0;
  bottom: auto;
  margin: -20px auto 0 auto;
  width: fit-content;
  max-width: 90vw;
  color: var(--tl-color);
  text-align: center;
  padding: 0.7em 1.5em;
  font-size: 0.8rem;
  font-weight: 200;
  letter-spacing: 0.01em;
  z-index: 1000;
  opacity: 0.95;
}

@media (max-width: 767px) {
  body.home .content-frame {
    display: flex !important;
    flex-direction: column;
  }

  body.home .hero {
    flex: 1;
  }

  body.home .bottom-text-glass {
    margin: auto auto 0px auto;
  }
}

@media (max-width: 600px) {
  .bottom-text-glass {
    font-size: 0.65rem;
    padding: 0.3em 0.3em;
    bottom: 0;
    max-width: 95vw;
    line-height: 1.3;
    z-index: 101;
  }

  body.home .hero-content {
    gap: 80px;
  }

  body.home .hero {
    padding: 100px 0 10px 0;
  }

  .hero h2.tagline {
    margin-top: 5px;
    margin-bottom: 15px;
  }
}

.work-hero {
  width: 100%;
  padding: 0 0 0 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.work-hero-content {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
  max-width: none;
  width: 100%;
}

.work-hero-left {
  flex: 1;
  display: flex;
  align-items: flex-start;
  text-align: left;
  padding-left: 0;
  margin-left: 0;
}

.work-hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 0px;
}

.work-hero-left h1,
.work-heading {
  margin-left: 0;
  margin-right: 0;
  margin-top: 60px;
}

.work-hero-right p {
  font-size: 1rem;
  font-family: var(--body-font);
  font-weight: var(--body-weight);
  letter-spacing: var(--body-tracking);
  color: var(--tl-color);
  max-width: none;
  width: 100%;
  margin: 0;
  margin-top: 0px;
  text-align: left;
  box-sizing: border-box;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.highlight-word {
  color: var(--text-accent);
  font-weight: 600;
  transition: color 0.3s ease;
}

.highlight-word a {
  color: inherit;
}

.highlight-word a:hover {
  color: inherit;
  opacity: 0.8;
  text-decoration: underline;
}

.bio-small-text {
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.6);
}

.bio-bullets .highlight-word {
  color: #FFFFFF;
}

.our-services {
  margin: 0px 0 20px 0;
  text-align: center;
  width: 100%;
  max-width: 1200px;
}

.our-services h2 {
  font-size: 2.2rem;
  font-weight: 500;
  font-family: var(--body-font);
  color: var(--tl-color);
  margin-bottom: 50px;
  letter-spacing: var(--body-tracking);
  position: relative;
  display: inline-block;
  width: 100%;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.our-services h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: var(--text-accent);
  border-radius: 2px;
  opacity: 0.6;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  text-align: left;
}

.service-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  padding: 20px 0;
  color: var(--tl-color);
  font-size: 1.1rem;
  font-weight: 500;
  font-family: var(--body-font);
  letter-spacing: var(--body-tracking);
  transition: color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.service-title {
  font-size: 1.1rem;
  font-weight: 500;
  font-family: var(--body-font);
  letter-spacing: var(--body-tracking);
  flex-shrink: 0;
}

.service-desc {
  font-size: 0.75rem;
  font-weight: 400;
  font-family: var(--body-font);
  letter-spacing: var(--body-tracking);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-align: right;
  flex-grow: 1;
}

.service-item:hover {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  transform: none;
}

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

@media (max-width: 767px) {
  .our-services {
    margin: 40px 0 40px 0;
  }

  .our-services h2 {
    font-size: 1.8rem;
    margin-bottom: 35px;
  }

  .services-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }

  .service-item {
    padding: 15px 0;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .service-desc {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .our-services {
    margin: 30px 0 30px 0;
  }

  .our-services h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .services-list {
    gap: 15px;
  }

  .service-item {
    padding: 20px 15px;
    font-size: 0.95rem;
  }
}

@media (max-width: 900px) {
  .work-hero-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    align-items: center;
  }
  .work-hero-left, .work-hero-right {
    justify-content: center;
    align-items: center;
  }
}

.site-footer {
  padding: 6px 30px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  box-sizing: border-box;
}

.site-footer p {
  margin: 0;
  font-size: 0.60rem;
  color: #f3e1ebd7;
  font-family: var(--body-font);
  font-weight: var(--body-weight);
  letter-spacing: 0.11em;
}

@media (max-width: 767px) {
  body.home,
  body.about,
  body.work,
  body.contact {
    display: block;
    min-height: auto;
  }

  .content-frame {
    flex: none !important;
    display: block !important;
    min-height: 0 !important;
  }

  body.home {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
  }

  body.home .content-frame {
    flex: 1 !important;
  }

  body.home .site-footer {
    margin-top: auto;
  }

  .site-footer {
    position: static !important;
    padding: 14px 18px;
    margin-top: 0;
  }

  .site-footer p {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    line-height: 1.35;
  }
}
