/* ========================================
   Wild Over Words — Modern Organic Editorial
   ======================================== */

/* --- Reset & Variables --- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root {
  --bg: #F7F5EB;
  --bg-alt: #F0EDE1;
  --text: #202A2D;
  --accent: #CBD0B5;
  --white: #fff;
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  /* --font-hand removed: consolidated to 2 fonts only */
  --nav-h: 80px;
  --container: 1200px;
  --gap: 160px;
  --r-lg: 64px;
  --r-md: 40px;
  --r-sm: 24px;
  --r-pill: 999px;
}

html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: var(--nav-h); }

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: 90%; max-width: var(--container); margin: 0 auto; }

/* --- Noise Texture --- */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
}

h1 {
  font-size: clamp(3rem, 10vw, 10rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  line-height: 1.2;
}

p { margin-bottom: 1rem; font-weight: 300; }

.label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: inline-block;
}

.handwritten {
  font-family: var(--font-body);
  font-size: 48px;
  font-weight: 400;
}

.hero-scroll-label {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: lowercase;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--accent);
  color: var(--text);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--text);
}

.btn-outline:hover {
  background: var(--text);
  color: var(--bg);
}

.btn-large {
  padding: 24px 64px;
  font-size: 12px;
  letter-spacing: 0.3em;
}

.btn-large:hover {
  transform: scale(1.05);
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(247, 245, 235, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 1px 0 rgba(32, 42, 45, 0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
  border: 2px solid var(--text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-style: italic;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text);
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.5;
}

.nav-links a.active {
  opacity: 1;
  color: var(--text);
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--accent);
}

.nav-cta {
  padding: 10px 28px !important;
  background: var(--text) !important;
  color: var(--bg) !important;
  border-radius: var(--r-pill) !important;
  letter-spacing: 0.2em !important;
}

.nav-cta:hover {
  background: var(--accent) !important;
  color: var(--text) !important;
  opacity: 1 !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--text);
  transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 380px;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transition: 0.4s ease;
    padding: 40px;
    box-shadow: -20px 0 60px rgba(0,0,0,0.1);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 12px; letter-spacing: 0.3em; }
  .hamburger { display: flex; }
}

/* --- Sections --- */
.section {
  padding: var(--gap) 0;
}

.section-header {
  margin-bottom: 80px;
}

.section-header .label {
  margin-bottom: 16px;
  color: rgba(32, 42, 45, 0.4);
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 600px;
  font-size: 1.05rem;
  color: rgba(32, 42, 45, 0.6);
  font-weight: 300;
}

.section-header.center {
  text-align: center;
}

.section-header.center p {
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section { padding: 100px 0; }
  .section-header { margin-bottom: 48px; }
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 900px;
}

.hero h1 {
  margin-bottom: 32px;
}

.hero h1 em {
  font-style: italic;
}

/* Hand-drawn SVG underline */
.hero-underline {
  position: relative;
  display: inline;
}

.hero-underline svg {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 16px;
}

.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  max-width: 650px;
  color: rgba(32, 42, 45, 0.65);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Handwritten annotation */
.hero-annotation {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: rgba(32, 42, 45, 0.4);
}

.hero-annotation .handwritten,
.hero-annotation .hero-scroll-label {
  display: block;
  margin-bottom: 8px;
}

.hero-annotation svg {
  opacity: 0.4;
}

@media (max-width: 1024px) {
  .hero-annotation { display: none; }
}

@media (max-width: 768px) {
  .hero { padding: calc(var(--nav-h) + 12px) 0 60px !important; min-height: auto; justify-content: flex-start; }
  .hero h1 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero-underline svg {
    bottom: -4px;
    height: 12px;
  }
}

/* --- Hero Image Block --- */
.hero-image-block {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto var(--gap);
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 80vh;
  max-height: 700px;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.95);
  transition: all 2500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-image-container:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.04);
}

.hero-image-overlay {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
  color: var(--white);
}

.hero-overlay-logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.hero-image-container:hover .hero-overlay-logo {
  opacity: 1;
}

@media (max-width: 600px) {
  .hero-image-container { height: 50vh; border-radius: var(--r-sm); }
  .hero-image-overlay { bottom: 24px; left: 24px; }
  .hero-overlay-logo { max-width: 140px; }
}

/* --- What I Do Strip --- */
@keyframes whatido-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.whatido-strip {
  padding: 28px 0;
  overflow: hidden;
  border-top: none;
  border-bottom: none;
  background: #CBD0B5;
}

.whatido-track {
  position: relative;
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.whatido-inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: whatido-scroll 25s linear infinite;
}

.whatido-inner span {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(32, 42, 45, 0.7);
  padding: 0 24px;
  transition: color 0.3s;
}

