/* FONTS */
@font-face {
  font-family: 'Product Sans';
  src: local('Product Sans');
}

@font-face {
  font-family: 'Awesome Serif';
  src: local('Awesome Serif');
}

:root {
  --header-h: 88px;
  --black: #1E1E1E;
  --dark: #2B2B2B;
  --white: #FFFFFF;
}

body {
  margin: 0;
  font-family: 'Product Sans', sans-serif;
  background: var(--black);
  color: var(--white);
}


/* ===== GLOBAL OVERLAY ===== */
/* OVERLAY */
#overlay {
  position: fixed;
  inset: 0;
  background: #0f0f0f;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

#overlay h1 {
  font-family: 'Awesome Serif', serif;
  color: #fff;
  font-size: 32px;
  transform: scale(0.2);
  opacity: 0;
}





/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 999;

  /* GLASS BASE */
  background:
    linear-gradient(
      103deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.18)
    );

  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);

  /* DEPTH */
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.35);

  /* FROST */
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}


.header-inner {
  height: 100%;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 56px; /* balanced */
}


.menu-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 14px;
  cursor: pointer;
}
/* SIDE MENU */
.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 360px;
  max-width: 100%;
  height: 100vh;
  background: var(--dark);
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.77,0,0.18,1);
  z-index: 1000;
}

.side-menu.active {
  transform: translateX(0);
}

.close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
}

.menu-content {
  padding: 100px 40px 40px;
}

.menu-label {
  font-size: 12px;
  opacity: 0.5;
  margin-bottom: 12px;
  display: block;
}


.menu-block {
  margin-bottom: 40px;
}

.menu-link {
  display: block;
  font-family: 'Awesome Serif', serif;
  font-size: 22px;
  margin: 10px 0;
  color: var(--white);
  text-decoration: none;
  overflow: hidden;
}
/* HIVE EFFECT */
/* HIVE EFFECT – STABLE VERSION */
.hive {
  display: block;
  cursor: pointer;
}

.hive span {
  display: inline-block;
  transform: translateY(0);
  transition: transform 0.35s ease;
}

/* hover = small upward movement, not vanish */
.hive:hover span {
  transform: translateY(-6px);
}
@media (max-width: 768px) {
  .side-menu {
    width: 100%;
  }
  .site-header {
    backdrop-filter: blur(8px) saturate(160%);
  }

  .menu-content {
    padding: 90px 24px 32px;
  }

  .menu-link {
    font-size: 20px;
  }
}




/*Hero section*/

.hero {
  min-height: calc(100vh - var(--header-h));
  margin-top: var(--header-h); /* pushes hero BELOW header */
  padding: 40px clamp(5vw, 7vw, 9vw);
  background: #1E1E1E;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* RIGHT SIDE – BELOW HEADER */
.hero-top {
  position: absolute;
  top: 40px;
  right: clamp(5vw, 7vw, 9vw);
  max-width: 360px;
}

.hero-top p {
  font-size: 18px;
  line-height: 1.6;
  color: #ddd;
}

/* BUTTON */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 10px 18px;
  background: #fff;
  color: #1E1E1E;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
}

.hero-btn span {
  transition: transform 0.3s ease;
}

.hero-btn:hover span {
  transform: translateX(6px);
}

/* TITLE – BOTTOM LEFT */
.hero-title {
  position: absolute;
  left: clamp(5vw, 7vw, 9vw);
  bottom: 60px;
  max-width: 900px;
}

.hero-title h1 {
  font-family: 'Awesome Serif', serif;
  font-size: clamp(120px, 6vw, 82px);
  line-height: 1.1;
}

.inline-image {
  display: inline-block;
  width: 300px;
  height: 180px;
  margin: 0 14px;
  vertical-align: middle;
  border-radius: 10px;
  overflow: hidden;
  transform: rotate(-7deg); /* DEFAULT INCLINE */
  transition: transform 0.6s ease;
}

.inline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* hover interaction */
.inline-image:hover {
  transform: rotate(-3deg); /* relax tilt */
}

.inline-image:hover img {
  transform: scale(1.04);
}


.float-icon {
  position: absolute;
  width: 26px;
  opacity: 0.5;

  pointer-events: none;
  will-change: transform;
}

.float-icon img {
  width: 100%;
  display: block;

  animation: float 14s infinite ease-in-out;
  filter: brightness(0) saturate(100%) invert(100%);
}



