/** Shopify CDN: Minification failed

Line 240:0 Unexpected "}"

**/
/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
  background: #050505;
  color: #f5f5f5;
  line-height: 1.6;
}

/* LAYOUT HELPERS */
.section {
  padding: 96px 7vw;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 48px auto;
  text-align: center;
}

.section-heading h2 {
  font-size: 2.4rem;
  margin-bottom: 8px;
}

.section-heading p {
  color: #b5b5b5;
  font-size: 0.98rem;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 7vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 50;
}
.logo {
  text-decoration: none;
  color: #ffffff;
  cursor: pointer;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
/* HEADER */ 
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 7vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 50;
}

.logo {
  text-decoration: none;
  color: #ffffff;
  cursor: pointer;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* Desktop nav */
.nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.2s ease;
}

.nav ul li a:hover {
  color: #bbbbbb;
  transform: translateY(-2px);
}

/* Hamburger (mobile only) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger div {
  width: 28px;
  height: 3px;
  background: #ffffff;
  border-radius: 4px;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(16px);
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 9999;
}

.mobile-nav-btn {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
}

.mobile-nav-btn:hover {
  color: #bbbbbb;
}

/* Responsive */
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

  /* Desktop nav */
.nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.2s ease;
}

.nav ul li a:hover {
  color: #bbbbbb;
  transform: translateY(-2px);
}

/* Hamburger (mobile only) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger div {
  width: 28px;
  height: 3px;
  background: #ffffff;
  border-radius: 4px;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(16px);
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-btn {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
}

.mobile-nav-btn:hover {
  color: #bbbbbb;
}

/* Responsive */
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

}/* HERO TOP-CENTER IMAGE */
.hero-top-image {
  position: absolute;
  top: 110px; /* adjust if your header height changes */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.hero-top-image img {
  height: 150px; /* about 2 inches */
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
}

/* HERO SOCIAL ICONS */
.hero-socials {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 22px;
  z-index: 5;
  top: +660px;
}

.social-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
  top: -160px;
}

.social-icon svg {
  width: 22px;
  height: 22px;
}

.social-icon:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-3px);
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  color: #cfcfcf;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #f5f5f5;
  transition: width 0.2s ease;
}

.nav a:hover {
  color: #ffffff;
}

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

/* HERO */
.hero {
  height: 100vh;
  background: url('./background.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  z-index: 1;
}

.hero-text h1 {
  font-size: clamp(2.8rem, 3.3vw, 3.6rem);
  line-height: 1.50;
  margin-bottom: 10px;
  margin-top: -206px;
  margin-left: +80px;
}

.hero-text p {
  color: #cfcfcf;
  max-width: 480px;
  font-size: 1rem;
  margin-left: +80px;
 
}

/* HERO VIDEO */
.hero-video-wrapper {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
}
.hero-video-wrapper {
  width: 100%;
  max-height: 100vh;         /* optional: keeps it full screen */
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;         /* makes image & video match perfectly */
}

.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
/* ---------- MOBILE IMPROVED HERO ---------- */
@media (max-width: 900px) {

  /* Stack hero layout to 1 column */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
    margin-top: -40px; /* moves entire content higher */
  }
/* Wrapper: center everything */
.hero-text {
  text-align: center;
  position: relative;
  top: -60px;          /* moves text UP */
  left: -40px;
}

/* Title – centered and lifted */
.hero-text h1 {
  margin: 0 auto;
  font-size: 1.8rem;
  line-height: 1.25;
  padding: 0 20px;
  max-width: 600px;     /* keeps it clean on all screens */
}

/* Subtitle – centered and tidy */
.hero-text p {
  margin: 10px auto 0 auto;
  font-size: 1rem;
  padding: 0 25px;
  max-width: 500px;
}


 /* ---------- MOBILE BIG VIDEO ---------- */
@media (max-width: 900px) {

  /* Bigger, nearly full-width video */
  .hero-video-wrapper {
    width: 96%;               /* almost edge-to-edge */
    margin: 0 auto;
    border-radius: 12px;      /* clean rounded corners */
    max-height: 420px;        /* taller */
    height: auto;
  }

  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;        /* keeps it cinematic */
  }

}

  /* Social icons moved under video */
  .hero-socials {
    position: static;
    transform: none;
    margin: -140px auto 0;
    justify-content: center;
  }

  /* Shrink the top logo on mobile */
  .hero-top-image {
    top: 80px;
  }

  .hero-top-image img {
    height: 80px; /* smaller image */
  }

}

/* WHAT WE DO */
.what-we-do {
  background: #070707;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: #101010;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 280px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8);
}

.service-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.service-media .hover-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.75);
  transition: filter 0.2s ease, transform 0.3s ease;
}

.service-card:hover .hover-video {
  filter: brightness(1);
  transform: scale(1.03);
}

.service-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 4px 10px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.service-body {
  padding: 18px 18px 20px 18px;
}

.service-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.service-body p {
  font-size: 0.92rem;
  color: #c0c0c0;
}

/* FEATURED WORK */
.featured-work {
  background: #050505;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.featured-item {
  background: #101010;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-item img,
.featured-item video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TikTok-style vertical videos */
.vertical {
  aspect-ratio: 9 / 16;
}

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

.photo {
  aspect-ratio: 4 / 5;
}

/* ABOUT */
.about {
  background: #070707;
}

.about-content {
  max-width: 720px;
  margin: 0 auto;
  color: #d2d2d2;
  font-size: 0.98rem;
}

.about-content p + p {
  margin-top: 16px;
}

/* CONTACT */
.contact {
  background: #050505;
}
/* Make contact section shorter */
#contact,
.contact-page-wrapper {
  padding-top: 10px !important;   /* reduce top space */
  padding-bottom: 10px !important; /* reduce bottom space */
}

.contact-form {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  gap: 6px;
  flex: 1;
}
label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  gap: 6px;
  flex: 1;
}.contact-submit {
  margin-top: 18px;
  display: inline-block;
  padding: 12px 26px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border-radius: 8px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: all 0.25s ease;
}
/* Shopify Forms – Dark Theme Styling */
.shopify-form-container,
.shopify-form,
.shopify-form__field-group,
.shopify-form__submit,
.shopify-form__field-input,
.shopify-form__welcome-text,
.shopify-form__terms {
  color: #ffffff !important;
}

/* Form container */
.shopify-form-container {
  background: rgba(0, 0, 0, 0.45);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  max-width: 600px;
  margin: 0 auto;
}

/* Input fields */
.shopify-form__field-input {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 10px !important;
  padding: 12px 14px !important;
  color: #ffffff !important;
}

