/* ============================================
   Platynum v5 — Modern Split-Screen Corporate
   Asymmetric hero, bento services, big type
   Logo-derived mint palette, warm neutrals
   ============================================ */

:root {
  /* Backgrounds */
  --bg: #f4f6f4;               /* soft warm off-white */
  --bg-2: #ebefe9;             /* subtle section break */
  --bg-dark: #0e1a16;          /* deep, warm, not pure black */
  --surface: #ffffff;

  /* Mint family (from logo) */
  --mint-50:  #ebf8f1;
  --mint-100: #d1f0de;
  --mint-200: #a9e3c3;
  --mint-300: #74d1a2;
  --mint-400: #48c088;         /* primary accent */
  --mint-500: #2fa870;         /* hover state */
  --mint-600: #228a5c;

  /* Ink / text */
  --ink: #0e1a16;              /* primary text */
  --ink-2: #1f2a25;
  --text: #3a4642;
  --muted: #6d7a74;
  --light: #a4b0a8;
  --line: #dbe4de;
  --line-2: #e8edea;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(14, 26, 22, 0.04);
  --shadow-sm: 0 2px 12px rgba(14, 26, 22, 0.05);
  --shadow-md: 0 20px 50px -16px rgba(14, 26, 22, 0.15);
  --shadow-lg: 0 30px 80px -24px rgba(14, 26, 22, 0.25);
  --shadow-mint: 0 16px 40px -12px rgba(72, 192, 136, 0.45);

  /* Radii */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 36px;

  /* Type */
  --sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --serif: 'Instrument Serif', Georgia, serif;

  --max: 1320px;
  --nav-h: 72px;

  /* Gradients */
  --grad-mint: linear-gradient(135deg, #74d1a2 0%, #48c088 50%, #2fa870 100%);
  --grad-mint-soft: linear-gradient(135deg, #ebf8f1 0%, #d1f0de 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--mint-400); color: var(--ink); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

/* Shared accents */
em.text-mint, .text-mint {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--mint-500);
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1px;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-mint);
  transform: translateY(101%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-mint); color: var(--ink); }
.btn-primary:hover span { color: var(--ink); }
.btn-primary span { display: inline-block; transition: transform 0.3s ease; }
.btn-primary:hover span { transform: translateX(4px); }

.btn-lg { padding: 16px 30px; font-size: 15px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  transition: all 0.3s ease;
  background: transparent;
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding: 4px 0;
  border-radius: 0;
  transition: all 0.3s ease;
}
.btn-ghost-light:hover { border-color: var(--mint-300); color: var(--mint-200); }

/* ============ NAVIGATION ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 246, 244, 0.78);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  height: var(--nav-h);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: var(--line-2);
}
.nav-inner {
  max-width: var(--max);
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo img { height: 42px; width: auto; }

.nav-center { flex: 1; display: flex; justify-content: center; }
.nav-center > ul {
  display: flex;
  gap: 4px;
  align-items: center;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 5px;
  backdrop-filter: blur(8px);
}
.nav-center > ul > li { position: relative; }
.nav-center > ul > li > a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 9px 16px;
  border-radius: 999px;
  transition: all 0.25s ease;
}
.nav-center > ul > li > a svg { opacity: 0.5; transition: transform 0.25s ease; }
.nav-center > ul > li:hover > a { background: var(--ink); color: #fff; }
.nav-center > ul > li:hover > a svg { transform: rotate(180deg); opacity: 1; }

.submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  padding: 6px;
  min-width: 200px;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
}
.has-submenu:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu li a {
  display: block;
  padding: 10px 14px;
  font-size: 13.5px;
  color: var(--text);
  border-radius: 6px;
}
.submenu li a:hover { background: var(--mint-50); color: var(--mint-600); }

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.nav-phone svg { color: var(--mint-500); }
.nav-phone:hover { background: var(--mint-50); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ============ HERO SPLIT SCREEN ============ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  min-height: calc(100vh - var(--nav-h));
  align-items: stretch;
}

/* LEFT CONTENT AREA */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 60px 40px calc((100vw - var(--max)) / 2 + 80px);
  position: relative;
  z-index: 2;
}
@media (max-width: 1380px) {
  .hero-content { padding-left: 80px; padding-right: 48px; }
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
}
.slide-indicator {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.slide-indicator .current {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  font-weight: 400;
  color: var(--mint-500);
  line-height: 1;
}
.slide-indicator .slash {
  color: var(--light);
  font-size: 18px;
}
.slide-indicator .total {
  color: var(--muted);
  font-size: 14px;
}
.meta-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--muted);
  text-transform: uppercase;
}

