/* ==========================================================
   RSH MARKETING — styles
   Sleek · Professional · Quirky
   ========================================================== */

:root {
  --ink: #0B0B0F;
  --ink-2: #16161C;
  --ink-3: #22222A;
  --paper: #F6F5F1;
  --paper-2: #EFEDE6;
  --lime: #C6FF4B;
  --lime-d: #7BE000;
  --coral: #FF6B57;
  --grey: #6B6B75;
  --grey-light: #B8B8C0;
  --border: rgba(11,11,15,0.08);
  --border-dark: rgba(255,255,255,0.08);
  --shadow-sm: 0 2px 10px rgba(11,11,15,0.04);
  --shadow-md: 0 8px 40px rgba(11,11,15,0.08);
  --shadow-lg: 0 20px 60px rgba(11,11,15,0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.italic { font-family: var(--font-display); font-style: italic; font-weight: 400; letter-spacing: -0.02em; }

/* -------- CURSOR GLOW -------- */
.cursor-glow {
  position: fixed;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,255,75,0.25), transparent 60%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
  mix-blend-mode: multiply;
  filter: blur(20px);
}

/* -------- MARQUEE -------- */
.marquee-top {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: 10px 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--ink-3);
  position: relative;
  z-index: 10;
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee-track span:not(:nth-child(even)) { color: var(--lime); }
.marquee-track span:nth-child(even) { color: var(--grey); font-size: 8px; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* -------- NAV -------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(246,245,241,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.logo-wrap { display: flex; align-items: center; }
.logo { height: 42px; }
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--ink);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-burger { display: none; }
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 11, 15, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  z-index: 98;
  transition: opacity 0.3s var(--ease);
}
.nav-backdrop.open { opacity: 1; }
.drawer-cta { display: none !important; }

/* -------- BUTTONS -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  font-family: inherit;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(198,255,75,0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn-lg { padding: 16px 30px; font-size: 15px; }
.btn-block { width: 100%; justify-content: center; }
.btn .arrow, .btn span { transition: transform 0.25s var(--ease); display: inline-block; }
.btn:hover .arrow, .btn:hover span { transform: translateX(4px); }

/* -------- HERO -------- */
.hero {
  position: relative;
  padding: 80px 40px 120px;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-bg {
  position: absolute; inset: 0;
  overflow: hidden;
  z-index: 0;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float 20s ease-in-out infinite;
}
.blob-1 {
  width: 500px; height: 500px;
  background: var(--lime);
  top: -100px; right: -100px;
}
.blob-2 {
  width: 400px; height: 400px;
  background: var(--coral);
  bottom: -150px; left: 10%;
  opacity: 0.3;
  animation-delay: -10s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.08); }
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--paper);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 32px;
  animation: slideDown 0.8s var(--ease);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(198,255,75,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(198,255,75,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(198,255,75,0); }
  100% { box-shadow: 0 0 0 0 rgba(198,255,75,0); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin-bottom: 32px;
  animation: slideUp 1s var(--ease) 0.1s both;
}
.hero-title .italic { font-weight: 400; }
.hero-title .highlight {
  position: relative;
  display: inline-block;
}
.hero-title .highlight::before {
  content: '';
  position: absolute;
  left: -8px; right: -8px;
  bottom: 6px;
  height: 32%;
  background: var(--lime);
  z-index: -1;
  transform: skew(-4deg);
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--grey);
  max-width: 620px;
  margin-bottom: 40px;
  animation: slideUp 1s var(--ease) 0.3s both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 80px;
  animation: slideUp 1s var(--ease) 0.5s both;
}