.shopify-form__field-input::placeholder {
  color: #bbbbbb !important;
}

/* Button */
.shopify-form__submit {
  background: #ffffff !important;
  color: #000 !important;
  padding: 14px 20px !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  transition: all 0.25s ease !important;
}

.shopify-form__submit:hover {
  background: #e5e5e5 !important;
  transform: translateY(-2px);
}

.contact-submit:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #000;
  transform: translateY(-2px);
}
.contact-form input[name="contact[phone]"] {
  padding: 6px 9px;  /* smaller height */
  font-size: 0.9rem;  /* optional */
}


.full-width {
  width: 100%;
}

input,
select,
textarea {
  background: #101010;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 12px;
  color: #f5f5f5;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.35);
}
/* Hidden success message */
.contact-success {
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  text-align: center;
  margin-bottom: 20px;
  transition: all 0.45s ease;
}

.contact-success.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.contact-success span {
  background: #0a0;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0px 4px 20px rgba(0, 255, 0, 0.3);
}

/* FOOTER */
.footer {
  padding: 28px 7vw 36px 7vw;
  text-align: center;
  font-size: 0.82rem;
  color: #8a8a8a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #040404;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-video-wrapper {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-inline: 5vw;
  }

  .nav ul {
    gap: 16px;
  }

  .section {
    padding-inline: 5vw;
  }

  .form-row {
    flex-direction: column;
  }
}
.featured-cta {
  margin-top: 28px;
  text-align: center;
}

.see-more-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #f5f5f5;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.15s ease;
}

.see-more-btn:hover {
  background: #f5f5f5;
  color: #050505;
  border-color: #f5f5f5;
  transform: translateY(-1px);
}
/* CATALOG PAGE */
.catalog {
  background: #050505;
}

