html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  overflow-x: clip;
}
body {
  font-family: 'Inter', 'Helvetica Neue', 'Poppins', Arial, sans-serif;
  margin: 0;
  background: #111;
  color: #fff;
  overflow-x: clip;
}

.keisey-logo {
  font-family: 'Vivaldi', 'Adelicia Script', 'Bickham Script Pro', 'Burgues Script', cursive, serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin: 0 0 0.6rem 0;
  background: linear-gradient(105deg, #fff 30%, #ff8a8a 55%, #ff2a2a 85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ff2a2a;
}

/* --- Scroll reveal --- */
.reveal:not(.revealed) {
  opacity: 0;
}
.reveal.revealed {
  animation: reveal-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: var(--reveal-delay, 0s);
}
.reveal.reveal-pop.revealed {
  animation-name: reveal-pop;
  animation-duration: 0.55s;
  animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* No "to" frames: each element animates back to its natural style, so
   hover transforms and the bubble physics keep working after the reveal */
@keyframes reveal-rise {
  from { opacity: 0; transform: translateY(30px); }
}
@keyframes reveal-pop {
  from { opacity: 0; transform: scale(0.7) translateY(14px); }
}
@media (prefers-reduced-motion: reduce) {
  .reveal:not(.revealed) {
    opacity: 1;
  }
  .reveal.revealed {
    animation: none;
  }
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: rgba(12,12,12,0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.88);
  border-bottom-color: rgba(255,255,255,0.07);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}
.navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.navbar-logo {
  font-family: 'Vivaldi', 'Adelicia Script', 'Bickham Script Pro', 'Burgues Script', cursive, serif;
  font-size: 1.9rem;
  text-decoration: none;
  background: linear-gradient(105deg, #fff 30%, #ff8a8a 55%, #ff2a2a 85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ff2a2a;
  line-height: 1;
  padding-top: 0.2em;
}
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar-link {
  position: relative;
  color: #ddd;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.4rem 0;
  transition: color 0.2s;
}
.navbar-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: #ff2a2a;
  border-radius: 2px;
  transition: right 0.25s ease;
}
.navbar-link:hover,
.navbar-link.active {
  color: #fff;
}
.navbar-link:hover::after,
.navbar-link.active::after {
  right: 0;
}
.navbar-cta {
  color: #fff;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255,42,42,0.6);
  background: rgba(255,42,42,0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.navbar-cta:hover {
  background: #ff2a2a;
  box-shadow: 0 6px 24px rgba(255,42,42,0.35);
  transform: translateY(-1px);
}
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
}
@media (max-width: 768px) {
  .navbar-toggle {
    display: block;
  }
  .navbar-menu {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    display: none;
  }
  .navbar-menu.open {
    display: flex;
    animation: menu-drop 0.25s ease both;
  }
  .navbar-link {
    padding: 0.7rem 0;
    font-size: 1.05rem;
  }
  .navbar-cta {
    margin-top: 0.6rem;
  }
}
@keyframes menu-drop {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 80% at 85% 20%, rgba(255,42,42,0.22), transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(255,42,42,0.10), transparent 60%),
    #0c0c0c;
  color: #fff;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 6.5rem 1.5rem 4rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 30%, transparent 75%);
}
.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-cursor-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 560px;
  height: 560px;
  margin: -280px 0 0 -280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,42,42,0.16) 0%, rgba(255,42,42,0.05) 42%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  will-change: transform;
}
.hero.glow-active .hero-cursor-glow {
  opacity: 1;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.hero-text {
  flex: 1 1 380px;
  min-width: 300px;
  animation: hero-rise 0.9s ease both;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffb3b3;
  border: 1px solid rgba(255,42,42,0.35);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  margin: 0 0 1.4rem 0;
  background: rgba(255,42,42,0.08);
  backdrop-filter: blur(4px);
}
.hero-sub {
  color: #cfcfcf;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 2.2rem 0;
  max-width: 420px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-btn {
  display: inline-block;
  background: linear-gradient(120deg, #ff2a2a, #d81b1b);
  color: #fff;
  padding: 0.85rem 2.2rem;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255,42,42,0.30);
}
.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,42,42,0.40);
}
.hero-btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: none;
}
.hero-btn-outline:hover {
  border-color: #ff2a2a;
  background: rgba(255,42,42,0.08);
  box-shadow: none;
}
.hero-photo {
  position: relative;
  flex: 0 0 auto;
  width: clamp(340px, 38vw, 560px);
  max-width: 82vw;
  aspect-ratio: 4 / 5;
  animation: hero-rise 0.9s 0.15s ease both;
}
.hero-photo img {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 170px 170px 24px 24px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.55),
    0 0 60px rgba(255,42,42,0.12);
  position: relative;
  z-index: 1;
}
.hero-photo img.hero-img-reveal {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border: 1px solid transparent;
  box-shadow: none;
  -webkit-mask-image: radial-gradient(circle var(--reveal-r, 0px) at var(--reveal-x, 50%) var(--reveal-y, 50%), #000 55%, transparent 100%);
  mask-image: radial-gradient(circle var(--reveal-r, 0px) at var(--reveal-x, 50%) var(--reveal-y, 50%), #000 55%, transparent 100%);
}
.hero-photo-hint {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(12,12,12,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  backdrop-filter: blur(6px);
  animation: hint-pulse 2.4s ease-in-out infinite;
  transition: opacity 0.5s ease;
}
.hero-photo-hint i {
  color: #ff8a8a;
}
.hero-photo-hint.hint-hidden {
  opacity: 0;
}
@keyframes hint-pulse {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-5px); }
}
/* Touch devices: no hover — show the main photo outright */
@media (hover: none) {
  .hero-img-reveal,
  .hero-photo-hint {
    display: none;
  }
}
.hero-photo-ring {
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(255,42,42,0.45);
  border-radius: 184px 184px 34px 34px;
  pointer-events: none;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: auto -10% -8% -10%;
  height: 45%;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(255,42,42,0.35), transparent 70%);
  filter: blur(20px);
  z-index: 0;
}
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem 1.5rem;
}
section {
  margin-bottom: 4rem;
}
#brands-section {
  text-align: center;
  position: relative;
  /* Full-bleed band: escape the main card and span the whole viewport */
  box-sizing: border-box;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 3.5rem;
  padding: 4rem 1.5rem 4.5rem 1.5rem;
  background:
    radial-gradient(ellipse 50% 70% at 12% 15%, rgba(255,42,42,0.13), transparent 60%),
    radial-gradient(ellipse 45% 60% at 88% 90%, rgba(255,42,42,0.09), transparent 60%),
    #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: inset 0 30px 60px -20px rgba(0,0,0,0.55), inset 0 -30px 60px -20px rgba(0,0,0,0.55);
  overflow: hidden;
}
#brands-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, #000 30%, transparent 78%);
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, #000 30%, transparent 78%);
}
/* Oversized script watermark floating behind the bubbles */
#brands-section::after {
  content: 'Keisey';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-5deg);
  font-family: 'Vivaldi', 'Adelicia Script', 'Bickham Script Pro', 'Burgues Script', cursive, serif;
  font-size: clamp(9rem, 26vw, 20rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.055);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}