/* Slides container */
.slides { position: relative; flex: 1; min-height: 400px; }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}
.slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--mint-600);
  margin-bottom: 28px;
  text-transform: uppercase;
  padding: 8px 16px;
  background: var(--mint-50);
  border: 1px solid var(--mint-100);
  border-radius: 999px;
}
.pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--mint-500);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47, 168, 112, 0.55); }
  50% { box-shadow: 0 0 0 8px rgba(47, 168, 112, 0); }
}

.slide h1 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(40px, 4.5vw, 68px);
  line-height: 1.02;
  letter-spacing: -2.4px;
  color: var(--ink);
  margin-bottom: 28px;
}
.slide h1 .h-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: lineReveal 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.slide.is-active h1 .h-line:nth-child(1) { animation-delay: 0.15s; }
.slide.is-active h1 .h-line:nth-child(2) { animation-delay: 0.3s; }
.slide.is-active h1 .h-line:nth-child(3) { animation-delay: 0.45s; }
@keyframes lineReveal {
  to { opacity: 1; transform: translateY(0); }
}
.slide h1 .italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--mint-500);
  letter-spacing: -2px;
}
.slide h1 .period {
  color: var(--mint-500);
  display: inline;
}

.lead {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 40px;
}
.lead em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--mint-500);
  font-size: 1.1em;
}

.actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero footer — progress + controls */
.hero-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}
.progress-track {
  flex: 1;
  height: 2px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.progress-fill {
  position: absolute;
  inset: 0;
  background: var(--grad-mint);
  transform-origin: left;
  transform: scaleX(0);
}
.progress-fill.animate {
  animation: progressFill 7s linear forwards;
}
@keyframes progressFill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.hero-controls { display: flex; gap: 10px; }
.ctrl {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #fff;
  transition: all 0.3s ease;
}
.ctrl:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: scale(1.05);
}

/* RIGHT VISUAL AREA — the full-bleed canvas */
.hero-visual {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--mint-50) 0%, var(--bg-2) 100%);
}

/* subtle grid texture */
.visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,26,22,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,26,22,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, #000 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, #000 40%, transparent 85%);
}

/* HUGE background wordmark */
.visual-huge-text {
  position: absolute;
  top: 14%;
  left: -8%;
  right: -8%;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(100px, 14vw, 200px);
  line-height: 0.8;
  letter-spacing: -6px;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(72, 192, 136, 0.22);
  text-stroke: 1.2px rgba(72, 192, 136, 0.22);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  overflow: hidden;
}

/* Decorative SVG ornaments */
.orn {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.orn-arc {
  width: 160px;
  height: 160px;
  top: 8%;
  right: 6%;
  color: var(--mint-400);
  opacity: 0.5;
  animation: spinSlow 40s linear infinite;
}
.orn-star {
  width: 36px;
  height: 36px;
  top: 10%;
  left: 8%;
  color: var(--ink);
  animation: gentleFloat 4s ease-in-out infinite;
}
.orn-plus {
  width: 34px;
  height: 34px;
  bottom: 12%;
  left: 8%;
  color: var(--mint-500);
  animation: gentleFloat 5s ease-in-out infinite;
  animation-delay: 1s;
}
.orn-dot {
  position: absolute;
  border-radius: 50%;
}
.orn-dot-1 {
  width: 14px;
  height: 14px;
  background: var(--mint-500);
  top: 20%;
  right: 18%;
  z-index: 3;
}
.orn-dot-2 {
  width: 10px;
  height: 10px;
  background: var(--ink);
  bottom: 14%;
  right: 10%;
  z-index: 3;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* THE MASKED IMAGE — dominant visual, properly centered */
.visual-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(88%, 680px);
  height: min(88%, 640px);
  z-index: 3;
  will-change: transform;
}
.image-clip {
  position: relative;
  width: 100%;
  height: 100%;
  clip-path: url(#blobMask);
  -webkit-clip-path: url(#blobMask);
  overflow: hidden;
  filter: drop-shadow(0 40px 60px rgba(14, 26, 22, 0.25));
}
.image-clip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.image-clip img.is-active { opacity: 1; }

/* Floating badges on image */
.badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: 0 20px 40px -8px rgba(14, 26, 22, 0.22);
  animation: gentleFloat 6s ease-in-out infinite;
  z-index: 4;
}
.badge-1 {
  top: 14%;
  left: -12%;
  animation-delay: 0s;
}
.badge-2 {
  bottom: 16%;
  right: -10%;
  animation-delay: 1.5s;
}
.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--grad-mint);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.badge-icon-dark {
  background: var(--ink);
}
.badge strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.5px;
  line-height: 1;
}
.badge .plus {
  font-size: 18px;
  font-weight: 700;
  color: var(--mint-500);
  margin-left: 2px;
}
.badge small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0.3px;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 20px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 5;
  animation: gentleFloat 3s ease-in-out infinite;
}
.scroll-hint svg { color: var(--mint-500); }

