/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  background-color: #0a0a0a;
  color: #e8e8e8;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: #c9c9c9;
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: #ffffff;
}

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

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
}

.site-header__end {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.site-logo {
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}

.site-logo span {
  color: #9a9a9a;
  font-weight: 300;
  text-transform: lowercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.site-nav li {
  display: flex;
  align-items: center;
}

.site-nav__item--contact {
  margin-left: 0.5rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  color: #b8b8b8;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  color: #ffffff;
}

/* ===== Main ===== */
main {
  flex: 1;
  padding-top: 0;
}

/* ===== Hero Video (index) ===== */
.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #000000;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Profile Section ===== */
.profile {
  max-width: 780px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
}

.profile p {
  font-size: 1.05rem;
  font-weight: 300;
  color: #c4c4c4;
  letter-spacing: 0.03em;
  line-height: 1.9;
}

/* ===== Subpage Content ===== */
.page-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
  min-height: 60vh;
}

.page-content h1 {
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #2a2a2a;
}

.page-content p {
  font-size: 1rem;
  color: #a8a8a8;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.page-intro {
  margin-bottom: 3rem;
  max-width: 640px;
}

.page-intro__link {
  color: #b8b8b8;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  transition: color 0.25s ease;
}

.page-intro__link:hover {
  color: #ffffff;
}

/* ===== Gallery Placeholders ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  list-style: none;
}

.gallery-item {
  aspect-ratio: 16 / 9;
  background-color: #111111;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.gallery-item span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4a4a4a;
}

.gallery-item:hover {
  border-color: #444444;
  background-color: #161616;
}

/* ===== Camera & Directing work gallery ===== */
.work-gallery {
  width: 100%;
}

.work-featured {
  width: 100%;
  margin-bottom: 2.75rem;
}

.work-featured__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
}

.work-featured__player:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: -2px;
}

.work-featured__embed {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.work-featured__embed iframe,
.work-featured__iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420%;
  height: 420%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none !important;
}

.work-featured__shield {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  cursor: pointer;
  background: transparent;
}

.work-featured__title {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c4c4c4;
  line-height: 1.5;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  list-style: none;
}

.work-grid__item {
  aspect-ratio: 16 / 9;
  background-color: #111111;
  border: 1px solid #2a2a2a;
  overflow: hidden;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.work-grid__item:hover {
  border-color: #555555;
  background-color: #0a0a0a;
}

.work-grid__item .video-card {
  width: 100%;
  height: 100%;
  min-height: 0;
}

/* ===== YouTube video cards ===== */
.gallery-item--video {
  padding: 0;
  overflow: hidden;
  border-color: #2a2a2a;
  align-items: stretch;
  justify-content: stretch;
}

.gallery-item--video:hover {
  border-color: #555555;
  background-color: #0a0a0a;
}

.video-card {
  position: relative;
  display: block;
  flex: 1;
  align-self: stretch;
  width: 100%;
  min-height: 100%;
  padding: 0;
  border: none;
  background: #000000;
  cursor: pointer;
  overflow: hidden;
}

.video-card__thumb,
.video-card__preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-card__thumb {
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.06s ease;
  z-index: 1;
}

.video-card__preview {
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  background: #000000;
  transition: opacity 0.06s ease;
}

.video-card.is-previewing .video-card__thumb {
  opacity: 0;
  transition: opacity 0.22s ease;
}

.video-card.is-previewing .video-card__preview {
  opacity: 1;
  transition: opacity 0.22s ease;
}

/* 枠内に収め、UIをクロップして目立たせない */
.video-card__preview iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280%;
  height: 280%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

/* ===== Video modal (lightbox) ===== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

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

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  animation: videoModalFadeIn 0.45s ease;
}

.video-modal__dialog {
  position: relative;
  width: min(1100px, 92vw);
  z-index: 1;
  animation: videoModalScaleIn 0.45s ease;
}

.video-modal__player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
}

.video-modal__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal__close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: transparent;
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.video-modal__close:hover {
  opacity: 1;
}

@keyframes videoModalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes videoModalScaleIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

body.is-modal-open {
  overflow: hidden;
}

/* ===== IMDB External Link ===== */
.imdb-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  margin-top: 1rem;
}