#brands-section > * {
  position: relative;
}
/* Slow-drifting glow orbs */
#brands-section .brands-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.brands-orb-a {
  width: 360px;
  height: 360px;
  background: rgba(255,42,42,0.16);
  top: -90px;
  left: -70px;
  animation: orb-drift 16s ease-in-out infinite alternate;
}
.brands-orb-b {
  width: 320px;
  height: 320px;
  background: rgba(255,42,42,0.11);
  bottom: -80px;
  right: -50px;
  animation: orb-drift 21s ease-in-out infinite alternate-reverse;
}
@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(70px, 40px) scale(1.15); }
}
@media (prefers-reduced-motion: reduce) {
  .brands-orb {
    animation: none;
  }
}
.brands-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.4rem;
  align-items: center;
  padding: 1.5rem 0.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.brand-item {
  position: relative;
  width: var(--size, 80px);
  height: var(--size, 80px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(0, 0) scale(1);
  transition: transform 0.3s cubic-bezier(0.34, 1.4, 0.5, 1);
  will-change: transform;
  z-index: 1;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.brand-item.dragging {
  transition: none;
  cursor: grabbing;
}
.brand-item img {
  -webkit-user-drag: none;
}
.brand-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(1) brightness(0.9);
  opacity: 0.85;
  transition: filter 0.25s, opacity 0.25s, border-color 0.25s, box-shadow 0.25s;
  background: #222;
  border: 2px solid rgba(255,255,255,0.10);
  box-shadow: 0 4px 16px rgba(0,0,0,0.35), inset 0 2px 8px rgba(255,255,255,0.08);
  animation: bubble-float var(--float-duration, 7s) ease-in-out var(--float-delay, 0s) infinite;
}
/* Fade an image in only once it has actually decoded, so a pending or broken
   one reads as empty space instead of a dark filled circle */
img.img-loading {
  opacity: 0 !important;
}
img.img-failed {
  visibility: hidden;
}
.brand-item-failed {
  display: none;
}
.brand-item.bubble-active img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  border-color: rgba(255,42,42,0.55);
  box-shadow: 0 8px 28px rgba(255,42,42,0.30), inset 0 2px 8px rgba(255,255,255,0.08);
  animation-play-state: paused;
}
@keyframes bubble-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(var(--drift-x, 0px), var(--drift-y, -6px)); }
}
@media (prefers-reduced-motion: reduce) {
  .brand-item img {
    animation: none;
  }
  .brand-item {
    transition: none;
  }
}

