/* Namobrahma Studios - Exact Scrapbook Match */

:root {
  /* Colors from screenshot */
  --bg-paper: #F4EFE6;
  --text-black: #111111;
  --mustard-yellow: #D9AE4C;
  --blush-pink: #EDA2B2;
  --hot-pink: #E87A9A;
  --pastel-blue: #A2C4EB;
  --light-green: #D3E5CB;
  --dark-charcoal: #1A1A1A;

  /* Fonts */
  --font-heading: 'Anton', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-hand: 'Caveat', cursive;

  /* Layout */
  --content-width: 1300px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100vw;
  max-width: 100%;
  scroll-padding-top: 100px;
}

/* Automatically apply zoom on large screens to scale up px-based layouts */
@media screen and (min-width: 1600px) {
  body {
    zoom: 1.35;
  }
}

@media screen and (min-width: 1900px) {
  body {
    zoom: 1.5;
  }
}

@media screen and (min-width: 2500px) {
  body {
    zoom: 1.8;
  }
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-paper);
  color: var(--text-black);
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

/* Global Paper Grain Texture */
.global-paper-texture {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.15;
  background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="4" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
  mix-blend-mode: multiply;
}

/* Typography Helpers */
h1,
h2,
h3 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.star-accent {
  color: var(--mustard-yellow);
  font-family: var(--font-hand);
  font-size: 1.5em;
  vertical-align: super;
  line-height: 0;
}

.star-accent.pink {
  color: var(--hot-pink);
}

.star-accent.blue {
  color: var(--pastel-blue);
}

.star-accent.black {
  color: var(--text-black);
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: var(--text-black);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 1rem 2rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: transform 0.2s;
  /* Torn edge feel using clip-path */
  transition: background 0.3s ease, transform 0.3s ease;
  clip-path: polygon(2% 0%, 98% 2%, 100% 98%, 1% 100%);
}

.btn-primary:hover {
  transform: scale(1.02);
}

.btn-torn-pink {
  display: inline-block;
  background-color: var(--hot-pink);
  color: var(--text-black);
  padding: 1.2rem 2.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  clip-path: polygon(2% 2%, 98% 0%, 100% 95%, 3% 98%, 0% 90%);
  transition: transform 0.3s ease;
}

.btn-torn-pink:hover {
  transform: scale(1.03) rotate(-1deg);
}

.btn-primary.black-btn {
  background: var(--text-black);
  color: #fff;
}

.link-secondary {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--text-black);
  border-bottom: 3px solid var(--text-black);
  padding-bottom: 2px;
}

/* Scrapbook Elements */
.sticky-note {
  font-family: var(--font-hand);
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.15);
  line-height: 1.1;
  /* Rough paper edges */
  clip-path: polygon(1% 2%, 99% 1%, 98% 99%, 0% 98%);
  transition: transform 0.2s;
}

.blush-pink {
  background: var(--blush-pink);
}

.pastel-yellow {
  background: var(--mustard-yellow);
}

/* In hero it's mustard */
.pastel-blue {
  background: var(--pastel-blue);
}

.light-green {
  background: var(--light-green);
}

/* ------------------------------------- */
/* NAVBAR */
/* ------------------------------------- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 32px;
  /* 15px 40px → compact */
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  z-index: 10000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #F8F4EC;
  background-image: url('https://www.transparenttextures.com/patterns/cream-paper.png');
  border-radius: 0 0 16px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 120px;
  background: radial-gradient(circle at left, #f9d342 0%, transparent 80%);
  z-index: 0;
  opacity: 0.9;
  pointer-events: none;
}

.navbar::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  bottom: -100px;
  width: 350px;
  background: #111;
  transform: rotate(15deg);
  z-index: 0;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

.navbar>* {
  position: relative;
  z-index: 1;
}

.navbar.scrolled {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.brand-logo-img {
  mix-blend-mode: multiply;
  clip-path: circle(46% at 50% 50%);
  filter: contrast(1.08) brightness(1.04);
}

.dark-footer .brand-logo-img {
  mix-blend-mode: normal;
}

.logo {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  outline: none !important;
  border: none !important;
}

.logo:focus,
.logo:active {
  outline: none !important;
  border: none !important;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 0.9;
}

.logo-text .highlight {
  color: var(--mustard-yellow);
}

.logo-sub {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.nav-center {
  display: flex;
  gap: 15px;
  /* Reduced gap to accommodate padding */
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--text-black);
  position: relative;
  padding: 8px 16px;
  transition: 0.5s;
  z-index: 1;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: 2px solid var(--text-black);
  border-bottom: 2px solid var(--text-black);
  transform: scaleY(2);
  opacity: 0;
  transition: 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  height: calc(100% - 4px);
  background-color: var(--text-black);
  transform: scale(0);
  opacity: 0;
  transition: 0.3s;
  z-index: -1;
}

.nav-link:hover,
.nav-link.active {
  color: var(--mustard-yellow);
}

.nav-link:hover::before,
.nav-link.active::before {
  transform: scaleY(1);
  opacity: 1;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleY(1);
  opacity: 1;
}

/* ------------------------------------- */
/* HERO SECTION */
/* ------------------------------------- */
.hero-section {
  padding-top: clamp(60px, 8vh, 130px);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
}

.hero-vertical-text {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left top;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 4px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  gap: 0;
  width: 100%;
  height: 100%;
}

.hero-left {
  flex: 0 0 50%;
  max-width: 50%;
  z-index: 20;
  padding: 0 0 40px 2%;
}

.huge-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: clamp(1.2rem, 2.2vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: clamp(0.8rem, 1.5vh, 2rem);
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1);
}

.huge-title .line {
  display: block;
  white-space: nowrap;
}