.whatido-inner span:not(.whatido-dot):hover {
  color: rgba(32, 42, 45, 1);
}

.whatido-dot {
  font-size: 8px !important;
  opacity: 0.4;
  font-style: normal !important;
  color: var(--accent);
}

/* --- Client Logos Marquee --- */
@keyframes logos-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.client-logos-marquee {
  padding: 48px 0 40px;
}

.client-logos-track {
  position: relative;
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.client-logos-inner {
  display: flex;
  align-items: center;
  gap: 72px;
  white-space: nowrap;
  animation: logos-scroll 30s linear infinite;
}

.client-logos-inner:hover {
  animation-play-state: paused;
}

.client-logos-inner img {
  height: 44px;
  max-width: 120px;
  width: auto;
  opacity: 0.35;
  filter: grayscale(100%);
  transition: all 600ms ease;
  flex-shrink: 0;
  object-fit: contain;
}

.client-logos-inner img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.08);
}

/* --- Reel Card Thumbnails --- */
.reel-card--has-thumb {
  padding: 0 !important;
  overflow: hidden;
  border-radius: 20px;
}

.reel-card__thumb {
  position: relative;
  aspect-ratio: 9/12;
  max-height: 320px;
  overflow: hidden;
}

.reel-card__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(32, 42, 45, 0.5) 100%);
  pointer-events: none;
  z-index: 1;
}

.reel-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reel-card:hover .reel-card__thumb img {
  transform: scale(1.08);
}

.reel-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.reel-card:hover .reel-card__play {
  opacity: 1;
}

.reel-card__play svg {
  color: #fff;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  padding: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  transition: transform 0.3s ease, background 0.3s ease;
}

.reel-card:hover .reel-card__play svg {
  transform: scale(1.1);
  background: rgba(255,255,255,0.25);
}

.reel-card--has-thumb h5 {
  padding: 16px 24px 0;
}

.reel-card--has-thumb p {
  padding: 0 24px;
}

.reel-card--has-thumb .reel-card__why {
  padding: 0 24px 24px;
}

/* Why it worked bullets */
.reel-card__why {
  margin: 10px 0 0;
  padding: 0 0 0 18px;
}

.reel-card__why li {
  list-style: none;
  font-size: 0.78rem;
  color: rgba(32, 42, 45, 0.5);
  margin-bottom: 5px;
  line-height: 1.5;
  font-weight: 300;
  position: relative;
  padding-left: 14px;
}

.reel-card__why li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* --- Results Section --- */
/* --- Results That Compound --- */
.results-section {
  background: var(--text);
  color: var(--white);
}

.results-header {
  margin-bottom: clamp(36px, 5vw, 56px);
}

.results-header .label {
  color: var(--accent);
  margin-bottom: 8px;
}

.results-header h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.results-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: stretch;
}

.result-card {
  grid-column: span 2;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.result-card--hero {
  grid-column: span 3;
  padding: 48px 36px;
}

.result-accent-line {
  width: 32px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 24px;
  transition: width 0.4s ease;
}

.result-card:hover .result-accent-line {
  width: 56px;
}

.result-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(203, 208, 181, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}

.result-value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.result-card--hero .result-value {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
}

.result-metric {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
  line-height: 1.45;
  font-weight: 300;
}

.result-card--hero .result-metric {
  font-size: 1rem;
}

.result-brand {
  font-size: 10px;
  color: rgba(255,255,255,0.28);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
}

.result-divider {
  width: 20px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 8px 0;
}

@media (max-width: 900px) {
  .results-bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .result-card--hero,
  .result-card {
    grid-column: span 1;
    padding: 32px 24px;
  }
  .result-card--hero .result-value {
    font-size: clamp(2.2rem, 7vw, 3rem);
  }
  .result-card:last-child {
    grid-column: 1 / -1;
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .results-bento {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .result-card:last-child {
    max-width: none;
  }
  .result-card,
  .result-card--hero {
    padding: 28px 22px;
    border-radius: 16px;
  }
  .result-card--hero .result-value {
    font-size: 2.4rem;
  }
  .result-accent-line {
    margin-bottom: 18px;
  }
}

/* --- About Section --- */
.about-section {
  background: var(--bg-alt);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.about-image {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 3/4;
}

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

.about-text .label {
  margin-bottom: 16px;
  color: rgba(32, 42, 45, 0.4);
}

.about-text h2 {
  margin-bottom: 24px;
}

.about-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 28px;
  padding: 24px 0 24px 24px;
  border-left: 3px solid var(--accent);
  background: linear-gradient(to right, rgba(203, 208, 181, 0.08), transparent);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

.about-text p {
  color: rgba(32, 42, 45, 0.7);
  font-weight: 300;
}

.about-closing {
  margin-top: 24px;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { max-width: 400px; margin: 0 auto; }
}

/* --- Brands Section --- */
#brands {
  background: linear-gradient(180deg, rgba(240, 237, 225, 0.65), rgba(247, 245, 235, 1));
}

/* --- Brands I've Worked With --- */
.brands-section {
  text-align: center;
}

.brands-header {
  margin-bottom: clamp(36px, 5vw, 56px);
}

.brands-header .label {
  margin-bottom: 8px;
}

.brands-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 auto;
}

.brands-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.brand-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 36px 24px 28px;
  border-radius: 20px;
  border: 1px solid rgba(203, 208, 181, 0.35);
  background: rgba(203, 208, 181, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.brand-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(203, 208, 181, 0.7);
  box-shadow: 0 16px 40px rgba(32, 42, 45, 0.08);
  background: rgba(255, 255, 255, 0.85);
}

.brand-tile img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  object-fit: contain;
  filter: none;
  opacity: 0.85;
  transition: all 0.4s ease;
}

.brand-tile:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.08);
}

