/* =========================================================
   GLOBAL
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

a,
a:visited {
  color: inherit;
  text-decoration: none;
}

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

.page {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 72px;
}

/* =========================================================
   NAVBAR
========================================================= */

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 28px 0;
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.logo {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 0.9;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 28px;
  height: 32px;
  background: linear-gradient(135deg, #35d7ff, #ff3eb5, #ffd22e);
  clip-path: polygon(0 15%, 25% 0, 100% 60%, 75% 100%);
}

nav {
  display: flex;
  gap: 54px;
}

nav a {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
  padding-bottom: 8px;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: #ff3eb5;
  transition: 0.3s ease;
}

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

/* =========================================================
   BUTTON
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #ff3eb5;
  color: white;
  min-width: 190px;
  height: 52px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(255, 62, 181, 0.35);
}

.btn:visited,
.btn:link {
  color: white;
}

/* =========================================================
   HOME HERO
========================================================= */

.hero {
  min-height: 790px;
  background:
    linear-gradient(90deg, #000 0%, rgba(0,0,0,0.92) 34%, rgba(0,0,0,0.25) 72%),
    url("../images/hero-bg.png") center right / cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 55px;
  right: 0;
  width: 130px;
  height: 170px;
  background:
    linear-gradient(#67dcff, #67dcff) 0 0 / 28px 110px no-repeat,
    linear-gradient(#ff3eb5, #ff3eb5) 52px 20px / 28px 120px no-repeat,
    linear-gradient(#ffd63d, #ffd63d) 105px 70px / 28px 120px no-repeat;
  transform: rotate(34deg);
}

.hero-content {
  max-width: 520px;
  padding-top: 80px;
}

.hero h1 {
  font-size: 72px;
  line-height: 0.94;
  letter-spacing: -0.05em;
  margin-bottom: 28px;
  font-weight: 800;
}

.cyan { color: #49d9f3; }
.pink { color: #ff3eb5; }
.yellow { color: #ffd22e; }

.tagline {
  color: #ffd22e;
  font-size: 14px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  margin-bottom: 34px;
  font-weight: 700;
}

.hero p {
  color: #d7d7d7;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 42px;
}

/* =========================================================
   ABOUT
========================================================= */

.about {
  background: #f3f3f3;
  color: #111;
  padding: 110px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.about h2 {
  font-size: 58px;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 28px;
  font-weight: 300;
}

.pink-line {
  width: 90px;
  height: 4px;
  background: #ff3eb5;
  margin-bottom: 34px;
}

.about p {
  font-size: 18px;
  line-height: 1.65;
  color: #333;
  margin-bottom: 28px;
}

.small-copy {
  font-size: 12px !important;
  color: #555 !important;
  border-top: 1px solid #ccc;
  padding-top: 22px;
}

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual img {
  width: 100%;
  max-width: 560px;
}

/* =========================================================
   HOME SPLIT SECTION
========================================================= */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  background: #000;
}

.split-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 72px 70px;
}

.split-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: 0.5s ease;
}

.split-card.services::before {
  background-image:
    linear-gradient(to top, rgba(0,0,0,0.92), rgba(0,0,0,0.3)),
    url("../images/services-bg.png");
}

.split-card.projects::before {
  background-image:
    linear-gradient(to top, rgba(0,0,0,0.92), rgba(0,0,0,0.3)),
    url("../images/projects-bg.png");
}

.split-card:hover::before {
  transform: scale(1.05);
}

.split-content {
  position: relative;
  z-index: 2;
  max-width: 420px;
}

.circle-icon {
  width: 74px;
  height: 74px;
  border: 1px solid white;
  border-radius: 50%;
  margin-bottom: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.split h3 {
  font-size: 42px;
  margin-bottom: 14px;
}

.split p {
  color: #d5d5d5;
  line-height: 1.7;
  margin-bottom: 30px;
}

.text-link {
  border-bottom: 1px solid white;
  padding-bottom: 8px;
  font-weight: 700;
}

/* =========================================================
   BRAND STRIP + FOOTER
========================================================= */

.brand-strip {
  background: #000;
  padding: 54px 0;
  border-bottom: 1px solid #222;
}

.brand-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
}

.brand-row div {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #333;
  font-size: 28px;
}

.brand-row div:last-child {
  border-right: none;
}

.script {
  font-family: Georgia, serif;
  font-style: italic;
}

footer {
  background: #000;
  padding: 75px 0 85px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 80px;
}

footer h4 {
  margin-bottom: 24px;
  text-transform: uppercase;
  font-size: 15px;
}

footer p,
footer a {
  color: #cfcfcf;
  line-height: 2;
  font-size: 13px;
}

.socials {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

/* =========================================================
   SERVICES PAGE
========================================================= */

.services-showcase {
  background: #000;
  color: white;
  padding: 130px 0 70px;
  overflow: hidden;
}

.services-showcase .page {
  max-width: 1650px;
}

.services-showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 90px;
  align-items: stretch;
}

.services-left {
  position: relative;
  min-height: 820px;
  padding: 40px 50px 70px 0;
  border-right: 1px solid #242424;
  overflow: hidden;
}

.services-left::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: 0;
  width: 760px;
  height: 430px;
  background:
    linear-gradient(to bottom, #000 0%, rgba(0,0,0,0.65) 18%, rgba(0,0,0,0) 30%),
    linear-gradient(to top, rgba(0,0,0,0.15), rgba(0,0,0,0)),
    url("../images/services-bg.png") center / cover no-repeat;
  opacity: 0.9;
  z-index: 0;
}

.services-left > * {
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: #ff3eb5;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.services-left h2 {
  font-size: 66px;
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 34px;
}

.services-left h2 span {
  background: linear-gradient(90deg, #49d9f3, #ff3eb5, #ffd22e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-copy {
  color: #cfcfcf;
  font-size: 18px;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 42px;
}

.services-hero-img {
  display: none;
}

.services-right {
  padding-top: 35px;
}

.service-item {
 display: grid;
  grid-template-columns: 70px minmax(360px, 1fr) 260px;
  gap: 34px;
  align-items: center;
  padding: 38px 0;
  border-bottom: 1px solid #252525;
  color: white;
}

.service-number {
  color: #ff3eb5;
  font-size: 38px;
  font-weight: 500;
}

.service-text h3 {
  font-size: 34px;
  line-height: 1;
  margin-bottom: 18px;
  white-space: nowrap;
}

.service-text p {
  color: #c9c9c9;
  font-size: 16px;
  line-height: 1.55;
  max-width: 390px;
}

.service-thumb {
  width: 260px;
  height: 155px;
  object-fit: cover;
  border-radius: 10px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {
  .page {
    padding: 0 24px;
  }

  .nav {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  nav {
    gap: 22px;
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: 54px;
  }

  .about-grid,
  .split,
  .footer-grid,
  .brand-row,
  .services-showcase-grid {
    grid-template-columns: 1fr;
  }

  .about h2,
  .services-left h2 {
    font-size: 42px;
  }

  .split-card {
    min-height: 520px;
    padding: 0 28px 52px;
  }

  .brand-row div {
    border-right: none;
    border-bottom: 1px solid #222;
  }

  .services-showcase {
    padding: 150px 0 50px;
  }

  .services-left {
    min-height: auto;
    border-right: none;
    padding-right: 0;
  }

  .services-left::after {
    display: none;
  }

  .service-item {
    grid-template-columns: 54px 1fr;
    gap: 18px;
  }

  .service-thumb,
  .service-arrow {
    display: none;
  }

  .service-number {
    font-size: 28px;
  }

  .service-text h3 {
    font-size: 28px;
    white-space: normal;
  }

  .service-text p {
    font-size: 15px;
  }

 .services-bottom-line {
  margin-top: 40px;
  text-align: right;
  padding-right: 40px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 14px;
  color: #d0d0d0;
}
   .services-bottom-line span {
  color: #ff3eb5;
}
}

/* =========================================================
   PACKAGING DETAIL PAGE
========================================================= */

.package-hero {
  min-height: 560px;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.95) 0%,
      rgba(0,0,0,0.8) 35%,
      rgba(0,0,0,0.15) 80%
    ),
    url("../images/packaging-hero.png") center right / cover no-repeat;

  display: flex;
  align-items: center;
  padding-top: 90px;
}

.package-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.package-hero h1 {
  font-size: 82px;
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 28px;
}

.package-hero p {
  color: #ddd;
  font-size: 18px;
  line-height: 1.7;
  max-width: 520px;
}

.center {
  text-align: center;
}

/* =========================================================
   PACKAGE SECTION
========================================================= */

.package-options {
  background: #000;
  padding: 80px 0 60px;
}

.package-options h2,
.process-section h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 45px;
}

.package-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* =========================================================
   PACKAGE CARD
========================================================= */

.package-card {
  border: 1px solid #2a2a2a;
  border-radius: 18px;
  overflow: hidden;

  display: grid;
  grid-template-columns: 56% 48%;

  min-height: 720px;

  background:
    linear-gradient(
      135deg,
      #050505,
      #111
    );
}

/* =========================================
   test SNAKE BORDER HOVER EFFECT
========================================= */

.package-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #222;
  background: linear-gradient(145deg, #050505, #0b0b0b);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease;
}

/* INNER BACKGROUND */
.package-card::before {
  content: "";

  position: absolute;
  inset: 1px;

  border-radius: 21px;

  background: linear-gradient(145deg, #050505, #0b0b0b);

  z-index: 1;
}

/* MOVING LIGHT */
.package-card::after {
  content: "";

  position: absolute;

  width: 160px;
  height: 160px;

  background:
    radial-gradient(
      circle,
      rgba(255,62,181,0.95) 0%,
      rgba(255,62,181,0.35) 35%,
      transparent 70%
    );

  top: -80px;
  left: -80px;

  opacity: 0;

  z-index: 0;

  transition: opacity 0.35s ease;

  animation: snakeBorder 5s linear infinite;
}

/* KEEP CONTENT ABOVE */
.package-card > * {
  position: relative;
  z-index: 2;
}

/* HOVER */
.package-card:hover {
  transform: translateY(-6px);
  border-color: #ff3eb5;
}

.package-card:hover::after {
  opacity: 1;
}

/* BORDER PATH */
@keyframes snakeBorder {

  0% {
    top: -80px;
    left: -80px;
  }

  25% {
    top: -80px;
    left: calc(100% - 80px);
  }

  50% {
    top: calc(100% - 80px);
    left: calc(100% - 80px);
  }

  75% {
    top: calc(100% - 80px);
    left: -80px;
  }

  100% {
    top: -80px;
    left: -80px;
  }
}

/* =========================================================
   LEFT INFO SIDE
========================================================= */

.package-info {
  padding: 56px 54px;
  max-width: 560px;

  position: relative;
  z-index: 5;
}

.package-icon {
  width: 64px;
  height: 64px;

  border-radius: 50%;

  background: #ff3eb5;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;

  margin-bottom: 24px;
}

.package-info h3 {
  font-size: 24px;
  line-height: 1;
  font-weight: 800;

  color: #fff;

  margin-bottom: 18px;

  letter-spacing: -0.03em;

  white-space: nowrap;

  position: relative;
  z-index: 5;
}

.muted {
  color: #aaa;
  margin-bottom: 34px;

  font-size: 18px;
  line-height: 1.6;
}

.price-wrap {
  margin-bottom: 34px;
}

.price-label {
  font-size: 13px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.price {
  color: #ff3eb5;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}


/*.price {
  color: #ff3eb5;

  font-size: 42px;
  font-weight: 800;

  margin-bottom: 34px;
}  */

.price span {
  color: #888;

  font-size: 16px;
  font-weight: 400;

  margin-left: 10px;
}

.package-info h4 {
  color: #ff3eb5;

  text-transform: uppercase;

  font-size: 15px;
  font-weight: 700;

  margin: 34px 0 14px;
}

.package-info p,
.package-info li {
  color: #e0e0e0;

  font-size: 15px;
  line-height: 1.8;
}

.package-info ul {
  list-style: none;
  padding: 0;
}

.package-info li::before {
  content: "◎ ";
  color: #ff3eb5;
}

.package-info .btn {
  margin-top: 42px;
}

/* =========================================================
   IMAGE SIDE
========================================================= */

.package-image {
  position: relative;
  overflow: hidden;

  min-height: 720px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* LEFT DARK FADE + IMAGE */

.package-image.concept {
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.82), rgba(0,0,0,0.08)),
    url("../images/package-concept.png");

  background-size: cover;
  background-position: center;
}

.package-image.print {
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.82), rgba(0,0,0,0.08)),
    url("../images/package-print.png");

  background-size: cover;
  background-position: center;
}

/* TOP BLACK CINEMATIC FADE */

.package-image::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.92) 0%,
      rgba(0,0,0,0.55) 20%,
      rgba(0,0,0,0.08) 42%,
      rgba(0,0,0,0) 60%
    );

  z-index: 2;
  pointer-events: none;
}

/* =========================================================
   PROCESS SECTION
========================================================= */

.process-section {
  background: #000;
  padding: 60px 0 80px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;

  margin-top: 50px;
}

.process-grid div {
  border-top: 1px solid #ff3eb5;
  padding-top: 24px;
}

.process-grid span {
  color: #ff3eb5;

  font-size: 26px;
  font-weight: 700;
}

.process-grid h3 {
  margin: 12px 0 8px;
}

.process-grid p {
  color: #ccc;

  line-height: 1.6;
  font-size: 14px;
}

/* =========================================================
   NOTE BOX
========================================================= */

.note-box {
  margin-top: 60px;

  border: 1px solid #333;
  border-radius: 16px;

  padding: 28px 34px;

  color: #ddd;

  background:
    linear-gradient(
      135deg,
      #111,
      #050505
    );
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

  .package-hero-grid,
  .package-grid,
  .package-card,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .package-hero h1 {
    font-size: 54px;
  }

  .package-card {
    min-height: auto;
  }

  .package-image {
    min-height: 320px;
  }

  .package-info {
    padding: 40px 32px;
  }

  .package-info h3 {
    font-size: 34px;
    white-space: normal;
  }
}
/* =========================================================
   BRAND IDENTITY PAGE
========================================================= */

/* HERO */

.brand-hero {
  min-height: 560px;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.96) 0%,
      rgba(0,0,0,0.78) 38%,
      rgba(0,0,0,0.15) 80%
    ),
    url("../images/brand-hero.png") center right / cover no-repeat;
  display: flex;
  align-items: center;
  padding-top: 90px;
}

.brand-hero h1 {
  font-size: 86px;
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin-bottom: 28px;
}

.brand-hero p {
  color: #ddd;
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 34px;
}

/* PACKAGES */

.brand-packages {
  background: #000;
  padding: 80px 0 70px;
}

.brand-packages h2,
.brand-process h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 14px;
}

