/* ============================================
   RESET & BASE
============================================ */

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

html {
  scroll-behavior: smooth;
}

:root {
  --cream: #f5f0e8;
  --cream-dark: #ede6d8;
  --cream-mid: #e6ddd0;
  --cream-warm: #f9f5ef;
  --sand: #e8e0d0;
  --parchment: #f0e9dc;
  --ink: #1a1714;
  --ink-soft: rgba(26,23,20,0.55);
  --accent-green: #d4e84a;
  --accent-orange: #e8744a;
  --accent-gold: #c9a96e;
  --radius-lg: 40px;
  --radius-md: 30px;
  --radius-sm: 999px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream-warm);
  color: var(--ink);
  overflow-x: hidden;
}


/* ============================================
   SCROLL REVEAL ANIMATIONS
============================================ */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal--right {
  transform: translateX(60px);
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible,
.reveal--right.visible {
  opacity: 1;
  transform: translate(0, 0);
}


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

.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 6%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow 0.3s ease;
}

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

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  position: relative;
  transition: opacity 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.3s ease;
}

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

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

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s ease;
}

/* MOBILE NAV */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.mobile-nav a:hover { opacity: 0.4; }

.mobile-nav-close {
  position: absolute;
  top: 2rem;
  right: 6%;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ink);
}

.mobile-nav-overlay {
  display: none;
}


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

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding: 0 6%;
  gap: 4rem;
  overflow: hidden;
}

.hero-content {
  max-width: 750px;
  padding-top: 6rem;
}

.hero-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 2rem;
  opacity: 0.55;
}

.hero h1 {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 7.5vw, 7rem);
  line-height: 1;
  margin-bottom: 1.8rem;
  font-weight: 900;
  letter-spacing: -2px;
}

/* Onoyima: solid text */
.hero-name-first {
  display: block;
  font-weight: 900;
  font-size: 1em;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

/* Jane: solid bold italic shifted right */
.hero-name-last {
  display: block;
  font-weight: 900;
  font-style: italic;
  font-size: 1.15em;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 0.88;
  padding-left: 0.1em;
}

.hero-name-last .name-accent {
  color: #e86fa3;
}

.hero h2 {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.5;
  opacity: 0.8;
}

.hero-description {
  font-size: 1rem;
  line-height: 1.9;
  max-width: 580px;
  margin-bottom: 3rem;
  opacity: 0.75;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  padding: 1rem 2.2rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}

.primary-btn {
  background: var(--ink);
  color: white;
}

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

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(17,17,17,0.18);
}

.secondary-btn:hover {
  transform: translateY(-3px);
  background: var(--ink);
  color: white;
}

/* HERO DECORATIVE VISUAL */
.hero-visual {
  position: relative;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  will-change: transform;
}

.hero-orb--1 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(229,241,125,0.55) 0%, transparent 70%);
  top: 10%;
  right: 5%;
  animation: floatOrb1 8s ease-in-out infinite;
}

.hero-orb--2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255,153,102,0.4) 0%, transparent 70%);
  bottom: 15%;
  left: 10%;
  animation: floatOrb2 10s ease-in-out infinite;
}

.hero-orb--3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(244,237,247,0.9) 0%, rgba(200,180,230,0.3) 70%);
  top: 50%;
  left: 40%;
  animation: floatOrb3 6s ease-in-out infinite;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(17,17,17,0.1);
  animation: spinRing 20s linear infinite;
  will-change: transform;
}

/* Rings: mouse offset lives on a wrapper so spinRing keyframe isn't clobbered */
.hero-ring--1 {
  width: 420px;
  height: 420px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-ring--2 {
  width: 280px;
  height: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 14s;
}

/* hero-words container — parallax applied to each span via JS margin trick */
.hero-words span {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.25;
  animation: wordFloat 4s ease-in-out infinite;
  will-change: margin-left, margin-top;
}

.hero-words span:nth-child(1) { top: 12%; left: 20%; animation-delay: 0s; }
.hero-words span:nth-child(2) { top: 25%; right: 10%; animation-delay: 0.7s; }
.hero-words span:nth-child(3) { top: 50%; left: 8%; animation-delay: 1.2s; }
.hero-words span:nth-child(4) { bottom: 30%; right: 15%; animation-delay: 0.4s; }
.hero-words span:nth-child(5) { bottom: 15%; left: 25%; animation-delay: 1.8s; }
.hero-words span:nth-child(6) { top: 70%; right: 5%; animation-delay: 0.9s; }

@keyframes floatOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 25px) scale(1.05); }
}
@keyframes floatOrb2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(15px, -20px); }
}
@keyframes floatOrb3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-10px, 15px) scale(0.95); }
}
@keyframes spinRing {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes wordFloat {
  0%, 100% { transform: translateY(0); opacity: 0.25; }
  50% { transform: translateY(-8px); opacity: 0.4; }
}


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

.about-section {
  padding: 8rem 6%;
  background: var(--cream-warm);
}

.about-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  margin-bottom: 1.5rem;
  opacity: 0.5;
  will-change: transform;
  transition: transform 0.15s ease-out;
  display: inline-block; /* so transform applies without affecting flow */
}