.hero-meta {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  animation: slideUp 1s var(--ease) 0.7s both;
}
.meta-item { position: relative; }
.meta-num {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  display: inline-block;
}
.meta-unit {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  display: inline-block;
}
.meta-lbl {
  font-size: 12px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
  font-weight: 500;
}
.meta-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--grey);
  font-weight: 500;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--grey);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -40px; left: 0;
  width: 100%;
  height: 40px;
  background: var(--ink);
  animation: scroll 2s ease-in-out infinite;
}
@keyframes scroll {
  0% { top: -40px; }
  100% { top: 40px; }
}

/* -------- LOGO BAR -------- */
.logos {
  padding: 60px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.logos-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--grey);
  font-weight: 600;
  margin-bottom: 32px;
}
.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 48px 72px;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.logos-row:hover { opacity: 1; }
.logo-item {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: transform 0.3s var(--ease);
}
.logo-item:nth-child(2) { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 28px; }
.logo-item:nth-child(2) span { font-size: 16px; color: var(--grey); }
.logo-item:nth-child(4) { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 24px; }
.logo-item:nth-child(5) { font-family: monospace; letter-spacing: 0.1em; }
.logo-item:nth-child(6) { font-family: var(--font-display); font-style: italic; }

/* -------- SECTIONS -------- */
.section-head {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--grey);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.eyebrow.light { color: var(--grey-light); }
.section-title {
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 20px;
}
.section-title.light { color: var(--paper); }
.section-sub {
  font-size: 18px;
  color: var(--grey);
  max-width: 540px;
  margin: 0 auto;
}

/* -------- SERVICES -------- */
.services {
  padding: 140px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px 32px;
  transition: transform 0.4s var(--ease), border-color 0.3s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}
.service-card::before {
  content: attr(data-num);
  position: absolute;
  top: 32px; right: 32px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  font-weight: 400;
  color: var(--grey-light);
  letter-spacing: 0.02em;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--paper-2);
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  transition: all 0.4s var(--ease);
}
.service-card:hover .service-icon {
  background: var(--ink);
  color: var(--lime);
  border-color: var(--ink);
  transform: rotate(-4deg);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  line-height: 1.15;
}
.service-card > p {
  color: var(--grey);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.6;
  flex-grow: 1;
}
.service-card ul {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.service-card ul li {
  font-size: 14px;
  padding: 7px 0;
  color: var(--ink);
  position: relative;
  padding-left: 22px;
  font-weight: 500;
}
.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 1.5px;
  background: var(--grey-light);
  transition: all 0.3s var(--ease);
}
.service-card:hover ul li::before {
  width: 16px;
  background: var(--lime-d);
}

/* Featured (most booked) card — dark, premium */
.service-card-featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.service-card-featured::before { color: var(--grey); }
.service-card-featured h3 { color: var(--paper); }
.service-card-featured > p { color: var(--grey-light); }
.service-card-featured ul { border-color: var(--ink-3); }
.service-card-featured ul li { color: var(--paper); }
.service-card-featured ul li::before { background: var(--lime); }
.service-card-featured .service-icon {
  background: var(--ink-2);
  color: var(--lime);
  border-color: var(--ink-3);
}
.service-card-featured:hover .service-icon {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}
.service-card-featured:hover { border-color: var(--ink); }

.featured-tag {
  position: absolute;
  top: 32px; left: 32px;
  background: transparent;
  color: var(--lime);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.featured-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(198,255,75,0.7);
  animation: pulse 2s infinite;
}
.service-card-featured .service-icon { margin-top: 20px; }

/* -------- PROCESS -------- */
.process {
  padding: 140px 40px;
  background: var(--paper-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 220px;
  background: var(--paper);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink);
}
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-style: italic;
  color: var(--lime-d);
  font-weight: 400;
  margin-bottom: 14px;
  line-height: 1;
}
.step h4 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.5;
}
.step-arrow {
  display: flex;
  align-items: center;
  color: var(--grey-light);
  font-size: 24px;
  font-weight: 300;
}