.btn-external {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e8e8e8;
  border: 1px solid #3a3a3a;
  background-color: transparent;
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.btn-external:hover {
  color: #ffffff;
  border-color: #888888;
  background-color: rgba(255, 255, 255, 0.05);
}

.btn-external--placeholder {
  cursor: default;
  opacity: 0.7;
  pointer-events: none;
}

/* ===== IMDB Credits Masonry ===== */
.page-content--imdb {
  max-width: 1200px;
}

.imdb-credits {
  margin-top: 3.5rem;
}

.imdb-sort {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.imdb-sort__btn {
  padding: 0;
  border: none;
  background: transparent;
  font-family: "Oswald", sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5a5a5a;
  cursor: pointer;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.imdb-sort__btn:hover,
.imdb-sort__btn.is-active {
  color: #ffffff;
}

.imdb-sort__btn.is-active {
  font-weight: 500;
}

.imdb-sort__divider {
  color: #3a3a3a;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  user-select: none;
}

.imdb-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 8px;
  grid-auto-flow: dense;
  gap: 0;
}

.imdb-masonry__item {
  position: relative;
  display: block;
  overflow: hidden;
  background: #111111;
  color: #ffffff;
  will-change: transform;
}

.imdb-masonry__media {
  position: absolute;
  inset: 0;
  background: #141414;
}

.imdb-masonry__media.is-placeholder {
  background:
    linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 55%, #222222 100%);
}

.imdb-masonry__media.is-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 12px,
    rgba(255, 255, 255, 0.02) 12px,
    rgba(255, 255, 255, 0.02) 24px
  );
}

.imdb-masonry__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.imdb-masonry__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 1.25rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.imdb-masonry__title,
.imdb-masonry__role,
.imdb-masonry__year {
  display: block;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.imdb-masonry__title {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
  transition-delay: 0.04s;
}

.imdb-masonry__role {
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #d8d8d8;
  transition-delay: 0.1s;
}

.imdb-masonry__year {
  margin-top: 0.15rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #aaaaaa;
  transition-delay: 0.16s;
}

.imdb-masonry__item:hover .imdb-masonry__overlay,
.imdb-masonry__item:focus-visible .imdb-masonry__overlay {
  opacity: 1;
}

.imdb-masonry__item:hover .imdb-masonry__title,
.imdb-masonry__item:hover .imdb-masonry__role,
.imdb-masonry__item:hover .imdb-masonry__year,
.imdb-masonry__item:focus-visible .imdb-masonry__title,
.imdb-masonry__item:focus-visible .imdb-masonry__role,
.imdb-masonry__item:focus-visible .imdb-masonry__year {
  opacity: 1;
  transform: translateY(0);
}

.imdb-masonry__item:hover .imdb-masonry__img,
.imdb-masonry__item:focus-visible .imdb-masonry__img {
  transform: scale(1.04);
}

.imdb-masonry__item:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: -2px;
}