#about-section h2, #brands-section h2, #gallery-section h2, #contact-section h2 {
  color: #ff2a2a;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  letter-spacing: 1px;
  text-align: center;
}
#about-section h2::after, #brands-section h2::after, #gallery-section h2::after, #contact-section h2::after {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  background: #ff2a2a;
  border-radius: 2px;
  margin: 0.7rem auto 0 auto;
}
.about-text {
  font-size: 1.05rem;
  color: #cfcfcf;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
[hidden] {
  display: none !important;
}

/* --- Social Reach stats --- */
.stats-sub {
  text-align: center;
  color: #999;
  font-size: 0.95rem;
  margin: -0.8rem 0 2rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}
.stat-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #171717, #0f0f0f);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 1.7rem 1.6rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,42,42,0.14), transparent 70%);
  pointer-events: none;
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,42,42,0.35);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 32px rgba(255,42,42,0.10);
}
.stat-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}
.stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,42,42,0.12);
  border: 1px solid rgba(255,42,42,0.3);
  color: #fff;
  font-size: 1.25rem;
  flex: 0 0 auto;
}
.stat-platform {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}
.stat-handle {
  color: #ff8a8a;
  font-size: 0.85rem;
  text-decoration: none;
}
.stat-handle:hover {
  text-decoration: underline;
}
.stat-metrics {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  text-align: center;
}
.stat-metric {
  padding: 0 0.4rem;
}
.stat-metric + .stat-metric {
  border-left: 1px solid rgba(255,255,255,0.08);
}
.stat-value {
  display: block;
  font-size: clamp(1.45rem, 3.4vw, 1.9rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(105deg, #fff 40%, #ff8a8a 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff;
  margin-bottom: 0.3rem;
}
.stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}
.works-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2.2rem;
}
.works-tab {
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bbb;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  padding: 0.6rem 1.5rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.works-tab:hover {
  color: #fff;
  border-color: rgba(255,42,42,0.55);
}
.works-tab.active {
  color: #fff;
  background: linear-gradient(120deg, #ff2a2a, #d81b1b);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(255,42,42,0.30);
}
.tab-count {
  display: inline-block;
  min-width: 1.5em;
  margin-left: 0.4rem;
  padding: 0.1em 0.45em;
  font-size: 0.78em;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
}
.works-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin: -0.9rem 0 1.9rem 0;
}
.works-filter {
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #999;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 0.35rem 0.95rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.works-filter:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.works-filter.active {
  color: #ff8a8a;
  border-color: rgba(255,42,42,0.55);
  background: rgba(255,42,42,0.08);
}
.filter-count {
  opacity: 0.6;
  margin-left: 0.2rem;
  font-size: 0.9em;
}
.works-more {
  text-align: center;
  margin-top: 2.2rem;
}
#works-load-more {
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,42,42,0.6);
  border-radius: 999px;
  padding: 0.75rem 2.2rem;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