/* -------- RESULTS -------- */
.results {
  padding: 140px 40px;
  background: var(--ink);
  color: var(--paper);
}
.results-grid {
  max-width: 1200px;
  margin: 0 auto 100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--ink-3);
  border: 1px solid var(--ink-3);
  border-radius: var(--radius);
  overflow: hidden;
}
.result-card {
  background: var(--ink);
  padding: 50px 36px;
  transition: background 0.3s;
}
.result-card:hover { background: var(--ink-2); }
.result-big {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--lime);
  margin-bottom: 16px;
  font-feature-settings: "tnum";
}
.result-label {
  font-size: 13px;
  color: var(--grey-light);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

/* -------- TESTIMONIAL -------- */
.testimonial {
  max-width: 860px;
  margin: 0 auto;
  padding: 50px 40px;
  background: var(--ink-2);
  border-radius: var(--radius);
  position: relative;
  border: 1px solid var(--ink-3);
}
.quote-mark {
  position: absolute;
  top: 10px; left: 40px;
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--lime);
  line-height: 1;
  opacity: 0.4;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4;
  font-weight: 400;
  color: var(--paper);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.quote-text em {
  color: var(--lime);
  font-style: italic;
}
.quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.author-name { font-weight: 600; font-size: 14px; }
.author-role { font-size: 13px; color: var(--grey-light); }

/* -------- ABOUT -------- */
.about {
  padding: 140px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-copy .eyebrow { text-align: left; }
.about-copy .section-title { text-align: left; margin-bottom: 30px; }
.about-copy p {
  font-size: 17px;
  color: var(--grey);
  margin-bottom: 20px;
  max-width: 520px;
  line-height: 1.6;
}
.about-signature {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink) !important;
  font-size: 22px !important;
  margin-top: 30px !important;
}
.about-visual {
  position: relative;
}
.about-card {
  background: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
  transition: transform 0.4s var(--ease);
}
.about-card:hover { transform: rotate(0deg) scale(1.02); }
.about-card-header {
  background: var(--ink-2);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--ink-3);
}
.about-card-header span {
  margin-left: 12px;
  font-family: monospace;
  font-size: 12px;
  color: var(--grey-light);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #FF5F57; }
.dot.yellow { background: #FEBC2E; }
.dot.green { background: #28C840; }
.about-card-body { padding: 28px; font-family: monospace; font-size: 13px; color: var(--paper); }
.mono { line-height: 1.9; }
.mono-dim { color: var(--lime); margin-right: 8px; }

/* -------- FAQ -------- */
.faq {
  padding: 140px 40px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-list {
  margin-top: 40px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  list-style: none;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--lime-d); }
.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--grey);
  transition: transform 0.3s var(--ease);
}
.faq-item[open] .faq-icon { transform: rotate(45deg); color: var(--ink); }
.faq-item p {
  color: var(--grey);
  font-size: 16px;
  margin-top: 16px;
  max-width: 720px;
  line-height: 1.6;
  animation: fadeSlide 0.4s var(--ease);
}
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* -------- CTA -------- */
.cta {
  padding: 140px 40px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  border-top: 1px solid var(--border);
}
.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cta-inner .eyebrow { margin-bottom: 20px; }
.cta-title {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 20px;
}
.cta-sub {
  color: var(--grey);
  font-size: 18px;
  margin-bottom: 48px;
}

.contact-form {
  text-align: left;
  background: var(--paper);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.form-row .form-field { margin-bottom: 0; }
.form-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--paper-2);
  color: var(--ink);
  transition: all 0.2s;
  outline: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--grey-light); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--ink);
  background: var(--paper);
}
.form-field textarea { resize: vertical; min-height: 100px; font-family: inherit; }
.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--grey);
  margin-top: 16px;
}