@media (max-width: 1099px) {
  .imdb-masonry {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .imdb-masonry {
    grid-template-columns: repeat(2, 1fr);
  }

  .imdb-credits {
    margin-top: 2.5rem;
  }
}

@media (max-width: 519px) {
  .imdb-masonry {
    grid-template-columns: 1fr;
  }

  .imdb-masonry__item {
    grid-column: span 1 !important;
  }
}

/* ===== Contact Page ===== */
.page-content--contact {
  max-width: 720px;
}

.contact-channels {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem 3rem;
  margin-bottom: 2.5rem;
}

.contact-channel {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  border: none;
  background: transparent;
  color: #b8b8b8;
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.contact-channel:hover,
.contact-channel.is-active {
  color: #ffffff;
}

.contact-channel--button {
  text-align: left;
}

.contact-channel__icon {
  height: 1.25rem;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.contact-channel__label {
  line-height: 1.4;
}

.contact-form-panel {
  overflow: hidden;
  max-height: 0;
  margin-top: 0;
  transition:
    max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    margin-top 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form-panel.is-open {
  margin-top: 0.75rem;
}

.contact-form-panel__inner {
  overflow: hidden;
  transform: translateY(-1.25rem);
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.45s ease;
}

.contact-form-panel.is-open .contact-form-panel__inner {
  transform: translateY(0);
  opacity: 1;
}

.contact-form-panel.is-closing .contact-form-panel__inner {
  transform: translateY(-1.25rem);
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.45s ease;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #2a2a2a;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.contact-form__field label {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a9a9a;
}

.contact-form__required {
  color: #c9c9c9;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #2a2a2a;
  background: #111111;
  color: #e8e8e8;
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: #555555;
  background: #141414;
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 9rem;
}

.contact-form__field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #888888 50%),
    linear-gradient(135deg, #888888 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% + 2px),
    calc(100% - 12px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
}

.contact-form__submit {
  align-self: flex-start;
  margin-top: 0.5rem;
  padding: 0.95rem 2.5rem;
  border: 1px solid #3a3a3a;
  background: transparent;
  color: #e8e8e8;
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.contact-form__submit:hover:not(:disabled) {
  color: #ffffff;
  border-color: #888888;
  background-color: rgba(255, 255, 255, 0.05);
}

.contact-form__submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

.contact-success {
  padding: 2rem 0 1rem;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #ffffff;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.contact-success__ja {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.88rem;
  font-weight: 300;
  color: #a8a8a8;
  letter-spacing: 0.04em;
}

@media (max-width: 600px) {
  .contact-channels {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

/* ===== Footer ===== */
.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  background-color: #050505;
  border-top: 1px solid #1f1f1f;
  padding: 2.5rem 2rem;
  text-align: center;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}

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

.footer-instagram img {
  height: 1.25rem;
  width: auto;
  display: block;
}

.footer-copy {
  font-size: 0.75rem;
  font-weight: 300;
  color: #5a5a5a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== Opening Splash — logo.png + HTML text ===== */
/*
  Timeline (seconds):
  0.5       lights fade in (1.5s) → lit by 2.0s
  2.0       JAVI | 3.2 FILM | 4.4 WORKS
  ~5.4      WORKS visible (1s fade)
  6.4       crossfade out (+1s after WORKS shown)
  ~7.6      complete (1.2s fade)
*/

body.is-splash-active {
  overflow: hidden;
}

.splash {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  animation: splashExit 1.2s ease-in-out 6.4s forwards;
}

.splash.is-done {
  pointer-events: none;
}

.splash__inner {
  background-color: #000000;
}

.splash__mark {
  background-color: #000000;
}

/* logo.png 上に文字を重ねる（logo_and_back.jpg の配置を参考） */
.splash__stack {
  position: relative;
  width: min(320px, 85vw);
  line-height: 0;
}

.splash__lights {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  animation: splashLightsReveal 1.5s ease-out 0.5s forwards;
}

.splash__words {
  position: absolute;
  left: 0;
  right: 0;
  top: 70%;
  bottom: auto;
  display: flex;
  justify-content: center;
  gap: 0.7em;
  margin: 0;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  font-size: clamp(0.95rem, 3.6vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  color: #ffffff;
}

.splash__word {
  opacity: 0;
  transform: translateY(8px);
  text-shadow: none;
}

.splash__word:nth-child(1) {
  animation: splashWordReveal 0.9s ease-out 2s forwards;
}

.splash__word:nth-child(2) {
  animation: splashWordReveal 0.9s ease-out 3.2s forwards;
}

.splash__word:nth-child(3) {
  animation: splashWordReveal 0.9s ease-out 4.4s forwards;
}

@keyframes splashLightsReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    filter:
      drop-shadow(0 0 6px rgba(201, 168, 76, 1))
      drop-shadow(0 0 16px rgba(201, 168, 76, 0.75))
      drop-shadow(0 0 30px rgba(201, 168, 76, 0.45))
      drop-shadow(0 0 50px rgba(201, 168, 76, 0.2));
  }
}

@keyframes splashWordReveal {
  0% {
    opacity: 0;
    transform: translateY(8px);
    text-shadow: none;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    text-shadow:
      0 0 6px rgba(255, 255, 255, 1),
      0 0 14px rgba(255, 255, 255, 0.75),
      0 0 28px rgba(255, 255, 255, 0.45),
      0 0 44px rgba(255, 255, 255, 0.2);
  }
}

@keyframes splashExit {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .splash {
    animation: splashExit 0.4s ease 0.5s forwards;
  }

  .splash__lights,
  .splash__word {
    animation-duration: 0.01s !important;
    animation-delay: 0s !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    text-shadow: none !important;
  }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.9);
  }

  .site-header__end {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
  }

  .site-nav {
    gap: 1.25rem;
    flex-wrap: wrap;
  }

  .site-nav a {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
  }

  .site-nav__item--contact {
    margin-left: 0;
  }

  .profile {
    padding: 3.5rem 1.5rem 4rem;
  }

  .profile p {
    font-size: 0.95rem;
  }

  .page-content {
    padding: 7rem 1.5rem 4rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-featured {
    margin-bottom: 2rem;
  }

  .work-featured__title {
    font-size: 0.9rem;
  }

  .video-modal {
    padding: 1rem;
  }

  .video-modal__close {
    top: -2.25rem;
    right: 0.25rem;
  }
}