.hero-desc {
  font-size: clamp(0.85rem, 0.95vw, 1rem);
  font-weight: 500;
  max-width: 480px;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero-right {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  overflow: hidden;
  align-self: stretch;
}

.collage-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-collage-img {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  position: relative;
  z-index: 10;
  object-fit: cover;
  object-position: right 85%;
  display: block;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(1deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* ------------------------------------- */
/* TRUSTED BRANDS */
/* ------------------------------------- */
.trusted-brands {
  display: flex;
  margin: 60px 0;
  border-top: 1px dashed rgba(0, 0, 0, 0.2);
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}

.pink-torn-block {
  background: var(--blush-pink);
  padding: 60px 40px;
  width: 35%;
  /* Rough right edge */
  clip-path: polygon(0 0, 100% 2%, 95% 50%, 100% 98%, 0 100%);
  position: relative;
}

.pink-torn-block h2 {
  font-size: 3rem;
  line-height: 1;
}

.logos-grid {
  width: 65%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  justify-items: center;
  padding: 40px;
  gap: 20px;
}

.logo-item {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-align: center;
  line-height: 1;
  opacity: 0.6;
  filter: grayscale(1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.logo-item:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.15);
  color: var(--text-black);
}

.logo-item span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 1px;
  display: block;
  margin-top: 5px;
}

/* ------------------------------------- */
/* HOW WE WORK */
/* ------------------------------------- */
.how-we-work {
  padding: 80px 40px;
  max-width: var(--content-width);
  margin: 0 auto;
}

.section-title {
  font-size: 4rem;
  margin-bottom: 60px;
  display: inline-block;
}

.sticky-cards-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.sticky-card.torn-edge {
  width: 280px;
  min-height: 320px;
  padding: 40px 30px;
  clip-path: polygon(2% 1%, 98% 3%, 99% 98%, 1% 99%);
  box-shadow: 2px 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.sticky-card h3 {
  font-size: 2.5rem;
  margin-top: 20px;
  margin-bottom: 10px;
}

.sticky-card .subtitle {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.sticky-card p {
  font-size: 0.85rem;
}

.arrow-connector {
  flex-grow: 1;
  height: 2px;
  border-top: 3px dashed var(--text-black);
  margin-top: 150px;
  position: relative;
  z-index: 1;
}

/* ------------------------------------- */
/* WHY NAMOBRAHMA */
/* ------------------------------------- */
.why-us {
  padding: 80px 40px;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.why-us-left {
  flex: 0 0 30%;
}

.why-us-left p {
  margin-bottom: 15px;
  font-size: 0.95rem;
  font-weight: 500;
}

.why-us-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  padding-left: 40px;
}

.feature-col h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: 15px 0 10px;
  line-height: 1;
}

.feature-col p {
  font-size: 0.85rem;
}

.icon {
  width: 40px;
  height: 40px;
  background: var(--text-black);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

/* Placeholder icons using CSS masks */
.rocket-icon {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2L2 22l10-4 10 4z"/></svg>');
}

.pin-icon {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10"/></svg>');
}

/* ------------------------------------- */
/* BY THE NUMBERS */
/* ------------------------------------- */
.numbers-section {
  background: var(--dark-charcoal);
  color: #fff;
  padding: 80px 40px;
  display: flex;
  align-items: center;
  /* Torn edge SVG data */
  clip-path: polygon(0 2%, 5% 0%, 10% 3%, 15% 0%, 20% 2%, 25% 0%, 30% 3%, 35% 0%, 40% 2%, 45% 0%, 50% 3%, 55% 0%, 60% 2%, 65% 0%, 70% 3%, 75% 0%, 80% 2%, 85% 0%, 90% 3%, 95% 0%, 100% 2%, 100% 98%, 95% 100%, 90% 97%, 85% 100%, 80% 98%, 75% 100%, 70% 97%, 65% 100%, 60% 98%, 55% 100%, 50% 97%, 45% 100%, 40% 98%, 35% 100%, 30% 97%, 25% 100%, 20% 98%, 15% 100%, 10% 97%, 5% 100%, 0 98%);
  margin: 40px 0;
}

.numbers-title-col h2 {
  font-size: 3.5rem;
  line-height: 1;
}

.numbers-grid {
  flex: 1;
  display: flex;
  justify-content: space-around;
  margin-left: 60px;
}

.number-block .num {
  font-family: var(--font-heading);
  font-size: 4rem;
  margin-bottom: 10px;
}

.number-block p {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #aaa;
}

/* ------------------------------------- */
/* OUR PROCESS */
/* ------------------------------------- */
.our-process {
  padding: 80px 40px;
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

.process-header {
  flex: 0 0 200px;
}

.timeline-container {
  flex: 1;
  position: relative;
  padding-top: 20px;
}

.timeline-line {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  border-top: 2px dotted #000;
  z-index: 1;
}

.timeline-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.step {
  width: 140px;
  text-align: center;
}

.step-circle {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  background: var(--bg-paper);
  border: 2px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

.step h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.8rem;
}

/* ------------------------------------- */
/* OUR THINKING / APPROACH SECTION */
/* ------------------------------------- */
.our-thinking-section {
  padding: 50px 40px 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.thinking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 0px;
}

.thinking-tape {
  background-color: #111;
  color: #fff;
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  padding: 5px 20px;
  transform: rotate(-3deg);
  display: inline-block;
  box-shadow: 2px 10px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.thinking-tape:hover {
  transform: rotate(0deg) scale(1.05);
  background-color: #E87A9A;
  box-shadow: 2px 15px 30px rgba(232, 122, 154, 0.4);
}

.thinking-tape .red-star {
  color: #E87A9A;
  transition: color 0.3s;
}

.thinking-tape:hover .red-star {
  color: #fff;
}

.scribble-top-right {
  width: 120px;
  height: 60px;
  opacity: 0.6;
  transition: all 0.4s ease;
}

.scribble-top-right svg {
  width: 100%;
  height: 100%;
}

.thinking-header:hover .scribble-top-right {
  transform: translateX(-10px) rotate(-10deg);
  opacity: 1;
}

.thinking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.thinking-col {
  background: #fff;
  padding: 50px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.03);
  cursor: pointer;
  z-index: 1;
}

@keyframes cardHoverFloat {
  0% {
    transform: translateY(-15px) scale(1.03);
  }

  50% {
    transform: translateY(-5px) scale(1.03);
  }

  100% {
    transform: translateY(-15px) scale(1.03);
  }
}

.thinking-col:hover {
  animation: cardHoverFloat 2s ease-in-out infinite;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: #E87A9A;
  z-index: 10;
}

.t-icon-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: 30px;
  transition: transform 0.4s ease;
}

.thinking-col:hover .t-icon-wrapper {
  transform: rotate(15deg) scale(1.1);
}

.t-heading {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.thinking-col:hover .t-heading {
  color: #E87A9A;
}

.t-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* ------------------------------------- */
/* FINAL CTA */
/* ------------------------------------- */
.final-cta {
  background: var(--hot-pink);
  padding: 100px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
  /* Torn edge */
  clip-path: polygon(0 3%, 100% 0%, 100% 97%, 0 100%);
}

.cta-content {
  flex: 1;
  max-width: 800px;
}

.cta-content .huge-title {
  font-size: 5rem;
  margin-bottom: 30px;
}

.cta-inner {
  display: flex;
  gap: 40px;
  align-items: center;
}

.cta-inner p {
  font-size: 1.1rem;
  font-weight: 500;
  max-width: 400px;
}

.megaphone-wrapper {
  position: relative;
  width: 400px;
  height: 400px;
}

.megaphone-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(-15deg);
  filter: contrast(1.2) drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.3));
}

.final-sticky {
  top: 50%;
  right: -50px;
  transform: rotate(10deg);
  width: 150px;
  height: 150px;
  font-size: 1.5rem;
  background: var(--pastel-blue);
}

/* ------------------------------------- */
/* FOOTER */
/* ------------------------------------- */
.footer {
  background: var(--bg-paper);
  padding: 80px 40px 40px;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-col:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  padding-right: 40px;
}

.footer-col {
  flex: 1;
}

.brand-col {
  flex: 1.5;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: block;
  color: var(--text-black);
  text-decoration: none;
  font-weight: 500;
}

.footer-col p {
  line-height: 1.5;
}

.brand-desc {
  margin: 20px 0;
  font-size: 1rem !important;
}

.copyright {
  font-size: 0.8rem !important;
  opacity: 0.7;
  margin-top: 40px !important;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: var(--text-black);
  margin: 0 !important;
}

.newsletter-form {
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin: 20px 0;
  background: transparent;
}

.newsletter-form input {
  border: none;
  background: transparent;
  flex: 1;
  outline: none;
  padding: 12px 15px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
}

.newsletter-form button {
  background: transparent;
  border: none;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0 15px;
  font-size: 1.2rem;
  cursor: pointer;
}

.footer-bottom-links {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-top: 20px;
  font-weight: 600;
}

/* ===================================== */
/* ABOUT PAGE STYLES */
/* ===================================== */

.script-title {
  font-family: var(--font-hand);
  font-size: 3rem;
  transform: rotate(-2deg);
  margin-bottom: -10px;
}

.pink-script {
  color: var(--hot-pink);
}

.yellow-text {
  color: var(--mustard-yellow);
}

.script-subtitle {
  font-family: var(--font-hand);
  font-size: 1.8rem;
  margin: 10px 0 20px;
}

.script-header {
  margin-bottom: 30px;
  position: relative;
}

.script-line {
  height: 3px;
  background: rgba(0, 0, 0, 0.1);
  width: 100px;
  margin-top: 10px;
}

.script-header.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* About Hero */
.about-hero {
  padding-top: 150px;
  max-width: 1600px;
  margin: 0 auto;
  min-height: 800px;
}

.about-hero-content {
  display: flex;
  padding: 0 80px;
  align-items: center;
  gap: 60px;
}

.about-hero-left {
  flex: 0 0 45%;
}

.about-hero-left .huge-title {
  font-size: 6rem;
  line-height: 0.95;
}

.about-hero-right {
  flex: 1;
  position: relative;
  height: 600px;
}

.about-photo-wrapper {
  position: absolute;
  top: 0;
  right: 10%;
  width: 500px;
  height: 400px;
  background: #fff;
  padding: 15px;
  padding-bottom: 40px;
  box-shadow: 5px 15px 30px rgba(0, 0, 0, 0.15);
  transform: rotate(2deg);
  z-index: 5;
}

.main-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.top-center-angled {
  top: -15px;
  left: 50%;
  margin-left: -50px;
  transform: rotate(-5deg);
  width: 120px;
  height: 30px;
}

.about-sticky-1 {
  top: 20%;
  left: -60px;
  transform: rotate(-8deg);
  width: 110px;
  height: 110px;
  font-size: 1.2rem;
}

.about-sticky-2 {
  bottom: -20px;
  left: 40px;
  transform: rotate(5deg);
  width: 130px;
  height: 130px;
  font-size: 1.5rem;
}

.about-sticky-3 {
  bottom: 20%;
  right: -50px;
  transform: rotate(-4deg);
  width: 120px;
  height: 120px;
  font-size: 1.4rem;
}

.about-film {
  top: 10%;
  right: -150px;
  width: 300px;
  height: 100px;
  background: url('https://images.unsplash.com/photo-1611162617474-5b21e879e113?auto=format&fit=crop&w=400&q=80') center/cover;
  transform: rotate(-10deg);
  z-index: 1;
}

.about-camera {
  bottom: -100px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: url('https://images.unsplash.com/photo-1516035069371-29a1b244cc32?auto=format&fit=crop&w=400&q=80') center/cover;
  transform: rotate(15deg);
  z-index: 6;
}

.about-coffee {
  bottom: -80px;
  left: -100px;
  width: 120px;
  height: 120px;
  background: url('https://images.unsplash.com/photo-1514432324607-a09d9b4aefdd?auto=format&fit=crop&w=300&q=80') center/cover;
  border-radius: 50%;
}

/* Our Story */
.our-story {
  padding: 80px;
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.story-col {
  flex: 1;
}

.medium-title {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 20px;
}

.text-col p {
  margin-bottom: 15px;
  font-size: 0.95rem;
  font-weight: 500;
}

.img-col {
  display: flex;
  justify-content: center;
  position: relative;
}

.torn-image-cutout {
  width: 250px;
  height: 350px;
  clip-path: polygon(5% 0%, 95% 2%, 98% 95%, 2% 98%);
  background: #eae2d6;
  padding: 5px;
}

.gateway-sketch {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  filter: sepia(0.5);
}

.stickies-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.story-sticky {
  width: 220px;
  min-height: 250px;
  transform: rotate(2deg);
}

.story-sticky:nth-child(2) {
  transform: rotate(-2deg);
  margin-left: 50px;
}

.story-sticky .icon {
  margin: 0 auto 15px;
}

/* Our Values */
.our-values {
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 50px;
  text-align: center;
}

.value-item .icon {
  margin: 0 auto 15px;
  width: 50px;
  height: 50px;
}

.value-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.value-item p {
  font-size: 0.8rem;
  font-weight: 500;
}

/* Icons (Outline SVG Masks) */
.bulb-outline {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><path d="M9 21h6m-3-18a7 7 0 0 0-7 7c0 2 1 4 2.5 5.5S10 18 10 20v1m4-1c0-2 1.5-3.5 2.5-5S19 12 19 9a7 7 0 0 0-7-7z"/></svg>');
}

.rocket-outline {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><path d="M12 2L2 22l10-4 10 4z"/></svg>');
}

.diamond-outline {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><polygon points="12 2 2 7 12 22 22 7 12 2"/></svg>');
}

.search-outline {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><circle cx="11" cy="11" r="8"/><line x1="21" y1="21" x2="16.65" y2="16.65"/></svg>');
}

.heart-outline {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"/></svg>');
}

.users-outline {
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2m16 0v-2a4 4 0 0 0-3-3.87m2.42-3.41A4 4 0 1 0 15 7.17"/></svg>');
}

/* Meet Our Team */
.meet-our-team {
  padding: 80px 40px;
  background: #e5dac9;
  position: relative;
  overflow: hidden;
}

.team-carousel {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  padding: 20px;
  overflow-x: auto;
  align-items: center;
}

.polaroid-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.polaroid {
  width: 180px;
  height: 220px;
  background: #fff;
  padding: 10px;
  padding-bottom: 40px;
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  transform: rotate(-2deg);
  transition: transform 0.3s;
}

.polaroid:hover {
  transform: rotate(0) scale(1.05);
  z-index: 10;
}

.polaroid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.hand-name {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: var(--font-hand);
  font-size: 1.5rem;
}

.polaroid-role {
  background: #fff;
  border: 1px solid #000;
  padding: 5px 15px;
  font-family: var(--font-hand);
  font-size: 1.2rem;
  transform: rotate(1deg);
}

.yellow-role {
  background: var(--mustard-yellow);
  border: none;
}

.team-sticky {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  font-size: 1.5rem;
  transform: rotate(5deg);
}

/* Studio Life */
.studio-life {
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

.studio-left {
  flex: 0 0 300px;
}

.studio-right {
  flex: 1;
}

.masonry-gallery {
  position: relative;
  width: 100%;
  height: 500px;
  background: #fff;
  padding: 20px;
  box-shadow: 2px 10px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.gallery-img {
  position: absolute;
  border: 5px solid #fff;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  filter: grayscale(0.8);
}

.gallery-img.p1 {
  top: 20px;
  left: 20px;
  width: 45%;
  height: 200px;
  transform: rotate(-2deg);
}

.gallery-img.p2 {
  top: 40px;
  right: 20px;
  width: 45%;
  height: 250px;
  transform: rotate(1deg);
}

.gallery-img.p3 {
  bottom: 20px;
  left: 40px;
  width: 40%;
  height: 220px;
  transform: rotate(2deg);
}

.gallery-img.p4 {
  bottom: 30px;
  right: 30px;
  width: 45%;
  height: 180px;
  transform: rotate(-1deg);
}

.vibes-sticky {
  top: 50%;
  left: 10%;
  transform: rotate(-10deg);
  width: 100px;
  height: 100px;
  font-size: 1.2rem;
  z-index: 5;
}

.ideas-sticky {
  bottom: 10%;
  right: 10%;
  transform: rotate(5deg);
  width: 120px;
  height: 120px;
  font-size: 1.2rem;
  z-index: 5;
}

/* Timelines (Journey & Process) */
.timelines-section {
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.horizontal-timeline {
  position: relative;
  margin-top: 60px;
  margin-bottom: 80px;
}

.timeline-line {
  position: absolute;
  top: 25px;
  left: 5%;
  width: 90%;
  height: 2px;
  border-top: 2px dotted #000;
  z-index: 1;
}

.timeline-row {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.t-step {
  width: 120px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.t-dot {
  width: 12px;
  height: 12px;
  background: #000;
  border-radius: 50%;
  margin: 15px 0;
  border: 2px solid var(--bg-paper);
  box-shadow: 0 0 0 2px #000;
}

.t-step h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.t-step p {
  font-size: 0.75rem;
}

/* ===================================== */
/* WORK PAGE STYLES */
/* ===================================== */

/* Work Hero */
.work-sidebar-text {
  position: absolute;
  left: 20px;
  top: 400px;
  transform: rotate(-90deg);
  transform-origin: left top;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 5px;
  opacity: 0.8;
  z-index: 10;
}

.work-hero {
  padding-top: 150px;
  max-width: 1600px;
  margin: 0 auto;
  min-height: 800px;
  position: relative;
}

.work-hero-content {
  display: flex;
  padding: 0 60px 0 100px;
  align-items: center;
  gap: 40px;
}

.work-hero-left {
  flex: 0 0 45%;
}

.work-hero-left .huge-title {
  font-size: 7rem;
  line-height: 0.95;
}

.work-hero-ctas {
  display: flex;
  align-items: center;
  gap: 30px;
}

.play-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
  color: #000;
}

.play-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.work-hero-right {
  flex: 1;
  position: relative;
  height: 600px;
}

.laptop-collage-wrapper {
  position: absolute;
  top: 50px;
  right: 10%;
  width: 600px;
  height: 400px;
  z-index: 5;
}

.laptop-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.laptop-screen {
  position: absolute;
  top: 12%;
  left: 16%;
  width: 68%;
  height: 65%;
  overflow: hidden;
  transform: perspective(800px) rotateX(5deg);
}

.laptop-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-sticky-1 {
  top: -20px;
  left: 10%;
  transform: rotate(-10deg);
  width: 100px;
  height: 100px;
}

.work-sticky-2 {
  top: 20px;
  right: 0;
  transform: rotate(5deg);
  width: 120px;
  height: 120px;
}

.work-sticky-3 {
  bottom: -40px;
  left: 5%;
  transform: rotate(-5deg);
  width: 140px;
  height: 140px;
}

.work-sticky-4 {
  bottom: 20px;
  right: -20px;
  transform: rotate(10deg);
  width: 100px;
  height: 100px;
}

.work-film {
  top: 0;
  right: -100px;
  transform: rotate(5deg);
}

.work-camera {
  top: -80px;
  right: 50px;
  width: 200px;
  height: 200px;
}

.work-star {
  top: 50px;
  right: 0;
}

.work-arrow {
  bottom: 0;
  left: 0;
}

/* Featured Projects */
.featured-projects {
  padding: 80px 60px;
  max-width: 1600px;
  margin: 0 auto;
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.yellow-script {
  color: var(--mustard-yellow);
}

.yellow-line {
  background: var(--mustard-yellow);
  opacity: 0.5;
}

.featured-grid-wrapper {
  position: relative;
}

.featured-grid {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
}

.project-polaroid {
  flex: 0 0 300px;
  background: #fff;
  padding: 15px;
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  transform: rotate(-1deg);
}

.project-polaroid:nth-child(even) {
  transform: rotate(1deg);
}

.project-img-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: 15px;
}

.project-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.project-polaroid:hover .project-img-wrapper img {
  transform: scale(1.1);
}

.category {
  font-size: 0.7rem;
  font-weight: 700;
  opacity: 0.5;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 5px;
}

.project-info h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.project-info p {
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.view-case {
  font-size: 0.8rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
}

.scroll-arrow-btn {
  position: absolute;
  right: -20px;
  top: 50%;
  width: 40px;
  height: 40px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
}

/* All Work (Masonry) */
.all-work {
  padding: 80px 60px;
  max-width: 1600px;
  margin: 0 auto;
}

.black-script {
  color: #000;
}

.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 40px 0;
}

.filter-btn {
  padding: 8px 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  background: #000;
  color: #fff;
}

.masonry-portfolio {
  position: relative;
  height: 1000px;
  margin-top: 50px;
}

.masonry-item {
  position: absolute;
  background: #fff;
  padding: 10px;
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.masonry-caption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
  backdrop-filter: blur(5px);
}

.masonry-caption h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.masonry-caption span {
  font-size: 0.6rem;
  font-weight: 700;
  opacity: 0.7;
}

.overlay-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 4rem;
  text-align: center;
  line-height: 0.9;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Specific Masonry Placements (Simulating the messy grid) */
.m-tall {
  width: 300px;
  height: 400px;
}

.m-small {
  width: 280px;
  height: 280px;
}

.m-large {
  width: 500px;
  height: 500px;
}

.m-wide {
  width: 450px;
  height: 300px;
}

.m-left {
  top: 0;
  left: 0;
  transform: rotate(-2deg);
}

.m-mid-top {
  top: 20px;
  left: 320px;
  transform: rotate(1deg);
}

.m-center {
  top: 150px;
  left: 450px;
  transform: rotate(-1deg);
  z-index: 2;
}

.m-right-top {
  top: 0;
  right: 300px;
  transform: rotate(2deg);
}

.m-right-edge {
  top: 100px;
  right: 0;
  transform: rotate(-1deg);
}

.m-bottom-left {
  top: 450px;
  left: 50px;
  transform: rotate(1deg);
}

.m-bottom-mid {
  top: 680px;
  left: 350px;
  transform: rotate(-2deg);
}

.m-bottom-right-1 {
  top: 550px;
  right: 350px;
  transform: rotate(2deg);
}

.m-bottom-right-2 {
  top: 600px;
  right: 50px;
  transform: rotate(-3deg);
}

.m-sticky {
  top: 20%;
  right: -30px;
  transform: rotate(10deg);
  width: 100px;
  height: 100px;
  z-index: 5;
}

.m-sticky-2 {
  top: -20px;
  right: -20px;
  transform: rotate(-15deg);
  width: 120px;
  height: 120px;
  z-index: 5;
}

/* Case Study Highlight */
.case-study-highlight {
  padding: 100px 80px;
  display: flex;
  justify-content: center;
}

.case-study-inner {
  max-width: 1400px;
  display: flex;
  gap: 80px;
  align-items: center;
}

.case-study-img {
  flex: 0 0 500px;
  position: relative;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 25px;
  background-color: #ffffff;
  padding: 15px;
  border-radius: 8px;
}

.shoe-cutout {
  width: 100%;
  height: auto;
  filter: drop-shadow(5px 10px 15px rgba(0, 0, 0, 0.3));
  transform: rotate(-5deg);
}

.case-sticky {
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  font-size: 1.2rem;
  transform: rotate(8deg);
}

.case-study-content {
  flex: 1;
}

.sub-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  border-bottom: 2px solid #000;
  padding-bottom: 2px;
}

.case-study-content .medium-title {
  font-size: 3rem;
  margin: 15px 0 20px;
  line-height: 1;
}

.case-study-content p {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 40px;
  max-width: 500px;
}

.process-icons {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.p-icon-box {
  flex: 1;
  text-align: center;
}

.p-icon-box .icon {
  margin: 0 auto 15px;
  width: 40px;
  height: 40px;
}

.p-icon-box p {
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.2;
  margin: 0;
}

.p-icon-box span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  opacity: 0.8;
}

/* Trusted Brands Banner */
.trusted-brands-banner {
  background: #fff;
  padding: 40px 0;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  text-align: center;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 30px;
}

.brands-marquee {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.brand-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  opacity: 0.7;
}

.work-numbers .numbers-title-col h2 {
  font-size: 2.5rem;
}

/* Testimonials */
.testimonials {
  padding: 100px 80px;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-cards {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 60px;
}

.test-card {
  background: #fff;
  padding: 40px 30px;
  width: 350px;
  text-align: left;
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.test-card:nth-child(1) {
  transform: rotate(-2deg);
}

.test-card:nth-child(2) {
  transform: rotate(1deg);
}

.test-card:nth-child(3) {
  transform: rotate(-1deg);
}

.quote-mark {
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--hot-pink);
  line-height: 0;
  margin-top: 40px;
  margin-bottom: 20px;
}

.test-card p {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 30px;
  min-height: 80px;
}

.client-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0.6;
}

.pagination-dots {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pagination-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
}

.pagination-dots .dot.active {
  background: #000;
}

/* ===================================== */
/* CONTACT PAGE STYLES */
/* ===================================== */

/* Contact Hero */
.contact-hero {
  padding-top: 150px;
  max-width: 1600px;
  margin: 0 auto;
  min-height: 800px;
  position: relative;
}

.contact-hero-content {
  display: flex;
  padding: 0 60px 0 100px;
  align-items: center;
  gap: 40px;
}

.contact-hero-left {
  flex: 0 0 45%;
  z-index: 10;
}

.contact-features {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-item .icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-text {
  font-size: 0.75rem;
  font-family: var(--font-body);
}

.f-text strong {
  font-size: 0.85rem;
  font-family: var(--font-heading);
  display: block;
  margin-bottom: 2px;
}

.contact-hero-right {
  flex: 1;
  position: relative;
  height: 650px;
}

.moodboard-wrapper {
  position: absolute;
  top: 0;
  right: 10%;
  width: 500px;
  height: 500px;
  background: #fff;
  padding: 20px;
  padding-bottom: 50px;
  box-shadow: 2px 5px 20px rgba(0, 0, 0, 0.15);
  transform: rotate(3deg);
  z-index: 5;
}

.hero-collage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  animation: float-img 6s ease-in-out infinite;
}

@keyframes float-img {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

.moodboard-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
}

.contact-sticky-1 {
  top: 20px;
  left: -40px;
  transform: rotate(-5deg);
  width: 100px;
  height: 100px;
}

.contact-sticky-2 {
  top: 130px;
  left: -60px;
  transform: rotate(3deg);
  width: 110px;
  height: 110px;
}

.contact-sticky-3 {
  top: 250px;
  left: -30px;
  transform: rotate(-8deg);
  width: 120px;
  height: 120px;
}

.contact-sticky-4 {
  bottom: 80px;
  right: -60px;
  transform: rotate(12deg);
  width: 180px;
  height: 180px;
}

.white-paper-note {
  position: absolute;
  background: #fff;
  padding: 20px;
  font-family: var(--font-hand);
  font-size: 1.8rem;
  line-height: 1.2;
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.1);
}

.camera-lens-img {
  top: -20px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: url('https://images.unsplash.com/photo-1516035069371-29a1b244cc32?auto=format&fit=crop&w=300&q=80') center/cover;
  border-radius: 50%;
  transform: rotate(15deg);
  z-index: 6;
}

.contact-coffee {
  bottom: -50px;
  left: 50px;
  width: 140px;
  height: 140px;
  z-index: 6;
}

.contact-pencil {
  bottom: -20px;
  right: 50px;
  width: 250px;
  height: 40px;
  background: url('https://images.unsplash.com/photo-1583341612074-ccea5cd64f6a?auto=format&fit=crop&w=400&q=80') center/contain no-repeat;
  transform: rotate(-30deg);
  z-index: 6;
}

.contact-star-1 {
  top: 100px;
  right: -20px;
}

.contact-star-2 {
  bottom: 150px;
  right: 0;
}

/* Form & Map Section */
.form-map-section {
  padding: 80px;
  max-width: 1400px;
  margin: 40px auto;
  position: relative;
}

.form-map-inner {
  display: flex;
  gap: 60px;
}

.paperclip {
  position: absolute;
  top: -20px;
  left: 40px;
  width: 40px;
  height: 80px;
  background: url('https://upload.wikimedia.org/wikipedia/commons/4/4b/Paper_clip.svg') center/contain no-repeat;
  transform: rotate(-20deg);
  z-index: 10;
}

.contact-form-wrapper {
  flex: 1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.input-group {
  flex: 1;
  position: relative;
}

.input-group.full-width {
  width: 100%;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  outline: none;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #000;
}

.input-icon {
  position: absolute;
  left: 15px;
  top: 15px;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
}

.user-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2m8-10a4 4 0 1 0 0-8 4 4 0 0 0 0 8z"/></svg>');
}

.email-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2zm0 0l8 5 8-5"/></svg>');
}

.phone-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"/></svg>');
}

.tag-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><path d="M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82zM7 7h.01"/></svg>');
}

.edit-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><path d="M12 20h9M16.5 3.5a2.12 2.12 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z"/></svg>');
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 10px;
}

.hand-note {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hand-note .pink-script {
  font-size: 1.5rem;
  line-height: 1;
}

.curved-arrow {
  width: 50px;
  height: 30px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 50"><path d="M10,10 Q50,50 90,20 M80,10 L90,20 L80,30" fill="none" stroke="black" stroke-width="2"/></svg>') center/contain no-repeat;
  transform: rotate(20deg);
}

.location-wrapper {
  flex: 1;
}

.map-container {
  position: relative;
  width: 100%;
  height: 350px;
  background: #ddd;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.map-img {
  width: 100%;
  height: 100%;
}

.map-pin {
  position: absolute;
  top: 40%;
  left: 40%;
  width: 40px;
  height: 40px;
  background: var(--hot-pink);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 10px rgba(255, 105, 180, 0.3);
  animation: pulse 2s infinite;
}

.map-pin::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 105, 180, 0.4);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(255, 105, 180, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 105, 180, 0);
  }
}

.map-sticky {
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  transform: rotate(-5deg);
  padding-top: 30px;
  font-size: 1.2rem;
}

.map-sticky span {
  font-size: 0.8rem;
  font-family: var(--font-body);
  font-weight: 500;
  display: block;
  margin-top: 5px;
}

.pin-icon-small {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -10px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5z"/></svg>');
}

/* Contact Details Grid */
.contact-details-grid {
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 40px;
  text-align: center;
}

.detail-col {
  flex: 1;
  padding: 0 15px;
  border-right: 1px dashed rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.detail-col:last-child {
  border-right: none;
}

.circle-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pink-bg {
  background: var(--blush-pink);
}

.yellow-bg {
  background: var(--mustard-yellow);
}

.blue-bg {
  background: var(--pastel-blue);
}

.green-bg {
  background: #d4edda;
}

.detail-col h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.detail-col p {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.6;
}

.dark-icons span {
  background: #000;
  color: #fff;
}

/* Full Width Pink CTA */
.full-width-cta {
  width: 100%;
  background: var(--hot-pink);
  padding: 80px 0;
  margin-top: 80px;
  position: relative;
  clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0 100%);
}

.cta-inner-flex {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.megaphone-img-small {
  width: 250px;
  transform: rotate(-20deg);
  filter: contrast(1.2);
}

.stars-left {
  top: 0;
  left: 100px;
  width: 60px;
  height: 60px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,10 L60,40 L90,50 L60,60 L50,90 L40,60 L10,50 L40,40 Z" fill="none" stroke="black" stroke-width="4"/></svg>') center/contain no-repeat;
}

.cta-text-center {
  text-align: center;
  color: #000;
}

.cta-text-center h2 {
  font-size: 4rem;
  font-family: var(--font-heading);
  margin-bottom: 10px;
}

.cta-text-center h3 {
  font-size: 2.5rem;
  line-height: 1.1;
}

.highlight-circle {
  position: relative;
  display: inline-block;
}

.highlight-circle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 110%;
  border: 3px solid #000;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-5deg);
}