.brand-tile-name {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(32, 42, 45, 0.4);
  transition: color 0.3s ease;
}

.brand-tile:hover .brand-tile-name {
  color: rgba(32, 42, 45, 0.7);
}

.brands-logo-grid .brand-tile:nth-child(n+5) {
  /* 2nd row with 3 items - center them */
}

.brands-caption {
  margin-top: clamp(24px, 3vw, 36px);
}

.brands-caption p {
  font-size: 11px;
  color: rgba(32, 42, 45, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
}

@media (max-width: 700px) {
  .brands-logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .brand-tile {
    padding: 22px 14px 18px;
    border-radius: 16px;
    gap: 10px;
  }
  .brand-tile img {
    max-height: 48px;
  }
}

@media (max-width: 420px) {
  .brands-logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .brand-tile {
    padding: 20px 12px 16px;
    border-radius: 14px;
  }
  .brand-tile img {
    max-height: 40px;
  }
  .brand-tile-name {
    font-size: 8px;
  }
}

/* --- Services / Philosophy Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.services-grid + .services-grid {
  margin-top: 24px;
}

.service-card {
  background: var(--accent);
  color: var(--text);
  border-radius: var(--r-sm);
  padding: 40px 32px;
  transition: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--text);
  transition: height 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.service-card:hover::after {
  height: 100%;
}

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

.service-card:hover {
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(32, 42, 45, 0.12);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-top: 40px;
  margin-bottom: auto;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: all 500ms ease;
}

.service-card:hover .service-icon {
  opacity: 0.6;
  color: var(--accent);
}

.service-card h3 {
  margin-top: auto;
  margin-bottom: 12px;
  font-style: italic;
  transition: color 500ms ease;
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
  font-weight: 300;
  opacity: 0.8;
  line-height: 1.6;
  transition: color 500ms ease;
}

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

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}
/* Case Study Blog Links */
.cs-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 9px;
}

/* --- Portfolio / Case Studies --- */
.case-study {
  background: var(--bg-alt);
  border-radius: var(--r-md);
  padding: 56px;
  margin-bottom: 40px;
  border-left: 4px solid var(--accent);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.case-study:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(32, 42, 45, 0.06);
}

.case-study h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 8px;
}

.cs-subtitle {
  font-size: 0.9rem;
  color: rgba(32, 42, 45, 0.5);
  margin-bottom: 4px;
  font-style: italic;
  font-weight: 300;
}

.cs-role {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(32, 42, 45, 0.4);
  margin-bottom: 20px;
}

.case-study p {
  color: rgba(32, 42, 45, 0.7);
  font-weight: 300;
  font-size: 0.95rem;
}

.case-study-stats {
  display: flex;
  gap: 20px;
  margin: 28px 0;
  flex-wrap: wrap;
  align-items: stretch;
}

.cs-stat {
  padding: 20px 28px;
  background: var(--bg);
  border-radius: var(--r-sm);
  text-align: center;
  flex: 1;
  min-width: 160px;
}

.cs-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 4px;
}

.case-study h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin: 28px 0 12px;
  color: var(--text);
}

.case-study ul {
  margin: 16px 0;
  padding-left: 20px;
}

.case-study li {
  list-style: disc;
  color: rgba(32, 42, 45, 0.7);
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 300;
}

.case-study .reel-card__why li {
  list-style: none;
}

.cs-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 24px 0;
}

.cs-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text);
  margin-top: 12px;
  transition: 0.3s ease;
}

.cs-link:hover {
  color: rgba(32, 42, 45, 0.5);
  gap: 10px;
}

/* Reel Example Cards */
.reel-examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin: 16px 0 8px;
}

.reel-examples-grid--small {
  max-width: 280px;
}

