/* ============================================================
   social.sonali — design language inspired by gethyped.nl
   creme canvas, Inter, giant tight headings, candy accents
   ============================================================ */

:root {
  --creme: #faf4ec;
  --off-white: #fffef7;
  --taupe: #eae4d8;
  --black: #161616;
  --grey: #808080;
  --red: #fa5424;
  --red-300: #fc997b;
  --blue: #0d8dff;
  --blue-400: #50c8ff;
  --blue-500: #0a6fd1;
  --green: #33c791;
  --green-200: #aaf0d0;
  --pink: #fcb8fa;
  --pink-100: #ffe8ff;
  --pink-200: #fdd0fe;

  --radius-s: 1.25em;
  --radius-m: 2em;
  --radius-l: 2.5em;
  --page-pad: clamp(1.25rem, 2.5vw, 2.5rem);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--creme);
  color: var(--black);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.4;
  overflow-x: hidden;
}

::selection { background: var(--black); color: var(--off-white); }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(100% - 2 * var(--page-pad), 1400px);
  margin-inline: auto;
}

/* ---------- typography ----------
   fluid scale matched to gethyped.nl's measured formula:
   1em = clamp(8.267px, 0.833vw, 16px) across their 992–1920px container */
.heading-xxl {
  font-size: clamp(2.6rem, 6.667vw, 8rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.95;
}
.heading-xl {
  font-size: clamp(2.4rem, 6.667vw, 8rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.98;
}
.heading-l {
  font-size: clamp(2rem, 5vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}
.heading-m {
  font-size: clamp(1.7rem, 4.167vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.paragraph-l {
  font-size: clamp(1.05rem, 1.667vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.25;
}
.paragraph-m {
  font-size: clamp(1rem, 1.25vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.3;
}
.paragraph-r {
  font-size: clamp(0.95rem, 1.042vw, 1.25rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.45;
  color: rgba(22, 22, 22, 0.75);
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: var(--off-white);
  border: 1px solid rgba(22, 22, 22, 0.12);
  border-radius: 100px;
  padding: 0.55em 1.1em;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.label::before { content: "✦"; color: var(--red); }

/* ---------- buttons (gethyped pill + icon circle) ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
  height: 3.4rem;
  padding: 0 0.45rem 0 1.5rem;
  border: none;
  border-radius: 100px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn:active { transform: scale(0.96); }

.btn-bg {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  z-index: -1;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.btn:hover .btn-bg { transform: scale(1.06); }

.btn-text { position: relative; white-space: nowrap; }

.btn-icon {
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  background: var(--off-white);
  color: var(--black);
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1), rotate 0.5s;
}
.btn-icon svg { width: 1.05rem; height: 1.05rem; }
.btn:hover .btn-icon { transform: rotate(45deg) scale(1.05); }

.btn-red { color: var(--off-white); }
.btn-red .btn-bg { background: var(--red); }

.btn-dark { color: var(--off-white); }
.btn-dark .btn-bg { background: var(--black); }
.btn-dark .btn-icon { background: var(--off-white); color: var(--black); }

.btn-outline { color: var(--black); }
.btn-outline .btn-bg { background: transparent; border: 1px solid var(--black); }
.btn-outline .btn-icon.is-dark { background: var(--black); color: var(--off-white); }
.btn-outline:hover .btn-bg { background: var(--taupe); border-color: transparent; }

.btn-full { width: 100%; justify-content: space-between; }
.btn-big { height: 4.2rem; font-size: clamp(1rem, 3.5vw, 1.2rem); padding-left: clamp(1.2rem, 3vw, 2rem); }
.btn-big .btn-icon { width: 3.3rem; height: 3.3rem; }

/* ---------- preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--black);
  display: grid;
  place-items: center;
}
.preloader-inner {
  display: grid;
  place-items: center;
  gap: 1.4rem;
}
.preloader-mark {
  display: grid;
  place-items: center;
  width: clamp(4.5rem, 9vw, 6.5rem);
  height: clamp(4.5rem, 9vw, 6.5rem);
  border-radius: 50%;
  overflow: hidden;
  background: var(--red);
  color: var(--off-white);
}
.preloader-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}
.preloader-logo {
  color: var(--off-white);
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

/* ---------- floating connect widget (WhatsApp + Instagram) ---------- */
.float-widget {
  position: fixed;
  right: clamp(1.2rem, 3vw, 2.2rem);
  bottom: calc(clamp(1.5rem, 3vw, 2.5rem) + env(safe-area-inset-bottom, 0px));
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  pointer-events: auto;
}
.float-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  color: var(--off-white);
  box-shadow: 0 12px 28px -8px rgba(22, 22, 22, 0.45);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 1;
  visibility: visible;
}
.float-btn:hover { transform: scale(1.12) rotate(-6deg); }
.float-btn svg { width: 1.7rem; height: 1.7rem; position: relative; z-index: 1; }
.float-whatsapp { background: #25d366; }
.float-instagram {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
.float-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.55);
  animation: float-ping 1.8s ease-out infinite;
  pointer-events: none;
}
@keyframes float-ping {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem var(--page-pad);
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav.is-hidden { transform: translateY(-110%); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 254, 247, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(22, 22, 22, 0.08);
  border-radius: 100px;
  padding: 0.55rem 0.55rem 0.55rem 1.4rem;
  max-width: 1400px;
  margin-inline: auto;
}
.nav-logo { display: flex; align-items: center; gap: 0.6rem; font-weight: 700; letter-spacing: -0.03em; }
.nav-logo_mark {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.nav-logo_mark svg {
  width: 100%;
  height: 100%;
  display: block;
}
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-link { font-weight: 600; font-size: 0.95rem; position: relative; }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { height: 2.9rem; font-size: 0.92rem; }
.nav-cta .btn-icon { width: 2.1rem; height: 2.1rem; }
.nav-burger { display: none; }

/* ---------- hero (gethyped layout: full-width title, card row) ---------- */
.section_hero {
  position: relative;
  min-height: 100svh;
  padding: 8.5rem var(--page-pad) clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero-inner {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
}
.hero-title { position: relative; z-index: 2; }
.hero-below {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
  margin-top: 2.2rem;
}
.hero-sub { color: var(--black); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-title .line { display: block; overflow: hidden; }
.hero-title .line-inner { display: block; }

/* "Social" — unified text color transition + dynamic social channel icon inside letter "o" */
.hero-emphasis {
  display: inline-block;
  cursor: pointer;
  will-change: color, transform;
  transition: color 0.4s ease;
}
.hero-o-wrap {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
}
.hero-o-char {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.social-channel-icon {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.32em;
  height: 0.32em;
  border-radius: 50%;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(22, 22, 22, 0.25);
  transition: background-color 0.4s ease;
}
.social-channel-icon svg {
  width: 60%;
  height: 60%;
  color: #fffef7;
  display: block;
}

.hero-cards {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: clamp(0.6rem, 1.2vw, 1.4rem);
  margin-top: clamp(2.2rem, 4.5vw, 4rem);
  width: 100%;
}
/* sizing matches gethyped's measured spec: width 28em, aspect-ratio 4.8/6.2 */
.results-card {
  position: relative;
  flex-shrink: 0;
  width: clamp(14rem, 21vw, 22rem);
  aspect-ratio: 4.8 / 6.2;
  border-radius: clamp(1.4rem, 2.2vw, 2.2rem);
  padding: 1.6em;
  display: flex;
  flex-direction: column;
  background: var(--off-white);
  box-shadow: 0 30px 60px -28px rgba(22, 22, 22, 0.3);
  overflow: hidden;
}
.results-card_title {
  font-size: clamp(2.2rem, 4.583vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}
.results-card_body { margin-top: auto; }
.results-card_subtitle { font-size: clamp(1.1rem, 1.667vw, 2rem); font-weight: 600; letter-spacing: -0.03em; }
.results-card_divider { height: 1px; background: currentColor; opacity: 0.25; margin: 0.7em 0; }
.results-card_paragraph { font-size: clamp(0.85rem, 1.042vw, 1.25rem); font-weight: 500; opacity: 0.75; }

/* photo/video background cards — real client-work media instead of a flat color */
.results-card.has-media { color: var(--off-white); }
.results-card_media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.results-card_overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(22, 22, 22, 0.05) 0%, rgba(22, 22, 22, 0.15) 45%, rgba(22, 22, 22, 0.68) 100%);
}
.results-card.has-media .results-card_title,
.results-card.has-media .results-card_body { position: relative; z-index: 2; }

.results-card.is-media { padding: 0; background: var(--taupe); }
.results-card.is-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.results-card_tag {
  position: absolute;
  left: 1.1em;
  bottom: 1.1em;
  z-index: 2;
  background: rgba(22, 22, 22, 0.72);
  color: var(--off-white);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 100px;
  padding: 0.55em 1.1em;
  font-size: 0.85rem;
  font-weight: 600;
}

.theme-blue  { background: var(--blue);  color: var(--off-white); }
.theme-pink  { background: var(--pink);  color: var(--black); }
.theme-green { background: var(--green); color: var(--black); }
.theme-red   { background: var(--red);   color: var(--off-white); }
.theme-white { background: var(--off-white); color: var(--black); }
.theme-taupe { background: var(--black); color: var(--creme); }

/* ---------- intro / about (compact — fits one fold, no forced full-height gap) ---------- */
.section_intro {
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(2rem, 3vw, 3rem);
}
.intro-statement {
  max-width: 64ch;
  font-size: clamp(1.4rem, 2.3vw, 2.3rem);
}
.intro-statement .w { opacity: 0.15; transition: none; }
.hl-word {
  display: inline-block;
  transform-origin: center bottom;
  will-change: transform;
}
.hl-red { color: var(--red); }
.hl-blue { color: var(--blue); }
.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: clamp(1.4rem, 3vw, 2.2rem);
  align-items: start;
}
/* PLACEHOLDER MEDIA: swap image / add <video> once client assets arrive */
.intro-media {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 4 / 2.7;
  background: var(--taupe);
}
.intro-media img,
.intro-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-media .results-card_tag { left: 1.2em; bottom: 1.2em; }
.intro-media.is-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--taupe), var(--pink-100));
  color: rgba(22, 22, 22, 0.35);
}
.intro-media.is-placeholder svg { width: 22%; height: 22%; }
.intro-right { display: grid; gap: clamp(0.9rem, 2vw, 1.4rem); }
.intro-copy { display: grid; gap: 0.6rem; }
.name-highlight { font-weight: 800; color: var(--red); }
.intro-stats { display: grid; gap: 0.5rem; }
.intro-stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(22, 22, 22, 0.08);
  border-radius: var(--radius-s);
  padding: 0.75rem 1.4rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.intro-stat:hover { transform: translateY(-4px) rotate(-1deg); }
.intro-stat_num { font-size: clamp(1.5rem, 2.4vw, 2.1rem); font-weight: 700; letter-spacing: -0.05em; }
.intro-stat_label { font-weight: 600; color: rgba(22, 22, 22, 0.6); font-size: 0.92rem; }

/* colorful stat cards — specificity beats the plain .intro-stat background above */
.intro-stat.theme-blue,
.intro-stat.theme-pink,
.intro-stat.theme-green { border-color: transparent; }
.intro-stat.theme-blue .intro-stat_label { color: rgba(255, 254, 247, 0.75); }

/* ---------- services: stacked pinned cards ---------- */
.section_services { padding-top: clamp(1rem, 3vw, 2rem); }

.service-slides { position: relative; }
.service-slide {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4.5rem, 8vh, 6rem) var(--page-pad) clamp(1rem, 4vh, 2rem);
}
/* structure mirrors gethyped's actual expertise-card technique: the big
   ghost number and the media tile are both position:absolute (out of flow),
   while label -> heading -> narrow text column stack normally on the left. */
.service-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 1400px);
  height: min(78svh, 760px);
  border-radius: var(--radius-l);
  padding: clamp(1.6rem, 3.2vw, 3.2rem);
  display: flex;
  flex-direction: column;
  box-shadow: 0 -20px 60px -30px rgba(22, 22, 22, 0.35);
  will-change: transform;
}
.service-card_top { position: relative; z-index: 2; }
.service-card_label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid currentColor;
  border-radius: 100px;
  padding: 0.5em 1.1em;
  opacity: 0.85;
}

/* ghost watermark number, matches the heading's own type scale */
.service-card_number {
  position: absolute;
  top: clamp(1.6rem, 3.2vw, 3.2rem);
  right: clamp(1.6rem, 3.2vw, 3.2rem);
  z-index: 1;
  display: flex;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: rgba(22, 22, 22, 0.08);
  pointer-events: none;
}
.theme-blue .service-card_number,
.theme-red .service-card_number { color: rgba(255, 254, 247, 0.18); }
.service-card_number span { display: inline-block; }

.service-card_heading {
  position: relative;
  z-index: 2;
  max-width: 62%;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(2.1rem, 4.6vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

/* PLACEHOLDER MEDIA: replace with client reel / campaign shot.
   Once a real photo/video lands, add padding + this bg color for the
   "frame" look gethyped uses (colored border showing around the inset clip). */
.service-card_media {
  position: absolute;
  top: 50%;
  right: clamp(1.6rem, 3.2vw, 3.2rem);
  z-index: 2;
  width: clamp(160px, 20vw, 260px);
  aspect-ratio: 4.8 / 6.2;
  border-radius: var(--radius-s);
  overflow: hidden;
  box-shadow: 0 26px 50px -20px rgba(22, 22, 22, 0.4);
  transform: translateY(-50%) rotate(-3deg);
}
.service-card_media img,
.service-card_media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card_media.is-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
}
.service-card_media.is-placeholder svg { width: 34%; height: 34%; }
.service-card_media.grad-blue  { background: linear-gradient(135deg, var(--blue), var(--blue-400)); }
.service-card_media.grad-pink  { background: linear-gradient(135deg, var(--pink), var(--pink-200)); color: rgba(22, 22, 22, 0.55); }
.service-card_media.grad-green { background: linear-gradient(135deg, var(--green), var(--green-200)); color: rgba(22, 22, 22, 0.55); }

/* narrow left column — width-constrained so it never runs under the media tile */
.service-card_bottom {
  position: relative;
  z-index: 2;
  max-width: min(34%, 420px);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.service-card_desc {
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  opacity: 0.85;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(22, 22, 22, 0.15);
}
.theme-blue .service-features,
.theme-red .service-features { border-top-color: rgba(255, 254, 247, 0.25); }
.service-features li { display: flex; align-items: center; gap: 0.6em; }
.service-features li::before { content: "✦"; font-size: 0.8em; opacity: 0.7; }
.service-card_bottom .btn { align-self: flex-start; }

/* ---------- our work (gethyped "Content dat scoort." heading feel + a tight grid) ---------- */
.section_work { padding: clamp(4rem, 8vw, 7rem) 0; }
.work-heading-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem 3rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.work-heading-side { max-width: 34ch; display: grid; gap: 1.6rem; }
.work-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* full-bleed-ish grid with tight, limited gaps — capped so cards stay compact on wide screens.
   5 columns: video reels form the middle 3, "Post" tiles flank 2 on the left + 2 on the right. */
.work-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(0.6rem, 1.2vw, 1rem);
  max-width: 1700px;
  margin-inline: auto;
  padding-inline: var(--page-pad);
}
.work-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 0.9rem;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.1rem;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.work-card:hover { transform: scale(1.03) rotate(-0.5deg); }
.work-card_badge {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  z-index: 4;
  background: rgba(18, 18, 18, 0.76);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--off-white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 100px;
  padding: 0.45em 0.95em;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
.work-card_caption {
  position: relative;
  z-index: 2;
  font-weight: 700;
  font-size: clamp(0.95rem, 1.3vw, 1.25rem);
  letter-spacing: -0.02em;
  width: 100%;
}
.work-card_caption span {
  display: block;
  font-weight: 500;
  font-size: 0.82em;
  opacity: 0.75;
}
.work-card.grad-blue  { background: linear-gradient(135deg, var(--blue), var(--blue-400)); color: var(--off-white); }
.work-card.grad-pink  { background: linear-gradient(135deg, var(--pink), var(--pink-200)); color: var(--black); }
.work-card.grad-green { background: linear-gradient(135deg, var(--green), var(--green-200)); color: var(--black); }
.work-card.grad-red   { background: linear-gradient(135deg, var(--red), var(--red-300)); color: var(--off-white); }

/* real photo/video cards — the grad-* background now shows as a visible
   colored frame around the inset media, like a Polaroid border, instead of
   being fully hidden behind edge-to-edge media */
.work-card_media {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  width: calc(100% - 1.3rem);
  height: calc(100% - 1.3rem);
  border-radius: 0.6rem;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.work-card_overlay {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  width: calc(100% - 1.3rem);
  height: calc(100% - 1.3rem);
  border-radius: 0.6rem;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(22, 22, 22, 0.04) 0%, rgba(22, 22, 22, 0.12) 42%, rgba(22, 22, 22, 0.72) 100%);
}
.work-card.has-media { color: var(--off-white); }
.work-card.has-media .work-card_badge { position: absolute; top: 1.1rem; left: 1.1rem; z-index: 4; }
.work-card.has-media .work-card_caption { position: relative; z-index: 2; width: 100%; }

/* hover: darken for contrast, pop in the platform icons this format fits */
.work-card:hover .work-card_overlay { background: rgba(22, 22, 22, 0.6); }
.work-card_platforms {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
.work-card:hover .work-card_platforms { opacity: 1; transform: scale(1); }
.work-card_platform-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 254, 247, 0.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--off-white);
  font-weight: 700;
  font-size: 1.05rem;
}
.work-card_platform-icon svg { width: 1.2rem; height: 1.2rem; }
.work-card.grad-taupe { background: linear-gradient(135deg, var(--black), #2b2b2b); color: var(--creme); }
.work-card.grad-blue2 { background: linear-gradient(135deg, var(--blue-500), var(--blue-400)); color: var(--off-white); }
.work-card.grad-pink .work-card_badge,
.work-card.grad-green .work-card_badge { background: rgba(22, 22, 22, 0.15); color: var(--black); }

/* ---------- pricing ---------- */
.section_pricing { padding: clamp(4rem, 8vw, 7rem) 0; }
.pricing-sub { max-width: 46ch; margin-top: 1.6rem; color: rgba(22, 22, 22, 0.7); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  align-items: stretch;
}
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--off-white);
  border: 1px solid rgba(22, 22, 22, 0.08);
  border-radius: var(--radius-m);
  padding: 2rem;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.45s;
}
.pricing-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: 0 30px 60px -25px rgba(22, 22, 22, 0.25);
}
.pricing-card.is-popular {
  background: var(--black);
  color: var(--creme);
  border-color: var(--black);
}
.pricing-card_badge {
  position: absolute;
  top: -0.9rem;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--red);
  color: var(--off-white);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 100px;
  padding: 0.5em 1.2em;
  white-space: nowrap;
}
.pricing-card_name {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}
.pricing-card_price {
  font-size: clamp(2.4rem, 3.4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  margin-top: 0.4rem;
}
.pricing-card_price span {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  opacity: 0.6;
  text-transform: uppercase;
}
.pricing-features {
  display: grid;
  gap: 0.65rem;
  margin: 1.8rem 0 2rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.pricing-features li { display: flex; gap: 0.6em; align-items: baseline; }
.pricing-features li::before { content: "✓"; font-weight: 700; color: var(--green); }
.pricing-card .btn { margin-top: auto; }
.pricing-card.is-popular .btn-outline { color: var(--creme); }
.pricing-note {
  margin-top: 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(22, 22, 22, 0.55);
  text-align: center;
}

/* ---------- testimonials ---------- */
.section_testimonials { padding: clamp(4rem, 8vw, 7rem) 0; overflow: hidden; }
.testi-marquee { margin-top: clamp(2.5rem, 5vw, 4rem); overflow: hidden; }
.testi-track { display: flex; width: max-content; will-change: transform; }
.testi-set { display: flex; gap: 1.4rem; padding-right: 1.4rem; }
.testi-card {
  width: clamp(300px, 30vw, 420px);
  border-radius: var(--radius-m);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  border: 1px solid rgba(22, 22, 22, 0.08);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.testi-card:hover { transform: rotate(-1.5deg) scale(1.02); }
.testi-quote { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1.4; }
.testi-author { display: flex; align-items: center; gap: 0.9rem; margin-top: auto; }
.testi-avatar {
  width: 2.8rem;
  height: 2.8rem;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(22, 22, 22, 0.12);
  border: 2px solid rgba(255, 254, 247, 0.6);
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.theme-blue .testi-avatar, .theme-red .testi-avatar { background: rgba(255, 254, 247, 0.2); }
.testi-name { font-weight: 700; }
.testi-role { font-size: 0.85rem; opacity: 0.7; }

/* ---------- chosen by the best (client wordmark marquee) ---------- */
.section_clients { padding: clamp(4rem, 8vw, 7rem) 0; overflow: hidden; }
.clients-heading { text-align: center; margin-inline: auto; }
.clients-heading span {
  display: block;
  margin-top: 0.5rem;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-weight: 500;
  color: rgba(22, 22, 22, 0.55);
  letter-spacing: -0.02em;
}

.clients-marquee { margin-top: clamp(2.5rem, 5vw, 4rem); overflow: hidden; }
.clients-track { display: flex; width: max-content; animation: clients-scroll 26s linear infinite; }
.clients-marquee:hover .clients-track { animation-play-state: paused; }
.clients-set { display: flex; gap: 1rem; padding-right: 1rem; }
@keyframes clients-scroll { to { transform: translateX(-50%); } }

.client-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 1.4rem;
  padding: 1.5rem 2.2rem;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s;
}
.client-card:hover {
  transform: translateY(-5px) rotate(-1deg);
  box-shadow: 0 22px 40px -18px rgba(22, 22, 22, 0.35);
}
.client-card small {
  font-size: 0.5em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: currentColor;
  opacity: 0.6;
  margin-left: 0.3em;
}
/* marks pick up currentColor, so they always contrast their own card's theme */
/* each brand gets its own bespoke logomark (dummy logos — no real client assets yet) */
.client-card_mark { display: inline-flex; width: 1.3em; height: 1.3em; flex-shrink: 0; opacity: 0.95; }
.client-card_mark svg { width: 100%; height: 100%; }

/* ---------- contact ---------- */
.section_contact { padding: clamp(4rem, 8vw, 7rem) 0; }
.contact-sub { max-width: 44ch; margin-top: 1.6rem; color: rgba(22, 22, 22, 0.7); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1.4rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  align-items: stretch;
}
.contact-info {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--pink);
  border-radius: var(--radius-m);
  padding: 2rem;
  overflow: hidden;
}
/* PLACEHOLDER MEDIA: swap for a real photo — see prompt suggested in chat */
.contact-info_media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.contact-info_overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(252, 184, 250, 0.88), rgba(252, 184, 250, 0.55) 55%, rgba(22, 22, 22, 0.35));
}
.contact-info > .contact-line,
.contact-info > .contact-sticker { position: relative; z-index: 2; }
.contact-line {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: rgba(255, 254, 247, 0.65);
  border-radius: var(--radius-s);
  padding: 1rem 1.3rem;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s;
}
.contact-line:hover { transform: translateY(-3px) rotate(-0.6deg); background: var(--off-white); }
.contact-line_icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--off-white);
  box-shadow: 0 6px 16px -4px rgba(22, 22, 22, 0.25);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.contact-line:hover .contact-line_icon { transform: scale(1.1) rotate(-5deg); }
.contact-line_icon svg { width: 1.35rem; height: 1.35rem; }

.icon-email { background: linear-gradient(135deg, #fa5424 0%, #ff784b 100%); }
.icon-phone { background: linear-gradient(135deg, #0d8dff 0%, #50c8ff 100%); }
.icon-whatsapp { background: linear-gradient(135deg, #25d366 0%, #128c7e 100%); }

.contact-line_content { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.contact-line_label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.6;
}
.contact-line_value { font-weight: 700; font-size: 1.05rem; word-break: break-word; }
.contact-sticker {
  position: absolute;
  bottom: -2.5rem;
  right: -1.5rem;
  font-size: 11rem;
  color: rgba(255, 254, 247, 0.5);
  transform: rotate(-12deg);
  pointer-events: none;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  background: var(--off-white);
  border: 1px solid rgba(22, 22, 22, 0.08);
  border-radius: var(--radius-m);
  padding: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.45rem; }
.form-field label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.65;
}
.form-field input,
.form-field textarea {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  background: var(--creme);
  border: 1px solid rgba(22, 22, 22, 0.1);
  border-radius: 0.9em;
  padding: 0.95em 1.1em;
  transition: border-color 0.25s, background 0.25s;
}
.form-field textarea { min-height: 9rem; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--black);
  background: var(--off-white);
}
.form-status { font-weight: 600; font-size: 0.95rem; min-height: 1.4em; }
.form-status.ok { color: var(--green); }
.form-status.err { color: var(--red); }

/* ---------- footer ---------- */
.section_footer {
  position: relative;
  background: var(--black);
  color: var(--creme);
  border-radius: var(--radius-l) var(--radius-l) 0 0;
  padding: clamp(5rem, 10vw, 9rem) 0 2rem;
  overflow: hidden;
}
.footer-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5rem;
  padding-bottom: clamp(3rem, 7vw, 6rem);
  border-bottom: 1px solid rgba(250, 244, 236, 0.15);
  position: relative;
  z-index: 2;
}
.footer-heading { color: var(--creme); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  z-index: 2;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}
.footer-brand p {
  font-size: 0.98rem;
  font-weight: 500;
  color: rgba(250, 244, 236, 0.65);
  max-width: 42ch;
  line-height: 1.5;
}
.footer-col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col_title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(250, 244, 236, 0.5);
  margin-bottom: 0.5rem;
}
.footer-col a {
  font-weight: 600;
  width: fit-content;
  position: relative;
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--red-300); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(250, 244, 236, 0.15);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(250, 244, 236, 0.55);
  position: relative;
  z-index: 2;
}
.heart { color: var(--red); }

/* mouse image-trail stickers (mwg_effect020 homage) */
.footer-trail { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.trail-sticker {
  position: absolute;
  font-size: 2.6rem;
  font-weight: 700;
  will-change: transform, opacity;
}

/* ---------- reveal base state (JS animates in) ---------- */
.reveal { opacity: 0; transform: translateY(40px); }
body.no-js .reveal, body.reduced .reveal { opacity: 1; transform: none; }

/* body scroll lock when mobile drawer is open */
body.menu-open {
  overflow: hidden !important;
  height: 100vh;
  touch-action: none;
}

/* ---------- responsive ---------- */
@media (max-width: 991px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; margin-top: 3rem; }
  .intro-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  /* Hero cards scroll row on mobile */
  .hero-cards {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1.5rem;
    padding-right: var(--page-pad);
    scrollbar-width: none;
  }
  .hero-cards::-webkit-scrollbar { display: none; }
  .hero-cards .results-card {
    width: clamp(14.5rem, 72vw, 18.5rem);
    aspect-ratio: 4.8 / 6.2;
    flex-shrink: 0;
    scroll-snap-align: start;
    transform: none !important;
  }
  .section_hero { min-height: 0; padding-top: 7rem; }

  /* Service card layout adjustment for tablets and mobiles */
  .service-slide {
    height: auto;
    min-height: 0;
    position: relative;
    top: auto;
    padding: clamp(2.5rem, 5vh, 4rem) var(--page-pad) clamp(1rem, 2vh, 2rem);
  }
  .service-card {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    padding: clamp(1.4rem, 4vw, 2.2rem);
    position: relative;
    transform: none !important;
  }
  .service-card_top {
    order: 1;
  }
  .service-card_number {
    position: absolute;
    top: 1.4rem;
    right: 1.6rem;
    font-size: clamp(2.2rem, 7vw, 3.6rem);
    line-height: 1;
    pointer-events: none;
  }
  .service-card_heading {
    order: 2;
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin-top: 1.2rem;
    margin-bottom: 1rem;
    font-size: clamp(1.7rem, 5.5vw, 2.8rem);
    line-height: 1.05;
    word-break: break-word;
  }
  .service-card_media {
    order: 3;
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    transform: none !important;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 4.8 / 3.2;
    border-radius: var(--radius-s);
    margin: 0.4rem 0 1.2rem;
  }
  .service-card_bottom {
    order: 4;
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin-top: 0;
  }

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

@media (max-width: 767px) {
  html, body { overflow-x: hidden; }

  :root {
    --page-pad: 1.1rem;
  }

  /* Mobile typography scale polish */
  .heading-xxl { font-size: clamp(2.2rem, 9.5vw, 3.4rem); }
  .heading-xl  { font-size: clamp(2.0rem, 8.5vw, 3.2rem); }
  .heading-l   { font-size: clamp(1.8rem, 7.5vw, 2.6rem); }
  .heading-m   { font-size: clamp(1.5rem, 6.0vw, 2.2rem); }

  /* Mobile scaling for social channel icon inside letter O */
  .social-channel-icon {
    width: 0.28em;
    height: 0.28em;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 55;
    background: var(--black);
    color: var(--creme);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-size: 1.6rem;
    padding: 5rem 1.5rem 2rem;
    clip-path: circle(0% at calc(100% - 3rem) 3rem);
    transition: clip-path 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    pointer-events: none;
  }
  .nav-links.is-open { clip-path: circle(150% at calc(100% - 3rem) 3rem); pointer-events: auto; }
  .nav-link { font-size: 1.6rem; font-weight: 600; color: var(--creme); transition: color 0.3s, transform 0.3s; }
  .nav-link:hover, .nav-link:active { color: var(--red); transform: scale(1.06); }

  /* Mobile menu CTA button styling */
  .nav-links .nav-cta {
    margin-top: 0.8rem;
    height: 3.4rem;
    padding: 0 1rem 0 1.8rem;
    font-size: 1.15rem;
  }

  /* Seamless header blend when mobile drawer is open */
  .nav.is-menu-open .nav-inner {
    background: transparent;
    border-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav.is-menu-open .nav-logo_text {
    color: var(--creme);
  }

  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 2.8rem;
    height: 2.8rem;
    background: var(--black);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 60;
    align-items: center;
  }
  .nav-burger span {
    display: block;
    width: 1.2rem;
    height: 2px;
    background: var(--creme);
    transition: transform 0.35s, translate 0.35s;
  }
  .nav-burger.is-open span:nth-child(1) { translate: 0 4px; transform: rotate(45deg); }
  .nav-burger.is-open span:nth-child(2) { translate: 0 -4px; transform: rotate(-45deg); }

  /* Hero card scaling on mobile */
  .hero-cards .results-card {
    width: min(80vw, 270px);
    padding: 1.3em;
  }

  /* Floating widget mobile adjustments */
  .float-widget {
    right: 1.1rem;
    bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
    gap: 0.65rem;
    z-index: 9999;
    pointer-events: auto;
  }
  .float-btn {
    display: grid;
    width: 3.2rem;
    height: 3.2rem;
    opacity: 1;
    visibility: visible;
  }
  .float-btn svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  /* Contact section mobile adjustments */
  .contact-info { padding: 1.3rem; }
  .contact-line { padding: 0.85rem 1rem; gap: 0.8rem; }
  .contact-line_icon { width: 2.4rem; height: 2.4rem; }
  .contact-line_icon svg { width: 1.15rem; height: 1.15rem; }
  .contact-line_value { font-size: clamp(0.88rem, 3.5vw, 1.05rem); }

  /* Form & Pricing mobile rules */
  .form-row { grid-template-columns: 1fr; }
  .pricing-card { padding: 1.5rem; }

  /* Footer mobile rules */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.6rem;
  }

  .work-grid { grid-template-columns: 1fr; }
  .work-heading-side { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