.section-subtitle {
  color: #bbb;
  text-align: center;
  max-width: 620px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.brand-package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

/* =========================================================
   CARDS
========================================================= */

.brand-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #2a2a2a;
  padding: 40px 42px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(145deg, #050505, #0b0b0b);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.brand-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 62, 181, 0.45);
  box-shadow: 0 18px 50px rgba(255, 62, 181, 0.12);
}
/* =========================================
   SNAKE BORDER HOVER EFFECT
========================================= */

.brand-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #222;
  background: linear-gradient(145deg, #050505, #0b0b0b);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease;
}

/* INNER BACKGROUND */
.brand-card::before {
  content: "";

  position: absolute;
  inset: 1px;

  border-radius: 21px;

  background: linear-gradient(145deg, #050505, #0b0b0b);

  z-index: 1;
}

/* MOVING LIGHT */
.brand-card::after {
  content: "";

  position: absolute;

  width: 160px;
  height: 160px;

  background:
    radial-gradient(
      circle,
      rgba(255,62,181,0.95) 0%,
      rgba(255,62,181,0.35) 35%,
      transparent 70%
    );

  top: -80px;
  left: -80px;

  opacity: 0;

  z-index: 0;

  transition: opacity 0.35s ease;

  animation: snakeBorder 5s linear infinite;
}

/* KEEP CONTENT ABOVE */
.brand-card > * {
  position: relative;
  z-index: 2;
}

/* HOVER */
.brand-card:hover {
  transform: translateY(-6px);
  border-color: #ff3eb5;
}

.brand-card:hover::after {
  opacity: 1;
}

/* BORDER PATH */
@keyframes snakeBorder {

  0% {
    top: -80px;
    left: -80px;
  }

  25% {
    top: -80px;
    left: calc(100% - 80px);
  }

  50% {
    top: calc(100% - 80px);
    left: calc(100% - 80px);
  }

  75% {
    top: calc(100% - 80px);
    left: -80px;
  }

  100% {
    top: -80px;
    left: -80px;
  }
}
/* BADGE */

.badge {
  position: absolute;
  top: 24px;
  right: 24px;
  left: auto;
  width: auto;
  padding: 8px 14px;
  border-radius: 999px;
  background: #ff3eb5;
  color: white;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  z-index: 5;
}

/* CARD CONTENT */

.package-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ff3eb5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
  box-shadow: 0 0 25px rgba(255, 62, 181, 0.45);
}

.brand-card h3 {
  font-size: 26px;
  line-height: 1.12;
  margin-bottom: 8px;
}

.brand-card .muted {
  min-height: 44px;
  margin-bottom: 20px;
  color: #aaa;
}

.price-wrap {
  margin-bottom: 20px;
}

.price-label {
  font-size: 13px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.price {
  color: #ff3eb5;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.brand-card h4 {
  color: #ff3eb5;
  text-transform: uppercase;
  font-size: 13px;
  margin: 22px 0 10px;
}

.brand-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.brand-card li,
.brand-card p {
  color: #ddd;
  font-size: 14px;
  line-height: 1.7;
}

.brand-card li {
  margin-bottom: 10px;
}

.brand-card li::before {
  content: "◎ ";
  color: #ff3eb5;
  font-weight: 700;
}

.brand-card .btn {
  margin-top: auto;
}

/* =========================================================
   BRAND PROCESS SECTION
========================================================= */

.brand-process {
  background: #000;
  padding: 90px 0;
}

.brand-process h2 {
  text-align: center;
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 50px;
}

.brand-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin-top: 40px;
}

.brand-process-grid div {
  border-top: 2px solid #ff3eb5;
  padding-top: 34px;
  text-align: left;
}

.brand-process-grid span {
  display: block;
  color: #ff3eb5;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 14px;
}

.brand-process-grid h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
}