#works-load-more:hover {
  background: #ff2a2a;
  box-shadow: 0 6px 24px rgba(255,42,42,0.35);
  transform: translateY(-2px);
}
.works-empty {
  text-align: center;
  color: #888;
  font-size: 1rem;
  padding: 2rem 0;
}
/* --- Video reel tiles --- */
.video-item {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.video-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255,42,42,0.4);
  box-shadow: 0 18px 44px rgba(0,0,0,0.55), 0 0 32px rgba(255,42,42,0.10);
}
.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform 0.5s ease;
}
.video-item:hover video {
  transform: scale(1.04);
}
.video-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 35%),
              linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, transparent 25%);
  pointer-events: none;
}
.video-chip {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 1;
  max-width: calc(100% - 1.6rem);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(12,12,12,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  border-left: 2px solid #ff2a2a;
  border-radius: 4px;
  padding: 0.35rem 0.7rem;
  backdrop-filter: blur(6px);
}
.video-duration {
  position: absolute;
  bottom: 0.8rem;
  right: 0.8rem;
  z-index: 1;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: rgba(12,12,12,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  padding: 0.25rem 0.55rem;
  backdrop-filter: blur(6px);
  font-variant-numeric: tabular-nums;
}
.play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transition: background 0.25s, transform 0.25s, border-color 0.25s;
  pointer-events: none;
}
.play-badge i {
  font-size: 1.3rem;
  margin-left: 4px;
}
.video-item:hover .play-badge,
.video-item:focus-visible .play-badge {
  background: #ff2a2a;
  border-color: #ff2a2a;
  transform: translate(-50%, -50%) scale(1.12);
}
.video-item:focus-visible {
  outline: 2px solid #ff2a2a;
  outline-offset: 3px;
}

/* --- Art gallery wall (photos & modeling) --- */
.gallery.art-gallery {
  display: block;
  columns: 3 220px;
  column-gap: 1.2rem;
}
.art-item {
  position: relative;
  margin: 0 0 1.2rem 0;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.art-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255,42,42,0.4);
  box-shadow: 0 18px 44px rgba(0,0,0,0.55), 0 0 32px rgba(255,42,42,0.10);
}
.art-item img {
  display: block;
  width: 100%;
  border-radius: 2px;
  filter: saturate(0.92);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.art-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.05);
}
.art-overlay {
  position: absolute;
  inset: 10px;
  border-radius: 2px;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  pointer-events: none;
}
.art-item:hover .art-overlay,
.art-item:focus-visible .art-overlay {
  opacity: 1;
}
.art-num {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  border-left: 2px solid #ff2a2a;
  padding-left: 0.6rem;
}
.art-expand {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,42,42,0.9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.art-item:focus-visible {
  outline: 2px solid #ff2a2a;
  outline-offset: 3px;
}

/* --- Popup viewers (video & image) --- */
#video-modal, #image-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
#video-modal[hidden], #image-modal[hidden] {
  display: none;
}
.video-modal-backdrop, .image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  animation: modal-fade 0.25s ease both;
}
.video-modal-content {
  position: relative;
  width: min(900px, 100%);
  animation: modal-pop 0.3s ease both;
}
.image-modal-content {
  position: relative;
  max-width: min(1000px, 100%);
  animation: modal-pop 0.3s ease both;
}
#video-modal-player {
  width: 100%;
  max-height: 80vh;
  display: block;
  border-radius: 12px;
  background: #000;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 60px rgba(255,42,42,0.10);
}
#image-modal-img {
  max-width: 100%;
  max-height: 85vh;
  display: block;
  border-radius: 12px;
  background: #000;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 60px rgba(255,42,42,0.10);
}
.modal-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 1;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: #1a1a1a;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}
.modal-close:hover {
  background: #ff2a2a;
  border-color: #ff2a2a;
  transform: scale(1.08);
}
body.modal-open {
  overflow: hidden;
}
@keyframes modal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes modal-pop {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}
@media (max-width: 600px) {
  .modal-close {
    top: -50px;
    right: 0;
  }
}
#contact-section {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
.contact-text {
  color: #cfcfcf;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 auto 0.5rem auto;
  max-width: 420px;
  opacity: 0.9;
}
#contact-socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.social-link {
  color: #fff;
  background: #222;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(255,42,42,0.07);
}
.social-link:hover {
  background: #ff2a2a;
  color: #fff;
  transform: scale(1.08);
}
.social-link i {
  font-size: 1.35rem;
  line-height: 1;
}

