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

:root {
  --bg: #080808;
  --surface: #0f0f0f;
  --border: #1c1c1c;
  --text: #efefef;
  --muted: #959595;
  --muted2: #bfbfbf;
  --accent: #c8a96e;
  --ff-head: 'Montserrat', sans-serif;
  --ff-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

/* ─── Custom Scrollbar ──────────────────────────────────────── */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 5px;
  border: 2px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── Site Loader ───────────────────────────────────────────── */
#site-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#site-loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-text {
  font-family: var(--ff-head);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  animation: pulse 1.5s infinite ease-in-out;
}

.loader-text span {
  color: var(--accent);
}

@keyframes pulse {
  0% {
    opacity: 0.3;
    transform: scale(0.98);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0.3;
    transform: scale(0.98);
  }
}

/* ─── Hero ─────────────────────────────────────────────────── */
#hero {
  height: 100svh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

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

.hero-logo {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  z-index: 2;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.06em;
  color: #fff;
  user-select: none;
  text-decoration: none;
}

.hero-logo span {
  color: var(--accent);
}

.hero-inner {
  position: absolute;
  top: 70%;
  right: 0;
  z-index: 2;
}

.hero-title {
  font-family: var(--ff-head);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #2c2c2c;
  display: inline-block;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.5em 0.7em 0.55em;
  border-radius: 45px 0 0 45px;
  user-select: none;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-byline {
  display: block;
  font-size: 0.25em;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(44, 44, 44, 0.6);
  margin-top: 0.6em;
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0 3rem;
  z-index: 2;
  user-select: none;
  pointer-events: none;
}

.scroll-hint::before,
.scroll-hint::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}

.scroll-hint-text {
  font-family: var(--ff-head);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

/* ─── Ticker ────────────────────────────────────────────────── */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 0.9rem 0;
  user-select: none;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: scroll-ticker 28s linear infinite;
}

.ticker-item {
  font-family: var(--ff-head);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 2.5rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.ticker-item::after {
  content: '◆';
  font-size: 0.4rem;
  color: var(--accent);
}

@keyframes scroll-ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ─── About ─────────────────────────────────────────────────── */
#about {
  padding: 8rem 3rem;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: start;
  background: var(--surface);
}

.about-left {
  text-align: center;
}