.reel-card {
  display: block;
  background: var(--bg);
  border: 1px solid rgba(32, 42, 45, 0.08);
  border-radius: 20px;
  padding: 24px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  color: inherit;
}

.reel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(32, 42, 45, 0.1);
  border-color: var(--accent);
}

.reel-card__icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--text);
}

.reel-card h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 6px;
  text-align: center;
}

.reel-card p {
  font-size: 0.85rem;
  color: rgba(32, 42, 45, 0.6);
  margin-bottom: 0;
  line-height: 1.5;
  font-weight: 300;
}

@media (max-width: 768px) {
  .case-study { padding: 32px 24px; border-radius: var(--r-sm); }
  .cs-details-grid { grid-template-columns: 1fr; }
}

/* Portfolio Image Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--r-sm);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) saturate(0.85);
  transition: all 800ms ease-out;
}

.portfolio-item:hover img {
  filter: grayscale(0%) saturate(1);
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(32, 42, 45, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-overlay span {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover .portfolio-overlay span {
  transform: translateY(0);
}

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

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* --- Process / Editorial Timeline --- */
/* --- How I Work / Process --- */
.process-section {
  background:
    radial-gradient(circle at top left, rgba(203, 208, 181, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(240, 237, 225, 0.7), rgba(247, 245, 235, 0.95));
}

.process-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.process-header .label {
  margin-bottom: 8px;
}

.process-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.process-subtitle {
  max-width: 48ch;
  margin: 0 auto 20px;
  color: rgba(32, 42, 45, 0.62);
  font-size: 0.95rem;
  line-height: 1.65;
}

.process-tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.process-tag {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid rgba(32, 42, 45, 0.1);
  background: rgba(255, 255, 255, 0.55);
  color: rgba(32, 42, 45, 0.6);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-items: stretch;
}

.process-card {
  padding: 32px 28px;
  border-radius: 24px;
  border: 1px solid rgba(32, 42, 45, 0.07);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 32px rgba(32, 42, 45, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(32, 42, 45, 0.1);
  border-color: rgba(203, 208, 181, 0.5);
}

.process-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.process-card-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--text);
  color: var(--bg);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.process-card-phase {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(32, 42, 45, 0.42);
}

.process-card h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-style: italic;
  line-height: 1.25;
  margin-bottom: 10px;
}

.process-card > p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(32, 42, 45, 0.62);
  margin-bottom: 16px;
}

.process-card-list {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 0;
}

.process-card-list li {
  list-style: none;
  position: relative;
  padding-left: 16px;
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(32, 42, 45, 0.58);
}

.process-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

@media (max-width: 700px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .process-card {
    padding: 24px 22px;
    border-radius: 18px;
  }
  .process-card-num {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }
}

@media (max-width: 420px) {
  .process-card {
    padding: 22px 18px;
    border-radius: 16px;
  }
  .process-card h3 {
    font-size: 1.1rem;
  }
  .process-card > p,
  .process-card-list li {
    font-size: 0.86rem;
  }
  .process-tags {
    gap: 8px;
  }
  .process-tag {
    padding: 6px 14px;
    font-size: 9px;
  }
}

/* --- Testimonials --- */
.testimonials-section {
  background: var(--bg-alt);
}

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

.testimonial-card {
  background: var(--bg);
  border-radius: var(--r-sm);
  padding: 40px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-top: 3px solid transparent;
}

.testimonial-card:nth-child(1) { border-top-color: var(--accent); }
.testimonial-card:nth-child(2) { border-top-color: rgba(32, 42, 45, 0.15); }
.testimonial-card:nth-child(3) { border-top-color: var(--accent); }

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(32, 42, 45, 0.08);
}

.quote-mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--accent);
  line-height: 1;
  height: 40px;
  margin-bottom: 12px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 24px;
  color: rgba(32, 42, 45, 0.7);
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
}

.author-info span {
  font-size: 10px;
  color: rgba(32, 42, 45, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

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

@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* --- Blog Preview --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: stretch;
}

.blog-card {
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--bg-alt);
  transition: all 0.4s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(32, 42, 45, 0.06);
}

.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) saturate(0.8);
  transition: all 800ms ease-out;
}

.blog-card:hover .blog-card-image img {
  filter: grayscale(0%) saturate(1);
  transform: scale(1.05);
}

.blog-card-body {
  padding: 32px;
}

.blog-card-body h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
  font-style: italic;
}

.blog-card-body p {
  color: rgba(32, 42, 45, 0.6);
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 300;
}

.read-more {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-card:hover .read-more {
  gap: 10px;
  color: rgba(32, 42, 45, 0.6);
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* --- CTA Section --- */
.cta-section {
  padding: var(--gap) 0;
}

.cta-card {
  background: var(--accent);
  border-radius: 48px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@keyframes cta-pulse {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.5; transform: translateX(-50%) scale(1.2); }
}

.cta-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 250px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  animation: cta-pulse 4s ease-in-out infinite;
}

.cta-card h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(2rem, 5vw, 4rem);
  font-style: italic;
  margin-bottom: 12px;
}