/* ============ TRUSTED BY — LOGO STRIP ============ */
.trust-strip {
  background: #fff;
  padding: 56px 0 48px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.trust-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  margin: 0 0 32px;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 56px;
  row-gap: 36px;
}

.trust-logos img {
  height: 56px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8);
  opacity: 0.55;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.trust-logos img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .trust-strip { padding: 44px 0 36px; }
  .trust-logos { gap: 32px; row-gap: 28px; }
  .trust-logos img { height: 44px; max-width: 110px; }
}

/* ============ MARQUEE STRIP ============ */
.marquee-strip {
  background: var(--ink);
  color: #fff;
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.marquee { overflow: hidden; }
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: marqueeRoll 45s linear infinite;
  padding-left: 40px;
}
.marquee-track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.3px;
}
.marquee-track i {
  color: var(--mint-400);
  font-style: normal;
  font-size: 14px;
}
@keyframes marqueeRoll { to { transform: translateX(-50%); } }

/* ============ SECTION HEAD (SHARED) ============ */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}
.section-head.center {
  display: block;
  text-align: center;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--mint-600);
  margin-bottom: 22px;
  text-transform: uppercase;
  padding: 8px 16px;
  background: var(--mint-50);
  border: 1px solid var(--mint-100);
  border-radius: 999px;
}
.section-tag.light {
  background: rgba(255,255,255,0.12);
  color: var(--mint-300);
  border-color: rgba(255,255,255,0.2);
}
.section-head h2 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(36px, 4.2vw, 62px);
  line-height: 1.02;
  color: var(--ink);
  letter-spacing: -2.2px;
  max-width: 720px;
}
.section-head.center h2 { margin: 0 auto; }
.section-head h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--mint-500);
  letter-spacing: -1.8px;
}
.head-right {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 420px;
  justify-self: end;
}
.head-sub {
  color: var(--muted);
  max-width: 540px;
  margin: 16px auto 0;
}

/* ============ SERVICES — BENTO ============ */
.services {
  padding: 130px 0;
  background: var(--bg);
  position: relative;
}
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  min-height: 480px;
}
.bento-card {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  color: var(--ink);
}

/* Mint gradient overlay that animates in on hover */
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-mint);
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}

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

.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.bento-card:hover::before { opacity: 1; }

.bento-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: auto;
  padding-bottom: 32px;
}
.card-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
  opacity: 0.3;
  letter-spacing: -1px;
  transition: color 0.45s ease, opacity 0.45s ease;
}
.bento-card:hover .card-num { color: var(--ink); opacity: 0.55; }

.card-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--mint-50);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.4s ease, background 0.45s ease;
}
.bento-card:hover .card-icon-wrap {
  transform: rotate(-6deg) scale(1.05);
  background: rgba(255,255,255,0.4);
}
.card-icon-wrap img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  transition: filter 0.45s ease;
}

.bento-card h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 12px;
  transition: color 0.45s ease;
}
.bento-card h3 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--mint-500);
  transition: color 0.45s ease;
}
.bento-card:hover h3 em { color: var(--ink); }

.bento-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 28px;
  transition: color 0.45s ease;
}
.bento-card:hover p { color: rgba(14, 26, 22, 0.75); }

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 1.3px;
  margin-top: auto;
  transition: color 0.45s ease;
}
.card-cta svg { transition: transform 0.3s ease; }
.card-cta:hover svg { transform: translateX(5px); }