.cta-btn-wrapper {
  position: relative;
}

.star-right {
  top: -60px;
  right: 0;
  width: 50px;
  height: 50px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,10 L60,40 L90,50 L60,60 L50,90 L40,60 L10,50 L40,40 Z" fill="none" stroke="black" stroke-width="4"/></svg>') center/contain no-repeat;
}

.arrow-right {
  bottom: -40px;
  right: 20px;
  width: 60px;
  height: 40px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 50"><path d="M10,25 L90,25 M70,5 L90,25 L70,45" fill="none" stroke="black" stroke-width="4"/></svg>') center/contain no-repeat;
  transform: rotate(15deg);
}

/* Dark Footer */
.dark-footer {
  background: #111;
  color: #fff;
  padding: 80px 40px 20px;
  margin-top: -40px;
  position: relative;
  z-index: 10;
  font-family: var(--font-body);
}

.dark-footer .footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.light-logo .logo-text {
  color: #fff;
}

.light-logo .highlight {
  color: var(--mustard-yellow);
}

.dark-footer .brand-desc {
  opacity: 0.7;
  font-weight: 400;
  margin-top: 20px;
}

.light-icons span {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.light-icons span:hover {
  border-color: #fff;
}

.dark-footer h4 {
  color: #fff;
  opacity: 0.9;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.dark-footer a {
  color: #fff;
  opacity: 0.7;
  font-weight: 400;
  transition: opacity 0.3s;
}

.dark-footer a:hover {
  opacity: 1;
}

.dark-footer p {
  color: #fff;
  opacity: 0.7;
  font-weight: 400;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-sm {
  width: 16px;
  height: 16px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  filter: invert(1);
}

.phone-icon-sm {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"/></svg>');
}

.email-icon-sm {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2zm0 0l8 5 8-5"/></svg>');
}

.pin-icon-sm {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"/><circle cx="12" cy="10" r="3"/></svg>');
}

.dark-form {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dark-form input {
  color: #fff;
}

.dark-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.yellow-submit {
  color: var(--mustard-yellow) !important;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 20px;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ===================================== */
/* LAB PAGE STYLES */
/* ===================================== */

/* Lab Hero */
.lab-hero {
  padding-top: 150px;
  max-width: 1600px;
  margin: 0 auto;
  min-height: 800px;
  position: relative;
}

.lab-hero-content {
  display: flex;
  padding: 0 60px 0 100px;
  align-items: center;
  gap: 40px;
}

.lab-hero-left {
  flex: 0 0 45%;
  z-index: 10;
}

.lab-hero-right {
  flex: 1;
  position: relative;
  height: 750px;
}

.bulb-collage-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.blueprint-bg {
  position: absolute;
  top: 0;
  left: 10%;
  width: 500px;
  height: 600px;
  object-fit: cover;
  opacity: 0.8;
  mix-blend-mode: multiply;
  transform: rotate(2deg);
  z-index: 1;
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.glowing-bulb {
  position: absolute;
  top: -50px;
  left: 30%;
  width: 400px;
  height: auto;
  z-index: 5;
  filter: drop-shadow(0 0 50px rgba(201, 162, 39, 0.4));
}

.lab-sticky-1 {
  top: 30px;
  left: 5%;
  transform: rotate(-5deg);
  width: 120px;
  height: 120px;
  z-index: 6;
}

.lab-sticky-2 {
  top: 160px;
  left: 8%;
  transform: rotate(4deg);
  width: 110px;
  height: 110px;
  z-index: 6;
}

.lab-sticky-3 {
  top: 150px;
  right: 5%;
  transform: rotate(-8deg);
  width: 100px;
  height: 100px;
  z-index: 6;
}

.lab-sticky-4 {
  bottom: 250px;
  right: 20%;
  transform: rotate(6deg);
  width: 100px;
  height: 100px;
  z-index: 6;
}

.lab-camera {
  position: absolute;
  bottom: 200px;
  right: 0;
  width: 250px;
  height: auto;
  transform: rotate(-10deg);
  z-index: 7;
  filter: drop-shadow(5px 10px 15px rgba(0, 0, 0, 0.3));
}

.lab-coffee {
  position: absolute;
  bottom: 120px;
  left: 15%;
  width: 180px;
  height: 180px;
  background: url('https://images.unsplash.com/photo-1514432324607-a09d9b4aefdd?auto=format&fit=crop&w=300&q=80') center/contain no-repeat;
  z-index: 8;
  transform: rotate(-5deg);
  filter: contrast(1.2);
}

.cup-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(5deg);
  font-family: var(--font-hand);
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
}

.lab-pencil {
  position: absolute;
  bottom: 160px;
  left: 35%;
  width: 300px;
  height: 40px;
  background: url('https://images.unsplash.com/photo-1583341612074-ccea5cd64f6a?auto=format&fit=crop&w=400&q=80') center/contain no-repeat;
  transform: rotate(15deg);
  z-index: 9;
}

.lab-film {
  top: 100px;
  right: -50px;
  width: 300px;
  transform: rotate(-5deg);
  z-index: 4;
}

.lab-star-1 {
  top: 50px;
  right: 50px;
  width: 60px;
  height: 60px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,10 L60,40 L90,50 L60,60 L50,90 L40,60 L10,50 L40,40 Z" fill="none" stroke="black" stroke-width="4"/></svg>') center/contain no-repeat;
  z-index: 6;
}

.lab-star-2 {
  bottom: 150px;
  left: 0;
  width: 40px;
  height: 40px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,10 L60,40 L90,50 L60,60 L50,90 L40,60 L10,50 L40,40 Z" fill="none" stroke="black" stroke-width="4"/></svg>') center/contain no-repeat;
  z-index: 6;
}

/* Lab Process */
.lab-process-section {
  padding: 80px;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: stretch;
}

.process-left {
  flex: 0 0 350px;
}

.lab-checklist {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lab-checklist li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
}

.lab-checklist .icon {
  width: 30px;
  height: 30px;
}

.gear-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><path d="M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"/><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"/></svg>');
}

.star-scatter {
  width: 100px;
  height: 100px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10,30 L20,35 L15,45 Z M70,80 L80,75 L85,85 Z" fill="none" stroke="black" stroke-width="2"/></svg>') center/contain no-repeat;
}

.process-right {
  flex: 1;
  background: #fff;
  padding: 40px;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.02);
  border: 1px dashed rgba(0, 0, 0, 0.1);
}

.flowchart-stickies {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

.flow-sticky {
  width: 160px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 10px;
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.flow-sticky:nth-child(1) {
  transform: rotate(-2deg);
}

.flow-sticky:nth-child(3) {
  transform: rotate(1deg);
}

.flow-sticky:nth-child(5) {
  transform: rotate(-1deg);
}

.flow-sticky:nth-child(7) {
  transform: rotate(2deg);
}

.flow-sticky:nth-child(9) {
  transform: rotate(-2deg);
}

.gray-paper {
  background: #e5e5e5;
  border-radius: 2px;
}

.flow-sticky .icon {
  width: 40px;
  height: 40px;
}

.flask-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><path d="M10 2v7.31L2.07 19.46A2 2 0 0 0 3.73 22h16.54a2 2 0 0 0 1.66-2.54L14 9.31V2M8.5 2h7M14 9.31L19.93 18H4.07L10 9.31V2"/></svg>');
}

.code-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><polyline points="16 18 22 12 16 6"/><polyline points="8 6 2 12 8 18"/></svg>');
}

.flow-sticky h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.flow-sticky p {
  font-size: 0.75rem;
  font-weight: 500;
}

.flow-arrow {
  font-family: var(--font-hand);
  font-size: 2rem;
  color: #000;
  opacity: 0.5;
}

/* Focus & Experiments */
.focus-experiments-section {
  padding: 80px 40px;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
}

.focus-left {
  flex: 1;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
}

.f-item .icon {
  width: 35px;
  height: 35px;
}

.f-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 5px;
}

.f-item p {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.8;
}

.robot-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><rect x="3" y="11" width="18" height="10" rx="2"/><circle cx="12" cy="5" r="2"/><path d="M12 7v4M8 16h.01M16 16h.01"/></svg>');
}

.layers-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><polygon points="12 2 2 7 12 12 22 7 12 2"/><polyline points="2 12 12 17 22 12"/><polyline points="2 17 12 22 22 17"/></svg>');
}

.experiments-right {
  flex: 0 0 500px;
  position: relative;
}

.experiments-block {
  padding: 40px;
  width: 100%;
  position: relative;
  z-index: 5;
}

.exp-card {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.exp-card:last-child {
  border-bottom: none;
}

.exp-img {
  width: 100px;
  height: 60px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.exp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exp-info {
  flex: 1;
}

.exp-info h4 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.exp-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

.status-badge {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--mustard-yellow);
  color: #000;
}

.status-progress {
  background: #d4edda;
}

.status-testing {
  background: var(--mustard-yellow);
}

.status-dev {
  background: var(--pastel-blue);
}

.stars-right {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 80px;
  height: 80px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,10 L60,40 L90,50 L60,60 L50,90 L40,60 L10,50 L40,40 Z" fill="none" stroke="black" stroke-width="4"/></svg>') center/contain no-repeat;
  z-index: 1;
}

.btn-outline.white-outline {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 10px 25px;
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline.white-outline:hover {
  background: #fff;
  color: #000;
}

/* Tools We Love */
.tools-section {
  padding: 80px 40px;
  max-width: 1500px;
  margin: 0 auto;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  position: relative;
}

.tools-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  max-width: 1100px;
  margin-left: 0;
}

.tool-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 80px;
}

.t-icon {
  width: 50px;
  height: 50px;
  border: 2px solid #000;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  background: #fff;
}

.tool-logo p {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.tools-sticky {
  position: absolute;
  top: 100px;
  right: 100px;
  width: 220px;
  height: 220px;
  transform: rotate(8deg);
  font-size: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 20px;
}

/* Lab Culture & Numbers */
.culture-numbers-section {
  padding: 80px 40px;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

.culture-left {
  flex: 0 0 600px;
  padding: 40px;
  position: relative;
}

.culture-checklist {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.culture-checklist li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

.culture-photos {
  position: absolute;
  bottom: 30px;
  right: -80px;
  display: flex;
  gap: -20px;
}

.c-polaroid {
  background: #fff;
  padding: 10px;
  padding-bottom: 30px;
  width: 250px;
  height: 180px;
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.5);
}

.c-polaroid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.p-1 {
  transform: rotate(-5deg);
  z-index: 2;
  margin-right: -40px;
}

.p-2 {
  transform: rotate(3deg);
  z-index: 1;
}

.culture-sticky {
  position: absolute;
  bottom: -30px;
  left: 30%;
  width: 140px;
  height: 140px;
  transform: rotate(10deg);
  font-size: 1.2rem;
  z-index: 5;
  text-align: center;
}

.numbers-right {
  flex: 1;
  padding-left: 100px;
}

.lab-numbers-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.lab-numbers-flex .num {
  font-size: 4rem;
  margin-bottom: 5px;
}

.lab-numbers-flex p {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ===================================== */
/* CAPABILITY PAGE STYLES */
/* ===================================== */

/* Cap Hero */
.cap-hero {
  padding-top: 150px;
  max-width: 1600px;
  margin: 0 auto;
  min-height: 800px;
  position: relative;
}

.cap-hero-content {
  display: flex;
  padding: 0 60px 0 100px;
  align-items: center;
  gap: 40px;
}

.cap-hero-left {
  flex: 0 0 45%;
  z-index: 10;
}

.cap-hero-right {
  flex: 1;
  position: relative;
  height: 750px;
}

.laptop-collage-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.cap-laptop {
  position: absolute;
  top: 0;
  left: 15%;
  width: 600px;
  height: auto;
  z-index: 5;
  filter: drop-shadow(10px 20px 30px rgba(0, 0, 0, 0.3));
  transform: rotate(2deg);
}

.cap-sticky-1 {
  top: 50px;
  left: 10%;
  transform: rotate(-5deg);
  width: 120px;
  height: 120px;
  z-index: 6;
}

.cap-sticky-2 {
  top: 180px;
  left: 15%;
  transform: rotate(4deg);
  width: 110px;
  height: 110px;
  z-index: 6;
}

.cap-sticky-3 {
  top: 300px;
  left: 5%;
  transform: rotate(-8deg);
  width: 130px;
  height: 130px;
  z-index: 6;
}

.cap-sticky-4 {
  top: 440px;
  left: 12%;
  transform: rotate(6deg);
  width: 120px;
  height: 120px;
  z-index: 6;
}

.cap-camera {
  position: absolute;
  top: 150px;
  right: -50px;
  width: 250px;
  height: auto;
  transform: rotate(15deg);
  z-index: 7;
  filter: drop-shadow(5px 10px 15px rgba(0, 0, 0, 0.3));
}

.cap-coffee {
  position: absolute;
  top: 400px;
  right: 5%;
  width: 180px;
  height: 180px;
  background: url('https://images.unsplash.com/photo-1514432324607-a09d9b4aefdd?auto=format&fit=crop&w=300&q=80') center/contain no-repeat;
  z-index: 8;
  transform: rotate(-10deg);
  filter: contrast(1.2);
}

.cap-pencil {
  position: absolute;
  top: 520px;
  right: -30px;
  width: 300px;
  height: 40px;
  background: url('https://images.unsplash.com/photo-1583341612074-ccea5cd64f6a?auto=format&fit=crop&w=400&q=80') center/contain no-repeat;
  transform: rotate(45deg);
  z-index: 9;
}

.cap-film {
  bottom: 80px;
  left: 50px;
  width: 600px;
  height: 120px;
  transform: rotate(-3deg);
  z-index: 4;
}

.cap-star-1 {
  top: 50px;
  right: 100px;
  width: 60px;
  height: 60px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,10 L60,40 L90,50 L60,60 L50,90 L40,60 L10,50 L40,40 Z" fill="none" stroke="black" stroke-width="4"/></svg>') center/contain no-repeat;
  z-index: 6;
}

.cap-star-2 {
  bottom: 150px;
  left: 20%;
  width: 40px;
  height: 40px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,10 L60,40 L90,50 L60,60 L50,90 L40,60 L10,50 L40,40 Z" fill="none" stroke="black" stroke-width="4"/></svg>') center/contain no-repeat;
  z-index: 6;
}

/* Core Capabilities Grid */
.core-capabilities-section {
  padding: 80px 40px;
  max-width: 1500px;
  margin: 0 auto;
}

.core-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.core-card {
  background: #fff;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.05);
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.05));
}

.core-card::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 10px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 10" preserveAspectRatio="none"><path d="M0,0 Q10,10 20,0 T40,0 T60,0 T80,0 T100,0 L100,10 L0,10 Z" fill="%23fff"/></svg>');
}

.core-card:nth-child(even) {
  transform: translateY(10px);
}

.core-card .circle-icon {
  margin-bottom: 20px;
}

.core-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.2;
}

.core-card p {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.8;
  line-height: 1.5;
}

/* Expertise Flowchart */
.expertise-section {
  padding: 80px 40px;
  max-width: 1500px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.02);
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.expertise-flowchart {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.flow-icon-wrapper {
  width: 60px;
  height: 60px;
  border: 1px dashed #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  background: #fff;
}

.flow-step h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.flow-step p {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.8;
  max-width: 120px;
}

.flow-arrow-dotted {
  width: 40px;
  height: 2px;
  background-image: linear-gradient(to right, #000 33%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 8px 2px;
  background-repeat: repeat-x;
  position: relative;
  margin-top: -40px;
}

.flow-arrow-dotted::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #000;
}

/* Services We Offer */
.services-offer-section {
  padding: 80px 40px;
  max-width: 1500px;
  margin: 0 auto;
}

.services-stickies-grid {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.s-sticky {
  width: 220px;
  padding: 40px 20px 30px;
  position: relative;
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.s-sticky:nth-child(odd) {
  transform: rotate(-2deg);
}

.s-sticky:nth-child(even) {
  transform: rotate(1.5deg);
}

.s-sticky h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-align: center;
}

.s-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.s-checklist li {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.3;
}

.s-sticky .icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 10px;
  display: block;
}

/* Split Tools / Industries */
.tools-industries-section {
  padding: 80px 40px;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: stretch;
}

.split-col {
  flex: 1;
}

.tools-grid-small {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.tool-logo-sm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.t-icon-sm {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.tool-logo-sm p {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.dark-ic {
  background: #000;
  color: #fff;
}

.blue-ic {
  background: #001d3d;
  color: #3a86ff;
}

.orange-ic {
  background: #370617;
  color: #ff9f1c;
}

.purple-ic {
  background: #240046;
  color: #c77dff;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.ind-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  text-align: center;
  transition: 0.3s;
}

.ind-card:hover {
  border-color: #000;
  box-shadow: 2px 2px 0 #000;
  transform: translate(-2px, -2px);
}

.ind-card .icon {
  width: 30px;
  height: 30px;
  opacity: 0.8;
}

.ind-card p {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  margin-top: 10px;
}

.shirt-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><path d="M20.38 3.46L16 2a8 8 0 0 1-8 0L3.62 3.46a2 2 0 0 0-1.34 2.23l.58 3.47a1 1 0 0 0 .99.84H6v10c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V10h2.15a1 1 0 0 0 .99-.84l.58-3.47a2 2 0 0 0-1.34-2.23z"/></svg>');
}

.hotel-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><path d="M10 22v-6.57"/><path d="M14 22v-6.57"/><path d="M12 15V2"/><path d="M3 22v-6.57"/><path d="M21 22v-6.57"/><path d="M7 15V6"/><path d="M17 15V6"/><rect x="2" y="15" width="20" height="7"/></svg>');
}

.factory-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><path d="M2 20a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8l-7 5V8l-7 5V4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"/><path d="M17 18h1"/><path d="M12 18h1"/><path d="M7 18h1"/></svg>');
}

.book-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><path d="M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H20v20H6.5a2.5 2.5 0 0 1 0-5H20"/></svg>');
}

/* Why Capability Matters */
.why-matters-section {
  padding: 80px 40px;
  max-width: 1500px;
  margin: 0 auto;
}

.why-matters-block {
  padding: 60px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  margin-top: 20px;
  z-index: 5;
}

.w-item .icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.yellow-border {
  border: 2px dashed var(--mustard-yellow);
}