/* positions */
/* LEFT SIDE (far from title) */
.i1 { top: 8%; left: 8%;  animation-duration: 14s; }
.i5 { top: 30%; left: 19%; animation-duration: 18s; }

/* MID LEFT */
.i2 { top: 32%; left: 46%; animation-duration: 16s; }
.i6 { top: 62%; left: 28%; animation-duration: 20s; }

/* MID RIGHT */
.i3 { top: 50%; right: 40%; animation-duration: 15s; }
.i7 { top: 52%; right: 24%; animation-duration: 19s; }

/* RIGHT EDGE (very subtle) */
.i4 { top: 46%; right: 4%;  animation-duration: 17s; }
.i8 { top: 72%; right: 6%;  animation-duration: 22s; }

/* EXTRA ICON POSITIONS (blank areas) */
.i9  { top: 10%; left: 35%; animation-duration: 21s; }
.i10 { top: 18%; right: 42%; animation-duration: 17s; }

.i11 { top: 84%; left: 12%; animation-duration: 19s; }
.i12 { top: 83%; left: 45%; animation-duration: 23s; }

.i13 { top: 76%; right: 28%; animation-duration: 20s; }
.i14 { top: 30%; right: 12%; animation-duration: 18s; }



@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-22px); }
}

/* =========================
   MOBILE & TABLET FIXES
========================= */

/* Prevent horizontal scroll */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* HERO INTRO ANIMATION STATES */
.hero-title h1,
.inline-image,
.hero-top {
  opacity: 0;
  transform: translateY(24px);
}


/* TABLET */
@media (max-width: 1024px) {
  .hero {
    padding: 60px 6vw;
  }

  .hero-title h1 {
    font-size: clamp(56px, 9vw, 82px);
  }

  .inline-image {
    width: 180px;
    height: 90px;
  }
}

/* MOBILE */
@media (max-width: 768px) {

  /* HERO LAYOUT */
  .hero {
    padding: 20px 6vw 60px;
    min-height: auto;
  }

  /* Top text becomes normal flow */
  .hero-top {
    position: relative;
    top: auto;
    right: auto;
    max-width: 100%;
    margin-bottom: 32px;
    
  }

  .hero-top p {
    font-size: 16px;
    font-family: 'Product Sans', sans-serif;
  }

  /* Title */
  .hero-title {
    position: relative;
    left: auto;
    bottom: auto;
  }

  .hero-title h1 {
    font-size: clamp(44px, 11vw, 64px);
    line-height: 1.15;
    margin-bottom: 0;
  }

  /* Inline image stacks nicely */
  .inline-image {
    display: block;
    width: 100%;
    height: 180px;
    margin: 16px 0;
    transform: rotate(0deg);
  }
  /* Reduce space created by <br> visually */
  .hero-title h1 br {
    display: none;
  }

  /* Floating icons OFF on mobile */
  .float-icon {
    display: none;
  }
}



/*===========Text Section==========*/

/* ===============================
   IDEAS SECTION
================================ */

.ideas-section {
  position: relative;
  padding: clamp(24px, 4vh, 48px) 0;
  background: #1E1E1E;
  overflow: hidden;
}