.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.05;
  margin-bottom: 2rem;
  font-weight: 600;
}

.about-description {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  max-width: 600px;
  opacity: 0.8;
}

.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.about-skills span {
  padding: 0.75rem 1.3rem;
  background: var(--sand);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease,
              opacity 0.55s cubic-bezier(0.16,1,0.3,1),
              transform 0.55s cubic-bezier(0.16,1,0.3,1);
  will-change: transform, opacity;
}

/* Initial hidden state before entrance */
.about-skills span.skill-hidden {
  opacity: 0;
  transform: translateY(20px) scale(0.92);
}

/* Entrance complete — tag is in place */
.about-skills span.skill-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Breathe float — starts after entrance, each tag gets a unique offset
   via nth-child so they don't all pulse in unison */
@keyframes skillBreathe {
  0%, 100% { transform: translateY(0px);   }
  50%       { transform: translateY(-5px);  }
}

.about-skills span.skill-breathe { animation: skillBreathe 3.2s ease-in-out infinite; }
.about-skills span.skill-breathe:nth-child(2) { animation-delay: 0.4s;  animation-duration: 3.6s; }
.about-skills span.skill-breathe:nth-child(3) { animation-delay: 0.8s;  animation-duration: 2.9s; }
.about-skills span.skill-breathe:nth-child(4) { animation-delay: 1.2s;  animation-duration: 3.8s; }
.about-skills span.skill-breathe:nth-child(5) { animation-delay: 0.6s;  animation-duration: 3.1s; }
.about-skills span.skill-breathe:nth-child(6) { animation-delay: 1.5s;  animation-duration: 3.4s; }

/* Hover pauses breathe and inverts colours */
.about-skills span:hover {
  animation-play-state: paused;
  background: var(--ink);
  color: white;
  transform: translateY(-4px) scale(1.05);
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: rgba(201, 169, 110, 0.45);
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.about-image:hover::after {
  opacity: 1;
}

.about-image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image:hover img {
  transform: scale(1.04);
}


/* ============================================
   PROJECTS SECTION
============================================ */

.projects-section {
  padding: 8rem 6%;
  background: var(--sand);
}

.projects-header {
  margin-bottom: 5rem;
}

.projects-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 0.95;
  max-width: 900px;
}

.project-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.project-category {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.project-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  margin-bottom: 2rem;
}

.project-description {
  font-size: 1.05rem;
  line-height: 1.9;
  opacity: 0.8;
  margin-bottom: 3rem;
}

.project-metrics {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.metric span {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 2.2rem);
  font-weight: 700;
  display: block;
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.metric p {
  font-size: 0.85rem;
  opacity: 0.55;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  background: var(--ink);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(17,17,17,0.18);
}

.project-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.project-gallery img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-gallery img:first-child {
  grid-column: span 2;
  height: 300px;
}

.project-gallery img:nth-child(2),
.project-gallery img:nth-child(3) {
  height: 400px;
}

.project-gallery img:hover {
  transform: translateY(-8px);
}


/* ============================================
   EDITORIAL SECTIONS
============================================ */

.editorial-section,
.campaign-editorial {
  padding: 8rem 6%;
}

.editorial-header {
  margin-bottom: 5rem;
}

.editorial-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: 0.95;
  max-width: 900px;
}

.editorial-layout,
.campaign-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.editorial-copy {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.editorial-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.editorial-item > span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 0.9;
  min-width: 90px;
  opacity: 0.15;
}

.editorial-item p,
.editorial-item li {
  font-size: 1.05rem;
  line-height: 1.9;
  opacity: 0.8;
}

.small-heading {
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
}

.editorial-item ul {
  padding-left: 1.2rem;
}

.editorial-item li {
  margin-bottom: 0.4rem;
}

.editorial-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
}

.campaign-phone {
  display: flex;
  justify-content: center;
}

.campaign-phone img {
  width: 75%;
  max-width: 420px;
}

.campaign-video-layout {
  margin-top: 8rem;
}

.campaign-video {
  margin-top: 3rem;
}

.campaign-video video {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
}