.filter-yellow {
  filter: invert(72%) sepia(87%) saturate(417%) hue-rotate(352deg) brightness(97%) contrast(93%);
}

/* approx #C9A227 */
.w-item h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.w-item p {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.8;
  line-height: 1.5;
}

.overlapping-office-photo {
  position: absolute;
  right: -50px;
  top: 30px;
  width: 350px;
  height: 250px;
  background: #fff;
  padding: 10px;
  padding-bottom: 40px;
  box-shadow: -5px 10px 30px rgba(0, 0, 0, 0.5);
  transform: rotate(3deg);
  z-index: 10;
}

.overlapping-office-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

/* Numbers Horizontal */
.numbers-section-horizontal {
  padding: 80px 40px;
  max-width: 1500px;
  margin: 0 auto;
}

.numbers-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.num-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.num-card .num-icon {
  width: 40px;
  height: 40px;
}

.num-card .num {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 5px;
}

.num-card p {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
}

.user-group-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M23 21v-2a4 4 0 0 0-3-3.87"/><path d="M16 3.13a4 4 0 0 1 0 7.75"/></svg>');
}

.check-circle-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"/><polyline points="22 4 12 14.01 9 11.01"/></svg>');
}

.star-outline {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/></svg>');
}

/* ===================================== */
/* ABOUT PAGE: PHILOSOPHY SECTION */
/* ===================================== */
.philosophy-section {
  padding: 100px 40px;
  max-width: 1400px;
  margin: 0 auto 60px auto;
  display: flex;
  align-items: center;
  gap: 120px;
  position: relative;
  background-image: radial-gradient(rgba(201, 162, 39, 0.05) 2px, transparent 2px);
  background-size: 30px 30px;
}

.philosophy-left {
  flex: 0 0 500px;
  position: relative;
  display: flex;
  justify-content: center;
}

.philosophy-circle {
  width: 450px;
  height: 450px;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(0, 0, 0, 0.1);
}

.circle-doodle-collage {
  position: absolute;
  width: 100%;
  height: 100%;
}

.doodle-word {
  position: absolute;
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 1.5rem;
}

.doodle-word.word-1 {
  top: 12%;
  left: 35%;
  color: #9d4edd;
  transform: rotate(-5deg);
  font-size: 1.8rem;
  z-index: 10;
}

.doodle-word.word-2 {
  top: 40%;
  left: 15%;
  color: #06d6a0;
  font-size: 2.2rem;
  transform: rotate(-2deg);
  z-index: 10;
}

.doodle-word.word-3 {
  top: 58%;
  left: 15%;
  color: #0077b6;
  transform: rotate(5deg);
  z-index: 10;
}

.doodle-word.word-4 {
  bottom: 20%;
  left: 40%;
  color: #7cb518;
  transform: rotate(-10deg);
  z-index: 10;
}

.doodle-word.word-5 {
  bottom: 42%;
  right: 5%;
  color: #d62828;
  transform: rotate(2deg);
  font-size: 1.4rem;
  z-index: 10;
}

.doodle-word.word-6 {
  top: 40%;
  right: 28%;
  font-size: 3rem;
  color: #333;
  transform: rotate(10deg);
  z-index: 10;
}

.doodle-svg {
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: 5;
  opacity: 0.8;
}

.d-hierarchy-1 {
  top: 20%;
  left: 20%;
  width: 70px;
  height: 70px;
  transform: rotate(-10deg);
}

.d-hierarchy-2 {
  top: 25%;
  right: 25%;
  width: 60px;
  height: 60px;
  transform: rotate(15deg);
}

.d-pie-1 {
  top: 50%;
  left: 40%;
  width: 50px;
  height: 50px;
  transform: rotate(10deg);
  opacity: 1;
}

.d-pie-2 {
  top: 25%;
  right: 10%;
  width: 60px;
  height: 60px;
  transform: rotate(-20deg);
}

.d-line-chart {
  bottom: 15%;
  right: 25%;
  width: 70px;
  height: 70px;
  transform: rotate(5deg);
}

.d-bar-chart {
  bottom: 30%;
  left: 15%;
  width: 60px;
  height: 60px;
  transform: rotate(-5deg);
}

.d-laptop {
  bottom: 25%;
  left: 20%;
  width: 80px;
  height: 80px;
  transform: rotate(10deg);
}

.d-lightbulb {
  bottom: 10%;
  left: 45%;
  width: 70px;
  height: 70px;
  transform: rotate(-5deg);
}

.d-arrow-1 {
  top: 35%;
  left: 45%;
  width: 60px;
  height: 60px;
  transform: rotate(-20deg);
}

.diagonal-yellow-line {
  position: absolute;
  top: -40px;
  bottom: -40px;
  right: -60px;
  width: 10px;
  background-color: var(--mustard-yellow);
  transform: rotate(15deg);
  z-index: 10;
  border-radius: 10px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.philosophy-right {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.7;
}

.philosophy-right p {
  margin-bottom: 1.5rem;
}

.philosophy-right .intro-text {
  font-size: 1.3rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* ===================================== */
/* RESPONSIVE DESIGN - 100% RESPONSIVE */
/* ===================================== */

/* Hamburger Menu Icon */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1000;
}

.hamburger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-black);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Full Screen Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-paper);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 120px;
  padding-bottom: 50px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2.5rem;
  font-weight: 300;
  cursor: pointer;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.mobile-menu-links a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  text-decoration: none;
  color: var(--text-black);
  transition: color 0.3s ease;
}

.mobile-menu-links a:hover {
  color: var(--mustard-yellow);
}

/* ===================================== */
/* MEDIA QUERIES */
/* ===================================== */

/* Laptops (Max 1280px) */
@media (max-width: 1280px) {
  .huge-title {
    font-size: 6rem;
  }

  .philosophy-section {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .philosophy-left {
    flex: 0 0 auto;
    width: 100%;
  }
}

/* Tablets (Max 1024px) */
@media (max-width: 1024px) {
  .navbar {
    padding: 1.5rem 3rem;
  }

  .huge-title {
    font-size: 5rem;
  }

  .hero-vertical-text,
  .work-sidebar-text {
    display: none;
  }

  .hero-content,
  .about-hero-content,
  .work-hero-content,
  .cap-hero-content,
  .lab-hero-content,
  .contact-hero-content {
    flex-direction: column;
    padding: 0 20px;
  }

  .hero-left,
  .about-hero-left,
  .work-hero-left,
  .cap-hero-left,
  .lab-hero-left,
  .contact-hero-left {
    flex: 0 0 100%;
    margin-bottom: 40px;
  }

  .hero-right,
  .about-hero-right,
  .work-hero-right,
  .cap-hero-right,
  .lab-hero-right,
  .contact-hero-right {
    flex: 0 0 100%;
    width: 100%;
  }

  .logos-grid,
  .numbers-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .values-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tools-grid-small,
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer-col {
    flex: 1 1 45%;
  }
}

/* Tablets Portrait & Small Laptops (Max 834px) */
@media (max-width: 834px) {

  .nav-center,
  .nav-right {
    display: none;
  }

  /* Hide desktop nav */
  .hamburger-menu {
    display: flex;
  }

  /* Show hamburger */

  .huge-title {
    font-size: 4rem;
  }

  .medium-title {
    font-size: 3rem;
  }

  .our-story {
    flex-direction: column;
  }

  .story-col {
    flex: 0 0 100%;
    margin-bottom: 30px;
  }

  .horizontal-timeline {
    display: flex;
    overflow-x: auto;
    padding-bottom: 20px;
  }

  .timeline-line {
    display: none;
  }

  .timeline-row {
    flex-wrap: nowrap;
    gap: 40px;
  }

  .t-step {
    flex: 0 0 200px;
  }

  .tools-industries-section {
    flex-direction: column;
  }
}

/* Mobile Devices (Max 480px) */
@media (max-width: 480px) {
  body {
    font-size: 14px;
    overflow-x: hidden;
    width: 100%;
  }

  html {
    overflow-x: hidden;
    width: 100%;
  }

  .navbar,
  .navbar.scrolled {
    padding: 1rem 1.5rem;
  }

  .huge-title {
    font-size: clamp(1.8rem, 11vw, 2.8rem);
    word-break: break-word;
    hyphens: auto;
  }

  .huge-title .line {
    white-space: normal;
  }

  .medium-title {
    font-size: 2.2rem;
    word-break: break-word;
    hyphens: auto;
  }

  .philosophy-left {
    flex: 0 0 100% !important;
    max-width: 100%;
    padding: 0 10px;
  }

  .philosophy-circle {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1/1;
    max-width: 280px;
    margin: 0 auto;
  }

  .collage-container {
    height: 400px;
  }

  .about-photo-wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 320px;
  }

  .main-photo {
    width: 100%;
    height: auto;
  }

  .logos-grid,
  .numbers-grid-5,
  .values-grid,
  .team-grid,
  .why-grid,
  .tools-grid-small,
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .footer-col {
    flex: 1 1 100%;
    text-align: center;
  }

  .footer-col.contact-col span.icon,
  .footer-col.newsletter-col form {
    justify-content: center;
    margin: 0 auto;
  }

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  /* Reset stickies so they don't break layout on mobile */
  .sticky-note,
  .scrapbook-element,
  .doodle {
    transform: scale(0.6) !important;
  }

  .pink-torn-block {
    width: 100%;
    text-align: center;
    clip-path: none;
    padding: 40px 20px;
  }

  .trusted-brands {
    flex-direction: column;
  }

  .logos-grid {
    width: 100%;
  }
}

/* SERVICES NEW PAGE CSS */
.services-hero {
  padding: clamp(80px, 12vh, 120px) clamp(20px, 5vw, 60px) clamp(20px, 4vh, 40px);
  position: relative;
  background-color: var(--bg-paper);
}

.services-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(20px, 3vh, 40px);
}

.sh-left {
  flex: 0 0 50%;
  position: relative;
}

.pink-torn-tape {
  background: var(--hot-pink);
  color: #111;
  display: inline-block;
  padding: 8px 15px;
  font-family: var(--font-body);
  font-weight: 700;
  font-style: italic;
  font-size: 1.2rem;
  clip-path: polygon(2% 4%, 98% 0%, 100% 95%, 0% 98%);
  transform: rotate(-3deg);
  margin-bottom: 20px;
}

.sh-right {
  flex: 0 0 40%;
  position: relative;
  padding-top: 40px;
}

.sh-desc {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #444;
  position: relative;
}

.doodle-plane {
  position: absolute;
  top: 0;
  left: 0;
}

.services-cards-container {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.srv-card {
  flex: 1;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  transition: transform 0.3s;
}

.srv-card:hover {
  transform: translateY(-10px);
}

.yellow-card {
  background: #EBCB65;
}

/* Softer mustard */
.pink-card {
  background: #DC7B84;
}

/* Softer pink */
.blue-card {
  background: #96ADCC;
}

/* Pastel blue */
.green-card {
  background: #B4C697;
}

/* Pastel green */

.srv-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.srv-card h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 5px;
  color: #111;
  text-transform: uppercase;
}

.srv-line {
  width: 60%;
  height: 10px;
  margin: 0 auto 20px auto;
  display: block;
}

.srv-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  display: inline-block;
}

.srv-card ul li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bullet {
  font-size: 1rem;
  color: #111;
}

.services-bottom-line {
  width: 100%;
  margin-top: 20px;
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .services-hero-top {
    flex-direction: column;
    gap: 40px;
  }

  .sh-left,
  .sh-right {
    flex: 0 0 100%;
  }

  .services-cards-container {
    flex-wrap: wrap;
  }

  .srv-card {
    flex: 1 1 45%;
  }

  .services-hero {
    padding: 120px 40px 40px 40px;
  }
}

@media (max-width: 480px) {
  .services-cards-container {
    flex-direction: column;
  }

  .srv-card {
    flex: 1 1 100%;
  }

  .pantone-graphic {
    display: none;
  }

  .services-hero {
    padding: 100px 20px 40px 20px;
  }
}

/* CSS PANTONE FAN */
.pantone-fan {
  position: relative;
  width: 200px;
  height: 140px;
  margin-left: auto;
  margin-right: 40px;
}

.swatch {
  position: absolute;
  bottom: -20px;
  right: 50px;
  width: 38px;
  height: 140px;
  background: #F4F4F4;
  border-radius: 2px;
  box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.25);
  transform-origin: bottom center;
  display: flex;
  flex-direction: column;
}

.swatch .color {
  height: 75%;
  width: 100%;
  border-radius: 2px 2px 0 0;
}

.swatch .white-base {
  height: 25%;
  width: 100%;
  background: #EFEFEF;
  border-radius: 0 0 2px 2px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pantone-text {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 900;
  font-size: 7px;
  color: #111;
  text-align: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.5px;
}

.tape-piece {
  position: absolute;
  bottom: 10px;
  right: -12px;
  width: 25px;
  height: 18px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transform: rotate(15deg);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
}

.s1 {
  transform: rotate(-75deg);
  z-index: 1;
}

.s2 {
  transform: rotate(-65deg);
  z-index: 2;
}

.s3 {
  transform: rotate(-55deg);
  z-index: 3;
}

.s4 {
  transform: rotate(-45deg);
  z-index: 4;
}

.s5 {
  transform: rotate(-35deg);
  z-index: 5;
}

.s6 {
  transform: rotate(-25deg);
  z-index: 6;
}

.s7 {
  transform: rotate(-15deg);
  z-index: 7;
}

.s8 {
  transform: rotate(-5deg);
  z-index: 8;
}

.s9 {
  transform: rotate(5deg);
  z-index: 9;
  width: 42px;
}

/* Slightly wider last card */

/* WHY NAMOBRAHMA SECTION */
.why-namobrahma {
  display: flex;
  background-color: #f5f4f0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.wn-left {
  flex: 0 0 32%;
  padding: 60px 40px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.wn-right {
  flex: 0 0 68%;
  position: relative;
}

.black-tape-corner {
  position: absolute;
  top: 10px;
  right: -25px;
  width: 120px;
  height: 28px;
  background-color: #222;
  transform: rotate(10deg);
  z-index: 10;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.3);
  clip-path: polygon(2% 2%, 98% 4%, 100% 96%, 0% 98%);
}

.wn-grid {
  display: flex;
  height: 100%;
}

.wn-col {
  flex: 1;
  padding: 50px 15px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wn-col:last-child {
  border-right: none;
}

.wn-icon {
  width: 45px;
  height: 45px;
  margin-bottom: 25px;
}

.wn-col h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  line-height: 1.1;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #111;
  letter-spacing: -0.2px;
}

.wn-col p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.5;
  color: #444;
}

@media (max-width: 1024px) {
  .why-namobrahma {
    flex-direction: column;
  }

  .wn-left,
  .wn-right {
    flex: 0 0 100%;
    border-right: none;
  }

  .wn-grid {
    flex-wrap: wrap;
  }

  .wn-col {
    flex: 1 1 33.333%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .wn-col:nth-child(3n) {
    border-right: none;
  }
}

@media (max-width: 600px) {
  .wn-col {
    flex: 1 1 50%;
  }

  .wn-col:nth-child(2n) {
    border-right: none;
  }

  .wn-col:nth-child(3n) {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
  }
}

/* CLIENTS NEW PAGE */
.clients-hero {
  padding: 120px 60px 60px 60px;
  position: relative;
  background-color: #f6f3eb;
  min-height: 100vh;
}

.clients-hero-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.ch-left {
  flex: 0 0 50%;
}

.black-torn-tape {
  background-color: #111;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  padding: 10px 25px;
  display: inline-block;
  transform: rotate(-2deg);
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
  letter-spacing: 1px;
}

.pink-torn-tape.ch-tape-2 {
  font-size: 4rem;
  padding: 10px 30px;
  margin-left: 10px;
  margin-top: -10px;
  transform: rotate(1deg);
  z-index: 1;
}

.ch-desc {
  position: relative;
  z-index: 3;
}

.ch-right {
  flex: 0 0 45%;
  position: relative;
}

.collage-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
}

.tan-grid-paper {
  position: absolute;
  top: 20px;
  right: 40px;
  width: 250px;
  height: 250px;
  background-color: #dfcd99;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  transform: rotate(5deg);
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.polaroid-handshake {
  position: absolute;
  top: 0;
  right: 100px;
  width: 280px;
  background: #fff;
  padding: 15px 15px 40px 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transform: rotate(-4deg);
  z-index: 3;
}

.polaroid-handshake img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: grayscale(100%) contrast(120%);
}

.paperclip {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%) rotate(10deg);
  z-index: 4;
}

.black-handshake-doodle {
  position: absolute;
  bottom: 10px;
  right: 20px;
  width: 120px;
  height: 120px;
  background-color: #111;
  padding: 15px;
  transform: rotate(8deg);
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 2;
  border: 1px solid #333;
}

.pink-asterisk-doodle {
  position: absolute;
  bottom: -20px;
  left: 30px;
  width: 80px;
  height: 80px;
  z-index: 4;
  transform: rotate(-15deg);
}

.scribble-line-doodle {
  position: absolute;
  bottom: -40px;
  right: 100px;
  width: 120px;
  height: 20px;
  z-index: 4;
}

.clients-grid-container {
  background-color: #fbfbf9;
  border-radius: 5px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05), inset 0 0 40px rgba(0, 0, 0, 0.02);
  padding: 40px;
  position: relative;
  z-index: 5;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.clients-grid-inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.cl-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 15px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Glare effect */
.cl-logo::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(0, 0, 0, 0.15), transparent);
  top: -100%;
  left: -100%;
  transition: all 0.5s ease;
  z-index: 2;
  pointer-events: none;
}

.cl-logo:hover::before {
  top: 100%;
  left: 100%;
}

/* Unique styles for each cursor type */
.cl-pointer {
  cursor: pointer;
}

.cl-pointer:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 0 3px var(--mustard-yellow);
}

.cl-help {
  cursor: help;
}

.cl-help:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 0 3px var(--hot-pink);
}

.cl-wait {
  cursor: wait;
}

.cl-wait:hover {
  animation: cl-pulse 1.5s infinite;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.cl-crosshair {
  cursor: crosshair;
}

.cl-crosshair:hover {
  transform: scale(1.05);
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2);
}

.cl-text {
  cursor: text;
}

.cl-text:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cl-not-allowed {
  cursor: not-allowed;
}

.cl-not-allowed:hover {
  transform: scale(1.05);
  animation: cl-shake 0.5s ease-in-out;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15), 0 0 0 3px #e35a5a;
}

.cl-grab {
  cursor: grab;
}