/* --- Footer --- */
.site-footer {
  background: #0c0c0c;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 4rem;
  padding: 3rem 1.5rem 0 1.5rem;
}
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
}
.footer-logo {
  font-family: 'Vivaldi', 'Adelicia Script', 'Bickham Script Pro', 'Burgues Script', cursive, serif;
  font-size: 2.4rem;
  background: linear-gradient(105deg, #fff 30%, #ff8a8a 55%, #ff2a2a 85%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ff2a2a;
  line-height: 1.2;
  display: inline-block;
}
.footer-tagline {
  color: #888;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0.4rem 0 0 0;
}
.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #bbb;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #ff2a2a;
}
.footer-socials {
  display: flex;
  gap: 0.9rem;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.footer-socials a:hover {
  background: #ff2a2a;
  border-color: #ff2a2a;
  color: #fff;
  transform: translateY(-3px);
}
.footer-bottom {
  max-width: 1000px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  margin: 0;
  color: #777;
  font-size: 0.85rem;
}
.footer-credit {
  letter-spacing: 0.04em;
}
@media (max-width: 700px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.6rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
/* --- Tablet & mobile: stacked, centered hero (below this width the two
       hero columns can't sit side by side without an awkward wrap) --- */
@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 6rem 1.25rem 3.5rem 1.25rem;
    text-align: center;
  }
  .hero-content {
    flex-direction: column-reverse;
    gap: 2.5rem;
  }
  .hero-text {
    min-width: 0;
    flex: 1 1 auto;
  }
  .hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    padding: 0.4rem 0.9rem;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-photo {
    width: min(360px, 78vw);
  }
}

/* --- Small phones --- */
@media (max-width: 600px) {
  main {
    padding: 3rem 1rem 1.5rem 1rem;
  }
  section {
    margin-bottom: 3rem;
  }
  .gallery {
    gap: 0.9rem;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  .gallery.art-gallery {
    columns: 2 140px;
    column-gap: 0.8rem;
  }
  .art-item {
    margin-bottom: 0.8rem;
    padding: 6px;
  }
  .art-overlay {
    inset: 6px;
  }
  .brand-item {
    width: calc(var(--size, 80px) * 0.72);
    height: calc(var(--size, 80px) * 0.72);
  }
  #brands-section {
    padding: 3rem 1rem 3.5rem 1rem;
  }
  .works-tab {
    font-size: 0.78rem;
    padding: 0.5rem 1rem;
  }
  .play-badge {
    width: 48px;
    height: 48px;
  }
  .play-badge i {
    font-size: 1rem;
  }
}