/* -------- FOOTER -------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 40px 30px;
}
.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand p {
  color: var(--grey-light);
  font-size: 15px;
  max-width: 320px;
  margin-top: 20px;
  line-height: 1.6;
}
.footer-logo {
  height: 40px;
  filter: invert(1);
}
.footer-col h5 {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--lime);
  font-weight: 600;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.footer-col a, .footer-col p {
  display: block;
  color: var(--grey-light);
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
  line-height: 1.6;
}
.footer-col a:hover { color: var(--lime); }
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--ink-3);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--grey);
}
.footer-quirk { font-family: var(--font-display); font-style: italic; font-size: 15px; }

/* -------- REVEAL ANIMATION -------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* -------- RESPONSIVE -------- */
@media (hover: none) and (pointer: coarse) {
  .cursor-glow { display: none; }
}

/* Tablet */
@media (max-width: 1024px) {
  .services, .process, .results, .about, .faq, .cta { padding: 110px 24px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: span 3; }
}

/* Mobile */
@media (max-width: 768px) {
  .nav { padding: 14px 20px; }
  .logo { height: 34px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px; height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  .nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
    transform-origin: center;
  }
  .nav-burger.open span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav-burger.open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

  /* Mobile drawer */
  .nav-links {
    display: flex !important;
    position: fixed;
    top: 0; right: 0;
    width: min(84vw, 340px);
    height: 100dvh;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    padding: 90px 32px 32px;
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 99;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links a::after { display: none; }
  .nav-backdrop { display: block; }
  .drawer-cta {
    display: inline-flex !important;
    margin-top: 28px;
    justify-content: center;
    padding: 16px 24px;
    font-size: 15px;
    border-bottom: none !important;
  }

  /* Hero — centred on mobile */
  .hero { padding: 50px 20px 72px; min-height: auto; text-align: center; }
  .hero-inner { display: flex; flex-direction: column; align-items: center; }
  .hero-title { font-size: clamp(38px, 10.5vw, 58px); margin-bottom: 20px; }
  .hero-title .highlight::before { left: -4px; right: -4px; height: 28%; bottom: 4px; }
  .hero-sub { font-size: 16px; margin-bottom: 32px; max-width: 520px; }
  .hero-ctas {
    gap: 10px;
    margin-bottom: 48px;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 340px;
  }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .badge { font-size: 12px; padding: 7px 14px; margin-bottom: 24px; }
  .hero-meta {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-top: 8px;
    padding: 0;
    width: 100%;
    max-width: 380px;
  }
  .meta-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 4px;
    text-align: left;
    border-bottom: 1px solid var(--border);
  }
  .meta-item:last-child { border-bottom: none; }
  .meta-num, .meta-unit {
    font-size: 32px;
    letter-spacing: -0.04em;
    font-weight: 800;
    line-height: 1;
    order: 2;
  }
  .meta-unit { margin-left: -6px; }
  .meta-lbl {
    font-size: 11px;
    margin-top: 0;
    letter-spacing: 0.1em;
    line-height: 1.3;
    order: 1;
    flex: 1;
    text-align: left;
  }
  .meta-divider { display: none; }
  .blob-1 { width: 300px; height: 300px; top: -50px; right: -100px; }
  .blob-2 { width: 250px; height: 250px; bottom: -100px; left: -50px; }
  .scroll-hint { display: none; }

  /* Logos */
  .logos { padding: 48px 20px; }
  .logos-label { font-size: 10px; margin-bottom: 28px; line-height: 1.5; max-width: 320px; margin-left: auto; margin-right: auto; }
  .logos-row { gap: 24px 36px; justify-content: center; }
  .logo-item { font-size: 14px; }
  .logo-item:nth-child(2) { font-size: 20px; }
  .logo-item:nth-child(4) { font-size: 18px; }

  /* Sections */
  .services, .process, .about, .faq, .cta { padding: 80px 20px; }
  .results { padding: 80px 20px; }
  .section-head { margin-bottom: 48px; }
  .section-title { font-size: clamp(32px, 9vw, 48px); }
  .section-sub { font-size: 16px; }
  .eyebrow { font-size: 11px; margin-bottom: 14px; }

  /* Services */
  .service-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { padding: 28px 24px; }
  .service-card h3 { font-size: 20px; }
  .service-card > p { font-size: 14px; }
  .service-icon { width: 48px; height: 48px; margin-bottom: 20px; }
  .service-icon svg { width: 22px; height: 22px; }

  /* Process */
  .steps { flex-direction: column; gap: 12px; }
  .step { width: 100%; min-width: 0; padding: 28px 24px; }
  .step-num { font-size: 38px; margin-bottom: 10px; }
  .step h4 { font-size: 18px; }
  .step-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
    justify-content: center;
    font-size: 20px;
    padding: 4px 0;
  }

  /* Results */
  .results-grid {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 56px;
  }
  .result-card { padding: 32px 24px; }
  .result-big { font-size: clamp(36px, 9vw, 48px); margin-bottom: 10px; }
  .result-label { font-size: 12px; }

  /* Testimonial */
  .testimonial { padding: 36px 24px; }
  .quote-mark { font-size: 80px; top: 0; left: 20px; }
  .quote-text { font-size: 19px; line-height: 1.45; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-copy .section-title { text-align: left; }
  .about-copy p { font-size: 16px; }
  .about-card { transform: rotate(0); }
  .about-card-header span {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .about-card-body { padding: 22px; font-size: 12px; }

  /* FAQ */
  .faq { padding: 80px 20px; }
  .faq-item { padding: 20px 0; }
  .faq-item summary { font-size: 16px; gap: 16px; }
  .faq-item p { font-size: 14px; margin-top: 12px; }
  .faq-icon { font-size: 22px; flex-shrink: 0; }

  /* CTA */
  .cta-title { font-size: clamp(30px, 8.5vw, 44px); }
  .cta-sub { font-size: 16px; margin-bottom: 36px; }
  .contact-form { padding: 28px 20px; border-radius: var(--radius-sm); }
  .form-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
  .form-row .form-field { margin-bottom: 18px; }
  .form-field input,
  .form-field select,
  .form-field textarea { font-size: 16px; padding: 14px; }

  /* Footer */
  .footer { padding: 56px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; margin-bottom: 40px; }
  .footer-grid .footer-col:last-child { grid-column: span 2; }
  .footer-brand { grid-column: span 2; }
  .footer-logo { height: 34px; }
  .footer-brand p { font-size: 14px; }
  .footer-col h5 { margin-bottom: 14px; }
  .footer-col a, .footer-col p { font-size: 13px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; font-size: 12px; }
}

/* Small phones */
@media (max-width: 420px) {
  .nav { padding: 12px 16px; }
  .logo { height: 30px; }
  .hero { padding: 40px 16px 64px; }
  .hero-title { font-size: clamp(34px, 10vw, 48px); }
  .hero-title .highlight::before { height: 28%; bottom: 3px; }
  .hero-meta { max-width: 100%; }
  .hero-meta .meta-num,
  .hero-meta .meta-unit { font-size: 28px; }
  .hero-meta .meta-lbl { font-size: 10px; }
  .services, .process, .results, .about, .faq, .cta { padding: 64px 16px; }
  .section-head { margin-bottom: 40px; }
  .section-title { font-size: clamp(28px, 9vw, 38px); }
  .cta-title { font-size: clamp(28px, 9vw, 38px); }
  .results-grid { grid-template-columns: 1fr; }
  .footer { padding: 48px 16px 20px; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .footer-grid .footer-col:last-child,
  .footer-brand { grid-column: span 1; }
  .logos { padding: 40px 16px; }
  .logos-row { gap: 20px 28px; }
  .featured-tag { top: 20px; left: 24px; }
  .service-card::before { top: 20px; right: 24px; }
  .service-card-featured h3 { margin-top: 12px; }
}

/* Prevent horizontal overflow on very small screens */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; max-width: 100vw; }
}