.cl-grab:hover {
  transform: scale(1.05) translateX(10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cl-zoom-in {
  cursor: zoom-in;
}

.cl-zoom-in:hover {
  transform: scale(1.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

.cl-cell {
  cursor: cell;
}

.cl-cell:hover {
  transform: scale(1.05);
  clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cl-copy {
  cursor: copy;
}

.cl-copy:hover {
  transform: scale(1.05);
  box-shadow: 8px 8px 0 var(--text-black);
}

.cl-move {
  cursor: move;
}

.cl-move:hover {
  animation: cl-moveAround 2s infinite ease-in-out;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cl-alias {
  cursor: alias;
}

.cl-alias:hover {
  transform: scale(1.05) skew(-5deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes cl-pulse {
  0% {
    transform: scale(1.05);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.05);
  }
}

@keyframes cl-shake {

  0%,
  100% {
    transform: translateX(0) scale(1.05);
  }

  25% {
    transform: translateX(-5px) scale(1.05);
  }

  75% {
    transform: translateX(5px) scale(1.05);
  }
}

@keyframes cl-moveAround {
  0% {
    transform: translate(0, 0) scale(1.05);
  }

  25% {
    transform: translate(5px, -5px) scale(1.05);
  }

  50% {
    transform: translate(0, 0) scale(1.05);
  }

  75% {
    transform: translate(-5px, 5px) scale(1.05);
  }

  100% {
    transform: translate(0, 0) scale(1.05);
  }
}

.cl-logo:nth-child(6n) {
  border-right: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.cl-logo:nth-last-child(-n+6) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
}

@media (max-width: 1024px) {
  .clients-hero-top {
    flex-direction: column;
  }

  .ch-right {
    margin-top: 60px;
  }

  .clients-grid-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .cl-logo:nth-child(6n) {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
  }

  .cl-logo:nth-child(3n) {
    border-right: none;
  }

  .cl-logo:nth-last-child(-n+6) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .cl-logo:nth-last-child(-n+3) {
    border-bottom: none;
  }
}

@media (max-width: 600px) {
  .clients-grid-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .cl-logo:nth-child(3n) {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
  }

  .cl-logo:nth-child(2n) {
    border-right: none;
  }

  .cl-logo:nth-last-child(-n+3) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .cl-logo:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .clients-hero {
    padding: 100px 20px 40px 20px;
  }
}

/* BY THE NUMBERS BANNER */
.by-the-numbers-banner {
  background-color: #111;
  background-image: url('https://www.transparenttextures.com/patterns/black-paper.png');
  color: #fff;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 20px;
}

.btn-left {
  position: relative;
  margin-right: 40px;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-left:hover {
  transform: scale(1.05) rotate(2deg);
}

.btn-title {
  font-family: 'Caveat', cursive;
  font-size: 2.8rem;
  line-height: 1.1;
  transform: rotate(-3deg);
  margin: 0;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.btn-left:hover .btn-title {
  color: #F4B41A;
  text-shadow: 2px 2px 10px rgba(244, 180, 26, 0.4);
}

.btn-star {
  color: #E87A9A;
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease;
}

.btn-left:hover .btn-star {
  transform: rotate(180deg) scale(1.3);
  color: #fff;
}

.btn-underline {
  width: 100%;
  height: 8px;
  position: absolute;
  bottom: -5px;
  left: 0;
  transform: rotate(-3deg);
  transition: transform 0.3s ease;
}

.btn-left:hover .btn-underline {
  transform: rotate(0deg) scaleX(1.1);
}

.btn-arrow-doodle {
  width: 40px;
  height: 70px;
  position: absolute;
  bottom: -40px;
  right: -20px;
  transform: rotate(20deg);
  transition: transform 0.3s ease;
}

.btn-left:hover .btn-arrow-doodle {
  transform: rotate(45deg) translate(10px, 5px);
}

.btn-divider {
  width: 1px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-right: 40px;
}

.btn-grid {
  display: flex;
  align-items: stretch;
  flex: 1;
  justify-content: space-between;
  gap: 20px;
}

.btn-stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 25px 15px;
  flex: 1;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  backdrop-filter: blur(5px);
}

.btn-stat h3 {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 5px;
  line-height: 1;
  letter-spacing: 1px;
}

.btn-stat p {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.btn-divider-sm {
  display: none;
}

.btn-star-doodle {
  width: 70px;
  height: 70px;
  margin-left: 20px;
  transform: rotate(10deg);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-star-doodle:hover {
  transform: rotate(145deg) scale(1.2);
  filter: drop-shadow(0px 0px 10px rgba(232, 122, 154, 0.8));
}

@media (max-width: 1024px) {
  .by-the-numbers-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
  }

  .btn-divider {
    display: none;
  }

  .btn-grid {
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 30px;
  }

  .btn-divider-sm {
    display: none;
  }
}

/* DYNAMIC HOVER EFFECTS */
/* Client Logos Hover */
.cl-logo {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.cl-logo:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-color: #f9d342 !important;
  z-index: 10;
}

/* By The Numbers Hover */
.btn-stat {
  transition: transform 0.3s ease;
  cursor: default;
}

.btn-stat:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.1);
  border-color: #F4B41A;
  box-shadow: 0 15px 35px rgba(244, 180, 26, 0.15);
}

.btn-stat:hover h3 {
  color: #F4B41A;
}

/* Why Namobrahma Columns Hover */
.wn-col {
  transition: all 0.3s ease;
  cursor: default;
}

.wn-col:hover {
  background-color: #fff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-5px);
  z-index: 10;
}

.wn-col:hover .wn-icon svg {
  stroke: #E87A9A;
  /* Highlight icon on hover */
  transition: stroke 0.3s ease;
}


/* OUR THINKING SECTION */
.our-thinking-section {
  padding: 180px 60px 80px 60px;
  /* Increased top padding to clear navbar */
  background-color: #f4efdf;
  background-image: url('https://www.transparenttextures.com/patterns/cream-paper.png');
  position: relative;
  min-height: 100vh;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.thinking-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
  /* Give it more breathing room below */
}

.thinking-tape {
  display: inline-block;
  background-color: #111;
  color: #fff;
  font-family: 'Caveat', cursive;
  font-size: 3.5rem;
  padding: 5px 30px;
  transform: rotate(-3deg);
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.red-star {
  color: #d12a2f;
  margin-left: 5px;
}

.scribble-top-right {
  width: 100px;
  height: 50px;
  opacity: 0.7;
}

.thinking-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 40px 0;
}

.thinking-col {
  padding: 20px 40px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.thinking-col:last-child {
  border-right: none;
}

.t-icon-wrapper {
  position: relative;
  height: 120px;
  width: 120px;
  margin-bottom: 30px;
}

.watercolor-circle {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  opacity: 0.8;
  filter: blur(2px);
  z-index: 1;
}

.blue-circle {
  background: radial-gradient(circle, #5b8bc4 40%, #7da9db 70%, transparent 100%);
}

.pink-circle {
  background: radial-gradient(circle, #e37e8c 40%, #eaa6b0 70%, transparent 100%);
}

.yellow-circle {
  background: radial-gradient(circle, #edca50 40%, #f4da7e 70%, transparent 100%);
}

.chess-icon,
.bulb-icon,
.cursor-icon,
.chart-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 80px;
  height: 80px;
  z-index: 2;
}

.dot-grid-doodle {
  position: absolute;
  top: 30px;
  left: -10px;
  width: 40px;
  height: 60px;
  background-image: radial-gradient(#111 2px, transparent 2px);
  background-size: 10px 10px;
  z-index: 3;
}

.swoop-arrow-doodle {
  position: absolute;
  top: 10px;
  right: -20px;
  width: 50px;
  height: 50px;
  z-index: 3;
}

.star-doodle-small {
  position: absolute;
  bottom: 0;
  right: -10px;
  width: 40px;
  height: 40px;
  z-index: 3;
}

.underline-doodle {
  position: absolute;
  bottom: -5px;
  left: 20px;
  width: 60px;
  height: 5px;
  border-bottom: 2px solid #111;
  border-radius: 50%;
}

.t-heading {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1.1;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.red-dot {
  color: #d12a2f;
}

.t-desc {
  font-family: 'Courier New', Courier, monospace;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
}

.marker-highlight {
  display: inline-block;
  padding: 0 4px;
  color: #111;
}

.yellow-marker {
  background-color: #f2d057;
}

.blue-marker {
  background-color: #a8cbf4;
}

.circled-text {
  position: relative;
  display: inline-block;
  padding: 2px 8px;
}

.circled-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #111;
  border-radius: 50% 40% 50% 40% / 60% 40% 50% 50%;
  transform: rotate(-2deg);
}

.underlined-text {
  position: relative;
  display: inline-block;
}

.underlined-text.red-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #d12a2f;
  border-radius: 50%;
  transform: rotate(1deg);
}

/* DYNAMIC HOVER EFFECTS FOR OUR THINKING */
.thinking-col {
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  border-radius: 8px;
}

.thinking-col:hover {
  transform: translateY(-8px);
  background-color: #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  z-index: 10;
}

.thinking-col .chess-icon svg,
.thinking-col .bulb-icon svg,
.thinking-col .cursor-icon svg,
.thinking-col .chart-icon svg {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.thinking-col:hover .chess-icon svg,
.thinking-col:hover .bulb-icon svg,
.thinking-col:hover .cursor-icon svg,
.thinking-col:hover .chart-icon svg {
  transform: scale(1.15) rotate(3deg);
}

.thinking-col .watercolor-circle {
  transition: all 0.4s ease;
}

.thinking-col:hover .watercolor-circle {
  filter: blur(4px) brightness(1.2);
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .thinking-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
  }

  .thinking-col:nth-child(2) {
    border-right: none;
  }

  .thinking-col:nth-child(1),
  .thinking-col:nth-child(2) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 40px;
  }
}

@media (max-width: 600px) {
  .thinking-grid {
    grid-template-columns: 1fr;
  }

  .thinking-col {
    border-right: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    padding: 30px 10px;
  }

  .thinking-col:last-child {
    border-bottom: none !important;
  }

  .our-thinking-section {
    padding: 60px 20px;
    min-height: auto !important;
  }
}

/* FINAL CTA BANNER */
.final-cta-banner {
  width: 95%;
  padding: 40px 50px;
  background-color: #9abde1;
  /* Pastel Blue from image */
  background-image: url('https://www.transparenttextures.com/patterns/cream-paper.png');
  /* Better torn paper edge */
  clip-path: polygon(0% 5%, 5% 0%, 95% 3%, 100% 0%, 100% 95%, 95% 100%, 5% 97%, 0% 100%);
  margin: 160px auto 100px;
  max-width: 1400px;
  position: relative;
  overflow: visible;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-banner-left {
  flex: 1.5;
  padding-left: 10px;
}

.cta-headline {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  line-height: 0.95;
  color: #111;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-star {
  font-family: var(--font-hand);
  font-size: 0.7em;
  vertical-align: super;
}

.highlight-circle-yellow {
  position: relative;
  display: inline-block;
  padding: 0 5px;
}

.highlight-circle-yellow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 160%;
  transform: translate(-50%, -50%) rotate(-2deg);
  border: 3px solid #f9d342;
  border-radius: 50% 40% 50% 40% / 60% 40% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

.cta-banner-middle {
  flex: 1.2;
}

.cta-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #111;
}

.btn-torn-pink-sm {
  display: inline-block;
  background-color: #f78da7;
  /* Matching pink button */
  color: var(--text-black);
  padding: 0.7rem 2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  clip-path: polygon(1% 3%, 98% 1%, 99% 98%, 2% 96%);
  transition: transform 0.3s ease;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-torn-pink-sm:hover {
  transform: scale(1.05) rotate(-2deg);
}

.cta-banner-right {
  position: relative;
  flex: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

.phone-wrapper {
  position: relative;
  z-index: 2;
}

.vintage-phone-img {
  width: 250px;
  height: auto;
  filter: grayscale(1) contrast(1.2);
  mix-blend-mode: multiply;
  transform: rotate(-3deg);
}

.cta-pink-squiggle {
  position: absolute;
  left: 20px;
  top: 50px;
  width: 30px;
  height: 80px;
  z-index: 1;
}

.cta-black-arc {
  position: absolute;
  top: -25px;
  left: 100px;
  width: 80px;
  height: 20px;
  z-index: 1;
}

.sticky-note-wrapper {
  position: absolute;
  right: -50px;
  top: 30px;
  z-index: 3;
}

.cta-sticky-note {
  width: 140px;
  height: 140px;
  font-size: 1.1rem;
  padding: 20px 10px;
  transform: rotate(4deg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  position: relative;
  background-color: #f7e654;
}

.grey-tape-piece {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(2deg);
  width: 40px;
  height: 15px;
  background-color: #d1d5db;
  opacity: 0.8;
  z-index: 4;
}

.smiley-doodle {
  position: absolute;
  bottom: -15px;
  right: -10px;
  width: 50px;
  height: 50px;
  z-index: 5;
}

.cta-asterisk {
  position: absolute;
  top: -40px;
  right: 40px;
  width: 40px;
  height: 40px;
  z-index: 1;
}

.cta-orange-tape {
  position: absolute;
  top: -25px;
  left: 150px;
  width: 45px;
  height: 45px;
  background-color: #f7a072;
  clip-path: polygon(5% 0, 95% 5%, 100% 95%, 0% 100%);
  z-index: 1;
  transform: rotate(12deg);
}

@media (max-width: 1024px) {
  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner-middle {
    max-width: 100%;
    margin: 30px 0;
  }

  .cta-sticky-note {
    right: 0;
    top: -20px;
    position: relative;
    margin-top: 20px;
  }

  .cta-banner-right {
    flex-direction: column;
  }

  .final-cta-banner {
    padding: 40px 20px;
    margin: 60px auto;
  }
}

/* NAVBAR MOBILE FIX */
@media (max-width: 1024px) {
  .navbar::after {
    display: none;
  }

  .navbar {
    border-radius: 0;
    width: 100%;
  }

  .nav-right {
    display: none;
  }
}

/* HERO ANIMATIONS */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes scaleUp {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes floatAnim {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes drawLine {
  0% {
    stroke-dasharray: 0, 1000;
  }

  100% {
    stroke-dasharray: 1000, 1000;
  }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.animate-scale-up {
  opacity: 0;
  animation: scaleUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.float-animation {
  animation: floatAnim 6s ease-in-out infinite;
}

.animate-draw {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 1.5s ease-out forwards;
}

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

.cta-banner-middle {
  flex: 1.2;
}

.cta-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #111;
}

.btn-torn-pink-sm {
  display: inline-block;
  background-color: #f78da7;
  /* Matching pink button */
  color: var(--text-black);
  padding: 0.7rem 2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  clip-path: polygon(1% 3%, 98% 1%, 99% 98%, 2% 96%);
  transition: transform 0.3s ease;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-torn-pink-sm:hover {
  transform: scale(1.05) rotate(-2deg);
}

.cta-banner-right {
  position: relative;
  flex: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

.phone-wrapper {
  position: relative;
  z-index: 2;
}

.vintage-phone-img {
  width: 250px;
  height: auto;
  filter: grayscale(1) contrast(1.2);
  mix-blend-mode: multiply;
  transform: rotate(-3deg);
}

.cta-pink-squiggle {
  position: absolute;
  left: 20px;
  top: 50px;
  width: 30px;
  height: 80px;
  z-index: 1;
}

.cta-black-arc {
  position: absolute;
  top: -25px;
  left: 100px;
  width: 80px;
  height: 20px;
  z-index: 1;
}

.sticky-note-wrapper {
  position: absolute;
  right: -50px;
  top: 30px;
  z-index: 3;
}

.cta-sticky-note {
  width: 140px;
  height: 140px;
  font-size: 1.1rem;
  padding: 20px 10px;
  transform: rotate(4deg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  position: relative;
  background-color: #f7e654;
}

.grey-tape-piece {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(2deg);
  width: 40px;
  height: 15px;
  background-color: #d1d5db;
  opacity: 0.8;
  z-index: 4;
}

.smiley-doodle {
  position: absolute;
  bottom: -15px;
  right: -10px;
  width: 50px;
  height: 50px;
  z-index: 5;
}

.cta-asterisk {
  position: absolute;
  top: -40px;
  right: 40px;
  width: 40px;
  height: 40px;
  z-index: 1;
}

.cta-orange-tape {
  position: absolute;
  top: -25px;
  left: 150px;
  width: 45px;
  height: 45px;
  background-color: #f7a072;
  clip-path: polygon(5% 0, 95% 5%, 100% 95%, 0% 100%);
  z-index: 1;
  transform: rotate(12deg);
}

@media (max-width: 1024px) {
  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner-middle {
    max-width: 100%;
    margin: 30px 0;
  }

  .cta-sticky-note {
    right: 0;
    top: -20px;
    position: relative;
    margin-top: 20px;
  }

  .cta-banner-right {
    flex-direction: column;
  }

  .final-cta-banner {
    padding: 40px 20px;
    margin: 60px auto;
  }
}

/* NAVBAR MOBILE FIX */
@media (max-width: 1024px) {
  .navbar::after {
    display: none;
  }

  .navbar {
    border-radius: 0;
    width: 100%;
  }

  .nav-right {
    display: none;
  }
}

/* HERO ANIMATIONS */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes scaleUp {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes floatAnim {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes drawLine {
  0% {
    stroke-dasharray: 0, 1000;
  }

  100% {
    stroke-dasharray: 1000, 1000;
  }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.animate-scale-up {
  opacity: 0;
  animation: scaleUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.float-animation {
  animation: floatAnim 6s ease-in-out infinite;
}

.animate-draw {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 1.5s ease-out forwards;
}

/* Stagger Delays */
.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.5s;
}

.delay-4 {
  animation-delay: 0.7s;
}

.delay-5 {
  animation-delay: 0.9s;
}

.delay-6 {
  animation-delay: 1.1s;
}

.delay-7 {
  animation-delay: 1.3s;
}

/* ===================================== */
/* NEW CONTACT SECTION STYLES */
/* ===================================== */
.contact-section {
  padding: 100px 0;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-intro {
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.huge-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hot-pink {
  color: var(--hot-pink);
}

.intro-text {
  font-family: var(--font-body);
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.8;
}

.pink-script {
  color: var(--hot-pink);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-card {
  background-color: #f7f6f1;
  /* Light paper color */
  border-radius: 10px;
  padding: 50px 40px;
  box-shadow: 2px 10px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-card:hover {
  transform: translateY(-10px);
}

.paper-texture {
  background-image: url('https://www.transparenttextures.com/patterns/paper.png');
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

.tape-label {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  padding: 5px 20px;
  transform: rotate(-3deg);
  display: inline-block;
  box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.yellow-tape {
  background-color: var(--mustard-yellow);
  color: #000;
}

.yellow-tape:hover {
  transform: rotate(1deg) scale(1.05);
  box-shadow: 2px 8px 15px rgba(247, 230, 84, 0.5);
}

.pink-tape {
  background-color: var(--hot-pink);
  color: #fff;
}

.black-tape-label {
  background-color: #111;
  color: #fff;
  font-size: 1.5rem;
  padding: 5px 15px;
  margin-bottom: 20px;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.doodle-arrow-small {
  width: 50px;
  height: 50px;
  transform: rotate(10deg);
}

.doodle-stars-small {
  width: 40px;
  height: 40px;
  transform: rotate(-10deg);
}

.white-text {
  color: #fff !important;
}

/* ===================================== */
/* PREMIUM SCRAPBOOK CTA BANNER          */
/* ===================================== */
.cta-scrapbook-banner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #fcfaf5;
  background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  padding: 80px 60px;
  margin: 0 auto 60px auto;
  max-width: 1300px;
  border-radius: 2px;
  box-shadow: 2px 10px 25px rgba(0, 0, 0, 0.05), inset 0 0 40px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

/* Torn edge top and bottom effect */
.cta-scrapbook-banner::before,
.cta-scrapbook-banner::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 6px;
  background: transparent;
  background-image: linear-gradient(135deg, transparent 50%, rgba(0, 0, 0, 0.03) 50%), linear-gradient(-135deg, transparent 50%, rgba(0, 0, 0, 0.03) 50%);
  background-size: 12px 12px;
  z-index: 10;
}

.cta-scrapbook-banner::before {
  top: 0;
}

.cta-scrapbook-banner::after {
  bottom: 0;
  transform: rotate(180deg);
}

animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.5s;
}

.delay-4 {
  animation-delay: 0.7s;
}

.delay-5 {
  animation-delay: 0.9s;
}

.delay-6 {
  animation-delay: 1.1s;
}

.delay-7 {
  animation-delay: 1.3s;
}

/* ===================================== */
/* NEW CONTACT SECTION STYLES */
/* ===================================== */
.contact-section {
  padding: 100px 0;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-intro {
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.huge-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hot-pink {
  color: var(--hot-pink);
}

.intro-text {
  font-family: var(--font-body);
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.8;
}

.pink-script {
  color: var(--hot-pink);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

@media (max-width: 768px) {
  .contact-section {
    padding-bottom: 20px !important;
  }
}

.contact-card {
  background-color: #f7f6f1;
  /* Light paper color */
  border-radius: 10px;
  padding: 50px 40px;
  box-shadow: 2px 10px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-card:hover {
  transform: translateY(-10px);
}

.paper-texture {
  background-image: url('https://www.transparenttextures.com/patterns/paper.png');
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

.tape-label {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  padding: 5px 20px;
  transform: rotate(-3deg);
  display: inline-block;
  box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.yellow-tape {
  background-color: var(--mustard-yellow);
  color: #000;
}

.yellow-tape:hover {
  transform: rotate(1deg) scale(1.05);
  box-shadow: 2px 8px 15px rgba(247, 230, 84, 0.5);
}

.pink-tape {
  background-color: var(--hot-pink);
  color: #fff;
}

.black-tape-label {
  background-color: #111;
  color: #fff;
  font-size: 1.5rem;
  padding: 5px 15px;
  margin-bottom: 20px;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.doodle-arrow-small {
  width: 50px;
  height: 50px;
  transform: rotate(10deg);
}

.doodle-stars-small {
  width: 40px;
  height: 40px;
  transform: rotate(-10deg);
}

.white-text {
  color: #fff !important;
}

/* ===================================== */
/* PREMIUM SCRAPBOOK CTA BANNER          */
/* ===================================== */
.cta-scrapbook-banner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #fcfaf5;
  background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  padding: 30px 60px;
  margin: 0 auto 40px auto;
  max-width: 1300px;
  border-radius: 2px;
  box-shadow: 2px 10px 25px rgba(0, 0, 0, 0.05), inset 0 0 40px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

/* Torn edge top and bottom effect */
.cta-scrapbook-banner::before,
.cta-scrapbook-banner::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 6px;
  background: transparent;
  background-image: linear-gradient(135deg, transparent 50%, rgba(0, 0, 0, 0.03) 50%), linear-gradient(-135deg, transparent 50%, rgba(0, 0, 0, 0.03) 50%);
  background-size: 12px 12px;
  z-index: 10;
}

.cta-scrapbook-banner::before {
  top: 0;
}

.cta-scrapbook-banner::after {
  bottom: 0;
  transform: rotate(180deg);
}

.cta-sb-left {
  flex: 0 0 50%;
  text-align: left;
  z-index: 2;
}

.cta-huge-title {
  font-family: 'Anton', sans-serif;
  font-size: 2.8rem;
  letter-spacing: -1px;
  line-height: 1.05;
  color: #111;
  margin-bottom: 15px;
  text-transform: uppercase;
  position: relative;
}

.cta-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  color: #333;
  max-width: 85%;
  margin-bottom: 20px;
}

.cta-btn-scrapbook {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  background-color: #E87A9A;
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 3px 5px 15px rgba(0, 0, 0, 0.2);
  transform: rotate(-1deg);
}

.cta-btn-scrapbook:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 4px 8px 20px rgba(0, 0, 0, 0.3);
  color: var(--mustard-yellow);
}

.btn-tape-corner {
  position: absolute;
  top: -10px;
  left: -15px;
  width: 40px;
  height: 15px;
  background: rgba(255, 255, 255, 0.7);
  transform: rotate(-25deg);
  backdrop-filter: blur(2px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cta-sb-right {
  flex: 0 0 45%;
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collage-phone-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coral-splotch-cta {
  position: absolute;
  width: 250px;
  height: 250px;
  background-color: #de6e7e;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  opacity: 0.15;
  filter: blur(8px);
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(15deg);
}

.vintage-phone-img {
  width: 200px;
  height: auto;
  z-index: 2;
  position: relative;
  transform: rotate(5deg);
  filter: drop-shadow(2px 5px 8px rgba(0, 0, 0, 0.1));
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.vintage-phone-img:hover {
  transform: scale(1.1) rotate(-3deg) translateY(-10px);
  filter: drop-shadow(5px 15px 15px rgba(0, 0, 0, 0.2));
}

.sticky-note-yellow {
  position: absolute;
  bottom: 10%;
  right: -5%;
  background-color: #ebc04b;
  padding: 15px 20px;
  width: 130px;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.15);
  transform: rotate(-8deg);
  z-index: 3;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.sticky-note-yellow:hover {
  transform: scale(1.1) rotate(-2deg) translateY(-5px);
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.2);
}

.sticky-note-yellow p {
  font-family: 'Anton', sans-serif;
  font-size: 1.1rem;
  line-height: 1.2;
  color: #111;
  margin: 0;
  text-align: center;
  letter-spacing: 0.5px;
}

.tape-piece-top {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(3deg);
  width: 50px;
  height: 16px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
}

.doodle-arrow-cta {
  position: absolute;
  top: 15%;
  left: 10%;
  width: 60px;
  height: 60px;
  z-index: 2;
}

.doodle-star-cta {
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 50px;
  height: 50px;
  z-index: 2;
  transform: rotate(-15deg);
}

.tape-cross {
  position: absolute;
  top: 10%;
  right: 15%;
  z-index: 1;
}

.tape-cross .tape-line {
  position: absolute;
  width: 45px;
  height: 14px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(2px);
}

.tape-line-1 {
  transform: rotate(45deg);
}

.tape-line-2 {
  transform: rotate(-45deg);
}

@media (max-width: 1024px) {
  .cta-scrapbook-banner {
    flex-direction: column;
    padding: 60px 40px;
    text-align: center;
  }

  .cta-sb-left {
    flex: 0 0 auto;
    width: 100%;
    margin-bottom: 50px;
  }

  .cta-desc {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }

  .cta-sb-right {
    flex: 0 0 auto;
    width: 100%;
    min-height: 300px;
  }

  .sticky-note-yellow {
    top: -30px;
    bottom: auto;
    right: 5%;
  }
}

@media (max-width: 480px) {
  .cta-huge-title {
    font-size: 3rem;
  }

  .cta-scrapbook-banner {
    padding: 50px 20px;
  }

  .vintage-phone-img {
    width: 150px;
    height: auto;
    margin-top: 30px;
  }

  .sticky-note-yellow {
    top: -40px;
    right: 0;
    bottom: auto;
    width: 110px;
  }
}

/* Form Styles */
.contact-form-new {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-row.has-icon {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transition: border-color 0.3s ease;
}

.input-row.has-icon:focus-within {
  border-color: #111;
  border-width: 2px;
}

.input-row.has-icon .input-icon {
  width: 20px;
  height: 20px;
  color: #555;
  margin-right: 15px;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.input-row.has-icon:focus-within .input-icon {
  color: var(--hot-pink);
}

.input-row.has-icon input,
.input-row.has-icon select,
.input-row.has-icon textarea {
  flex: 1;
  padding: 15px 0;
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
}

.form-footer-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.btn-black-solid {
  background: #111;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-family: var(--font-heading);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-black-solid:hover {
  background: var(--mustard-yellow);
  color: #111;
}

.handwritten-note {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  transform: rotate(-5deg);
  display: inline-block;
  text-align: right;
  line-height: 1;
}

/* Info Styles */
.info-list-new {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

.info-item-new {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.info-item-new:hover {
  transform: translateX(10px);
}

.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.info-item-new:hover .icon-circle {
  transform: rotate(15deg) scale(1.15);
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.1);
}

.icon-circle svg {
  width: 24px;
  height: 24px;
}

.info-text {
  min-width: 0;
  flex: 1;
}

.info-text h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.info-text p {
  font-size: 0.9rem;
  font-family: var(--font-body);
  opacity: 0.8;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.follow-us-section {
  margin-top: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.follow-us-section:hover .black-tape-label {
  transform: rotate(2deg) scale(1.05);
  background-color: var(--hot-pink);
  box-shadow: 2px 5px 15px rgba(232, 122, 154, 0.3);
}

.follow-us-section:hover .social-circles a {
  border-color: var(--hot-pink);
}

.social-circles {
  display: flex;
  gap: 15px;
}

.social-circles a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #111;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.social-circles a svg {
  width: 20px;
  height: 20px;
  position: relative;
  transition: 0.5s;
  z-index: 3;
}

.social-circles a::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  z-index: 2;
}

.social-circles a.instagram::before {
  background: #E1306C;
}

.social-circles a.linkedin::before {
  background: #0077b5;
}

.social-circles a.youtube::before {
  background: #ff0000;
}

.social-circles a:hover::before {
  top: 0;
}

.social-circles a:hover {
  border-color: transparent;
  transform: translateY(-3px);
}

.social-circles a:hover svg {
  color: #fff;
  transform: rotateY(360deg);
}

.tape-corner {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 60px;
  height: 20px;
  background: #111;
  transform: rotate(-45deg);
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    text-align: center;
  }

  .form-footer-flex {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .handwritten-note {
    text-align: left;
  }
}

/* ===================================== */
/* PREMIUM FOOTER REDESIGN */
/* ===================================== */
.premium-footer {
  background-color: #111;
  color: #fff;
  padding: 10px 40px 0;
  position: relative;
  font-family: var(--font-body);
  border-top: 5px solid var(--mustard-yellow);
}

.footer-top-tape {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.footer-tape {
  transform: rotate(2deg);
}

.footer-tape:hover {
  transform: rotate(-1deg) scale(1.1);
  box-shadow: 2px 8px 20px rgba(232, 122, 154, 0.5);
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 15px;
  padding-bottom: 10px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  width: 160px;
  height: auto;
}

.brand-tagline {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.8;
}

.copyright-text {
  font-size: 0.9rem;
  opacity: 0.5;
  margin-top: auto;
}

.footer-links-col h4,
.footer-interact-col h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 25px;
  letter-spacing: 1px;
  color: var(--mustard-yellow);
}

.mt-40 {
  margin-top: 40px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hover-link {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  opacity: 0.8;
  position: relative;
  width: fit-content;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.hover-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--hot-pink);
  transition: width 0.3s ease;
}

.hover-link:hover {
  opacity: 1;
  color: var(--hot-pink);
}

.hover-link:hover::after {
  width: 100%;
}

.footer-interact-col p {
  opacity: 0.8;
  margin-bottom: 20px;
  line-height: 1.5;
}

.footer-newsletter {
  display: flex;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 10px;
  transition: border-color 0.3s ease;
}

.footer-newsletter:focus-within {
  border-color: var(--mustard-yellow);
}

.footer-newsletter input {
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  flex: 1;
  outline: none;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-btn {
  background: transparent;
  border: none;
  color: var(--mustard-yellow);
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.newsletter-btn:hover {
  transform: translateX(5px);
  color: var(--hot-pink);
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.social-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-btn:hover {
  transform: translateY(-5px) scale(1.1);
  border-color: transparent;
  color: #111;
}

.social-btn.instagram:hover {
  background: #E87A9A;
}

.social-btn.linkedin:hover {
  background: #A2C4EB;
}

.social-btn.youtube:hover {
  background: #ff0000;
  color: #fff;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.legal-link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: var(--hot-pink);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .hover-link {
    margin: 0 auto;
  }

  .footer-socials {
    justify-content: center;
  }
}

/* ===================================== */
/* SERVICES FLAT SQUARE CARDS REDESIGN */
/* ===================================== */
.services-sq-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 60px auto 40px;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.sq-card {
  padding: 30px 20px 30px 20px;
  color: #111;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background-color: #fff;
  border: 2px solid #111;
  box-shadow: 4px 4px 0px #111;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
}

.sq-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sq-icon {
  margin-bottom: 25px;
}

.sq-icon svg {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 500;
  opacity: 0.9;
}

.sq-list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 8px;
}

.sq-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #111;
  font-weight: bold;
}

/* Colors extracted from reference image */
.sq-purple {
  background-color: #A17AF0;
}

.sq-pink {
  background-color: #F15C6B;
}

.sq-teal {
  background-color: #42D0C6;
}

.sq-yellow {
  background-color: #F3C654;
}

.sq-lime {
  background-color: #D5E54E;
}

/* Premium Hover Effect */
.sq-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0px #111;
  z-index: 10;
}

.sq-card:hover .sq-icon svg {
  transform: scale(1.2) rotate(-10deg);
}

@media (max-width: 1024px) {
  .services-sq-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-sq-container {
    grid-template-columns: 1fr;
  }

  .sq-card {
    aspect-ratio: auto;
    min-height: 300px;
  }
}

/* ===================================== */
/* SH-DESC-WRAPPER HOVER ANIMATION */
/* ===================================== */
.sh-desc-wrapper {
  background-color: #F8F4EC;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.05);
}

.sh-desc {
  color: #111;
  transition: color 0.4s ease;
}

.sh-mark {
  background-color: #F4CE5D;
  color: #111;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.plane-path {
  transition: stroke 0.4s ease;
}

.sh-desc-wrapper:hover {
  background-color: #E87A9A;
  animation: floatUpDownDesc 2s ease-in-out infinite;
  box-shadow: 2px 15px 25px rgba(0, 0, 0, 0.15);
}

.sh-desc-wrapper:hover .sh-desc {
  color: #fff;
}

.sh-desc-wrapper:hover .sh-mark {
  background-color: #111;
  color: #fff;
}

.sh-desc-wrapper:hover .plane-path {
  stroke: #fff;
}

/* ===================================== */
/* JUMP ON SCROLL ANIMATION */
/* ===================================== */
.animate-jump-on-scroll {
  display: inline-block;
}

.animate-jump-on-scroll.jump-active {
  animation: slowJumpLoop 3s ease-in-out infinite;
}

@keyframes slowJumpLoop {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

/* ===================================== */
/* WHY NAMOBRAHMA REDESIGN */
/* ===================================== */
.wn-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: left;
}

.wn-point {
  background: #F8F4EC;
  padding: 30px;
  border-radius: 8px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  z-index: 1;
}

.wn-point p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
  color: #111;
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}

.pt-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
  color: #111;
  position: relative;
  z-index: 2;
  transition: color 0.4s ease, transform 0.4s ease;
}

.wn-point:hover .pt-icon {
  transform: translateY(-5px);
}

/* Base borders */
.wn-pt-yellow {
  border-left: 5px solid var(--mustard-yellow);
}

.wn-pt-pink {
  border-left: 5px solid var(--hot-pink);
}

.wn-pt-teal {
  border-left: 5px solid #42D0C6;
}

/* The Hover Effect: Background slides in from the left */
.wn-point::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  z-index: -1;
  transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wn-pt-yellow::before {
  background: var(--mustard-yellow);
}

.wn-pt-pink::before {
  background: var(--hot-pink);
}

.wn-pt-teal::before {
  background: #42D0C6;
}

.wn-point:hover {
  transform: translateY(-8px);
  box-shadow: 4px 12px 20px rgba(0, 0, 0, 0.15);
}

.wn-point:hover::before {
  width: 100%;
}

.wn-point:hover p,
.wn-point:hover .pt-icon {
  color: #fff;
}

.wn-pt-yellow:hover p,
.wn-pt-yellow:hover .pt-icon {
  color: #111;
  /* Yellow needs dark text for contrast */
}

/* ------------------------------------- */
.wn-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 20px !important;
  border: none !important;
  padding: 0 !important;
  margin-top: 40px;
}

.wn-col {
  border: 2px solid #111 !important;
  border-radius: 12px;
  padding: 20px 15px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 4px 8px 0 rgba(0, 0, 0, 0.1) !important;
  position: relative;
  overflow: hidden;
}

.wn-col:hover {
  transform: translateY(-15px) scale(1.05) rotate(2deg) !important;
  box-shadow: -8px 15px 0 rgba(0, 0, 0, 0.15) !important;
  z-index: 10;
}

.wn-col .wn-icon {
  margin-bottom: 15px !important;
}

.wn-col .wn-icon svg {
  width: 35px !important;
  height: 35px !important;
  transition: transform 0.4s ease;
}

.wn-col:hover .wn-icon svg {
  transform: scale(1.2) rotate(-15deg);
}

.wn-col h4 {
  font-family: var(--font-heading) !important;
  font-size: 1.2rem !important;
  margin-bottom: 10px !important;
  line-height: 1.1 !important;
}

.wn-col p {
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  margin: 0 !important;
}

/* Colors */
.wn-col.wn-purple {
  background-color: #A17AF0 !important;
  color: #111 !important;
}

.wn-col.wn-pink {
  background-color: #F15C6B !important;
  color: #111 !important;
}

.wn-col.wn-teal {
  background-color: #42D0C6 !important;
  color: #111 !important;
}

.wn-col.wn-yellow {
  background-color: #F4CE5D !important;
  color: #111 !important;
}

.wn-col.wn-lime {
  background-color: #D5E54E !important;
  color: #111 !important;
}

@media (max-width: 1200px) {
  .wn-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 900px) {
  .wn-points {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

@media (max-width: 768px) {
  .wn-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .wn-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ===================================== */
/* DYNAMIC COLLAGE HERO                  */
/* ===================================== */
.collage-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.hero-collage-img {
  width: 100%;
  height: auto;
  display: block;
}

.dynamic-sticky {
  position: absolute;
  padding: 15px 25px;
  font-family: 'Caveat', cursive;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.1;
  color: #111;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10;
  /* subtle continuous float animation */
  animation: floatSticky 4s ease-in-out infinite alternate;
}

@keyframes floatSticky {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

/* Hover overrides animation transform */
.dynamic-sticky:hover {
  transform: translateY(-5px) scale(1.15) !important;
  box-shadow: 5px 15px 30px rgba(0, 0, 0, 0.3);
  z-index: 20;
}

/* Colors */
.ds-yellow {
  background: var(--mustard-yellow);
}

.ds-blue {
  background: #7CB9E8;
}

.ds-pink {
  background: var(--hot-pink);
  color: #fff;
}

/* Positions */
.ds-pos-1 {
  top: 18%;
  left: 8%;
  transform: rotate(-5deg);
  animation-delay: 0s;
}

.ds-pos-2 {
  top: 40%;
  left: 10%;
  transform: rotate(3deg);
  animation-delay: 1s;
}

.ds-pos-3 {
  top: 42%;
  left: 62%;
  transform: rotate(-4deg);
  animation-delay: 0.5s;
}

.ds-pos-4 {
  top: 62%;
  left: 60%;
  transform: rotate(-6deg);
  animation-delay: 1.5s;
}

.ds-pos-5 {
  top: 82%;
  left: 82%;
  transform: rotate(5deg);
  animation-delay: 0.8s;
}

/* In order to not have animation override the base rotation, we use margin-top for float instead of transform */
.dynamic-sticky {
  animation: floatStickyMargin 4s ease-in-out infinite alternate;
}

@keyframes floatStickyMargin {
  0% {
    margin-top: 0;
  }

  100% {
    margin-top: -10px;
  }
}

.dynamic-sticky:hover {
  transform: scale(1.15) !important;
}

@media (max-width: 768px) {
  .dynamic-sticky {
    font-size: 1rem;
    padding: 10px 15px;
  }
}

@keyframes floatUpDownDesc {
  0% {
    transform: rotate(-1.5deg) translateY(0);
  }

  50% {
    transform: rotate(-1.5deg) translateY(-12px);
  }

  100% {
    transform: rotate(-1.5deg) translateY(0);
  }
}

/* ===================================== */
/* DYNAMIC CLIENT COLLAGE HERO           */
/* ===================================== */
.tan-grid-paper {
  position: absolute;
  top: 10%;
  right: 15%;
  width: 250px;
  height: 250px;
  background-color: #e5d8b0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  transform: rotate(5deg);
  box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.08);
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  animation: floatStickyMargin 6s ease-in-out infinite alternate;
}

.tan-grid-paper:hover {
  transform: rotate(8deg) scale(1.05) !important;
  box-shadow: 10px 20px 30px rgba(0, 0, 0, 0.12);
  z-index: 5;
}

.polaroid-handshake {
  position: absolute;
  top: 5%;
  right: 15%;
  background: white;
  padding: 15px 15px 50px 15px;
  width: 420px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transform: rotate(6deg);
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  animation: floatStickyMargin 5s ease-in-out infinite alternate-reverse;
}

.polaroid-handshake img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border: 1px solid #eee;
  filter: contrast(1) sepia(0.3);
  transition: all 0.4s ease;
}

.polaroid-handshake .paperclip {
  position: absolute;
  top: -25px;
  left: 65%;
  transform: translateX(-50%) rotate(10deg);
  z-index: 4;
}

.polaroid-handshake:hover {
  transform: rotate(0deg) scale(1.15) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

.polaroid-handshake:hover img {
  filter: contrast(1.2) sepia(0);
}

.black-handshake-doodle {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 100px;
  height: 100px;
  background: #111;
  padding: 15px;
  box-shadow: -5px 10px 20px rgba(0, 0, 0, 0.15);
  transform: rotate(-5deg);
  z-index: 4;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  animation: floatStickyMargin 4.5s ease-in-out infinite alternate;
}

.black-handshake-doodle:hover {
  transform: rotate(0deg) scale(1.15) !important;
  box-shadow: -10px 20px 40px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

.pink-asterisk-doodle {
  position: absolute;
  bottom: 25%;
  left: 10%;
  width: 60px;
  height: 60px;
  z-index: 2;
  transition: all 0.4s ease;
  animation: floatStickyMargin 3s ease-in-out infinite alternate-reverse;
  cursor: pointer;
}

.pink-asterisk-doodle:hover {
  transform: scale(1.2) rotate(45deg) !important;
}

.scribble-line-doodle {
  position: absolute;
  bottom: 0%;
  right: 15%;
  width: 100px;
  height: 20px;
  z-index: 2;
  transition: all 0.4s ease;
  animation: floatStickyMargin 5.5s ease-in-out infinite alternate;
}

.scribble-line-doodle:hover {
  transform: scale(1.2) !important;
}

.interactive-tape {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  cursor: pointer;
  display: inline-block;
}

.interactive-tape i {
  font-style: italic;
  padding-right: 10px;
}

.ch-tape-1.interactive-tape {
  padding: 15px 45px;
}

.ch-tape-2.interactive-tape {
  padding: 30px 150px 30px 40px;
}

.ch-tape-1.interactive-tape:hover {
  transform: rotate(0deg) scale(1.02) translateX(25px);
  box-shadow: -10px 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.ch-tape-2.interactive-tape:hover {
  transform: rotate(0deg) scale(1.02) translateX(25px);
  box-shadow: -10px 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.ch-desc-card {
  margin-top: 40px;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.6);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
}

.ch-desc-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
  border-color: rgba(232, 122, 154, 0.4);
}

.why-namobrahma {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.wn-top {
  width: 100% !important;
  text-align: center !important;
}

.wn-bottom {
  width: 100% !important;
}

.wn-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 100%;
}

.wn-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 60px auto;
  text-align: left;
}

.wn-point {
  background-color: #f7f5f0;
  border-radius: 8px;
  padding: 35px 30px;
  box-shadow: 2px 10px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.wn-point p {
  color: #111;
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 500;
  margin: 0;
}

.wn-point .pt-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 25px;
  stroke: #111;
}

.wn-pt-yellow {
  border-left: 6px solid #e1b14a;
}

.wn-pt-pink {
  border-left: 6px solid #e77c98;
}

.wn-pt-teal {
  border-left: 6px solid #43cac1;
}

.jump-tape {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  cursor: pointer;
  display: inline-block;
  transform: rotate(-2deg);
  /* Default rotation for tape labels to keep it natural */
}

.jump-tape:hover {
  transform: translateY(-12px) rotate(2deg) scale(1.1);
  box-shadow: -5px 15px 25px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

/* Success Popup Overlay */
.success-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(5px);
}

.success-popup-content {
  background: #fdfaf6;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  border: 2px solid #111;
  box-shadow: 10px 10px 0px #111;
  animation: popup-bounce 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px auto;
}

@keyframes popup-bounce {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Navbar Logo */
.brand-logo-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  mix-blend-mode: multiply;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand-logo-img:hover {
  transform: scale(1.15) rotate(10deg);
}

.hover-jump:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Circular Hamburger Menu */
.hamburger-menu {
  width: 50px;
  height: 50px;
  background-color: #f8f4ec;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  border: 1.5px solid #111;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, background-color 0.4s ease;
  /* padding to override any existing padding */
  padding: 0;
}

.hamburger-menu span {
  width: 22px;
  height: 2px;
  background-color: #111;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-menu:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 4px 8px 15px rgba(0, 0, 0, 0.15);
  background-color: var(--mustard-yellow);
}

/* ===================================== */
/* RESPONSIVE OVERHAUL                   */
/* ===================================== */

/* Global Typography & Safe Defaults */
:root {
  --fs-hero: clamp(3.5rem, 8vw, 8rem);
  --fs-h2: clamp(2.5rem, 5vw, 4.5rem);
  --fs-h3: clamp(1.8rem, 4vw, 3rem);
}



.section-title,
.clients-title h2,
.approach-title h2,
.services-header h2 {
  font-size: var(--fs-h2) !important;
}

h3,
.footer-links-col h4,
.footer-interact-col h4 {
  font-size: var(--fs-h3) !important;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

* {
  box-sizing: border-box;
}

body,
html {
  overflow-x: hidden;
  width: 100vw;
  max-width: 100%;
}

/* ===================================== */
/* LAPTOP / SMALL DESKTOP (Max 1440px)    */
/* ===================================== */
@media (max-width: 1440px) {
  .hero-section {
    padding-top: 120px;
  }
}

/* ===================================== */
/* TABLET (Max 1024px)                    */
/* ===================================== */
@media (max-width: 1024px) {

  /* Navbar */
  .navbar {
    padding: 15px 20px;
  }

  .nav-center {
    display: none !important;
  }

  .nav-right {
    display: none !important;
  }

  .hamburger-menu {
    display: flex !important;
    z-index: 10001 !important;
    position: relative;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    /* Rounded square button */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: #F3F1EB;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: background 0.2s ease;
  }

  .hamburger-menu:hover {
    background: #E5DAB3;
  }

  .hamburger-menu span {
    width: 22px;
    height: 2px;
    background: #171716;
    display: block;
    transition: transform 0.35s ease-in-out, opacity 0.35s ease-in-out, background 0.2s ease;
    transform-origin: center;
  }

  .hamburger-menu:hover span {
    background: #000;
  }

  /* Active State (X) */
  .hamburger-menu.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 40px !important;
  }

  /* Approach / Our Thinking */
  .wn-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .wn-points {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Contact Grid */
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

/* ===================================== */
/* LARGE MOBILE (Max 768px)               */
/* ===================================== */
@media (max-width: 768px) {

  /* Hero Section */
  .hero-content {
    flex-direction: column !important;
    text-align: center;
    padding: 20px !important;
  }

  .hero-left {
    max-width: 100% !important;
    padding: 0 !important;
    text-align: left;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
  }

  .hero-right {
    max-width: 100% !important;
    width: 100% !important;
    flex: 0 0 100% !important;
  }

  .hero-subtitle {
    margin: 0 0 20px 0 !important;
  }

  .hero-buttons {
    justify-content: flex-start !important;
  }

  /* Hide smaller doodles on mobile to avoid clutter */
  .pink-asterisk-doodle,
  .scribble-line-doodle,
  .black-handshake-doodle,
  .tan-grid-paper {
    display: none !important;
  }

  .polaroid-handshake {
    position: relative !important;
    top: 0 !important;
    right: 0 !important;
    transform: rotate(0) !important;
    width: 90% !important;
    margin: 40px auto 0 auto !important;
  }

  .collage-container {
    height: auto !important;
    min-height: 200px !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-collage-img {
    position: relative !important;
    top: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 400px !important;
    object-fit: cover !important;
    object-position: left center !important;
    margin-top: 20px;
  }

  /* Approach Section */
  .wn-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .wn-points {
    grid-template-columns: 1fr !important;
  }

  /* Clients Section */
  .clients-grid-inner {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    width: 100% !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
  }

  .cl-logo {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 15px 10px !important;
    overflow: hidden !important;
  }

  .cl-logo>div,
  .cl-logo>span {
    font-size: clamp(0.7rem, 4vw, 1.1rem) !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    text-align: center !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  .cl-logo svg {
    max-width: 100% !important;
    flex-shrink: 0 !important;
  }

  /* Success Popup */
  .success-popup-content {
    width: 95% !important;
    padding: 20px !important;
  }
}

/* ===================================== */
/* MOBILE (Max 480px)                     */
/* ===================================== */
@media (max-width: 480px) {

  /* Global */
  body,
  html {
    font-size: 14px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr !important;
  }

  .service-card {
    min-height: auto !important;
    padding: 30px 20px !important;
  }

  /* Approach Section */
  .wn-grid {
    grid-template-columns: 1fr !important;
  }

  /* Contact */
  .contact-card {
    padding: 30px 20px !important;
    overflow: hidden !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .tape-label {
    font-size: 1.2rem !important;
    padding: 8px 15px !important;
    left: 10px !important;
    white-space: normal !important;
    max-width: 90% !important;
  }

  .contact-intro {
    padding: 0 15px !important;
  }

  .input-row.has-icon {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .input-row input,
  .input-row select,
  .input-row textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    text-overflow: ellipsis;
  }

  /* Client Hero Tape Labels */
  .hero-section {
    padding-top: 90px !important;
    min-height: auto !important;
  }

  .collage-container {
    height: auto !important;
    min-height: 200px !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-collage-img {
    position: relative !important;
    top: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 350px !important;
    object-fit: cover !important;
    object-position: 5% center !important;
    animation: none !important;
    /* Optional: remove float on mobile for stability */
    margin-top: 20px;
  }

  .services-hero {
    padding-top: 50px !important;
  }

  .ch-left {
    padding: 0 15px !important;
    text-align: center !important;
  }

  .ch-tape-1,
  .ch-tape-2 {
    padding: 15px 20px !important;
    font-size: 2rem !important;
    max-width: 95% !important;
    white-space: normal !important;
    box-sizing: border-box !important;
    margin: 10px auto !important;
    word-wrap: break-word !important;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .footer-socials,
  .footer-links-col {
    align-items: center !important;
  }

  .footer-bottom-bar {
    flex-direction: column !important;
    gap: 15px !important;
  }
}

/* ===================================== */
/* MOBILE MENU DRAWER OVERHAUL           */
/* ===================================== */
.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  height: 100dvh;
  background-color: #F8F4EC;
  background-image: url('https://www.transparenttextures.com/patterns/cream-paper.png');
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  box-sizing: border-box;
  padding-top: 130px;
}

body.menu-open {
  overflow: hidden !important;
  touch-action: none !important;
  overscroll-behavior: none !important;
}

@media (min-width: 768px) {
  .mobile-drawer {
    width: min(100vw, 520px);
  }
}

.mobile-drawer.active {
  transform: translateX(0);
}

.drawer-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 20px 15px;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  margin: 15px 0;
}

.mobile-menu-links a.nav-item-link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-decoration: none;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 15px;
  background: #F3F1EB;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);

  /* Animation states for slide-in */
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), background 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}

/* Left accent line */
.mobile-menu-links a.nav-item-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: #EED269;
  border-radius: 0 4px 4px 0;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}

/* The right arrow */
.mobile-menu-links a.nav-item-link .nav-arrow {
  margin-left: auto;
  font-size: 1.8rem;
  color: #171716;
  transition: color 0.25s ease-in-out;
}

/* Icons and text */
.mobile-menu-links a.nav-item-link .nav-icon {
  width: 24px;
  height: 24px;
  color: #171716;
  transition: color 0.25s ease-in-out;
}

.mobile-menu-links a.nav-item-link .nav-text {
  color: #171716;
  transition: color 0.25s ease-in-out;
}

.mobile-drawer.active .mobile-menu-links a.nav-item-link {
  opacity: 1;
  transform: translateX(0);
}

.mobile-drawer.active .mobile-menu-links a.nav-item-link:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-drawer.active .mobile-menu-links a.nav-item-link:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-drawer.active .mobile-menu-links a.nav-item-link:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-drawer.active .mobile-menu-links a.nav-item-link:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-drawer.active .mobile-menu-links a.nav-item-link:nth-child(5) {
  transition-delay: 0.3s;
}

/* HOVER / ACTIVE STATES */
.mobile-menu-links a.nav-item-link:hover,
.mobile-menu-links a.nav-item-link.active {
  background: #E5DAB3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.mobile-menu-links a.nav-item-link:hover::before,
.mobile-menu-links a.nav-item-link.active::before {
  opacity: 1;
}

/* Keep text and icons dark on hover for readability against the cream background */
.mobile-menu-links a.nav-item-link:hover .nav-icon,
.mobile-menu-links a.nav-item-link.active .nav-icon,
.mobile-menu-links a.nav-item-link:hover .nav-text,
.mobile-menu-links a.nav-item-link.active .nav-text,
.mobile-menu-links a.nav-item-link:hover .nav-arrow,
.mobile-menu-links a.nav-item-link.active .nav-arrow {
  color: #171716;
}

.drawer-cta {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease 0.4s, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.4s;
  width: 100%;
  box-sizing: border-box;
}

.mobile-drawer.active .drawer-cta {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu-footer {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.5s, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.5s;
}

.mobile-drawer.active .mobile-menu-footer {
  opacity: 1;
  transform: translateY(0);
}

/* Desktop Defaults for Mobile elements */
@media (min-width: 1025px) {
  .hamburger-menu {
    display: none !important;
  }
}

/* ===================================== */
/* PAPER CARDS (SERVICES)                */
/* ===================================== */
.services-paper-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap;
  padding: 20px 0;
}

.paper-card {
  flex: 1;
  min-width: 0;
  padding: clamp(15px, 2.5vh, 25px) clamp(10px, 1.5vw, 20px);
  position: relative;
  box-shadow: 3px 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Rough jagged edges to look like torn paper */
  clip-path: polygon(0% 2%, 5% 0%, 15% 3%, 25% 1%, 35% 2%, 45% 0%, 55% 3%, 65% 1%, 75% 2%, 85% 0%, 95% 3%, 100% 1%,
      99% 15%, 100% 25%, 98% 35%, 100% 45%, 99% 55%, 100% 65%, 98% 75%, 100% 85%, 99% 95%,
      100% 98%, 95% 100%, 85% 97%, 75% 100%, 65% 98%, 55% 100%, 45% 97%, 35% 100%, 25% 98%, 15% 100%, 5% 97%, 0% 100%,
      2% 90%, 0% 80%, 2% 70%, 0% 60%, 2% 50%, 0% 40%, 2% 30%, 0% 20%, 2% 10%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.paper-card:hover {
  transform: translateY(-5px) scale(1.02);
  z-index: 10;
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.2);
}

.p-yellow {
  background-color: #ebc04b;
  color: #111;
  transform: rotate(-1.5deg);
}

.p-pink {
  background-color: #de6e7e;
  color: #111;
  transform: rotate(1deg);
}

.p-blue {
  background-color: #8da6c9;
  color: #111;
  transform: rotate(-1deg);
}

.p-green {
  background-color: #a7ba89;
  color: #111;
  transform: rotate(1.5deg);
}

/* Override hover transform so it maintains rotation roughly */
.p-yellow:hover {
  transform: translateY(-5px) scale(1.02) rotate(-1.5deg);
}

.p-pink:hover {
  transform: translateY(-5px) scale(1.02) rotate(1deg);
}

.p-blue:hover {
  transform: translateY(-5px) scale(1.02) rotate(-1deg);
}

.p-green:hover {
  transform: translateY(-5px) scale(1.02) rotate(1.5deg);
}

.paper-card h3 {
  font-family: 'Anton', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: #111;
}

.paper-icon {
  width: 45px;
  height: 45px;
  margin-bottom: 15px;
  opacity: 0.9;
  transform: rotate(-3deg);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.paper-card:hover .paper-icon {
  transform: scale(1.2) rotate(5deg);
  opacity: 1;
}

.paper-card h3::after {
  content: '';
  position: absolute;
  left: -15%;
  bottom: -2px;
  width: 130%;
  height: 3px;
  background-color: #111;
  /* Slightly skewed line */
  transform: rotate(-2deg);
  border-radius: 5px;
}

.paper-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  width: 100%;
  max-width: 180px;
  /* To center the list items effectively */
}

.paper-list li {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
  line-height: 1.4;
  color: #111;
}

.paper-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 1.2rem;
  line-height: 1;
  color: #111;
}

@media (max-width: 1024px) {
  .services-paper-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .paper-card {
    flex: 0 1 calc(50% - 20px);
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .paper-card {
    flex: 0 1 100%;
    transform: none !important;
    /* Disable rotation on mobile for better fit */
  }

  .paper-card:hover {
    transform: translateY(-5px) scale(1.02) !important;
  }
}

/* ===================================== */
/* SCRAPBOOK SECTION (WORK DIFFERENTLY)  */
/* ===================================== */
.scrapbook-section {
  background-color: #fcfaf5;
  background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
}

.sb-tape-center {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  z-index: 5;
}

.sb-layout-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 40px;
  width: 100%;
}

.sb-header-left {
  flex: 0 0 35%;
  text-align: left;
  padding-right: 20px;
  border-right: 2px dashed rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sb-grid-row {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: stretch;
}

.sb-card {
  flex: 1;
  position: relative;
  padding: 20px 25px;
  background-color: transparent;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  color: #111;
}

.sb-card:last-child {
  border-right: none;
}

/* Typography */
.sb-card h4 {
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
  position: relative;
  z-index: 2;
}

.sb-card p {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Icon */
.sb-icon {
  width: 45px;
  height: 45px;
  margin: 0 auto 15px auto;
  opacity: 0.85;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sb-card:hover .sb-icon {
  transform: scale(1.15) translateY(-5px);
  opacity: 1;
}

/* Hover effect */
.sb-hover-mark {
  position: absolute;
  bottom: 15px;
  left: 10%;
  width: 80%;
  height: 15px;
  opacity: 0;
  transition: all 0.4s ease;
  transform: translateY(10px);
  z-index: 1;
}

.sb-card:hover {
  background-color: #ffffff;
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.03);
  z-index: 10;
  border-right-color: transparent;
  /* hide border when hovering to let shadow pop */
  border-radius: 8px;
}

.sb-card:hover .sb-hover-mark {
  opacity: 0.4;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .sb-layout-row {
    flex-direction: column;
    gap: 40px;
  }

  .sb-header-left {
    flex: 0 0 auto;
    border-right: none;
    text-align: center;
    padding-right: 0;
  }

  .sb-grid-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .sb-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 250px;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .sb-card:nth-child(even) {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 768px) {
  .sb-card {
    flex: 1 1 100%;
    border-left: none !important;
    border-right: none !important;
  }
}

/* Custom Animated Card Styles */
.card-animated {
  overflow: hidden;
  position: relative;
  padding: 0 !important;
  /* Reset padding on container, move to face1 */
  border-radius: 8px;
}

.card-animated .face {
  box-sizing: border-box;
}

.card-animated .face.face1 {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 30px 25px 80px 25px;
  /* Extra bottom padding so 60px face2 doesn't cover text */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.card-animated .face.face2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  z-index: 10;
}

.card-animated:nth-child(1) .face.face2 {
  background: linear-gradient(45deg, #111, var(--hot-pink));
}

.card-animated:nth-child(2) .face.face2 {
  background: linear-gradient(45deg, #111, var(--mustard-yellow));
}

.card-animated:nth-child(3) .face.face2 {
  background: linear-gradient(45deg, #111, #e35a5a);
}

.card-animated:nth-child(4) .face.face2 {
  background: linear-gradient(45deg, #111, #333);
}

.card-animated:hover .face.face2 {
  height: 60px;
  border-radius: 0 0 8px 8px;
}

.card-animated .face.face2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px 0 0 8px;
}

.card-animated:hover .face.face2::before {
  border-radius: 0 0 0 8px;
}

.card-animated .face.face2 .sb-icon {
  width: 100px;
  height: 100px;
  stroke: #fff;
  transition: 0.5s;
  margin: 0;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, .2));
}

.card-animated:hover .face.face2 .sb-icon {
  width: 30px;
  height: 30px;
}

/* Torn Red Button (LET'S BUILD SOMETHING) */
.btn-torn-pink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  background-color: #e35a5a;
  background-image: url('https://www.transparenttextures.com/patterns/paper.png');
  color: #111;
  font-family: 'Space Mono', 'Courier New', Courier, monospace;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-decoration: none;
  box-shadow: 3px 5px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;

  /* Torn edge on the right */
  clip-path: polygon(0% 0%,
      95% 0%, 100% 10%, 94% 20%, 100% 30%, 94% 45%, 100% 55%, 94% 70%, 100% 85%, 95% 100%,
      0% 100%);
}

/* CTA Animation (Home Page Button) */
.btn-cta-anim {
  transition: box-shadow 0.5s ease;
}

.btn-cta-anim:hover {
  box-shadow: 8px 8px 0 var(--mustard-yellow) !important;
}

.btn-cta-anim span {
  display: inline-block;
}

.btn-cta-anim span:nth-child(2) {
  width: 25px;
  margin-left: 15px;
  position: relative;
  top: 2px;
  transition: 0.5s;
  margin-right: 0px;
}

.btn-cta-anim:hover span:nth-child(2) {
  margin-right: 20px;
}

.btn-cta-anim path.one {
  transition: 0.4s;
  transform: translateX(-60%);
}

.btn-cta-anim path.two {
  transition: 0.5s;
  transform: translateX(-30%);
}

.btn-cta-anim:hover path.three {
  animation: cta_color_anim 1s infinite 0.2s;
}

.btn-cta-anim:hover path.one {
  transform: translateX(0%);
  animation: cta_color_anim 1s infinite 0.6s;
}

.btn-cta-anim:hover path.two {
  transform: translateX(0%);
  animation: cta_color_anim 1s infinite 0.4s;
}

@keyframes cta_color_anim {
  0% {
    fill: currentColor;
  }

  50% {
    fill: var(--mustard-yellow);
  }

  100% {
    fill: currentColor;
  }
}

.btn-torn-pink:hover {
  transform: translateY(-4px) scale(1.02) rotate(-1deg);
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.25);
}

/* Pink Torn Tape for WHAT WE DO */
.pink-torn-tape {
  display: inline-block;
  background-color: #de7875;
  background-image: url('https://www.transparenttextures.com/patterns/paper.png');
  padding: 10px 40px;
  font-family: 'Caveat', cursive;
  font-size: 2.8rem;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.1;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
  transform: rotate(-2deg);
  margin-bottom: 10px;
  /* Jagged edges on left and right */
  clip-path: polygon(2% 0%, 98% 0%,
      100% 10%, 97% 25%, 100% 45%, 96% 65%, 100% 85%, 98% 100%,
      2% 100%,
      0% 85%, 3% 65%, 0% 45%, 4% 25%, 0% 10%);
}

/* OUR THINKING SECTION FIXES */
.our-thinking-section {
  padding: 80px 5%;
  max-width: var(--content-width);
  margin: 0 auto;
}

.thinking-grid {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.thinking-col {
  flex: 1;
  min-width: 240px;
  padding: 40px 30px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.thinking-col:last-child {
  border-right: none;
}

.thinking-col .t-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.5vw, 1.8rem) !important;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 25px 0 15px;
}

.thinking-col .t-desc {
  font-family: 'Courier New', Courier, monospace;
  font-size: clamp(0.85rem, 1vw, 1rem) !important;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1024px) {
  .thinking-grid {
    border-bottom: none;
  }

  .thinking-col {
    flex: 1 1 45%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .thinking-col:nth-child(even) {
    border-right: none;
  }
}

@media (max-width: 600px) {
  .thinking-col {
    flex: 1 1 100%;
    border-right: none;
  }
}

/* YELLOW FOOTER OVERRIDE */
.premium-footer {
  background-color: #ffd835 !important;
  /* Matched exactly with logo background */
  color: #111 !important;
}

.premium-footer .footer-logo {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border-radius: 0 !important;
}

.premium-footer .footer-logo:hover {
  transform: scale(1.08) rotate(-3deg);
}

/* CLIENT IMAGE LOGOS */
.client-img-logo {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.3s ease;
}

.cl-logo:hover .client-img-logo {
  transform: scale(1.1);
}

.premium-footer p,
.premium-footer .brand-tagline,
.premium-footer .copyright-text {
  color: #000 !important;
  font-weight: 600 !important;
  opacity: 1 !important;
}

.premium-footer h4 {
  color: #000 !important;
  font-weight: 800 !important;
}

.premium-footer .hover-link {
  color: #000 !important;
  font-weight: 600 !important;
}

.premium-footer .hover-link:hover {
  color: #fff !important;
}

.premium-footer .footer-socials .social-btn {
  border-color: rgba(0, 0, 0, 0.1) !important;
}

.premium-footer .footer-socials .social-btn svg {
  stroke: #111 !important;
}

.premium-footer .footer-socials .social-btn:hover {
  background-color: #111 !important;
}

.premium-footer .footer-socials .social-btn:hover svg {
  stroke: var(--mustard-yellow) !important;
}

.premium-footer .footer-bottom-bar {
  border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.premium-footer .legal-link {
  color: #000 !important;
  font-weight: 600 !important;
  opacity: 1 !important;
}

.premium-footer .legal-link:hover {
  color: #111 !important;
}

.premium-footer .newsletter-btn {
  color: #111 !important;
}

.premium-footer .footer-newsletter input {
  color: #111 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
}


.paper-list li {
  font-size: clamp(0.9rem, 1.1vw, 1.15rem) !important;
  margin-bottom: 0.4rem !important;
}

.services-hero-top {
  margin-bottom: 10px !important;
  padding-bottom: 0 !important;
}

.services-paper-container {
  padding-top: 10px !important;
}

/* ============================================================== */
/* USER REQUESTED FIX: FULL-BLEED LAYOUT FOR ALL MAIN CONTAINERS  */
/* Removing all left/right empty space                            */
/* ============================================================== */

.hero-section,
.how-we-work,
.why-us,
.numbers-section,
.our-process,
.our-thinking-section,
.services-paper-container,
.clients-hero,
.clients-grid-container,
.studio-life,
.contact-section,
.cta-scrapbook-banner,
.footer-container {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  border-radius: 0 !important;
}

.cta-scrapbook-banner {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.why-us {
  border: none !important;
}

.why-us-grid,
.thinking-grid,
.services-paper-container .row,
.clients-grid-inner {
  width: 100% !important;
}

body {
  overflow-x: hidden !important;
}

/* ===================================== */
/* SLIM FOOTER - Reference Format        */
/* ===================================== */
.slim-footer {
  background-color: #ffd835;
  color: #111;
  padding: 20px 40px 0;
  border-top: 4px solid #111;
  font-family: 'Inter', sans-serif;
}

.slim-footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.2fr 1.4fr;
  gap: 30px;
  align-items: start;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

/* Col 1 Brand */
.slim-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.slim-footer-logo {
  width: 140px;
  height: auto;
  display: block;
  object-fit: contain;
  clip-path: inset(11%);
  transform: scale(1.15);
  transform-origin: left center;
}

.slim-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #000;
  font-weight: 500;
  margin-top: 10px;
}

.slim-copyright {
  font-size: 0.95rem;
  color: #000;
  font-weight: 500;
  margin-top: 10px;
}

/* Columns */
.slim-footer-col {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.slim-col-heading {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #000;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.slim-link {
  font-size: 0.95rem;
  color: #000;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1.9;
  position: relative;
  display: inline-block;
}

.slim-link::after,
.slim-link::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #ff0000, #00ffff);
  bottom: 0px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-out;
}

.slim-link::before {
  top: 0px;
  bottom: auto;
  transform-origin: left;
}

.slim-link:hover::after,
.slim-link:hover::before {
  transform: scaleX(1);
}

.slim-link:hover {
  color: red;
  transform: translateX(4px);
}

/* Socials */
.slim-socials {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.slim-social-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.slim-social-btn svg {
  width: 14px;
  height: 14px;
  position: relative;
  transition: 0.5s;
  z-index: 3;
}

.slim-social-btn::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  z-index: 2;
}

.slim-social-btn.instagram::before {
  background: #E1306C;
}

.slim-social-btn.linkedin::before {
  background: #0077b5;
}

.slim-social-btn.youtube::before {
  background: #ff0000;
}

.slim-social-btn:hover::before {
  top: 0;
}

.slim-social-btn:hover {
  border-color: transparent;
}

.slim-social-btn:hover svg {
  color: #fff;
  transform: rotateY(360deg);
}

/* Newsletter */
.slim-newsletter-text {
  color: #000;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 8px;
  font-size: 0.88rem;
}

.slim-newsletter-form {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding-bottom: 5px;
  margin-bottom: 14px;
}

.slim-newsletter-form input {
  background: transparent;
  border: none;
  outline: none;
  color: #111;
  font-size: 0.78rem;
  flex: 1;
  font-family: 'Inter', sans-serif;
}

.slim-newsletter-form input::placeholder {
  color: rgba(0, 0, 0, 0.7);
}

.slim-newsletter-form button {
  background: transparent;
  border: none;
  color: #111;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.slim-newsletter-form button:hover {
  transform: translateX(4px);
}

/* Legal links */
.slim-legal {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}

.slim-legal-link {
  font-size: 0.85rem;
  color: #000;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  display: inline-block;
}

.slim-legal-link::after,
.slim-legal-link::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #ff0000, #00ffff);
  bottom: -4px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-out;
}

.slim-legal-link::before {
  top: -4px;
  bottom: auto;
  transform-origin: left;
}

.slim-legal-link:hover::after,
.slim-legal-link:hover::before {
  transform: scaleX(1);
}

.slim-legal-link:hover {
  color: red;
}

/* ===================================== */
/* MOBILE OVERRIDES FOR SLIM FOOTER      */
/* ===================================== */
@media (max-width: 768px) {
  .slim-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ===================================== */
/* CTA COMPACT OVERRIDE (Reference img2) */
/* ===================================== */
.cta-scrapbook-banner {
  padding: 25px 60px !important;
  margin: 0 auto 30px auto !important;
}

.cta-huge-title {
  font-size: 2.6rem !important;
  margin-bottom: 12px !important;
}

.cta-desc {
  font-size: 0.9rem !important;
  margin-bottom: 18px !important;
}

.cta-btn-scrapbook {
  background-color: #E87A9A !important;
  color: #fff !important;
  padding: 10px 24px !important;
  font-size: 1.1rem !important;
}

.cta-sb-right {
  min-height: 180px !important;
}

.vintage-phone-img {
  width: 170px !important;
}

.sticky-note-yellow {
  width: 100px !important;
  padding: 10px 12px !important;
}

.sticky-note-yellow p {
  font-size: 0.85rem !important;
}

/* Remove top space from contact section */
.contact-section {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

#CONTACT {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Fix sticky note clipping */
.sticky-note-yellow {
  right: 2% !important;
  bottom: 5% !important;
}

@media (max-width: 768px) {
  .sticky-note-yellow {
    top: -40px !important;
    bottom: auto !important;
    right: 0 !important;
  }
}

.footer-logo-3d-wrapper {
	display: inline-block;
	position: relative;
	cursor: pointer;
	border: none;
	background: transparent;
	perspective: 500px;
	transform-style: preserve-3d;
	transform: rotateX(10deg);
	animation: rotateAngle 6s linear infinite;
    max-width: fit-content;
}

/* Removed colored wobble pseudo-elements per user request */

@keyframes rotateAngle {
	0% {
		transform: rotateY(0deg) rotateX(10deg);
		animation-timing-function: cubic-bezier(0.61, 1, 0.88, 1);
	}
	25% {
		transform: rotateY(20deg) rotateX(10deg);
	}
	50% {
		transform: rotateY(0deg) rotateX(10deg);
		animation-timing-function: cubic-bezier(0.61, 1, 0.88, 1);
	}
	75% {
		transform: rotateY(-20deg) rotateX(10deg);
	}
	100% {
		transform: rotateY(0deg) rotateX(10deg);
	}
}

@keyframes translateWobble {
  0% {
		opacity: 0;
		transform: translate3d(
			calc(var(--z) * 0px), 
			calc(var(--z) * 0px), 
			calc(var(--z) * 0px)
		);
  }
  16% {
		transform: translate3d(
			calc(var(--z) * 160px), 
			calc(var(--z) * 160px), 
			calc(var(--z) * 160px)
		);
  }
  28% {
		opacity: 1;
		transform: translate3d(
			calc(var(--z) * 70px), 
			calc(var(--z) * 70px), 
			calc(var(--z) * 70px)
		);
  }
  44% {
		transform: translate3d(
			calc(var(--z) * 130px), 
			calc(var(--z) * 130px), 
			calc(var(--z) * 130px)
		);
  }
  59% {
		transform: translate3d(
			calc(var(--z) * 85px), 
			calc(var(--z) * 85px), 
			calc(var(--z) * 85px)
		);
  }
  73% {
		transform: translate3d(
			calc(var(--z) * 110px), 
			calc(var(--z) * 110px), 
			calc(var(--z) * 110px)
		);
  }
	88% {
		opacity: 1;
		transform: translate3d(
			calc(var(--z) * 90px), 
			calc(var(--z) * 90px), 
			calc(var(--z) * 90px)
		);
  }
  100% {
		opacity: 1;
		transform: translate3d(
			calc(var(--z) * 100px), 
			calc(var(--z) * 100px), 
			calc(var(--z) * 100px)
		);
  }
}