.brand-process-grid p {
  color: #bdbdbd;
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
}


/* PROCESS 

.brand-process {
  background: #000;
  padding: 70px 0;
}

.brand-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 34px;
  margin-top: 55px;
}

.brand-process-grid div {
  text-align: center;
}

.brand-process-grid span {
  color: #ff3eb5;
  font-size: 22px;
  font-weight: 800;
}

.brand-process-grid h3 {
  text-transform: uppercase;
  font-size: 15px;
  margin: 18px 0 10px;
}

.brand-process-grid p {
  color: #bbb;
  font-size: 13px;
  line-height: 1.7;
} */

/* CTA */

.brand-cta {
  background: #000;
  padding: 60px 0 80px;
}

.brand-cta-card {
  min-height: 300px;
  border: 1px solid #333;
  border-radius: 18px;
  padding: 60px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.92),
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.1)
    ),
    url("../images/brand-cta.png") center right / cover no-repeat;
}

.brand-cta-card h2 {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 30px;
}

/* MOBILE */

@media (max-width: 900px) {
  .brand-package-grid,
  .brand-process-grid {
    grid-template-columns: 1fr;
  }

  .brand-hero {
    min-height: auto;
    padding: 140px 0 80px;
    background-position: center;
  }

  .brand-hero h1 {
    font-size: 54px;
  }

  .brand-hero p {
    font-size: 16px;
  }

  .brand-card {
    min-height: auto;
  }

  .brand-cta-card {
    padding: 40px 28px;
  }

  .brand-cta-card h2 {
    font-size: 34px;
  }
}
/* =========================================================
   BUSINESS CARD PAGE
========================================================= */