/* ============================================
   DATA VISUALIZATION
============================================ */

.data-editorial {
  padding: 8rem 6%;
  background: #ede8de;
}

.data-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.data-copy {
  max-width: 500px;
}

.data-project-btn {
  display: inline-block;
  margin-top: 2rem;
}

.data-visual img {
  width: 100%;
  display: block;
}


/* ============================================
   CONTENT CALENDAR / PLANNER
============================================ */

.calendar-editorial {
  padding: 8rem 6%;
  background: var(--parchment);
}

.calendar-showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.calendar-text {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.calendar-row {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.calendar-row > span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 1;
  opacity: 0.15;
}

.calendar-row p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.8;
}

.calendar-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  opacity: 0.55;
  padding-left: 0.5rem;
  border-left: 2px solid var(--accent-gold);
}

.calendar-image img {
  width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

.calendar-video video {
  width: 100%;
  display: block;
  border-radius: var(--radius-md);
}


/* ============================================
   HEALTH AWARENESS SECTION
============================================ */

.health-awareness-section {
  background: #f2ece0;
  padding: 7rem 6%;
}

.health-container {
  max-width: 1400px;
  margin: 0 auto;
}

.health-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 0.95;
  max-width: 900px;
  margin-bottom: 4rem;
  color: var(--ink);
}

/* ---- each entry: media + body side by side ---- */
.health-entry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}

.health-entry:last-child {
  margin-bottom: 0;
}

/* 02: media already first in source, body second — no order needed */
.health-entry--flipped .health-entry__media { order: 0; }
.health-entry--flipped .health-entry__body  { order: 0; }

.health-entry__media img,
.health-entry__media video {
  width: 100%;
  border-radius: 35px;
  display: block;
}

/* number + text row */
.health-entry__row {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.health-entry__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  line-height: 0.8;
  min-width: 90px;
  opacity: 0.15;
  flex-shrink: 0;
}

.health-entry__row p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--ink);
  opacity: 0.8;
}

.health-entry__tools {
  margin-top: 1.5rem;
  font-size: 0.9rem !important;
  opacity: 0.55 !important;
  line-height: 1.6 !important;
}


/* ============================================
   SERVICES SECTION — PREMIUM REDESIGN
============================================ */

.services-section {
  padding: 9rem 6% 8rem;
  background: #0e0e0c;
  color: white;
  position: relative;
  overflow: hidden;
}

/* Subtle noise texture overlay */
.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
  z-index: 0;
}

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

/* ---- TOP BLOCK ---- */
.services-top {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 6rem;
  align-items: start;
  margin-bottom: 5rem;
}

.services-title-col .section-label {
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}

.services-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 0.88;
  font-weight: 700;
  color: white;
  letter-spacing: -2px;
}

/* CAPABILITIES LIST */
.capabilities-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 2.5rem;
}

.capabilities-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.capabilities-list li {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s ease, padding-left 0.3s ease;
  cursor: default;
}

.capabilities-list li:first-child {
  border-top: 1px solid rgba(255,255,255,0.07);
}

.capabilities-list li:hover {
  color: white;
  padding-left: 6px;
}

.capabilities-list li span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  min-width: 28px;
  letter-spacing: 1px;
}

/* ---- DIVIDER ---- */
.services-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(212,232,74,0.7) 0%, rgba(255,255,255,0.08) 60%, transparent 100%);
  margin-bottom: 5rem;
}

/* ---- BOTTOM BLOCK ---- */
.services-bottom {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 6rem;
  align-items: start;
}

.work-together-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 0.95;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
}

.work-together-headline em {
  font-style: italic;
  color: var(--accent-green);
}

.work-together-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* SERVICE TILES GRID */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.svc-tile {
  border-radius: 18px;
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
  min-height: 160px;
  cursor: default;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.35s ease,
              opacity 0.6s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
  will-change: transform, opacity;
}

/* Stagger entrance states */
.svc-tile.svc-hidden {
  opacity: 0;
  transform: translateY(40px);
}

.svc-tile.svc-visible {
  opacity: 1;
  transform: translateY(0);
}

.svc-tile:hover,
.svc-tile.svc-visible:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

/* Last tile spans full width */
.svc-tile:last-child {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  min-height: 100px;
  gap: 2rem;
}

.svc-tile--dark {
  background: #1a1a17;
  border: 1px solid rgba(255,255,255,0.07);
}

.svc-tile--light {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.svc-tile--accent {
  background: var(--accent-green);
  color: #0e0e0c;
}

.svc-tile--warm {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #f0a070 100%);
  color: #0e0e0c;
}

.svc-index {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  opacity: 0.4;
}

.svc-tile p {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.35;
  color: inherit;
}

.svc-tile--dark p,
.svc-tile--light p {
  color: rgba(255,255,255,0.85);
}

.svc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.3;
  align-self: flex-end;
}