/* ============ STAT BAND ============ */
.stat-band {
  background: var(--ink);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stat-band::before, .stat-band::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(80px);
}
.stat-band::before {
  top: -100px; left: -100px;
  background: radial-gradient(circle, rgba(72, 192, 136, 0.3), transparent 70%);
}
.stat-band::after {
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgba(47, 168, 112, 0.2), transparent 70%);
}
.stat-band-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}
.band-stat {
  text-align: left;
  position: relative;
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.band-stat h3 {
  font-size: 72px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -3px;
  display: inline-block;
  font-variant-numeric: tabular-nums;
}
.band-stat .plus {
  font-family: var(--serif);
  font-style: italic;
  font-size: 46px;
  font-weight: 400;
  color: var(--mint-300);
  letter-spacing: -1px;
  vertical-align: top;
  margin-left: 4px;
}
.band-stat p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-top: 12px;
}

/* ============ STATEMENT ============ */
.statement {
  padding: 160px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.statement-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 30%, rgba(72,192,136,0.3), transparent 70%),
    radial-gradient(ellipse 50% 40% at 85% 75%, rgba(72,192,136,0.2), transparent 70%);
  will-change: transform;
}
.statement-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.statement-text {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -3px;
  color: var(--ink);
  max-width: 1100px;
  margin: 0 auto;
}
.statement-text em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--mint-500);
  letter-spacing: -2.5px;
}
.statement-text span[data-reveal-line] {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.statement.in-view h2 span[data-reveal-line]:nth-child(1) { transition-delay: 0.1s; }
.statement.in-view h2 span[data-reveal-line]:nth-child(2) { transition-delay: 0.25s; }
.statement.in-view h2 span[data-reveal-line]:nth-child(3) { transition-delay: 0.4s; }
.statement.in-view h2 span[data-reveal-line] {
  opacity: 1;
  transform: translateY(0);
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 130px 0;
  background: var(--bg-2);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.t-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 32px 30px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
}
.t-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--mint-200);
}
.t-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}
.t-stars {
  color: #f5b63d;
  font-size: 15px;
  letter-spacing: 3px;
}
.t-quote-icon {
  color: var(--mint-200);
  transition: all 0.3s ease;
}
.t-card:hover .t-quote-icon { color: var(--mint-500); transform: scale(1.15); }
.t-quote {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 28px;
}
.t-person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line-2);
}
.t-person img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--mint-100);
  padding: 2px;
}
.t-person h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
  letter-spacing: -0.2px;
}
.t-person small {
  font-size: 11.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ============ PROJECTS ============ */
.projects {
  padding: 130px 0;
  background: var(--bg);
}
.project-list {
  display: flex;
  flex-direction: column;
  gap: 90px;
}
.project {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.project.reverse .project-frame { order: 2; }
.project-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 5/4;
  box-shadow: var(--shadow-md);
  will-change: transform;
}
.project-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.project-frame:hover img { transform: scale(1.05); }

.project-info {
  padding: 20px 0;
}
.project-idx {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--mint-500);
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}
.project-info p {
  font-family: var(--sans);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
}
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding-bottom: 6px;
  border-bottom: 1.5px solid var(--ink);
  transition: all 0.3s ease;
}
.project-link:hover {
  color: var(--mint-500);
  border-color: var(--mint-500);
  gap: 14px;
}

/* ============ CTA ============ */
.cta {
  padding: 130px 0;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 20% 50%, rgba(72, 192, 136, 0.35), transparent 70%),
    radial-gradient(ellipse 40% 40% at 85% 30%, rgba(47, 168, 112, 0.3), transparent 70%);
  will-change: transform;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 78px);
  line-height: 1.02;
  color: #fff;
  letter-spacing: -3px;
  margin: 14px 0 24px;
}
.cta-inner h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--mint-300);
  letter-spacing: -2.5px;
}
.cta-inner p {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.6;
}
.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding-top: 100px;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.3fr;
  gap: 60px;
  padding-bottom: 70px;
}
.f-col h5 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.f-col h5::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--mint-400);
}
.f-about .f-logo img {
  height: 46px;
  width: auto;
  margin-bottom: 22px;
  background: #fff;
  padding: 10px 14px;
  border-radius: var(--r-sm);
}
.f-col p {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 10px;
}
.f-col ul li { margin-bottom: 12px; }
.f-col a { font-size: 14px; transition: all 0.2s ease; }
.f-col ul a:hover { color: var(--mint-300); padding-left: 5px; }
.f-location { font-weight: 600; color: #fff; }

.f-socials {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}
.f-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.8);
  transition: all 0.3s ease;
}
.f-socials a:hover {
  background: var(--mint-400);
  color: var(--ink);
  transform: translateY(-3px);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.gallery img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  border-radius: var(--r-sm);
  transition: all 0.3s ease;
  filter: saturate(0.9);
}
.gallery img:hover { transform: scale(1.05); filter: saturate(1.2); }