.bc-hero {
  min-height: 720px;
  background:
    linear-gradient(90deg, #000 0%, rgba(0,0,0,0.92) 36%, rgba(0,0,0,0.22) 78%),
    url("../images/business-card-hero.png") center right / cover no-repeat;
  display: flex;
  align-items: center;
  padding-top: 90px;
}

.bc-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
}

.bc-eyebrow {
  color: #ff3eb5;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
}

.bc-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 86px;
  line-height: 0.9;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}

.bc-hero h1 span {
  color: #ff3eb5;
}

.bc-title-line {
  width: 380px;
  max-width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #ff3eb5, rgba(255,255,255,0.8));
  margin: 18px 0 24px;
}

.bc-tagline {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 14px;
  margin-bottom: 28px;
}

.bc-copy {
  color: #d6d6d6;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 38px;
}

.bc-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 620px;
}

.bc-icon {
  color: #ff3eb5;
  font-size: 34px;
  margin-bottom: 12px;
}

.bc-features h4 {
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 8px;
}

.bc-features p {
  color: #ccc;
  font-size: 13px;
  line-height: 1.6;
}

/* packages */

.bc-packages {
  background: #000;
  padding: 80px 0 50px;
}

.bc-packages h2 {
  font-family: "Playfair Display", serif;
  text-align: center;
  font-size: 46px;
  font-weight: 500;
  margin-bottom: 42px;
}