.cta-subtitle {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.7;
  margin-bottom: 32px;
}

.cta-card .btn {
  position: relative;
  z-index: 1;
}

@media (max-width: 600px) {
  .cta-card { padding: 60px 32px; border-radius: var(--r-sm); }
  .cta-card .btn-large { padding: 18px 48px; font-size: 10px; letter-spacing: 0.2em; }
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background: var(--bg-alt);
  border-radius: var(--r-md);
  padding: 48px;
  box-shadow: 0 8px 40px rgba(32, 42, 45, 0.04);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(32, 42, 45, 0.5);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid rgba(32, 42, 45, 0.1);
  border-radius: 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  transition: all 0.3s ease;
  background: var(--bg);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(203, 208, 181, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form .btn { width: auto; min-width: 200px; }

.form-feedback {
  margin-top: 16px;
  padding: 16px 20px;
  border-radius: 16px;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
}

.form-feedback.success {
  background: rgba(203, 208, 181, 0.2);
  border: 1px solid var(--accent);
  color: var(--text);
}

.form-feedback.error {
  background: rgba(200, 80, 80, 0.08);
  border: 1px solid rgba(200, 80, 80, 0.3);
  color: #7a3030;
}

@media (max-width: 600px) {
  .contact-form .btn { width: 100%; }
}

.contact-info h3 { margin-bottom: 24px; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-item .icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--text);
}

.contact-info-item .info-text strong {
  display: block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(32, 42, 45, 0.4);
  margin-bottom: 4px;
}

.contact-info-item .info-text a,
.contact-info-item .info-text p {
  font-size: 1rem;
  margin-bottom: 0;
  font-weight: 400;
}

.contact-info-item .info-text a:hover {
  opacity: 0.5;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 32px 24px; border-radius: var(--r-sm); }
}

/* --- Footer --- */
.footer {
  background: var(--bg-alt);
  padding: 80px 0 30px;
}

.footer-top {
  margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 12px;
  display: block;
}

.footer-tagline {
  color: rgba(32, 42, 45, 0.5);
  font-size: 0.9rem;
  max-width: 400px;
  font-weight: 300;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: start;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  color: rgba(32, 42, 45, 0.4);
}

.footer-links a {
  display: block;
  color: rgba(32, 42, 45, 0.6);
  font-size: 0.9rem;
  margin-bottom: 12px;
  font-weight: 300;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--accent);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(32, 42, 45, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(32, 42, 45, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(32, 42, 45, 0.4);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
  opacity: 1;
}

/* Scale-in variant */
.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays */
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* Hero text entry animation */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-anim {
  animation: heroFadeUp 0.8s ease-out forwards;
  opacity: 0;
}

.hero-anim-1 { animation-delay: 0.1s; }
.hero-anim-2 { animation-delay: 0.2s; }
.hero-anim-3 { animation-delay: 0.4s; }
.hero-anim-4 { animation-delay: 0.6s; }

/* --- Blog Page --- */
.page-header {
  padding: 160px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-style: italic;
}

.page-header p {
  color: rgba(32, 42, 45, 0.5);
  margin-top: 12px;
}

/* --- Page Loader --- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: loaderPulse 1.2s ease-in-out infinite alternate;
}

@keyframes loaderPulse {
  from { opacity: 0.4; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.loader-logo {
  width: 56px;
  height: 56px;
  border: 2px solid var(--text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 22px;
  font-style: italic;
  color: var(--text);
}

.loader-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--text);
  opacity: 0.6;
}

/* --- Custom Cursor --- */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--text);
  border-radius: 50%;
  pointer-events: none;
  z-index: 100000;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
}

.cursor-dot.cursor-hover {
  width: 6px;
  height: 6px;
  background: var(--accent);
}

.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(32, 42, 45, 0.25);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.35s ease, height 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.cursor-outline.cursor-hover {
  width: 56px;
  height: 56px;
  border-color: var(--accent);
  background: rgba(203, 208, 181, 0.08);
}

@media (hover: none), (max-width: 768px) {
  .cursor-dot, .cursor-outline { display: none !important; }
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--text));
  z-index: 10001;
  transition: width 0.05s linear;
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(32, 42, 45, 0.15);
  background: rgba(247, 245, 235, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.4s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
  transform: translateY(-2px);
}