.svc-tile:last-child .svc-dot {
  display: none;
}

/* Tile shimmer on hover */
.svc-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.svc-tile:hover::after {
  opacity: 1;
}


/* ============================================
   CONTACT SECTION
============================================ */

.contact-section {
  padding: 8rem 6%;
  background: var(--ink);
  color: white;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-left .section-label {
  color: rgba(255,255,255,0.45);
}

.contact-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1;
  margin-bottom: 1.5rem;
  color: white;
}

.contact-left h2 em {
  font-style: italic;
  color: var(--accent-green);
}

.contact-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 3.5rem;
  max-width: 420px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-detail-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.4rem;
}

.contact-detail-item a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.contact-detail-item a:hover {
  color: var(--accent-green);
  border-color: var(--accent-green);
}

/* CONTACT FORM */
.contact-form-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.45);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
  -webkit-appearance: none;
}

.form-group select option {
  background: #222;
  color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-green);
  background: rgba(255,255,255,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

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

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 2rem;
  background: var(--accent-green);
  color: var(--ink);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 0.5rem;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(229,241,125,0.25);
}

.form-success {
  display: none;
  color: var(--accent-green);
  font-size: 0.95rem;
  text-align: center;
  margin-top: 0.5rem;
}

.form-success.show {
  display: block;
}


/* ============================================
   FOOTER
============================================ */

.site-footer {
  background: #0a0a0a;
  color: rgba(255,255,255,0.5);
  padding: 3rem 6%;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: -1px;
}

.footer-tagline {
  font-size: 0.9rem;
  opacity: 0.5;
}

.footer-links {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-green);
}

.footer-copy {
  font-size: 0.78rem;
  opacity: 0.3;
  margin-top: 0.5rem;
}


/* ============================================
   RESPONSIVE — TABLET
============================================ */

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

  .hero-visual {
    display: none;
  }

  .about-container,
  .project-card,
  .editorial-layout,
  .campaign-grid,
  .data-layout,
  .calendar-showcase,
  .health-entry,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-top,
  .services-bottom {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-headline {
    font-size: 6rem;
  }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero h1 { font-size: 4.5rem; }

  .projects-header h2,
  .editorial-header h2 {
    font-size: 3.5rem;
  }

  .capabilities-card ul {
    grid-template-columns: 1fr;
  }
}

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

  .svc-tile:last-child {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
    min-height: 140px;
  }

  .services-headline {
    font-size: 4rem;
  }
}


/* ============================================
   RESPONSIVE — MOBILE  (≤ 600px)
   Goal: tight, intentional, no dead air
============================================ */