.bc-package-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.bc-package-card {
  border: 1px solid #3a3a3a;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 620px;
  background: linear-gradient(145deg, #050505, #0d0d0d);
}

/* =========================================
   test SNAKE BORDER HOVER EFFECT
========================================= */

.package-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #222;
  background: linear-gradient(145deg, #050505, #0b0b0b);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease;
}

/* INNER BACKGROUND */
.package-card::before {
  content: "";

  position: absolute;
  inset: 1px;

  border-radius: 21px;

  background: linear-gradient(145deg, #050505, #0b0b0b);

  z-index: 1;
}

/* MOVING LIGHT */
.package-card::after {
  content: "";

  position: absolute;

  width: 160px;
  height: 160px;

  background:
    radial-gradient(
      circle,
      rgba(255,62,181,0.95) 0%,
      rgba(255,62,181,0.35) 35%,
      transparent 70%
    );

  top: -80px;
  left: -80px;

  opacity: 0;

  z-index: 0;

  transition: opacity 0.35s ease;

  animation: snakeBorder 5s linear infinite;
}

/* KEEP CONTENT ABOVE */
.package-card > * {
  position: relative;
  z-index: 2;
}

/* HOVER */
.package-card:hover {
  transform: translateY(-6px);
  border-color: #ff3eb5;
}

.package-card:hover::after {
  opacity: 1;
}

/* BORDER PATH */
@keyframes snakeBorder {

  0% {
    top: -80px;
    left: -80px;
  }

  25% {
    top: -80px;
    left: calc(100% - 80px);
  }

  50% {
    top: calc(100% - 80px);
    left: calc(100% - 80px);
  }

  75% {
    top: calc(100% - 80px);
    left: -80px;
  }

  100% {
    top: -80px;
    left: -80px;
  }
}
/*====================
end of test
=====================*/

.bc-package-image {
  position: relative;
  min-height: 620px;
  border-right: 1px solid #333;
  overflow: hidden;
}

.bc-package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-delivery-box {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  padding: 26px 28px;

  border-top: 1px solid rgba(255,255,255,0.12);

  background: rgba(0,0,0,0.42);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.bc-delivery-box p {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  margin-bottom: 12px;
}

.bc-delivery-box div {
  width: 150px;
  height: 1px;
  background: #ff3eb5;
  margin-bottom: 10px;
}

.bc-delivery-box span {
  color: #ff3eb5;
  font-family: "Playfair Display", serif;
  font-size: 36px;
}

.bc-package-info {
  padding: 34px 38px;
}

.bc-small-title {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin-bottom: 4px;
}

.bc-package-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #888;
}

.bc-desc {
  color: #ddd;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.bc-package-info h4 {
  color: #ff3eb5;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  margin: 26px 0 14px;
}

.bc-package-info ul {
  list-style: none;
  padding: 0;
}

.bc-package-info li {
  color: #ddd;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 8px;
}

.bc-package-info li::before {
  content: "◎ ";
  color: #ff3eb5;
}

.bc-package-info .btn {
  margin-top: 24px;
}

/* process */

.bc-process {
  background: #000;
  padding: 38px 0 70px;
}

.bc-process-card {
  border: 1px solid #444;
  border-radius: 18px;
  padding: 54px 34px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: center;
}

.bc-process-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  line-height: 1.05;
  font-weight: 500;
}

.bc-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

.bc-process-grid span {
  color: #ff3eb5;
  font-size: 30px;
  font-weight: 700;
}

.bc-process-grid h3 {
  text-transform: uppercase;
  margin: 14px 0 10px;
  font-size: 14px;
}

.bc-process-grid p {
  color: #ccc;
  font-size: 13px;
  line-height: 1.6;
}

/* mobile */

@media (max-width: 900px) {
  .bc-hero-grid,
  .bc-package-grid,
  .bc-package-card,
  .bc-process-card,
  .bc-process-grid,
  .bc-features {
    grid-template-columns: 1fr;
  }

  .bc-hero h1 {
    font-size: 58px;
  }

  .bc-package-image {
    min-height: 420px;
  }

  .bc-process-card {
    padding: 34px 24px;
  }
}
/* =========================================================
   GALLERY PAGE
========================================================= */

.gallery-hero {
  background:
    radial-gradient(circle at 90% 35%, rgba(255,62,181,0.18), transparent 24%),
    #000;
  padding: 180px 0 50px;
}

.gallery-hero h1 {
  font-size: 86px;
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin-bottom: 28px;
}

.gallery-intro {
  color: #ccc;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 46px;
}

.gallery-filters {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.gallery-filters button {
  background: transparent;
  color: white;
  border: 1px solid #333;
  min-width: 160px;
  height: 54px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: 0.3s ease;
}

.gallery-filters button:hover,
.gallery-filters button.active {
  border-color: #ff3eb5;
  color: #ff3eb5;
}

.gallery-grid-section {
  background: #000;
  padding: 20px 0 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #2c2c2c;
  min-height: 340px;
  grid-column: span 2;
  background: #111;
}

.gallery-card.gallery-large {
  grid-column: span 3;
  grid-row: span 2;
  min-height: 700px;
}

.gallery-card.gallery-wide {
  grid-column: span 3;
  min-height: 360px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.55s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  padding: 28px 30px;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.92),
      rgba(0,0,0,0.45),
      transparent
    );

  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 12px;
}