.ideas-inner {
  position: relative;
  width: 100%;
  height: 100svh; /* better than 100vh */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CENTER TEXT */
.ideas-text {
  position: relative;  /* NOT sticky */
  transform: none;
  text-align: center;
  z-index: 5;
  max-width: 900px;
}

.ideas-text h2 {
  font-family: 'Awesome Serif', serif;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.2;
  color: #fff;
}

/* IMAGE WRAPPER */
.ideas-images {
  position: absolute;
  inset: 0;
}

/* IMAGES */
.idea-img {
  position: absolute;
  width: clamp(160px, 22vw, 280px);
  border-radius: 14px;
  opacity: 0.95;
  will-change: transform;
  z-index: 1;
}

/* FINAL POSITIONS */
.img-1 { top: 8%; left: 8%; }
.img-2 { top: 8%; right: 8%; }
.img-3 { bottom: 8%; left: 8%; }
.img-4 { bottom: 8%; right: 8%; }

/* MOBILE REFINEMENT */
@media (max-width: 768px) {

.ideas-section {
    padding: 16px 0;
  }

.ideas-inner {
    height: 70svh;
  }

  .ideas-text h2 {
    font-size: clamp(28px, 7.5vw, 42px);
  }

  .idea-img {
    width: clamp(190px, 55vw, 240px);
  }

  .img-1 { top: 12%; left: 8%; }
  .img-2 { top: 12%; right: 8%; }
  .img-3 { bottom: 12%; left: 8%; }
  .img-4 { bottom: 12%; right: 8%; }
}


@media (max-width: 1024px) {
  .ideas-text h2 {
    font-size: clamp(32px, 6vw, 56px);
  }

  .idea-img {
    width: clamp(160px, 26vw, 220px);
  }
}


/*Process*/

/* ===============================
   CINEMATIC PROCESS SECTION
================================ */

.process-cinematic {
  position: relative;
  height: 100svh;
  background: #1e1e1e;
  overflow: hidden;
}

.process-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

/* TITLE */
.process-title {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Awesome Serif', serif;
  font-size: clamp(32px, 5vw, 56px);
  z-index: 10;
}

/* CENTER IMAGE */
.process-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.process-image {
  width: clamp(260px, 28vw, 300px);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  z-index: 2;
}

/* GREY CIRCLE */
.bg-circle {
  position: absolute;
  width: 320px;
  height: 320px;
  background: #5F5E5E;
  border-radius: 50%;
  z-index: 1;
  transform: scale(0);
}

/* PILLS */
.process-pills {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 8;
}

.pill {
  position: absolute;
  padding: 18px 34px;
  background: #000;
  color: #fff;
  border-radius: 999px;
  font-family: 'Awesome Serif', serif;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  gap: 4px;
  opacity: 0;
  white-space: normal;
}

.pill-title {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.1;
}

.pill-desc {
  font-size: 14px;
  font-family: 'Product Sans', sans-serif;
  font-weight: 400;
  opacity: 0.8;
}


/* Pill positions */
.p1 { top: 26%; left: 14%; }
.p2 { top: 26%; right: 14%; }
.p3 { bottom: 26%; left: 16%; }
.p4 { bottom: 26%; right: 16%; }
.p5 { bottom: 12%; left: 50%; transform: translateX(-50%); }

/* MOBILE */
@media (max-width: 768px) {
  .process-title {
    top: 16px;
    font-size: 30px;
    letter-spacing: 0.3px;
  }

  .process-image {
    width: 200px;
  }
  .process-center {
    transform: translateY(12px);
  }
    .bg-circle {
    width: 240px;
    height: 240px;
  }

  .pill {
    padding: 14px 20px;
    gap: 2px;
    max-width: 42vw;          /* 🔑 controls pill width */
    white-space: normal;     /* allow text wrap */
    text-align: center;
  }

  .pill-title {
    font-size: 15px;
  }

  .pill-desc {
    font-size: 11px;
  }



  .p1 { top: 22%; left: 8%; }
  .p2 { top: 22%; right: 8%; }
  .p3 { bottom: 22%; left: 8%; }
  .p4 { bottom: 22%; right: 8%; }
  .p5 { bottom: 13%; left: 50%;
    transform: translate(-50%, 0) !important;
    max-width: 70vw; }
}

/*SERVICE*/
/* ===============================
   PREMIUM SERVICES
================================ */

.services-premium {
  padding: clamp(80px, 10vh, 140px) clamp(6vw, 8vw, 12vw);
  background: #000;
}

.services-premium-inner {
  max-width: 1600px;
}

/* ROW */
.service-row {
  display: grid;
  grid-template-columns: 120px 1.2fr 1fr;
  column-gap: 40px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #8f8f8f;
  opacity: 0;
  transform: translateY(30px);
  transition: color 0.4s ease, background 0.4s ease;
}

.services-title {
  font-family: 'Awesome Serif', serif;
  font-size: clamp(28px, 3vw, 40px);
  color: #fff;
  margin: 0 0 24px 0; 
}
.services-list {
  display: block;
}



/* NUMBER */
.service-num {
  position: relative;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.num-text {
  font-family: 'Awesome Serif', serif;
  font-size: 64px;
  font-weight: 700;
  opacity: 0.25;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* BUTTON */
.num-btn {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.4s ease;
}

.num-btn span {
  color: #000;
  font-size: 22px;
}

/* TITLE */
.service-title {
  font-family: 'Awesome Serif', serif;
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 700;
  margin: 0;
  line-height: 1;
}
.service-link {
  display: block;
  text-decoration: none;
  color: inherit;
}


/* DESCRIPTION */
.service-desc {
  font-size: 15px;
  line-height: 1.6;
  max-width: 360px;
  
}

/* HOVER */
@media (hover: hover) {
  .service-row:hover {
    color: #fff;
    background: linear-gradient(
      to right,
      rgba(255,255,255,0.05),
      rgba(255,255,255,0)
    );
  }

  .service-row:hover .num-text {
    opacity: 0;
    transform: scale(0.8);
  }

  .service-row:hover .num-btn {
    opacity: 1;
    transform: scale(1);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .services-premium {
    padding: 60px 6vw;
  }

  .services-title {
    font-size: 26px;
    margin-bottom: 20px; 
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 32px 0;
    color: #fff;
    column-gap: 16px;
  }

  .service-num {
    width: auto;
    height: auto;
    justify-content: flex-start;
  }

  .num-text {
    font-size: 32px;
    opacity: 1;
  }

  .num-btn {
    display: none;
  }

  .service-title {
    font-size: 32px;
  }

  .service-desc {
    font-size: 14px;
  }
}


/*CTA*/

/* ===============================
   CTA SECTION (UPDATED)
================================ */

.cta-section {
  position: relative;
  height: 576px; /* 👈 FIGMA DESKTOP */
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MARQUEE WRAPPER */
.cta-marquee {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

/* TRACK */
.cta-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  font-family: 'Awesome Serif', serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  animation: marquee 14s linear infinite;
}

/* VARIATION PER ROW */
.row-1 { opacity: 0.10; }
.row-2 { opacity: 0.08; animation-duration: 30s; }
.row-3 { opacity: 0.1;  animation-duration: 16s; }
.row-4 { opacity: 0.11;  animation-duration: 10s; }

/* BUTTON */
.cta-btn {
  position: relative;
  z-index: 3;
  background: #fff;
  color: #000;
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  will-change: transform;
}
.cta-arrow {
  font-size: 24px;      /* matches your text scale */
  font-weight: 600;     /* bold like text */
  line-height: 1;
  display: inline-block;
  transition: transform 0.3s ease;
}


.cta-btn span {
  transition: transform 0.3s ease;
}

.cta-btn:hover span {
  transform: translateX(6px);
}

/* MARQUEE ANIMATION */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* TABLET */
@media (max-width: 1024px) {
  .cta-section {
    height: 420px;
  }

  .cta-track {
    font-size: 56px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .cta-section {
    height: 320px;
  }

  .cta-marquee {
    gap: 6px;
  }

  .cta-track {
    font-size: 32px;
    gap: 40px;
  }

  .cta-btn {
    font-size: 14px;
    padding: 12px 24px;
  }
}



/*======= FOOTER =======*/

/* ===============================
   FOOTER
================================ */

.site-footer {
  background: #1b1b1b;
  color: #fff;
  padding: clamp(64px, 10vh, 120px) clamp(6vw, 8vw, 12vw);
}

.footer-inner {
  max-width: 1400px;
  margin: auto;
}

/* BRAND */
.footer-brand {
  font-family: 'Awesome Serif', serif;
  font-size: clamp(28px, 4vw, 48px);
  text-align: center;
  opacity: 0;
}

/* LINE */
.footer-line {
  height: 1px;
  background: rgba(255,255,255,0.35);
  margin: 24px auto 48px;
  width: 0;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  opacity: 0;
}

/* NAV */
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.footer-nav a {
  color: #d0d0d0;
  text-decoration: none;
  font-size: 14px;
}

/* FOOTER LINK HOVER (same feel as menu) */
.footer-nav a,
.footer-bottom a {
  position: relative;
  color: #d0d0d0;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a::after,
.footer-bottom a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: width 0.35s ease;
}

.footer-nav a:hover,
.footer-bottom a:hover {
  color: #ffffff;
}

.footer-nav a:hover::after,
.footer-bottom a:hover::after {
  width: 100%;
}

/* SOCIAL ICON HOVER */
.footer-social a {
  color: #d0d0d0;
  font-size: 18px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
  color: #ffffff;
  transform: translateY(-3px);
}



/* SOCIAL */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.footer-social a {
  color: #d0d0d0;
  font-size: 18px;
}

/* INFO */
.footer-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  font-size: 14px;
  color: #b5b5b5;
}

.footer-info span {
  display: block;
  margin-bottom: 14px;
  opacity: 0.7;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 64px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #9a9a9a;
}

.footer-info .info-item p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.footer-info i {
  color: #ffffff;
  font-size: 14px;
  margin-top: 2px;
  opacity: 0.85;
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
  .footer-info {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .footer-nav a::after,
  .footer-bottom a::after {
    display: none;
  }
    .footer-info .info-item p {
    justify-content: center;
    text-align: center;
  }

  .footer-info .info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