/* Fake filter tag row (visual, easy to upgrade later) */
.catalog-filters {
  max-width: 900px;
  margin: 0 auto 32px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.filter-tag {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #101010;
  color: #f5f5f5;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: default; /* change to pointer when you add JS filters */
}

.filter-tag.active {
  background: #f5f5f5;
  color: #050505;
}

/* Grid that works well for mixed vertical + horizontal */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

/* Base catalog item */
.catalog-item {
  background: #101010;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Aspect ratios */
.catalog-item.vertical {
  aspect-ratio: 9 / 16;
}

.catalog-item.wide {
  aspect-ratio: 16 / 9;
}

.catalog-item.photo {
  aspect-ratio: 4 / 5;
}

.catalog-item.tall {
  aspect-ratio: 3 / 4;
}

/* Media styles */
.catalog-item img,
.catalog-item video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
/* ABOUT SECTION WITH PHOTO */
.about-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 40px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.about-text {
  color: #d2d2d2;
  font-size: 0.98rem;
}

.about-text p + p {
  margin-top: 16px;
}

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

.about-photo img {
  width: 100%;
  max-width: 300px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0d0d0d;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.about-photo h4 {
  margin-top: 14px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.owner-title {
  margin-top: 2px;
  color: #b0b0b0;
  font-size: 0.88rem;
}

/* Mobile Responsive */
@media (max-width: 780px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-photo img {
    margin: 0 auto;
  }
}

/* PRICING */
.pricing {
  background: #050505;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

.pricing-card {
  background: #101010;
  border-radius: 16px;
  padding: 22px 20px 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
}

.pricing-card h3 {
  font-size: 1.1rem;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 4px;
}

.price-note {
  font-size: 0.85rem;
  color: #a7a7a7;
  margin-bottom: 4px;
}

.pricing-list {
  list-style: none;
  margin-top: 6px;
  padding-left: 0;
  font-size: 0.9rem;
  color: #cfcfcf;
}

.pricing-list li {
  margin-bottom: 4px;
}

.tagline {
  margin-top: 6px;
  font-size: 0.82rem;
  color: #9b9b9b;
}
/* Make pricing section bottom spacing shorter */
#pricing {
  padding-bottom: 40px !important;  /* adjust number as needed */
}

/* Highlighted plan */
.featured-plan {
  border-color: rgba(255, 255, 255, 0.3);
  background: radial-gradient(circle at top, #171717, #0c0c0c);
}

.featured-plan .price {
  color: #ffffff;
}

.badge {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 3px 9px;
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
}


/* ============================================================
   PRODUCT PAGE  (added — matches site dark theme + texture)
   ============================================================ */

.product-page {
  padding-top: 88px; /* clear the fixed header */
  position: relative;
}

.product-main {
  position: relative;
  overflow: hidden;
  background: #050505;
  padding-top: 40px;
}

/* --- TEXTURE: film grain overlay --- */
.product-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}

/* --- TEXTURE: soft radial glow behind the product --- */
.product-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  max-width: 120vw;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.06), rgba(255,255,255,0) 62%);
}

/* keep content above the texture layers */
.product-breadcrumb,
.product-layout,
.product-main .footer { position: relative; z-index: 1; }

/* --- BREADCRUMB --- */
.product-breadcrumb {
  max-width: 1180px;
  margin: 0 auto 28px auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: #8a8a8a;
}
.product-breadcrumb a { color: #b5b5b5; text-decoration: none; transition: color 0.2s ease; }
.product-breadcrumb a:hover { color: #ffffff; }
.product-breadcrumb .crumb-current { color: #f5f5f5; }

/* --- LAYOUT --- */
.product-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: start;
}

/* --- GALLERY --- */
.product-gallery { position: sticky; top: 96px; }

.product-media-frame {
  position: relative;
  background: radial-gradient(circle at top, #161616, #0c0c0c);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.75);
}
.product-media-main,
.product-media-placeholder svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-media-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  background: #101010;
}

.product-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.product-thumb {
  width: 76px;
  height: 76px;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #101010;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.15s ease;
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-thumb:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.25); }
.product-thumb.is-active { border-color: #f5f5f5; }

/* --- INFO --- */
.product-info { padding-top: 4px; }

.product-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  color: #9b9b9b;
  margin-bottom: 12px;
}

.product-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.product-price { font-size: 1.7rem; font-weight: 700; color: #ffffff; }
.product-compare { font-size: 1.05rem; color: #8a8a8a; text-decoration: line-through; }
.product-save-badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
}

.product-description {
  color: #c8c8c8;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.product-description p + p { margin-top: 14px; }
.product-description ul { padding-left: 20px; margin-top: 8px; }

/* --- FORM CONTROLS --- */
.product-field-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9b9b9b;
  margin-bottom: 10px;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.product-select-wrap { position: relative; margin-bottom: 24px; }
.product-variant-select {
  width: 100%;
  appearance: none;
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 14px 44px 14px 16px;
  color: #f5f5f5;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.product-variant-select:focus { outline: none; border-color: rgba(255,255,255,0.4); }
.product-select-wrap::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 9px; height: 9px;
  border-right: 2px solid #cfcfcf;
  border-bottom: 2px solid #cfcfcf;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.product-buy-row {
  display: flex;
  gap: 14px;
  align-items: stretch;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.product-qty {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: #101010;
  overflow: hidden;
}
.product-qty button {
  width: 46px;
  height: 100%;
  min-height: 54px;
  background: transparent;
  border: none;
  color: #f5f5f5;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.product-qty button:hover { background: rgba(255,255,255,0.06); }
.product-qty input {
  width: 52px;
  text-align: center;
  background: transparent;
  border: none;
  color: #f5f5f5;
  font: inherit;
  -moz-appearance: textfield;
}
.product-qty input::-webkit-outer-spin-button,
.product-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.product-atc {
  flex: 1;
  min-width: 200px;
  min-height: 54px;
  padding: 0 28px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #050505;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.25s ease, background 0.2s ease;
}
.product-atc:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(255, 255, 255, 0.14);
  background: #eaeaea;
}
.product-atc:disabled {
  background: #1a1a1a;
  color: #7a7a7a;
  border-color: rgba(255,255,255,0.1);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.product-dynamic-checkout { margin-top: 4px; }
.product-dynamic-checkout .shopify-payment-button__button { border-radius: 12px !important; }

/* --- TRUST + HELP --- */
.product-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.trust-chip {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cfcfcf;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.product-help {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #a7a7a7;
}
.product-help a { color: #f5f5f5; text-decoration: underline; text-underline-offset: 3px; }
.product-help a:hover { color: #ffffff; }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .product-layout { grid-template-columns: 1fr; gap: 34px; }
  .product-gallery { position: static; top: auto; }
  .product-media-frame { aspect-ratio: 1 / 1; }
}

@media (max-width: 720px) {
  .product-main { padding-inline: 5vw; }
  .product-buy-row { flex-direction: column; }
  .product-qty { align-self: flex-start; }
  .product-atc { width: 100%; }
}

/* ============================================================
   COLLECTION (SHOP) PAGE  — lists imported Shopify products
   ============================================================ */

.collection-main { position: relative; overflow: hidden; background: #050505; padding-top: 40px; }
.collection-heading, .collection-grid, .collection-pagination,
.collection-empty, .collection-main .footer { position: relative; z-index: 1; }
.collection-heading { margin-top: 48px; }

.collection-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 22px;
}

.collection-card {
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.collection-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8);
}

.collection-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: radial-gradient(circle at top, #161616, #0c0c0c);
  overflow: hidden;
}
.collection-card-media img,
.collection-card-placeholder svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.collection-card:hover .collection-card-media img { transform: scale(1.04); }
.collection-card-placeholder { width: 100%; height: 100%; color: rgba(255,255,255,0.12); }

.collection-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
}
.collection-card-soldout {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.25);
  color: #f5f5f5;
}

.collection-card-body { padding: 16px 16px 20px 16px; display: flex; flex-direction: column; gap: 6px; }
.collection-card-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  color: #9b9b9b;
}
.collection-card-title { font-size: 1.02rem; line-height: 1.3; }
.collection-card-price { display: flex; align-items: baseline; gap: 10px; margin-top: 2px; }
.collection-card-price .now { font-size: 1.05rem; font-weight: 700; color: #ffffff; }
.collection-card-price .was { font-size: 0.85rem; color: #8a8a8a; text-decoration: line-through; }

/* Pagination */
.collection-pagination {
  max-width: 1180px;
  margin: 40px auto 0 auto;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.page-link {
  min-width: 40px;
  text-align: center;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #101010;
  color: #cfcfcf;
  text-decoration: none;
  font-size: 0.9rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.page-link:hover { border-color: rgba(255,255,255,0.3); color: #ffffff; }
.page-link.is-current { background: #f5f5f5; color: #050505; border-color: #f5f5f5; }

/* Empty state (shared by collection + cart) */
.collection-empty {
  max-width: 620px;
  margin: 40px auto 0 auto;
  text-align: center;
  padding: 48px 28px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
}
.collection-empty p { font-size: 1.1rem; color: #f5f5f5; }
.collection-empty-hint { margin-top: 10px; font-size: 0.92rem; color: #a7a7a7; }

/* ============================================================
   CART PAGE
   ============================================================ */

.cart-main { position: relative; overflow: hidden; background: #050505; padding-top: 40px; }
.cart-heading, .cart-form, .cart-empty, .cart-main .footer { position: relative; z-index: 1; }
.cart-heading { margin-top: 48px; }

.cart-form { max-width: 980px; margin: 0 auto; }

.cart-items {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  overflow: hidden;
  background: #0c0c0c;
}
.cart-row {
  display: grid;
  grid-template-columns: 1fr 150px 120px;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cart-row:last-child { border-bottom: none; }
.cart-row-head {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9b9b9b;
  background: #101010;
  padding-top: 14px;
  padding-bottom: 14px;
}
.cart-cell-right { text-align: right; }

.cart-item { display: flex; gap: 16px; align-items: center; }
.cart-item-media {
  width: 84px;
  height: 84px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #161616;
  border: 1px solid rgba(255,255,255,0.08);
  display: block;
}
.cart-item-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-item-info { display: flex; flex-direction: column; gap: 3px; }
.cart-item-title { color: #f5f5f5; text-decoration: none; font-weight: 600; font-size: 1rem; }
.cart-item-title:hover { color: #ffffff; text-decoration: underline; text-underline-offset: 3px; }
.cart-item-variant { font-size: 0.85rem; color: #a7a7a7; }
.cart-item-price { font-size: 0.85rem; color: #9b9b9b; }
.cart-item-remove {
  font-size: 0.8rem;
  color: #8a8a8a;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-top: 4px;
  width: fit-content;
}
.cart-item-remove:hover { color: #ffffff; }

.cart-qty { min-height: 46px; }
.cart-qty button { min-height: 46px; }
.cart-line-total { font-weight: 700; font-size: 1.02rem; color: #ffffff; }

.cart-footer {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.cart-update-btn {
  padding: 12px 22px;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: #f5f5f5;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.cart-update-btn:hover { background: rgba(255,255,255,0.08); }

.cart-summary {
  width: 340px;
  max-width: 100%;
  margin-left: auto;
  background: radial-gradient(circle at top, #171717, #0c0c0c);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
}
.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1.05rem;
}
.cart-subtotal { font-size: 1.5rem; font-weight: 700; color: #ffffff; }
.cart-tax-note { font-size: 0.82rem; color: #9b9b9b; margin: 8px 0 18px 0; }

.cart-checkout-btn {
  width: 100%;
  min-height: 54px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #050505;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.25s ease, background 0.2s ease;
}
.cart-checkout-btn:hover {
  transform: translateY(-2px);
  background: #eaeaea;
  box-shadow: 0 14px 34px rgba(255, 255, 255, 0.14);
}
.cart-continue { display: block; text-align: center; margin-top: 16px; font-size: 0.9rem; color: #b5b5b5; text-decoration: none; }
.cart-continue:hover { color: #ffffff; }

.cart-empty-cta { display: inline-flex; align-items: center; justify-content: center; max-width: 260px; margin: 22px auto 0 auto; text-decoration: none; }

@media (max-width: 720px) {
  .collection-main, .cart-main { padding-inline: 5vw; }
  .cart-row { grid-template-columns: 1fr; gap: 14px; }
  .cart-row-head { display: none; }
  .cart-qty-cell { justify-self: start; }
  .cart-cell-right { text-align: left; }
  .cart-footer { flex-direction: column; }
  .cart-summary { width: 100%; margin-left: 0; }
}

/* ============================================================
   FEATURED WORK — 5 smaller vertical (9:16) videos, centered
   ============================================================ */
.featured-work .featured-videos {
  grid-template-columns: repeat(auto-fit, minmax(140px, 188px));
  justify-content: center;
  gap: 16px;
}
.featured-work .featured-photos {
  grid-template-columns: repeat(auto-fit, minmax(150px, 200px));
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}
/* .vertical already sets aspect-ratio: 9/16 — capping column width keeps them small */

.featured-empty {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  color: #707070;
  font-size: 0.74rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
  background: repeating-linear-gradient(45deg,
    rgba(255,255,255,0.02) 0 10px,
    rgba(255,255,255,0.045) 10px 20px);
}

@media (max-width: 520px) {
  .featured-work .featured-videos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .featured-work .featured-photos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ============================================================
   MERCH NAV BUTTON — flips between "Merch" and the logo
   ============================================================ */
.merch-flip {
  display: inline-block;
  width: 84px;
  height: 30px;
  perspective: 1000px;      /* gentler perspective = clearer, less warped flip */
  text-decoration: none;
  vertical-align: middle;
  transition: transform 0.25s ease;
}
.merch-flip::after { display: none; } /* cancel the underline hover effect from .nav a */
.merch-flip:hover { transform: scale(1.06); } /* subtle hover cue without freezing the flip */

.merch-flip-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform-origin: center center;
  will-change: transform;                 /* promote to its own layer for smooth GPU flips */
  backface-visibility: hidden;
  animation: merchFlip 6.5s linear infinite;
}

.merch-face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0.01px);          /* keeps text/logo crisp during 3D rotation */
}
.merch-front {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}
.merch-back { transform: rotateY(180deg) translateZ(0.01px); }
.merch-back img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

/* Continuous forward rotation (0 → 180 → 360) never reverses, so it reads
   smoothly. Eased flip segments, longer holds so each face is clear. */
@keyframes merchFlip {
  0%,  38% { transform: rotateY(0deg);   animation-timing-function: cubic-bezier(0.4, 0, 0.15, 1); }
  51%, 87% { transform: rotateY(180deg); animation-timing-function: cubic-bezier(0.4, 0, 0.15, 1); }
  100%     { transform: rotateY(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .merch-flip-inner { animation: none; }
}

/* ============================================================
   ANNOUNCEMENT BAR (yellow) — homepage top
   ============================================================ */
.announcement-bar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 34px;
  z-index: 60;                 /* above the fixed header (50) */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  text-align: center;
  background: #FFD400;
  color: #141414;
  font-family: system-ui, -apple-system, 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-header.has-bar { top: 34px; }               /* push header below the bar */
.announcement-bar ~ #hero .hero-top-image { top: 144px; }  /* nudge hero logo clear of bar */

@media (max-width: 900px) {
  .announcement-bar { font-size: 0.72rem; letter-spacing: 0.08em; }
  .announcement-bar ~ #hero .hero-top-image { top: 114px; }
}

/* ============================================================
   REVIEWS — auto-scrolling marquee of Google reviews
   ============================================================ */
.reviews { background: #050505; }

.reviews-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.reviews-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation-name: reviewScroll;
  animation-timing-function: linear;   /* constant speed = smooth */
  animation-iteration-count: infinite;
  /* animation-duration is set inline, scaled to the number of reviews */
}
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }

.reviews-group {
  display: flex;
  gap: 20px;
  padding-right: 20px;   /* keeps spacing even across the loop seam */
}

/* left -> right travel, seamless with 3 identical groups */
@keyframes reviewScroll {
  from { transform: translateX(-33.3333%); }
  to   { transform: translateX(0); }
}

.review-card {
  flex: 0 0 320px;
  width: 320px;
  margin: 0;
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-stars { color: #FFC531; font-size: 1rem; letter-spacing: 3px; }
.review-text {
  margin: 0;
  color: #d2d2d2;
  font-size: 0.95rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-name {
  margin-top: auto;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.review-src { color: #8a8a8a; font-weight: 400; font-size: 0.78rem; }

@media (max-width: 520px) {
  .review-card { flex-basis: 270px; width: 270px; }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; transform: none; }
  .reviews-marquee { overflow-x: auto; }
}

/* ============================================================
   LUXURY POLISH — smooth, premium touches (no content changes)
   ============================================================ */

/* Smooth anchor scrolling that lands clear of the fixed header */
html { scroll-behavior: smooth; scroll-padding-top: 100px; }

/* Crisper type rendering */
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }

/* Refined text selection */
::selection { background: rgba(245, 197, 24, 0.85); color: #101010; }

/* Refined dark scrollbar */
html { scrollbar-width: thin; scrollbar-color: #1c1c1c #050505; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { background: #1c1c1c; border-radius: 20px; border: 3px solid #050505; }
::-webkit-scrollbar-thumb:hover { background: #2c2c2c; }

/* Scroll reveal — hidden pre-paint only when .reveal-on is set on <html> (motion-safe, JS-gated) */
.reveal-on .section-heading,
.reveal-on .service-grid,
.reveal-on .featured-grid,
.reveal-on .about-content,
.reveal-on .about-photo,
.reveal-on .pricing-grid,
.reveal-on .reviews-marquee,
.reveal-on .contact-form,
.reveal-on .shopify-form-container,
.reveal-on .product-info,
.reveal-on .collection-grid,
.reveal-on .collection-pagination,
.reveal-on .cart-form,
.reveal-on .cart-summary {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .85s cubic-bezier(.2,.7,.2,1), transform .85s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal-on .in-view { opacity: 1 !important; transform: none !important; }

/* Header lifts subtly once you start scrolling */
.site-header { transition: background .35s ease, box-shadow .35s ease, border-color .35s ease; }
.site-header.scrolled {
  background: rgba(5, 5, 5, 0.97);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.55);
  border-bottom-color: rgba(255, 255, 255, 0.10);
}

/* Silkier card motion + deeper premium shadow */
.service-card, .pricing-card, .collection-card, .catalog-item, .featured-item {
  transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s cubic-bezier(.2,.7,.2,1), border-color .35s ease;
}
.service-card:hover, .pricing-card:hover, .collection-card:hover {
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.85);
}

/* Subtle light sweep across the yellow bar */
.announcement-bar { overflow: hidden; }
.announcement-bar::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 55%; height: 100%;
  pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: translateX(-180%);
  animation: barSheen 7s ease-in-out infinite;
}
@keyframes barSheen {
  0%, 58% { transform: translateX(-180%); }
  100%    { transform: translateX(320%); }
}

/* Sheen sweep on the primary buttons when hovered */
.product-atc, .cart-checkout-btn, .cart-empty-cta { position: relative; overflow: hidden; }
.product-atc::after, .cart-checkout-btn::after {
  content: "";
  position: absolute;
  top: 0; left: -40%;
  width: 35%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.65), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}
.product-atc:hover::after, .cart-checkout-btn:hover::after { animation: btnSheen .85s ease; }
@keyframes btnSheen {
  from { left: -40%; opacity: .85; }
  to   { left: 130%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .announcement-bar::after,
  .product-atc::after,
  .cart-checkout-btn::after { animation: none; display: none; }
}

/* ============================================================
   HERO — centered stack (logo top · one-line tagline · video · caption)
   ============================================================ */
.hero {
  height: auto;
  min-height: 100vh;
  padding: 132px 6vw 56px;      /* clears the fixed announcement bar + header */
}
.hero-stack {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero-logo { margin: 0; }
.hero-logo img {
  height: 120px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.65));
}
.hero-headline {
  margin: 4px 0 0;
  font-size: clamp(1.05rem, 2.05vw, 1.9rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
  white-space: nowrap;          /* one line on desktop */
  color: #ffffff;
}
.hero-subtitle {
  margin: -6px 0 0;
  color: #cfcfcf;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.hero-stack .hero-video-wrapper {
  width: 100%;
  max-width: 820px;
  max-height: none;
  margin: 8px auto 0;
}
.hero-caption {
  margin: 4px 0 0;
  color: #ececec;
  font-size: 0.98rem;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.55rem;
  color: #ffffff;
  padding-left: 2px;
  backdrop-filter: blur(4px);
}
.hero-stack .hero-socials {
  position: static;
  transform: none;
  top: auto;
  bottom: auto;
  display: flex;
  gap: 20px;
  margin: 8px auto 0;
}
.hero-stack .social-icon { top: auto; }

@media (max-width: 900px) {
  .hero { padding-top: 116px; }
  .hero-logo img { height: 92px; }
}
@media (max-width: 600px) {
  .hero-headline { white-space: normal; font-size: 1.12rem; }
  .hero-stack .hero-video-wrapper { max-width: 100%; }
}

/* ============================================================
   EXPERIENCE / TRACK RECORD (below Partial Portfolio)
   ============================================================ */
.experience { background: #070707; }

.portfolio-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  max-width: 980px;
  margin: 0 auto 34px;
}
.stat {
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  transition: transform .45s cubic-bezier(.2,.7,.2,1), border-color .35s ease, box-shadow .45s ease;
}
.stat:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.75);
}
.stat-num {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  background: linear-gradient(180deg, #ffffff, #bfbfbf);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  font-size: 0.78rem;
  color: #a7a7a7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.portfolio-clients {
  max-width: 780px;
  margin: 0 auto 16px;
  text-align: center;
  color: #d2d2d2;
  font-size: 1.02rem;
  line-height: 1.75;
}
.portfolio-clients strong { color: #ffffff; font-weight: 600; }
.portfolio-fun {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  color: #b5b5b5;
  font-size: 0.96rem;
  line-height: 1.7;
  font-style: italic;
}

/* ============================================================
   HERO — shoppable t-shirts flanking the video
   ============================================================ */
.hero-stack { max-width: 1240px; }   /* widen so the tees fit beside the video */

.hero-video-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  width: 100%;
  margin: 8px auto 0;
}
.hero-video-row .hero-video-wrapper {
  flex: 1 1 620px;
  max-width: 660px;
  margin: 0;
}
.hero-tshirt {
  flex: 0 0 196px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.hero-tshirt-card {
  display: block;
  width: 100%;
  border-radius: 16px;
  padding: 12px;
  background: radial-gradient(circle at 50% 32%, #eeeeee, #cacaca);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.hero-tshirt-card:hover { transform: translateY(-5px); box-shadow: 0 26px 56px rgba(0, 0, 0, 0.7); }
.hero-tshirt-card img { width: 100%; display: block; }

.hero-shopnow {
  display: inline-block;
  padding: 11px 26px;
  border-radius: 999px;
  background: #ffffff;
  color: #0a0a0a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .25s ease, background .2s ease;
}
.hero-shopnow:hover { transform: translateY(-2px); background: #ececec; box-shadow: 0 12px 28px rgba(255,255,255,0.18); }

@media (max-width: 980px) {
  .hero-video-row { flex-wrap: wrap; gap: 20px; }
  .hero-video-row .hero-video-wrapper { flex: 1 1 100%; max-width: 640px; order: -1; }
  .hero-tshirt { flex: 1 1 40%; max-width: 240px; }
}
@media (max-width: 480px) {
  .hero-tshirt { flex: 1 1 44%; }
  .hero-tshirt-card { padding: 8px; }
  .hero-shopnow { padding: 9px 18px; font-size: 0.74rem; }
}

/* ============================================================
   FLOATING MERCH BUTTON — appears on scroll, links to shop
   ============================================================ */
.floating-merch {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 999px;
  background: #ffffff;
  color: #0a0a0a;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(22px);
  pointer-events: none;
  transition: opacity .4s ease, transform .4s ease, background .2s ease;
}
.floating-merch.visible { opacity: 1; transform: none; pointer-events: auto; }
.floating-merch:hover { transform: translateY(-3px); background: #ececec; }
.floating-merch-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #ff5ea8;
  animation: merchPulse 2.2s ease-out infinite;
}
@keyframes merchPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 94, 168, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(255, 94, 168, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 94, 168, 0); }
}
@media (max-width: 600px) {
  .floating-merch { right: 14px; bottom: 14px; padding: 11px 18px; font-size: 0.78rem; }
}
@media (prefers-reduced-motion: reduce) {
  .floating-merch-dot { animation: none; }
  .floating-merch, .floating-merch.visible { transform: none; }
}

/* ============================================================
   HERO — 360° t-shirt spinner (turns through all 4 sides)
   ============================================================ */
.hero-tshirt-card { overflow: hidden; }
.shirt360 {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  perspective: 620px;
}
.shirt360 img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: rotateY(-32deg) scale(.97);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  animation: shirtCycle 16s ease-in-out infinite;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.32));
}
.shirt360 img:nth-child(2) { animation-delay: 4s; }
.shirt360 img:nth-child(3) { animation-delay: 8s; }
.shirt360 img:nth-child(4) { animation-delay: 12s; }
/* right spinner runs half a cycle ahead so the two show different angles */
.hero-tshirt-b .shirt360 img:nth-child(1) { animation-delay: -8s; }
.hero-tshirt-b .shirt360 img:nth-child(2) { animation-delay: -4s; }
.hero-tshirt-b .shirt360 img:nth-child(3) { animation-delay: 0s; }
.hero-tshirt-b .shirt360 img:nth-child(4) { animation-delay: 4s; }

@keyframes shirtCycle {
  0%   { opacity: 0; transform: rotateY(-32deg) scale(.97); }
  6%   { opacity: 1; transform: rotateY(0deg) scale(1); }
  19%  { opacity: 1; transform: rotateY(0deg) scale(1); }
  25%  { opacity: 0; transform: rotateY(32deg) scale(.97); }
  100% { opacity: 0; transform: rotateY(-32deg) scale(.97); }
}

@media (prefers-reduced-motion: reduce) {
  .shirt360 img { animation: none; opacity: 0; transform: none; }
  .shirt360 img:nth-child(1) { opacity: 1; }
  .hero-tshirt-b .shirt360 img:nth-child(1) { opacity: 0; }
  .hero-tshirt-b .shirt360 img:nth-child(3) { opacity: 1; }
}

/* ============================================================
   MOBILE — show a single larger 360 spinner (hide the second)
   ============================================================ */
@media (max-width: 980px) {
  .hero-tshirt-b { display: none; }          /* hide the second spinner on mobile */
  .hero-tshirt-a { flex: 1 1 100%; max-width: 300px; margin: 0 auto; }
  .hero-tshirt-a .hero-tshirt-card { max-width: 300px; }
}

/* ============================================================
   HEADER LOGO IMAGE (MDM) + shop contact link
   ============================================================ */
.logo { display: inline-flex; align-items: center; }
.logo-img {
  height: 38px;
  width: auto;
  display: block;
}
@media (max-width: 900px) { .logo-img { height: 32px; } }
@media (max-width: 480px) { .logo-img { height: 28px; } }

.collection-contact-link {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color 0.2s ease;
}
.collection-contact-link:hover { color: #ff6ea9; }

/* ============================================================
   MERCH SLIDESHOW — "Check out our newest swag" (reuses marquee)
   ============================================================ */
.merch-slideshow { background: #050505; }

.merch-slide {
  flex: 0 0 240px;
  width: 240px;
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease, border-color .3s ease;
}
.merch-slide:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8);
}
.merch-slide-media {
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at top, #161616, #0c0c0c);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.merch-slide-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.merch-slide-media--light { background: radial-gradient(circle at 50% 35%, #ededed, #cacaca); padding: 14px; }
.merch-slide-media--light img { object-fit: contain; }
.merch-slide-body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 3px; }
.merch-slide-title { font-size: 0.92rem; font-weight: 600; line-height: 1.3; }
.merch-slide-price { font-size: 0.85rem; color: #b5b5b5; }

.merch-view-wrap { text-align: center; margin-top: 30px; position: relative; z-index: 1; }
.merch-view-btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 999px;
  background: #ffffff;
  color: #0a0a0a;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .25s ease, background .2s ease;
}
.merch-view-btn:hover { transform: translateY(-2px); background: #ececec; box-shadow: 0 14px 30px rgba(255, 255, 255, 0.16); }

@media (max-width: 520px) {
  .merch-slide { flex-basis: 200px; width: 200px; }
}

/* ============================================================
   DIAGONAL LOGO WATERMARK — subtle background behind content
   (applied to content sections + body; NOT the hero top image)
   ============================================================ */
body,
.what-we-do,
.featured-work,
.about,
.pricing,
.experience,
.reviews,
.merch-slideshow {
  background-image: url('./logo-watermark.png');
  background-repeat: repeat;
  background-attachment: scroll;
  background-size: 560px 560px;
}

/* ============================================================
   MERCH PAGE HEADING — big flip (Merch <-> spinning logo)
   ============================================================ */
.merch-flip--heading {
  width: min(360px, 82vw);
  height: 100px;
  perspective: 1500px;
  margin: 0 auto 6px;
  vertical-align: middle;
}
.merch-flip--heading .merch-front {
  color: #ffffff;
  font-family: inherit;
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 3.7rem);
  letter-spacing: 0.01em;
  line-height: 1;
}
.merch-flip--heading .merch-back img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.6));
}
/* keep the gentle hover-scale from .merch-flip; disable its animation only if reduced motion */
@media (prefers-reduced-motion: reduce) {
  .merch-flip--heading .merch-flip-inner { animation: none; transform: none; }
}

/* ============================================================
   CONTACT SECTION — socials (L/R) + phone / email / Google
   ============================================================ */
.contact-section { text-align: center; }
.contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 10px auto 0;
  position: relative;
  z-index: 1;
}
.contact-social {
  position: static;
  top: auto;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
}
.contact-social svg { width: 26px; height: 26px; }
.contact-social:hover {
  background: #ff6ea9;
  border-color: #ff6ea9;
  color: #0a0a0a;
  transform: translateY(-3px);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: center;
}
.contact-line {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #e8e8e8;
  text-decoration: none;
  font-size: 1.04rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}
.contact-line:hover { color: #ff6ea9; }
.contact-ico { width: 20px; height: 20px; color: #ff6ea9; flex-shrink: 0; }

@media (max-width: 600px) {
  .contact-row { gap: 26px; }
  .contact-line { font-size: 0.95rem; }
  .contact-social { width: 50px; height: 50px; }
}

/* ============================================================
   iPHONE GIVEAWAY — scrolling bar, pop-out, banner, entries
   ============================================================ */

/* --- Scrolling announcement bar --- */
.announcement-bar { justify-content: flex-start; padding: 0; }
.announcement-bar::after { display: none; }   /* drop the sheen while it scrolls */
.announcement-track {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  align-items: center;
  height: 100%;
  will-change: transform;
  animation: annScroll 26s linear infinite;
}
.announcement-item { padding: 0 34px; flex: 0 0 auto; }
@keyframes annScroll { from { transform: translateX(0); } to { transform: translateX(-33.333%); } }
.announcement-bar:hover .announcement-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .announcement-track { animation: none; } }

/* --- Pop-out promo --- */
.promo-popup {
  position: fixed;
  right: 16px; bottom: 16px;
  z-index: 90;
  width: min(300px, 74vw);
  transform: translateX(135%);
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.promo-popup.show { transform: translateX(0); pointer-events: auto; }
.promo-inner { position: relative; }
.promo-inner img { width: 100%; display: block; filter: drop-shadow(0 14px 34px rgba(0,0,0,.7)); }
.promo-close {
  position: absolute; top: 2px; right: 2px;
  width: 30px; height: 30px; border-radius: 50%;
  background: #fff; color: #111; border: none;
  font-size: 22px; line-height: 1; cursor: pointer; padding: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.55); z-index: 3;
}
.promo-close:hover { background: #eaeaea; }
.promo-img-link { display: block; }
.promo-enter {
  display: block; text-align: center; margin-top: 2px;
  background: linear-gradient(90deg, #ff8a2b, #ff6a00);
  color: #fff; padding: 12px; border-radius: 12px;
  font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: .9rem;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(255,106,0,.45);
  transition: transform .15s ease, box-shadow .25s ease;
}
.promo-enter:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(255,106,0,.6); }
@media (max-width: 600px) { .promo-popup { width: min(240px, 68vw); right: 10px; bottom: 10px; } }

/* --- iPhone giveaway banner on the merch page --- */
.iphone-promo-banner {
  max-width: 1000px;
  margin: 4px auto 34px;
  display: flex;
  align-items: center;
  gap: 30px;
  background: radial-gradient(circle at 25% 20%, #201811, #0c0c0c);
  border: 1px solid rgba(255, 140, 40, 0.32);
  border-radius: 20px;
  padding: 22px 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.iphone-promo-text { flex: 1 1 auto; }
.iphone-promo-eyebrow {
  display: inline-block;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: #ff8a2b; font-weight: 800; margin-bottom: 8px;
}
.iphone-promo-text h3 { font-size: clamp(1.3rem, 2.6vw, 1.9rem); line-height: 1.2; margin-bottom: 8px; color: #fff; }
.iphone-promo-text p { color: #cfcfcf; font-size: 0.98rem; }
.iphone-promo-img { flex: 0 0 auto; width: auto; max-height: 200px; filter: drop-shadow(0 14px 30px rgba(0,0,0,.6)); }
@media (max-width: 640px) {
  .iphone-promo-banner { gap: 16px; padding: 16px 18px; }
  .iphone-promo-img { max-height: 130px; }
  .iphone-promo-text p { font-size: 0.9rem; }
}

/* --- Entries badge --- */
.entries-badge {
  display: inline-block;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.03em; text-transform: uppercase;
  color: #ff8a2b;
  background: rgba(255, 138, 43, 0.12);
  border: 1px solid rgba(255, 138, 43, 0.38);
  padding: 3px 10px; border-radius: 999px;
  margin: 2px 0 7px; width: fit-content;
}
.entries-badge--lg { font-size: 0.86rem; padding: 6px 15px; margin: 0 0 16px; }
.product-entries { margin: 0; }

/* ============================================================
   HERO LOOPING VIDEO BACKGROUND
   ============================================================ */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero .hero-overlay { z-index: 1; background: rgba(0, 0, 0, 0.5); }
.hero .hero-stack { z-index: 2; }

/* ============================================================
   SWAG GIVEAWAY LINE (glowing red) + promo "Click to Enter"
   ============================================================ */
.swag-giveaway-line {
  color: #ff2f3d !important;
  font-weight: 800;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 10px;
  text-shadow:
    0 0 6px rgba(255, 47, 61, 0.9),
    0 0 16px rgba(255, 47, 61, 0.65),
    0 0 34px rgba(255, 47, 61, 0.4);
  animation: redGlow 2.4s ease-in-out infinite;
}
@keyframes redGlow {
  0%, 100% {
    text-shadow:
      0 0 6px rgba(255, 47, 61, 0.85),
      0 0 16px rgba(255, 47, 61, 0.55),
      0 0 32px rgba(255, 47, 61, 0.32);
  }
  50% {
    text-shadow:
      0 0 10px rgba(255, 47, 61, 1),
      0 0 26px rgba(255, 47, 61, 0.85),
      0 0 52px rgba(255, 47, 61, 0.6);
  }
}

/* "Click to Enter" on the pop-out iPhone */
.promo-img-link { position: relative; }
.promo-click-badge {
  position: absolute;
  left: 50%;
  bottom: 12%;
  transform: translateX(-50%);
  background: #ffffff;
  color: #111111;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  pointer-events: none;
  animation: clickPulse 1.9s ease-in-out infinite;
}
@keyframes clickPulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50%      { transform: translateX(-50%) scale(1.07); }
}
.promo-img-link:hover .promo-click-badge { background: #ff8a2b; color: #fff; }

@media (prefers-reduced-motion: reduce) {
  .swag-giveaway-line, .promo-click-badge { animation: none; }
}
@media (max-width: 600px) {
  .promo-click-badge { font-size: 0.68rem; padding: 6px 12px; }
}

/* Single orange Enter button, sitting on the phone (replaces the white badge
   and the separate button below) */
.promo-click-badge {
  background: linear-gradient(90deg, #ff8a2b, #ff6a00);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 11px 22px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(255, 106, 0, 0.5);
}
.promo-img-link:hover .promo-click-badge {
  background: linear-gradient(90deg, #ffa04f, #ff7a15);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(255, 106, 0, 0.65);
}
@media (max-width: 600px) {
  .promo-click-badge { font-size: 0.72rem; padding: 9px 16px; }
}

/* ============================================================
   MERCH — COMING SOON (launch version)
   ============================================================ */
.merch-soon-line {
  color: #ffffff !important;
  font-weight: 800;
  font-size: clamp(1.1rem, 2.6vw, 1.6rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 12px 0 10px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.35), 0 0 28px rgba(255, 110, 169, 0.35);
  animation: soonPulse 2.6s ease-in-out infinite;
}
@keyframes soonPulse {
  0%, 100% { opacity: 0.85; }
  50%      { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .merch-soon-line { animation: none; } }

/* ============================================================
   SUBSCRIBE POP-UP (email + phone / SMS list) + giveaway timer
   ============================================================ */
.subscribe-popup { position: fixed; inset: 0; z-index: 95; display: none; }
.subscribe-popup.show { display: flex; align-items: center; justify-content: center; padding: 20px; }
.subscribe-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.72); backdrop-filter: blur(3px); }
.subscribe-card {
  position: relative; z-index: 1;
  width: min(410px, 100%);
  background: #101010;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 36px 30px 24px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.75);
}
.subscribe-close {
  position: absolute; top: 12px; right: 14px;
  background: none; border: none; color: #999; font-size: 26px; line-height: 1; cursor: pointer; padding: 0;
}
.subscribe-close:hover { color: #fff; }
.subscribe-title { color: #fff; font-size: clamp(1.35rem,3.4vw,1.7rem); font-weight: 800; margin-bottom: 8px; line-height: 1.25; }
.subscribe-sub { color: #cfcfcf; font-size: 0.98rem; margin-bottom: 18px; }
.subscribe-card input {
  width: 100%; box-sizing: border-box;
  padding: 13px 16px; margin-bottom: 11px;
  border-radius: 12px; border: 1px solid rgba(255,255,255,0.16);
  background: #191919; color: #fff; font-size: 1rem;
}
.subscribe-card input::placeholder { color: #888; }
.subscribe-card input:focus { outline: none; border-color: #ff6ea9; }
.subscribe-submit {
  width: 100%; padding: 14px; margin-top: 4px;
  border-radius: 12px; border: none; cursor: pointer;
  background: #ffffff; color: #0a0a0a;
  font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.9rem;
  transition: transform .15s ease, background .2s ease;
}
.subscribe-submit:hover { transform: translateY(-2px); background: #ececec; }
.subscribe-fine { font-size: 0.7rem; color: #888; margin-top: 14px; }
.subscribe-success { color: #4ade80; font-weight: 700; font-size: 1.05rem; padding: 18px 0; }

.giveaway-timer {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  margin: 0 auto 18px; padding: 10px 16px;
  border: 1px solid rgba(255,138,43,0.40);
  border-radius: 12px;
  background: rgba(255,138,43,0.08);
}
.giveaway-timer-label { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: #ff8a2b; font-weight: 800; }
.giveaway-timer-clock { color: #fff; font-weight: 800; font-size: 1.15rem; font-variant-numeric: tabular-nums; }
.iphone-promo-disclaimer { font-size: 0.68rem; color: #8a8a8a; margin-top: 6px; }

/* ============================================================
   404 PAGE
   ============================================================ */
.notfound-section { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 90px 20px; text-align: center; }
.notfound-inner { max-width: 480px; }
.notfound-logo { height: 66px; width: auto; margin-bottom: 22px; }
.notfound-code { font-size: clamp(4rem, 14vw, 7rem); font-weight: 800; line-height: 1; color: #fff; text-shadow: 0 0 30px rgba(255,110,169,0.4); }
.notfound-title { font-size: 1.5rem; color: #fff; margin: 6px 0 10px; }
.notfound-text { color: #b5b5b5; margin-bottom: 28px; }
.notfound-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.notfound-btn { display: inline-block; padding: 13px 28px; border-radius: 999px; background: #fff; color: #0a0a0a; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.85rem; text-decoration: none; transition: transform .15s ease, background .2s ease; }
.notfound-btn:hover { transform: translateY(-2px); background: #ececec; }
.notfound-btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.notfound-btn--ghost:hover { background: rgba(255,255,255,0.1); }

/* ============================================================
   NICER CONTACT FORM
   ============================================================ */
.contact-form-wrap { max-width: 640px; margin: 34px auto 0; position: relative; z-index: 1; }
.mdm-contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mdm-contact-form input, .mdm-contact-form textarea {
  width: 100%; box-sizing: border-box; padding: 14px 16px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.04);
  color: #fff; font-size: 1rem; font-family: inherit; transition: border-color .2s ease, background .2s ease;
}
.mdm-contact-form input::placeholder, .mdm-contact-form textarea::placeholder { color: #8a8a8a; }
.mdm-contact-form input:focus, .mdm-contact-form textarea:focus { outline: none; border-color: #ff6ea9; background: rgba(255,255,255,0.06); }
.mdm-contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form-submit {
  align-self: center; margin-top: 6px; padding: 14px 40px; border-radius: 999px; border: none; cursor: pointer;
  background: #fff; color: #0a0a0a; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.9rem;
  transition: transform .15s ease, background .2s ease, box-shadow .25s ease;
}
.contact-form-submit:hover { transform: translateY(-2px); background: #ececec; box-shadow: 0 12px 28px rgba(255,255,255,0.15); }
.contact-form-success { background: rgba(74,222,128,0.12); border: 1px solid rgba(74,222,128,0.4); color: #4ade80; padding: 14px; border-radius: 12px; text-align: center; font-weight: 600; }
@media (max-width: 560px) { .contact-form-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SLIM "SIGN UP" TAB (left edge)
   ============================================================ */
.signup-tab {
  position: fixed; left: 0; top: 50%; transform: translateY(-50%);
  writing-mode: vertical-rl; z-index: 86;
  background: linear-gradient(180deg, #ff6ea9, #ff4f93); color: #fff; border: none; cursor: pointer;
  padding: 16px 9px; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 0 12px 12px 0; box-shadow: 3px 0 16px rgba(0,0,0,0.45);
  transition: padding .2s ease, background .2s ease;
}
.signup-tab:hover { padding-right: 13px; background: linear-gradient(180deg, #ff85b8, #ff5c9c); }
@media (max-width: 600px) { .signup-tab { font-size: 0.68rem; padding: 13px 6px; letter-spacing: 0.1em; } }
@media (prefers-reduced-motion: reduce) { .signup-tab { transition: none; } }

/* Header "Get Drop Alerts" CTA (launch / pre-drop email capture) */
.desktop-nav ul li .nav-cta {
  border: none; cursor: pointer; font: inherit;
  background: linear-gradient(90deg, #ff6ea9, #ff4f93);
  color: #fff; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.78rem;
  padding: 9px 18px; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(255,110,169,0.35);
  transition: transform .15s ease, box-shadow .25s ease;
}
.desktop-nav ul li .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(255,110,169,0.5); }
.mobile-nav-cta {
  background: linear-gradient(90deg, #ff6ea9, #ff4f93) !important;
  color: #fff !important; border: none; cursor: pointer; font: inherit;
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; text-align: center;
}