/* --- Image Reveal Animation --- */
.reveal-image {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.reveal-image.revealed {
  clip-path: inset(0 0 0% 0);
}

/* --- Portfolio Grid Enhanced --- */
.portfolio-grid {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
}

.portfolio-item--wide {
  grid-column: span 2;
}

.portfolio-item--tall {
  grid-row: span 2;
}

@media (max-width: 768px) {
  .portfolio-grid { grid-auto-rows: 220px; }
  .portfolio-item--wide { grid-column: span 1; }
  .portfolio-item--tall { grid-row: span 1; }
}

/* --- Gradient accent on result values --- */
.result-value {
  background: linear-gradient(135deg, var(--accent) 0%, #e8e4d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Smooth section transitions --- */
.section + .section {
  position: relative;
}

/* --- Text reveal animation --- */
.text-reveal {
  overflow: hidden;
  display: inline-block;
}

.text-reveal-inner {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.text-reveal.revealed .text-reveal-inner {
  transform: translateY(0);
}

/* Hide default cursor on desktop when custom cursor is active */
@media (hover: hover) and (min-width: 769px) {
  body { cursor: none; }
  a, button, [role="button"], input, textarea, select { cursor: none; }
  /* Restore cursor on blog pages (no custom cursor DOM elements) */
  body.blog-page { cursor: auto; }
  body.blog-page * { cursor: auto; }
  body.blog-page a,
  body.blog-page button,
  body.blog-page [role="button"] { cursor: pointer; }
  body.blog-page input,
  body.blog-page textarea,
  body.blog-page select { cursor: auto; }
  body.blog-page .article-content p,
  body.blog-page .article-content h2,
  body.blog-page .article-content h3,
  body.blog-page .article-content li { cursor: text; }
}

.blog-listing {
  padding: 80px 0;
}

.blog-listing .blog-grid {
  gap: 40px;
}

/* Blog Post */
.article-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 20px;
}

.article-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  margin-bottom: 16px;
}

.article-meta {
  color: rgba(32, 42, 45, 0.4);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(32, 42, 45, 0.1);
}

.article-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 24px;
  font-weight: 300;
}

.article-content h2 { margin: 48px 0 20px; }
.article-content h3 { margin: 36px 0 16px; }

.article-content ul,
.article-content ol {
  margin: 16px 0 24px;
  padding-left: 24px;
}

.article-content li {
  list-style: disc;
  margin-bottom: 8px;
  line-height: 1.8;
  font-weight: 300;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 32px;
}

.back-link:hover { opacity: 0.5; }

.article-hero-image {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: 40px;
}

.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Global Alignment & Sizing Polish --- */
.section-header {
  max-width: 860px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  max-width: 28ch;
}

.section-header p {
  max-width: 62ch;
}

.hero-content {
  max-width: 980px;
}

.hero-desc {
  max-width: 68ch;
}

.service-card {
  min-height: 300px;
}

.service-card p {
  max-width: 34ch;
}

.case-study {
  padding: 60px;
}

.case-study > p {
  max-width: 78ch;
}

.cs-details-grid {
  align-items: start;
}

.reel-examples-grid {
  align-items: stretch;
}

.reel-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.reel-card__why {
  margin-top: auto;
}

.testimonial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card blockquote {
  flex: 1;
}

.blog-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-body .read-more {
  margin-top: auto;
}

@media (max-width: 1100px) {
  .section {
    padding: 128px 0;
  }

  .section-header {
    margin-bottom: 56px;
  }

  .case-study {
    padding: 44px;
  }

  .service-card {
    min-height: 270px;
  }

  .results-bento {
    gap: 14px;
  }
}

@media (max-width: 900px) and (min-width: 641px) {
  .hero h1 {
    font-size: clamp(3rem, 9vw, 5rem);
    line-height: 0.9;
  }

  .hero-desc {
    max-width: 56ch;
  }



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

  .reel-examples-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    gap: 36px;
  }
}