@media (max-width: 600px) {

  /* --- MOBILE NAV: slim side-drawer style --- */
  .mobile-nav {
    /* slide in from the right as a partial-width drawer */
    width: 82%;
    max-width: 320px;
    left: auto;       /* override inset:0 */
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 0;
    justify-content: flex-start;
    padding: 5rem 2rem 3rem;
    gap: 0;
    box-shadow: -8px 0 40px rgba(0,0,0,0.12);
    background: var(--cream-warm);
  }

  /* semi-transparent overlay behind drawer */
  .mobile-nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(26,23,20,0.35);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(2px);
  }

  .mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: all;
  }

  .mobile-nav-close {
    top: 1.4rem;
    right: 1.4rem;
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--sand);
  }

  /* nav links: compact stacked list, not giant centred words */
  .mobile-nav ul {
    width: 100%;
    gap: 0;
    text-align: left;
  }

  .mobile-nav ul li {
    border-bottom: 1px solid rgba(26,23,20,0.07);
  }

  .mobile-nav ul li:first-child {
    border-top: 1px solid rgba(26,23,20,0.07);
  }

  .mobile-nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 0;
    opacity: 1;
    color: var(--ink);
  }

  .mobile-nav a::after {
    content: '→';
    font-size: 1rem;
    opacity: 0.3;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
  }

  /* small branding at bottom of drawer */
  .mobile-nav::after {
    content: 'OJ';
    position: absolute;
    bottom: 2.5rem;
    left: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    opacity: 0.08;
    letter-spacing: -1px;
  }

  /* --- GLOBAL SECTION SPACING: cut 8rem → 4rem --- */
  .about-section,
  .projects-section,
  .editorial-section,
  .campaign-editorial,
  .data-editorial,
  .calendar-editorial,
  .health-awareness-section,
  .services-section,
  .contact-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 5%;
    padding-right: 5%;
  }

  /* editorial headers: 5rem bottom margin → 2rem */
  .editorial-header,
  .projects-header {
    margin-bottom: 2rem;
  }

  /* --- HERO --- */
  .hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
    padding-left: 5%;
    padding-right: 5%;
    min-height: auto;
  }

  .hero-tag { margin-bottom: 1rem; }

  .hero h1 {
    font-size: clamp(2.8rem, 11vw, 3.5rem);
    margin-bottom: 1rem;
    letter-spacing: -1.5px;
  }

  .hero h2 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    text-align: center;
    padding: 0.9rem 1.5rem;
  }

  /* --- ABOUT --- */
  .about-container { gap: 2rem; }
  .about-text h2 { margin-bottom: 1.2rem; }
  .about-description { margin-bottom: 1rem; }
  .about-skills { margin-top: 1.5rem; gap: 0.5rem; }
  .about-image img { height: 320px; }

  /* --- PROJECTS --- */
  .projects-section { padding-top: 4rem; }
  .project-card { gap: 2rem; }
  .project-info h3 { margin-bottom: 1rem; }
  .project-description { margin-bottom: 1.5rem; }
  .project-metrics { flex-direction: row; gap: 1rem; margin-bottom: 1.5rem; }
  .metric span { font-size: 1.2rem; }

  .project-gallery { grid-template-columns: 1fr; gap: 0.75rem; }
  .project-gallery img:first-child { grid-column: auto; height: 240px; }
  .project-gallery img:nth-child(2),
  .project-gallery img:nth-child(3) { height: 220px; }

  /* --- EDITORIAL items (numbered sections) --- */
  .editorial-item {
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
  }
  .editorial-item > span {
    font-size: 2.5rem;
    min-width: 50px;
    opacity: 0.12;
  }
  .editorial-copy { gap: 2rem; }

  /* --- CALENDAR --- */
  .calendar-row { flex-direction: row; gap: 1rem; }
  .calendar-row > span { font-size: 2.5rem; opacity: 0.12; }
  .calendar-text { gap: 1.5rem; }
  .calendar-quote { font-size: 1.05rem; }

  /* --- HEALTH --- */
  .health-entry { gap: 1.5rem; margin-bottom: 3rem; }
  .health-entry__row { gap: 1rem; }
  .health-entry__num { font-size: 3.5rem; min-width: 60px; }

  /* --- SERVICES --- */
  .services-top { gap: 2rem; }
  .services-bottom { gap: 2rem; }
  .services-headline { font-size: 3.5rem; }
  .svc-tile { padding: 1.5rem; min-height: 120px; }

  /* --- CONTACT --- */
  .contact-inner { gap: 2.5rem; }
  .contact-left h2 { font-size: 2.5rem; }
  .contact-sub { margin-bottom: 2rem; }
  .contact-details { gap: 1.25rem; }
  .contact-form-wrap { padding: 1.5rem; border-radius: 24px; }

  /* --- FOOTER --- */
  .footer-links { gap: 1.25rem; }
  .site-footer { padding: 2.5rem 5%; }

  /* --- CAPABILITIES --- */
  .capabilities-card { padding: 1.5rem; }
  .service-card { font-size: 1.2rem; }
}


/* ============================================
   SCROLL PROGRESS BAR
============================================ */

.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 9999;
  background: linear-gradient(90deg, #c9a96e 0%, #d4e84a 100%);
  border-radius: 0 2px 2px 0;
  transition: width 0.05s linear;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(201,169,110,0.5);
}


/* ============================================
   CURSOR GLOW
============================================ */

.cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201,169,110,0.13) 0%, rgba(201,169,110,0.04) 40%, transparent 70%);
  transition: opacity 0.4s ease;
  opacity: 0;
  will-change: transform;
}

body:has(.cursor-glow.active) {
  /* keep layout intact */
}

.cursor-glow.active {
  opacity: 1;
}


/* ============================================
   LETTER ROLL-IN — headline chars
============================================ */

[data-headline] {
  overflow: visible;
}

/* word-group keeps the whole word together so browser wraps
   only at word boundaries, never mid-word */
.word-group {
  display: inline-block;
  white-space: nowrap; /* chars inside must not break */
  vertical-align: bottom;
}

/* each char clips its own overflow so the slide-up is masked */
.char-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.2;
}

.char {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.3s ease;
  will-change: transform, opacity;
}

.char.in {
  transform: translateY(0);
  opacity: 1;
}

/* Magnetic button base — needs position for transform to work cleanly */
.primary-btn,
.secondary-btn,
.project-btn,
.submit-btn {
  will-change: transform;
}