.gallery-overlay p {
  color: #ff3eb5;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  grid-column: 1 / 2;
}

.gallery-overlay h3 {
  font-size: 22px;
  grid-column: 1 / 2;
}

.gallery-overlay span {
  width: 44px;
  height: 44px;
  border: 1px solid #ff3eb5;
  border-radius: 50%;
  color: #ff3eb5;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  grid-row: 1 / 3;
  grid-column: 2 / 3;

  transition: 0.3s ease;
}

.gallery-card:hover .gallery-overlay span {
  background: #ff3eb5;
  color: #fff;
  transform: translateX(4px);
}

.gallery-cta {
  background: #000;
  padding: 40px 0 80px;
}

.gallery-cta-row {
  border-top: 1px solid #333;
  padding-top: 44px;

  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  gap: 48px;
}

.gallery-cta h2 {
  font-size: 34px;
  font-weight: 500;
}

.gallery-cta p {
  color: #cfcfcf;
  line-height: 1.6;
}

.spark {
  color: #ff3eb5 !important;
  font-size: 34px;
  margin-bottom: 12px;
}

.outline-btn {
  height: 58px;
  min-width: 230px;

  border: 1px solid #555;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;

  transition: 0.3s ease;
}

.outline-btn:hover {
  border-color: #ff3eb5;
  color: #ff3eb5;
}

@media (max-width: 900px) {
  .gallery-hero h1 {
    font-size: 54px;
  }

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

  .gallery-card,
  .gallery-card.gallery-large,
  .gallery-card.gallery-wide {
    grid-column: span 1;
    min-height: 380px;
  }

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