/* --- Mobile Refinement (Phone First Overrides) --- */
@media (max-width: 640px) {
  :root {
    --nav-h: 72px;
  }

  html {
    font-size: 15px;
  }

  .container {
    width: 92%;
  }

  .section {
    padding: 84px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .hero {
    padding: calc(var(--nav-h) + 12px) 0 44px !important;
    justify-content: flex-start;
    min-height: auto;
  }

  .hero h1 {
    line-height: 0.9;
    margin-bottom: 22px;
  }

  .hero-desc {
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .hero-ctas {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-ctas .btn {
    width: 100%;
    text-align: center;
  }

  .hero-image-block {
    width: 92%;
    margin: 0 auto 84px;
  }

  .hero-image-container {
    height: 56vh;
    border-radius: 22px;
  }

  .hero-image-overlay {
    left: 20px;
    bottom: 20px;
  }

  .whatido-strip {
    padding: 20px 0;
  }

  .whatido-inner span {
    font-size: 11px;
    letter-spacing: 0.05em;
    padding: 0 14px;
  }

  .about-quote {
    padding: 18px 0 18px 14px;
    margin-bottom: 20px;
  }

  .client-logos-inner {
    gap: 40px;
  }

  .client-logos-inner img {
    height: 34px;
    max-width: 90px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    min-height: 220px;
    padding: 30px 22px;
  }

  .case-study {
    padding: 24px 18px;
    border-left-width: 3px;
    margin-bottom: 24px;
  }

  .case-study-stats {
    gap: 12px;
  }

  .cs-stat {
    min-width: 100%;
    padding: 16px 18px;
  }

  .reel-examples-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .reel-card {
    border-radius: 16px;
  }

  .reel-card--has-thumb h5 {
    padding: 12px 14px 0;
    font-size: 0.95rem;
  }

  .reel-card--has-thumb p,
  .reel-card--has-thumb .reel-card__why {
    padding-left: 14px;
    padding-right: 14px;
  }

  .reel-card--has-thumb .reel-card__why {
    padding-bottom: 14px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
    gap: 14px;
  }

  .portfolio-item--wide,
  .portfolio-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .testimonials-grid,
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-card {
    padding: 26px 20px;
  }

  .blog-card-body {
    padding: 22px;
  }

  .cta-section {
    padding: 92px 0;
  }

  .cta-card {
    padding: 52px 24px;
    border-radius: 24px;
  }

  .cta-subtitle {
    font-size: 0.92rem;
    margin-bottom: 24px;
  }

  .contact-form {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .contact-form .btn {
    width: 100%;
    min-width: 0;
  }

  .contact-info-item {
    margin-bottom: 18px;
  }

  .contact-info-item .icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .footer {
    padding: 56px 0 24px;
  }

  .footer-top,
  .footer-grid {
    margin-bottom: 34px;
  }

  .footer-logo {
    font-size: 2.2rem;
  }

  .footer-bottom {
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .back-to-top {
    width: 44px;
    height: 44px;
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 420px) {
  .label {
    letter-spacing: 0.14em;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 12vw, 3rem);
  }

  .reel-examples-grid {
    grid-template-columns: 1fr;
  }

  .whatido-inner span {
    font-size: 10px;
  }
}

/* --- Mobile Usability Overrides (Stronger Pass) --- */
@media (max-width: 768px) {
  .btn,
  .nav-cta,
  .read-more,
  .cs-link {
    letter-spacing: 0.14em;
  }

  .section {
    padding: 72px 0;
  }

  .section-header h2 {
    max-width: 24ch;
  }

  .hero-desc,
  .about-text p,
  .case-study p,
  .contact .section-header p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .hero-image-container {
    height: 48vh;
  }

  .whatido-inner {
    animation-duration: 34s;
  }

  .client-logos-track {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .client-logos-inner {
    animation: none;
    white-space: normal;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
  }

  .client-logos-inner img {
    opacity: 0.75;
    filter: grayscale(20%);
  }

  .reel-examples-grid {
    grid-template-columns: 1fr;
  }

  .reel-card {
    border-radius: 14px;
  }

  .reel-card__thumb {
    max-height: 420px;
  }

  .case-study h3 {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
  }

  .cs-role,
  .result-brand,
  .footer-bottom {
    letter-spacing: 0.1em;
  }

  .contact-grid {
    gap: 26px;
  }

  .contact-info h3 {
    margin-bottom: 14px;
  }

  .footer-grid {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .container,
  .hero-image-block {
    width: 94%;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: calc(var(--nav-h) + 12px) 0 34px !important;
    justify-content: flex-start;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 11.2vw, 2.75rem);
    margin-bottom: 18px;
  }

  .hero-underline svg {
    bottom: -6px;
    height: 10px;
  }

  .hero-ctas {
    gap: 10px;
  }

  .hero-ctas .btn,
  .contact-form .btn {
    padding: 14px 20px;
    font-size: 9px;
  }

  .hero-image-container {
    height: 42vh;
    border-radius: 18px;
  }

  .hero-image-overlay {
    left: 14px;
    bottom: 14px;
  }

  .hero-image-overlay h2 {
    font-size: clamp(1.2rem, 6.4vw, 1.6rem);
  }

  .services-grid,
  .testimonials-grid,
  .blog-grid {
    gap: 12px;
  }

  .service-card,
  .testimonial-card,
  .blog-card,
  .contact-form,
  .case-study {
    border-radius: 16px;
  }

  .service-card {
    min-height: 0;
    padding: 24px 16px;
  }

  .case-study {
    padding: 18px 14px;
  }

  .case-study ul {
    padding-left: 16px;
  }

  .blog-card-body {
    padding: 16px;
  }

  .cta-card {
    padding: 38px 16px;
    border-radius: 18px;
  }

  .cta-card .btn-large {
    width: 100%;
    padding: 14px 20px;
  }

  .contact-info-item .info-text a,
  .contact-info-item .info-text p {
    font-size: 0.92rem;
  }
}

/* --- Section-by-Section Premium Polish --- */
:root {
  --rhythm: clamp(60px, 8vw, 120px);
}

.section {
  padding: var(--rhythm) 0;
}

.section-header {
  display: grid;
  gap: 12px;
}

.section-header .label {
  margin-bottom: 4px;
}

.section-header h2 {
  letter-spacing: -0.012em;
}

.navbar .container,
.hero .container,
.results-section .container,
.about-section .container,
#services .container,
#portfolio .container,
#testimonials .container,
#contact .container,
.footer .container {
  width: min(92%, 1200px);
}

.hero h1 {
  max-width: 12ch;
}

.hero-ctas .btn {
  min-height: 48px;
}

.results-section .results-header {
  margin-bottom: 44px;
}

.results-bento {
  gap: 18px;
}

.about-grid {
  gap: clamp(32px, 5vw, 72px);
}

.about-text {
  max-width: 62ch;
}

.services-grid {
  gap: 18px;
}

.service-card h3 {
  line-height: 1.24;
}

.service-card p {
  line-height: 1.62;
}

.case-study {
  border-radius: 28px;
}

.case-study h3,
.case-study h4 {
  text-wrap: balance;
}

.cs-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.testimonials-grid {
  gap: 18px;
}

.testimonial-card blockquote {
  font-size: 0.92rem;
  line-height: 1.75;
}

.blog-grid {
  gap: 18px;
}

.blog-card-body h3 {
  line-height: 1.2;
}

.contact-grid {
  gap: clamp(28px, 4vw, 54px);
}

.contact-form,
.cta-card,
.testimonial-card,
.blog-card,
.case-study {
  box-shadow: 0 10px 30px rgba(32, 42, 45, 0.05);
}

.footer-top,
.footer-grid {
  margin-bottom: 46px;
}

@media (max-width: 768px) {
  .noise-overlay {
    opacity: 0.2;
  }

  .hero-image-container img,
  .about-image img,
  .portfolio-item img,
  .blog-card-image img {
    transition-duration: 500ms;
  }

  .section-header {
    gap: 8px;
  }

  .section-header p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .label {
    font-size: 9px;
  }

  .hero-desc {
    max-width: 36ch;
  }

  .about-text {
    max-width: none;
  }

  .results-section {
    padding: 68px 0;
  }

  .service-icon {
    width: 42px;
    height: 42px;
  }

  .case-study-stats {
    margin: 18px 0;
  }

  .cs-role {
    font-size: 9px;
  }

  .testimonial-card blockquote {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .blog-card-body h3 {
    font-size: 1.2rem;
  }

  .cta-glow {
    width: 280px;
    height: 170px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 13px 14px;
    border-radius: 12px;
  }

  .footer-logo {
    font-size: 1.95rem;
  }

  .footer-links a {
    font-size: 0.86rem;
    margin-bottom: 8px;
  }
}

@media (max-width: 420px) {
  .section {
    padding: 56px 0;
  }

  .hero-image-container {
    height: 38vh;
  }

  .result-card,
  .service-card,
  .testimonial-card,
  .blog-card,
  .contact-form,
  .case-study,
  .cta-card {
    box-shadow: 0 6px 18px rgba(32, 42, 45, 0.045);
  }

  .result-card,
  .service-card,
  .testimonial-card,
  .blog-card,
  .case-study {
    border-radius: 14px;
  }

  .quote-mark {
    font-size: 3rem;
    height: 30px;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
  }
}

/* --- Mobile Case Study UX + Motion Calm --- */
@media (max-width: 768px) {
  .mobile-optimized .fade-up,
  .mobile-optimized .fade-in,
  .mobile-optimized .scale-in {
    transition-duration: 0.45s;
  }

  .mobile-optimized .cta-glow {
    animation: none;
  }

  .mobile-optimized .case-study {
    padding-bottom: 14px;
  }

  .mobile-optimized .case-study.expanded {
    padding-bottom: 16px;
  }

  .mobile-optimized .cs-mobile-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
  }

  .mobile-optimized .case-study.expanded .cs-mobile-details {
    max-height: 5000px;
  }

  .mobile-optimized .cs-mobile-toggle {
    width: 100%;
    margin-top: 12px;
    border: 1px solid rgba(32, 42, 45, 0.2);
    background: rgba(203, 208, 181, 0.22);
    color: var(--text);
    border-radius: 12px;
    padding: 11px 14px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    line-height: 1;
  }

  .mobile-optimized .case-study.expanded .cs-mobile-toggle {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
  }
}

/* --- Utility --- */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
