/** 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: 260px;
  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;
}