/* Giant wordmark */
.f-giant {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(90px, 18vw, 280px);
  line-height: 0.85;
  letter-spacing: -8px;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.15);
  text-stroke: 1.5px rgba(255,255,255,0.15);
  text-align: center;
  margin: 40px 0 20px;
  user-select: none;
}
.f-giant em {
  color: var(--mint-400);
  -webkit-text-stroke: 0;
  font-style: italic;
}

.f-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.bento-card.in-view:nth-child(1) { transition-delay: 0.05s; }
.bento-card.in-view:nth-child(2) { transition-delay: 0.15s; }
.bento-card.in-view:nth-child(3) { transition-delay: 0.25s; }
.bento-card.in-view:nth-child(4) { transition-delay: 0.35s; }
.t-card.in-view:nth-child(1) { transition-delay: 0.05s; }
.t-card.in-view:nth-child(2) { transition-delay: 0.15s; }
.t-card.in-view:nth-child(3) { transition-delay: 0.25s; }
.band-stat.in-view:nth-child(1) { transition-delay: 0.05s; }
.band-stat.in-view:nth-child(2) { transition-delay: 0.15s; }
.band-stat.in-view:nth-child(3) { transition-delay: 0.25s; }
.band-stat.in-view:nth-child(4) { transition-delay: 0.35s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1180px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .stat-band-inner { grid-template-columns: repeat(2, 1fr); gap: 60px 40px; }
  .section-head { grid-template-columns: 1fr; gap: 20px; text-align: center; justify-items: center; }
  .section-head h2 { margin: 0 auto; }
  .head-left { display: flex; flex-direction: column; align-items: center; }
  .head-right { justify-self: center; text-align: center; max-width: 560px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-content {
    padding: 32px 24px 40px;
    text-align: center;
    align-items: center;
  }
  .hero-content .hero-meta,
  .hero-content .hero-footer { width: 100%; }
  .hero-content .hero-meta { justify-content: center; gap: 16px; }
  .hero-cta { justify-content: center; }
  .slide h1 { text-align: center; font-size: clamp(48px, 7.5vw, 68px); letter-spacing: -1.8px; }
  .hero-lead { margin-left: auto; margin-right: auto; max-width: 520px; font-size: 1rem; line-height: 1.65; }

  .hero-visual { min-height: auto; }
  .visual-image {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .image-clip {
    clip-path: none;
    -webkit-clip-path: none;
    border-radius: 0;
    filter: none;
  }
  .badge-1 { left: 4%; }
  .badge-2 { right: 4%; }
  .scroll-hint { display: none; }
  .nav-center { display: none; }
  .nav-phone { display: none; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-center {
    display: none;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    background: #fff;
    padding: 16px;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-md);
  }
  .nav-center.open { display: flex; }
  .nav-center > ul {
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
    background: none;
    border: none;
    padding: 0;
    width: 100%;
  }
  .nav-center > ul > li > a { justify-content: space-between; padding: 12px 16px; }

  .slides { position: relative; min-height: auto; }
  .slide { position: relative; opacity: 1; transform: none; display: none; pointer-events: auto; }
  .slide.is-active { display: block; }
  .slide h1 .h-line { animation: none; opacity: 1; transform: none; }
  .visual-image { width: 100%; aspect-ratio: 4 / 3; }
  .badge-1 { top: 10%; left: 6%; padding: 10px 14px; }
  .badge-2 { bottom: 14%; right: 6%; padding: 10px 14px; }
  .badge strong { font-size: 18px; }
  .orn-arc { width: 120px; height: 120px; }
  .visual-huge-text { font-size: 140px; }

  .marquee-track span { font-size: 20px; }

  .services, .testimonials, .projects, .cta { padding: 80px 0; }
  .statement { padding: 100px 0; }
  .bento { grid-template-columns: 1fr; }

  .stat-band { padding: 60px 0; }
  .stat-band-inner { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .band-stat h3 { font-size: 52px; }
  .band-stat .plus { font-size: 32px; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .project, .project.reverse { grid-template-columns: 1fr; gap: 24px; }
  .project.reverse .project-frame { order: 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .f-bottom { justify-content: center; text-align: center; flex-direction: column; gap: 8px; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  [data-parallax] { transform: none !important; }
}