.about-avatar {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.btn-contact {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 600;
  font-style: italic;
  color: var(--bg);
  text-decoration: none;
  padding: 0.8rem 2.2rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

.btn-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fffffff5;
  transform: skewX(-15deg);
  z-index: -1;
  transition: background-color 0.2s;
}

.btn-contact:hover::before {
  background-color: var(--accent);
}

.about-heading {
  font-family: var(--ff-head);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.about-heading em {
  font-style: normal;
  color: var(--accent);
}

.about-right {
  padding-top: 0.5rem;
}

.about-right p {
  font-size: 24px;
  font-weight: 300;
  color: var(--muted2);
  line-height: 1.9;
  margin-bottom: 1.4rem;
}

.about-right p strong {
  color: var(--text);
  font-weight: 400;
}

.about-email {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted2);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.2rem;
  margin-top: 1.8rem;
  transition: color 0.25s, border-color 0.25s;
}

.about-email:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ─── Work Section ──────────────────────────────────────────── */
#work {
  padding: 0rem 0 0;
  border-top: 1px solid var(--border);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.work-item {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  aspect-ratio: 16 / 9;
}

.work-cover-img,
.work-cover-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-cover-img {
  z-index: 1;
  transition: opacity 0.5s ease;
}

.work-cover-vid {
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.work-item:hover .work-cover-img {
  opacity: 0;
}

.work-item:hover .work-cover-vid {
  opacity: 1;
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.3) 40%,
      transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem 1.8rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.work-item:hover .work-overlay {
  opacity: 1;
}

.work-meta {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.4rem;
}

.work-title {
  font-family: var(--ff-head);
  font-weight: 600;
  line-height: 1.15;
  font-size: 30px;
}

.work-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.7rem 1.5rem;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: opacity 0.3s;
}

.work-item:hover .work-strip {
  opacity: 0;
}

.work-strip-title {
  font-family: var(--ff-head);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.work-strip-year {
  font-size: 0.68rem;
  color: var(--muted2);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  margin-left: 1rem;
}

/* ─── Work Interstitial ─────────────────────────────────────── */
.work-interstitial {
  display: grid;
  grid-template-columns: 5fr 7fr;
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  background: var(--surface);
  padding: 8rem 0;
}

.wi-video {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  align-self: center;
  max-width: 500px;
  justify-self: center;
}

.wi-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wi-text {
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wi-title {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.wi-title em {
  font-style: normal;
  color: var(--accent);
}

.wi-desc {
  font-size: 24px;
  color: var(--muted2);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.wi-email {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.25rem;
  transition: color 0.25s, border-color 0.25s;
}

.wi-email:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ─── Services ──────────────────────────────────────────────── */
#services {
  padding: 7rem 3rem;
  border-top: 1px solid var(--border);
}

.services-heading {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 5rem;
}

.services-heading em {
  font-style: normal;
  color: var(--accent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-item {
  padding: 2.5rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(to left, rgba(132, 132, 132, 0.25), transparent);
}

.service-item+.service-item {
  border-left: 1px solid var(--border);
}

.service-num {
  font-family: var(--ff-head);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 2rem;
}

.service-title {
  font-family: var(--ff-head);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-desc {
  font-size: 24px;
  font-weight: 300;
  color: var(--muted2);
  line-height: 1.85;
}

/* ─── Contact ───────────────────────────────────────────────── */
#contact {
  padding: 9rem 3rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.contact-label {
  font-size: 20px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.contact-heading {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 6vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.1;
  margin-bottom: 2.5rem;
}

.contact-heading em {
  font-style: normal;
  color: var(--accent);
}

.contact-sub {
  font-size: 24px;
  font-weight: 300;
  color: var(--muted2);
  max-width: 480px;
  margin: 0 auto 3.5rem;
  line-height: 1.85;
}

.contact-email {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: clamp(1rem, 2.5vw, 1.7rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.25rem;
  margin-bottom: 4rem;
  transition: color 0.25s, border-color 0.25s;
}

.contact-email:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 5rem;
}

.social-link {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.social-link:hover {
  color: var(--text);
}

/* ─── Footer ────────────────────────────────────────────────── */
footer {
  padding: 1.8rem 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

footer p {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.lang-toggle {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  z-index: 90;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.4rem 1rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--ff-body);
}

.lang-toggle:hover {
  color: #000;
  background: var(--accent);
  border-color: var(--accent);
}

/* ─── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ─── Project Detail Overlay ────────────────────────────────── */
#project-detail {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 100;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overscroll-behavior: contain;
}

#project-detail.open {
  transform: translateX(0);
}

.no-transition {
  transition: none !important;
}

.pd-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 3rem 1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.pd-nav-title {
  font-family: var(--ff-head);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted2);
}

.btn-home {
  font-family: var(--ff-head);
  font-size: 1.44rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: none;
  border: 1px solid rgba(200, 169, 110, 0.35);
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-home:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

.pd-content {
  padding: 1rem 4rem 6rem;
}

.pd-header {
  margin-bottom: 3rem;
  padding-bottom: 0rem;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4rem;
  align-items: start;
}

.pd-meta {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.pd-meta::before {
  content: '';
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.pd-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.pd-subtitle {
  font-size: 32px;
  color: var(--muted2);
  font-weight: 300;
  margin-bottom: 1rem;
}

.pd-desc {
  font-size: 24px;
  color: var(--muted2);
  line-height: 1.7;
  margin: auto 0;
}

/* ─── Cover Video ───────────────────────────────────────────── */
#pdCoverVidSection {
  margin-bottom: 6rem;
}

.pd-cover-video {
  width: 65%;
  display: block;
  margin: 0 auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #000;
  cursor: zoom-in;
}

.pd-section {
  padding-top: 3rem;
  margin-bottom: 3rem;
}

.pd-youtube-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
  overflow: hidden;
}

.pd-youtube-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Unified media grid */
.pd-media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: transparent;
}

.pd-media-item {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--surface);
}

.pd-media-item video,
.pd-media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.pd-media-item:hover video,
.pd-media-item:hover img {
  transform: scale(1.03);
}

.pd-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.15);
  opacity: 1;
  transition: opacity 0.2s;
}

.pd-media-item:hover .pd-video-play {
  background: rgba(0, 0, 0, 0);
}

.pd-video-play svg {
  width: 52px;
  height: 52px;
  fill: rgba(255, 255, 255, 0.9);
  transition: opacity 0.2s;
}

.pd-media-item:hover .pd-video-play svg {
  opacity: 0;
}

/* ─── Lightbox ──────────────────────────────────────────────── */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

#lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lb-close {
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  font-size: 2.2rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 201;
}

.lb-close:hover {
  color: #fff;
}

.lb-media {
  max-width: 92vw;
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-media img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  display: block;
}

.lb-media video {
  max-width: 92vw;
  max-height: 92vh;
  display: block;
}

/* ─── Responsive ────────────────────────────────────────────── */
/* ─── YouTube embed (1/3 width, centred) ───────────────────── */
#pdYoutubeSection {
  max-width: 65%;
  margin: 3rem auto 0;
}

/* ─── Lightbox thumbnail strip ──────────────────────────────── */
.lb-strip {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 201;
  max-width: 90vw;
  overflow-x: auto;
  padding: 0.4rem;
}

.lb-thumb-wrap {
  width: 80px;
  height: 45px;
  flex-shrink: 0;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.2s;
  border: 2px solid transparent;
  overflow: hidden;
  position: relative;
}

.lb-thumb-wrap.active {
  opacity: 1;
  border-color: var(--accent);
}

.lb-thumb-wrap:hover {
  opacity: 0.8;
}

.lb-thumb-wrap img,
.lb-thumb-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.lb-thumb-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

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

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

  .wi-video {
    aspect-ratio: 1 / 1;
    max-width: 350px;
    margin: 3rem auto 0;
    left: 0;
  }

  #pdYoutubeSection {
    max-width: 60%;
  }
}

@media (max-width: 960px) {
  #hero {
    padding: 0 1.5rem 4rem;
  }

  #about {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 1.5rem;
  }

  #services {
    padding: 5rem 1.5rem;
  }

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

  .service-item {
    padding: 2rem 0;
  }

  .service-item+.service-item {
    padding-left: 0;
    border-left: none;
  }

  #contact {
    padding: 5rem 1.5rem;
  }

  footer {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .lang-toggle {
    position: static;
    margin-top: 0.8rem;
  }

  .pd-nav {
    padding: 1rem 1.5rem;
  }

  .pd-content {
    padding: 2.5rem 1.5rem 5rem;
  }

  .pd-header {
    grid-template-columns: 1fr;
  }

  .pd-media-grid {
    grid-template-columns: 1fr;
  }

  .wi-text {
    padding: 3rem 2rem;
  }

  .pd-cover-video {
    width: 97.5%;
  }

  #pdYoutubeSection {
    max-width: 97.5%;
  }
}

@media (max-width: 640px) {
  .work-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(1.3rem, 6vw, 2.4rem);
  }
}