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

:root {
  --cream: #faf9f7;
  --white: #ffffff;
  --ink: #1a1a18;
  --ink-60: rgba(26,26,24,0.6);
  --ink-20: rgba(26,26,24,0.12);
  --accent: #b8a898;
  --accent-dark: #8a7a6a;
  --gold: #c4a882;

  /* Pastel / earth palette */
  --sage: #7a9e87;
  --sage-light: #edf4f0;
  --sage-mid: #d4e8dc;
  --terracotta: #c4846a;
  --terracotta-light: #f5ede8;
  --clay-light: #f5eddf;
  --amber-light: #f6f2e6;
  --blush-light: #f5ece9;
  --mist-light: #eceff6;
  --teal-light: #e8f2f0;
  --moss: #6d8a74;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 2px;
  --section-pad: clamp(80px, 10vw, 140px);
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: visible;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; }
.hero-title { font-family: var(--font-serif); font-weight: 300; }
p { color: var(--ink-60); }
a { text-decoration: none; color: inherit; }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 64px); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans); font-size: 13px; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer; transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink); color: var(--white); border-color: var(--ink);
}
.btn-primary:hover { background: #333; border-color: #333; transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--ink-20);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-outline {
  background: transparent; color: var(--ink); border-color: var(--ink-20);
}
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }
.btn-sm { padding: 10px 24px; font-size: 12px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px clamp(24px, 5vw, 64px);
  transition: all 0.4s var(--ease-out);
}
.nav.scrolled {
  background: rgba(250,249,247,0.92);
  backdrop-filter: blur(12px);
  padding: 16px clamp(24px, 5vw, 64px);
  border-bottom: 1px solid var(--ink-20);
}
.nav-logo {
  display: flex; flex-direction: column; align-items: center;
  gap: 2px; line-height: 1; text-decoration: none;
}
.nl-main {
  font-family: var(--font-display); font-size: 22px; font-weight: 400;
  letter-spacing: 0.08em; color: var(--ink);
}
.nl-byline {
  display: flex; align-items: center; gap: 7px;
}
.nl-rule {
  width: 20px; height: 1px; background: var(--ink); opacity: 0.35;
}
.nl-studio {
  font-family: var(--font-sans); font-size: 7px; font-weight: 400;
  letter-spacing: 0.38em; color: var(--ink); opacity: 0.75;
}
.nl-sub {
  font-family: var(--font-sans); font-size: 6px; font-weight: 400;
  letter-spacing: 0.28em; color: var(--ink); opacity: 0.5;
}
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }

/* Language switcher */
.lang-wrap {
  display: flex; align-items: center;
  border: 1px solid var(--ink-20); border-radius: 100px;
  background: var(--white);
  box-shadow: 0 1px 6px rgba(26,26,24,0.06);
  transition: border-color 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
  overflow: hidden;
}
.lang-wrap:hover { border-color: rgba(26,26,24,0.3); box-shadow: 0 2px 10px rgba(26,26,24,0.1); }
.lang-select {
  font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.06em;
  color: var(--ink); background: transparent;
  border: none; padding: 8px 28px 8px 14px; cursor: pointer; outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%231a1a18' opacity='.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
}
.nav-links a {
  font-size: 13px; letter-spacing: 0.06em; color: var(--ink-60);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  color: var(--ink) !important;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
}
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 1px; background: var(--ink); transition: all 0.3s; }
.nav-burger.open span:first-child { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:last-child { transform: translateY(-6px) rotate(-45deg); }

/* ── Mobile Menu ── */
.mobile-menu {
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  position: fixed; inset: 0; z-index: 99;
  background: var(--cream);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-link {
  font-family: var(--font-serif); font-size: clamp(32px, 8vw, 48px); font-weight: 300;
  color: var(--ink); letter-spacing: 0.02em;
  transform: translateY(20px); opacity: 0;
  transition: all 0.4s var(--ease);
}
.mobile-menu.open .mobile-link { transform: translateY(0); opacity: 1; }
.mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.25s; }

/* ── Hero ── */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px 0 80px;
  position: relative; overflow: hidden;
  background: var(--cream);
}

/* Giant watermark */
.hero-mark {
  position: absolute;
  font-family: var(--font-serif);
  font-size: clamp(160px, 28vw, 400px);
  font-weight: 300; letter-spacing: -0.04em; line-height: 1;
  color: var(--ink); opacity: 0.04;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap; pointer-events: none; user-select: none;
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative; z-index: 1;
  padding: 0 clamp(24px, 5vw, 64px);
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

/* Left content */
.hero-content { text-align: left; }
.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-dark); margin-bottom: 20px; display: block;
}
.hero-title {
  font-size: clamp(48px, 6.5vw, 90px);
  font-weight: 300; line-height: 1.0;
  margin-bottom: 20px; letter-spacing: -0.025em; color: var(--ink);
}
.hero-title em { font-style: italic; color: var(--accent-dark); }
.hero-sub {
  font-size: 15px; line-height: 1.75;
  color: var(--ink-60); margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

/* Social proof */
.hero-proof {
  display: flex; align-items: center; gap: 12px;
}
.proof-avatars { display: flex; }
.av {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -8px;
}
.av:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, #c47d62, #e8a880); }
.av2 { background: linear-gradient(135deg, #8aaa96, #b0ccba); }
.av3 { background: linear-gradient(135deg, #9b7b8f, #c4a0b8); }
.av4 { background: linear-gradient(135deg, #6a8a9a, #90b0c0); }
.hero-proof p { font-size: 13px; color: var(--ink-60); }
.hero-proof strong { color: var(--ink); font-weight: 500; }

/* ── Card Composition ── */
.hero-cards {
  position: relative;
  height: clamp(380px, 55vh, 560px);
}

/* Base card styles */
.hcard {
  position: absolute;
  width: clamp(200px, 22vw, 300px);
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,26,24,0.10), 0 4px 16px rgba(26,26,24,0.06);
  transition: transform 0.4s var(--ease);
}
.hcard { text-decoration: none; display: block; cursor: pointer; }
.hcard-1:hover { transform: rotate(-6deg) translateY(-8px) scale(1.02); }
.hcard-2:hover { transform: translateX(-50%) rotate(2deg) translateY(-5px); }
.hcard-3:hover { transform: rotate(5deg) translateY(-8px) scale(1.02); }
.hcard:hover .hcard-overlay { opacity: 1; }
.hcard:hover .hcard-name { transform: translateY(0); }
.hcard:hover .hcard-view { transform: translateY(0); opacity: 1; }

/* Hover overlay */
.hcard-overlay {
  position: absolute; inset: 0;
  background: rgba(26,26,24,0.72);
  backdrop-filter: blur(2px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  border-radius: 12px;
}
.hcard-name {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300; color: white;
  letter-spacing: 0.02em;
  transform: translateY(8px);
  transition: transform 0.35s var(--ease);
}
.hcard-view {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transform: translateY(6px); opacity: 0;
  transition: transform 0.35s var(--ease) 0.05s, opacity 0.35s var(--ease) 0.05s;
}

.hcard-1 {
  left: 0; top: 40px;
  transform: rotate(-6deg);
  z-index: 1;
  animation: cardFloat1 8s ease-in-out infinite;
}
.hcard-2 {
  left: 50%; top: 0;
  transform: translateX(-50%) rotate(2deg);
  z-index: 3;
  animation: cardFloat2 7s ease-in-out infinite;
}
.hcard-3 {
  right: 0; top: 60px;
  transform: rotate(5deg);
  z-index: 2;
  animation: cardFloat3 9s ease-in-out infinite;
}

@keyframes cardFloat1 {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-6deg) translateY(-14px); }
}
@keyframes cardFloat2 {
  0%, 100% { transform: translateX(-50%) rotate(2deg) translateY(0); }
  50% { transform: translateX(-50%) rotate(2deg) translateY(-10px); }
}
@keyframes cardFloat3 {
  0%, 100% { transform: rotate(5deg) translateY(0); }
  50% { transform: rotate(5deg) translateY(-18px); }
}

/* Card internals */
.hcard-nav {
  padding: 10px 12px;
  display: flex; gap: 5px; align-items: center;
  border-bottom: 1px solid rgba(26,26,24,0.05);
}
.hcard-nav span {
  width: 7px; height: 7px; border-radius: 50%;
}
.hcard-1 .hcard-nav span:nth-child(1) { background: #ff6057; }
.hcard-1 .hcard-nav span:nth-child(2) { background: #febc2e; }
.hcard-1 .hcard-nav span:nth-child(3) { background: #28c840; }
.hcard-2 .hcard-nav span:nth-child(1) { background: #ff6057; }
.hcard-2 .hcard-nav span:nth-child(2) { background: #febc2e; }
.hcard-2 .hcard-nav span:nth-child(3) { background: #28c840; }
.hcard-3 .hcard-nav span:nth-child(1) { background: #ff6057; }
.hcard-3 .hcard-nav span:nth-child(2) { background: #febc2e; }
.hcard-3 .hcard-nav span:nth-child(3) { background: #28c840; }

.hcard-hero { padding: 18px 14px 14px; }
.hch-1 { background: linear-gradient(135deg, #c47d62 0%, #b89079 50%, #9aab98 100%); }
.hch-2 { background: linear-gradient(135deg, #9b7b8f 0%, #b89aac 50%, #c4a8bc 100%); }
.hch-3 { background: linear-gradient(135deg, #6a8a7a 0%, #8aaa96 50%, #a8c4b0 100%); }

.hch-lines { display: flex; flex-direction: column; gap: 6px; margin-bottom: 10px; }
.hch-l { height: 8px; border-radius: 2px; background: rgba(255,255,255,0.85); }
.hch-l.lg { width: 70%; }
.hch-l.md { width: 50%; background: rgba(255,255,255,0.6); }
.hch-l.sm { width: 35%; background: rgba(255,255,255,0.4); }
.hch-btn { width: 48px; height: 14px; border-radius: 3px; background: rgba(255,255,255,0.9); }

.hcard-grid { display: flex; gap: 6px; padding: 10px 10px 6px; }
.hcard-grid.three { gap: 4px; }
.hcg-block { flex: 1; height: 40px; border-radius: 4px; }
.b1 { background: linear-gradient(135deg, #f0e0d4, #dcc4b0); }
.b2 { background: linear-gradient(135deg, #d4e0ec, #b8c8da); }
.c1 { background: linear-gradient(135deg, #e8d0dc, #d0b4c4); }
.c2 { background: linear-gradient(135deg, #d0d8e8, #b8c4d8); }
.c3 { background: linear-gradient(135deg, #d8e8d4, #bcceb8); }
.d1 { background: linear-gradient(135deg, #d8e8d8, #bcd0bc); }
.d2 { background: linear-gradient(135deg, #e8e0cc, #d0c8a8); }

.hcard-foot { padding: 8px 12px 12px; display: flex; flex-direction: column; gap: 5px; }
.hcf-line { height: 5px; width: 60%; background: var(--ink-20); border-radius: 2px; }
.hcf-line.sm { width: 38%; background: rgba(26,26,24,0.07); }

/* Floating chips */
.chip {
  position: absolute;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(26,26,24,0.13);
  z-index: 4;
}
.chip-stat {
  bottom: 20px; left: 10px;
  padding: 14px 18px;
  text-align: center;
  background: var(--ink);
  animation: cardFloat3 8s ease-in-out infinite;
  animation-delay: -3s;
}
.chip-stat strong {
  display: block; font-family: var(--font-serif);
  font-size: 26px; font-weight: 300; color: white; line-height: 1;
}
.chip-stat span { font-size: 10px; color: rgba(255,255,255,0.55); letter-spacing: 0.05em; white-space: nowrap; }

.chip-live {
  top: 10px; left: -10px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  animation: cardFloat1 9s ease-in-out infinite;
  animation-delay: -5s;
  white-space: nowrap; z-index: 5;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4a9b6f; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(74,155,111,0.2);
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,155,111,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(74,155,111,0.1); }
}
.chip-title { font-size: 11px; font-weight: 500; color: var(--ink); line-height: 1.3; }
.chip-sub { font-size: 10px; color: var(--ink-60); }

.chip-tag {
  bottom: 30px; right: -10px;
  padding: 8px 14px;
  font-size: 11px; letter-spacing: 0.08em;
  color: var(--accent-dark);
  border: 1px solid var(--ink-20);
  animation: cardFloat2 10s ease-in-out infinite;
  animation-delay: -6s;
}

/* Hero scroll */
.hero-scroll {
  position: absolute; bottom: 32px; left: clamp(24px, 5vw, 64px);
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-60); z-index: 2;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--ink-60), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}

/* Hero responsive */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-content { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-cards { height: 340px; max-width: 480px; margin: 0 auto; }
  .hcard { width: 180px; }
  .hero-scroll { left: 50%; transform: translateX(-50%); align-items: center; }
}
.hero-eyebrow {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent-dark); margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(56px, 10vw, 120px);
  font-weight: 300; line-height: 1;
  margin-bottom: 28px; letter-spacing: -0.02em;
}
.hero-title em { font-style: italic; color: var(--accent-dark); }
.hero-sub {
  font-size: clamp(15px, 2vw, 18px); line-height: 1.7;
  color: var(--ink-60); margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.desktop-only { display: inline; }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-60);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--ink-60), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}

/* ── Marquee ── */
.marquee-wrap {
  overflow: hidden; border-top: 1px solid var(--ink-20); border-bottom: 1px solid var(--ink-20);
  padding: 18px 0; background: var(--white);
}
.marquee-track {
  display: flex; gap: 32px; white-space: nowrap;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-60); flex-shrink: 0;
}
.marquee-track .dot { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

/* ── Sections ── */
.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--white); }
.section-header { margin-bottom: clamp(48px, 7vw, 80px); }
.section-label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent-dark); margin-bottom: 16px; display: block;
}
.section-title {
  font-size: clamp(36px, 6vw, 64px); font-weight: 400;
  line-height: 1.05; letter-spacing: -0.01em; color: var(--ink);
}

/* ── Work Grid ── */
.work-swipe-hint {
  display: none; /* hidden on desktop */
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.work-card { cursor: pointer; }
.work-img {
  aspect-ratio: 4/3; position: relative; overflow: hidden;
}
.work-overlay {
  position: absolute; inset: 0;
  background: rgba(26,26,24,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.work-overlay span {
  color: var(--white); font-size: 14px; letter-spacing: 0.06em;
  transform: translateY(8px); transition: transform 0.4s var(--ease);
}
.work-card:hover .work-overlay { opacity: 1; }
.work-card:hover .work-overlay span { transform: translateY(0); }
.work-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.wp-shape {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.25);
}
.wp-s1 { width: 120px; height: 120px; top: 20%; left: 20%; }
.wp-s2 { width: 60px; height: 60px; top: 50%; right: 25%; }
.wp-s3 { width: 80px; height: 80px; bottom: 15%; left: 40%; border-radius: 4px; }
.wp-s4 { width: 100px; height: 100px; top: 30%; left: 30%; border-radius: 4px; }
.wp-s5 { width: 50px; height: 50px; bottom: 25%; right: 20%; }
.wp-s6 { width: 90px; height: 90px; top: 25%; right: 20%; }
.wp-s7 { width: 70px; height: 70px; bottom: 20%; left: 20%; border-radius: 4px; }
.wp-s8 { width: 40px; height: 40px; top: 40%; left: 50%; }
.work-info { padding: 20px 0; }
.work-info h3 { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--ink); margin-bottom: 4px; }
.work-info p { font-size: 13px; color: var(--ink-60); margin-bottom: 10px; }
.work-tag {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--moss); border: 1px solid rgba(93, 138, 114, 0.3);
  background: rgba(93, 138, 114, 0.09);
  padding: 4px 10px;
}

/* ── Services ── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; background: transparent;
}
.service-item {
  padding: clamp(32px, 4vw, 48px);
  background: var(--cream);
  border: 1px solid rgba(26,26,24,0.55);
  border-radius: 4px;
  box-shadow:
    2px 3px 0 rgba(26,26,24,0.09),
    0 6px 20px rgba(26,26,24,0.07);
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), color 0.4s var(--ease-out);
}
.service-item:hover {
  transform: translate(-1px, -3px);
  box-shadow:
    3px 6px 0 rgba(26,26,24,0.11),
    0 16px 32px rgba(26,26,24,0.1);
}
.service-item::before {
  content: ''; position: absolute; inset: 0;
  transform: translateY(100%);
  transition: transform 0.45s var(--ease);
}
.service-item:hover::before { transform: translateY(0); }
.service-item:hover h3 { color: white; }
.service-item:hover p { color: rgba(255,255,255,0.75); }
.service-item:hover .service-icon { color: white; background: rgba(255,255,255,0.15); }

.service-item:nth-child(1) { --sc: #b87055; }
.service-item:nth-child(2) { --sc: #5d8a72; }
.service-item:nth-child(3) { --sc: #b8902a; }
.service-item:nth-child(4) { --sc: #8a6880; }
.service-item:nth-child(5) { --sc: #5a6e8f; }
.service-item:nth-child(6) { --sc: #4a7e74; }
.service-item::before { background: var(--sc); }

.service-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: color-mix(in srgb, var(--sc) 12%, transparent);
  color: var(--sc); margin-bottom: 20px;
  position: relative; z-index: 1;
  transition: all 0.3s var(--ease-out);
}
.service-item h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 400;
  color: var(--ink); margin-bottom: 12px;
  position: relative; z-index: 1;
  transition: color 0.4s var(--ease-out);
}
.service-item p {
  font-size: 14px; line-height: 1.7; color: var(--ink);
  position: relative; z-index: 1;
  transition: color 0.4s var(--ease-out);
}

/* ── Pricing ── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-bottom: clamp(60px, 8vw, 100px);
}
.pricing-card {
  padding: clamp(32px, 4vw, 48px);
  border: 1px solid var(--ink-20);
  display: flex; flex-direction: column; gap: 32px;
  position: relative; background: var(--white);
  box-shadow: 0 2px 24px rgba(26,26,24,0.07);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(26,26,24,0.12); }
.pricing-featured {
  background: var(--ink); color: var(--white);
  border-color: var(--ink);
}
.pricing-featured p, .pricing-featured li { color: rgba(255,255,255,0.7); }
.pricing-featured .pricing-name, .pricing-featured .pricing-price, .pricing-featured strong { color: var(--white); }
.pricing-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--white);
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 5px 16px;
}
.pricing-name {
  font-family: var(--font-serif); font-size: 28px; font-weight: 300;
  color: var(--ink); margin-bottom: 8px;
}
.pricing-price {
  font-size: 14px; color: var(--ink-60); margin-bottom: 8px;
}
.pricing-price strong { font-size: 32px; font-family: var(--font-serif); font-weight: 300; color: var(--ink); }
.pricing-featured .pricing-price strong { color: var(--white); }
.pricing-featured .btn-outline {
  border-color: rgba(255,255,255,0.35); color: var(--white);
}
.pricing-featured .btn-outline:hover {
  background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); color: var(--white);
}
.pricing-desc { font-size: 13px; }
.pricing-features {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.pricing-features li {
  font-size: 13px; color: var(--ink-60);
  padding-left: 20px; position: relative;
}
.pricing-features li::before {
  content: '–'; position: absolute; left: 0; color: var(--gold);
}
.pricing-featured .pricing-features li { color: rgba(255,255,255,0.65); }
.pricing-featured .pricing-features li::before { color: var(--gold); }

/* Care Plans */
.care-plans { }
.care-header { margin-bottom: 40px; }
.care-header h3 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); font-weight: 400; color: var(--ink); }
.care-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.care-card {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--ink-20);
  display: flex; flex-direction: column; gap: 20px;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(26,26,24,0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.care-card:hover { transform: translateY(-5px); box-shadow: 0 20px 56px rgba(26,26,24,0.11); }
.care-featured { background: var(--white); border-color: var(--gold); border-width: 2px; }
.care-name { font-family: var(--font-serif); font-size: 22px; font-weight: 400; color: var(--ink); }
.care-price { font-size: 13px; color: var(--ink-60); }
.care-price strong { font-family: var(--font-serif); font-size: 28px; font-weight: 300; color: var(--ink); }
.care-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.care-features li { font-size: 13px; color: var(--ink-60); padding-left: 18px; position: relative; }
.care-features li::before { content: '–'; position: absolute; left: 0; color: var(--gold); }

/* ── About ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 8vw, 100px); align-items: center; }
.about-img-wrap { position: relative; }
.about-img-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #c8d8c4 0%, #b8ccb8 30%, #d4c0a8 65%, #c4a882 100%);
  position: relative; overflow: hidden;
  animation: aboutFloat 7s ease-in-out infinite;
  box-shadow: 0 20px 60px rgba(26,26,24,0.12);
}
.about-shape {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.3);
}
.as-1 { width: 200px; height: 200px; top: -40px; right: -40px; }
.as-2 { width: 120px; height: 120px; bottom: 60px; left: -30px; }
.as-3 { width: 80px; height: 80px; bottom: 20%; right: 20%; border-radius: 4px; }
.about-stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 20px;
}
.about-stat {
  padding: 20px 16px;
  background: var(--white);
  border-top: 3px solid var(--gold);
  box-shadow: 0 2px 16px rgba(26,26,24,0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.about-stat:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,26,24,0.1); }
.about-stat:nth-child(1) { border-top-color: var(--terracotta); background: rgba(180, 100, 75, 0.09); }
.about-stat:nth-child(2) { border-top-color: var(--sage); background: rgba(93, 138, 114, 0.09); }
.about-stat:nth-child(3) { border-top-color: var(--gold); background: rgba(160, 120, 70, 0.09); }
.about-stat strong { display: block; font-family: var(--font-serif); font-size: 32px; font-weight: 300; color: var(--accent-dark); }
.about-stat span { font-size: 12px; color: var(--ink-60); letter-spacing: 0.04em; }
.about-text .section-title { margin-bottom: 24px; }
.about-body { font-size: 15px; line-height: 1.8; margin-bottom: 20px; }

/* ── Contact ── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 8vw, 100px); }
.contact-left .section-title { margin-bottom: 20px; }
.contact-body { font-size: 15px; line-height: 1.8; margin-bottom: 32px; }
.contact-details { margin-bottom: 0; }
.contact-link {
  font-family: var(--font-serif); font-size: 18px;
  color: var(--ink); border-bottom: 1px solid var(--ink-20);
  padding-bottom: 4px; transition: border-color 0.2s;
}
.contact-link:hover { border-color: var(--ink); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-60); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--ink-20); background: var(--white);
  font-family: var(--font-sans); font-size: 14px; color: var(--ink);
  outline: none; transition: border-color 0.2s; resize: none;
  border-radius: var(--radius);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122,158,135,0.15);
  outline: none;
}
.form-group:focus-within label { color: var(--moss); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--ink-20); }
.form-note { font-size: 12px; color: var(--ink-60); text-align: center; }

/* ── Footer ── */
.footer {
  padding: 80px 0 48px;
  background: var(--ink);
  border-top: 3px solid var(--gold);
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; margin-bottom: 64px; flex-wrap: wrap;
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-logo { font-family: var(--font-serif); font-size: 26px; font-weight: 400; color: white; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.footer-nav a { font-size: 13px; letter-spacing: 0.06em; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-nav a:hover { color: white; }
.footer-cta-col { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.footer-cta-label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.footer-btn { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); color: white; }
.footer-btn:hover { background: white; color: var(--ink); border-color: white; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ── Tabs ── */
.tabs-bar {
  position: sticky; top: 57px; z-index: 90;
  background: rgba(250,249,247,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-20);
  border-top: 1px solid var(--ink-20);
}
.tabs-inner {
  max-width: 1300px; margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  display: flex; align-items: center; justify-content: space-between;
}
.tabs-nav { display: flex; }
.tab-btn {
  padding: 16px 24px;
  font-family: var(--font-sans); font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: none; border: none; cursor: pointer;
  color: var(--ink-60); position: relative;
  transition: color 0.2s;
}
.tab-btn::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--ink);
  transform: scaleX(0); transition: transform 0.3s var(--ease);
}
.tab-btn:hover { color: var(--ink); }
.tab-btn.active { color: var(--ink); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-cta { display: none; }
@media (min-width: 640px) { .tab-cta { display: inline-flex; } }

/* Tab panels */
.tab-panel {
  display: none;
  animation: tabFadeIn 0.4s var(--ease) forwards;
}
.tab-panel.active { display: block; }
#tab-services { background: linear-gradient(180deg, rgba(160, 120, 70, 0.09) 0%, var(--cream) 55%); }
#tab-pricing  { background: linear-gradient(180deg, rgba(160, 120, 70, 0.09) 0%, var(--cream) 55%); }
#tab-about    { background: linear-gradient(180deg, rgba(93, 138, 114, 0.09) 0%, var(--cream) 55%); }
#tab-contact  { background: linear-gradient(180deg, rgba(180, 100, 75, 0.08) 0%, var(--cream) 55%); }
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.tp-inner { padding-top: clamp(48px, 6vw, 80px); padding-bottom: clamp(48px, 6vw, 80px); }
.tp-header { margin-bottom: clamp(32px, 5vw, 56px); }
.tp-header-row { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 24px; }

.care-header {
  margin-top: clamp(48px, 7vw, 80px);
  padding-top: clamp(40px, 6vw, 64px);
  border-top: 2px solid rgba(93, 138, 114, 0.28);
  margin-bottom: 40px;
}

/* ── Statement Band ── */
.section-statement {
  background: var(--ink);
  padding: clamp(80px, 10vw, 120px) 0;
  overflow: hidden; position: relative;
}
.section-statement::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), #c47d62, #9b7b8f, var(--gold));
}
.statement-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  text-align: center;
}
.statement-label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 32px; display: block;
}
.statement-quote {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 300; line-height: 1.2;
  color: white; letter-spacing: -0.01em;
  margin-bottom: 64px;
}
.statement-stats {
  display: flex; justify-content: center; align-items: center;
  gap: 0; flex-wrap: wrap;
}
.sstat { padding: 0 clamp(24px, 4vw, 56px); text-align: center; }
.sstat strong {
  display: block; font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 72px); font-weight: 300;
  color: var(--gold); line-height: 1;
  margin-bottom: 8px;
}
.sstat span { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.sstat-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

/* ── Scroll Progress ── */
.scroll-progress-bar {
  position: fixed; top: 0; left: 0; z-index: 999;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold), #c47d62);
  transition: width 0.05s linear;
  pointer-events: none;
}

/* ── Magnetic button ── */
.btn { position: relative; will-change: transform; }

/* ── Reveal Animations ── */
@keyframes aboutFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes staggerUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }

/* Stagger-in for tab panels */
.stagger-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.stagger-item.in { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .care-grid { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .mobile-menu { display: flex; }
  .desktop-only { display: none; }

  /* Hero — text centered, cards become horizontal swipe strip */
  .hero { padding: 90px 0 0; min-height: auto; }
  .hero-content { text-align: center; padding: 0 24px; }
  .hero-actions { flex-direction: column; align-items: center; width: 100%; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-title { font-size: clamp(52px, 14vw, 80px); }
  .hero-sub { font-size: 15px; max-width: 380px; margin-left: auto; margin-right: auto; }
  .hero-scroll { display: none; }

  /* Floating chips — shrink stat bubble 20%, keep position */
  .chip-live { display: none; }
  .chip-stat { padding: 11px 14px; }
  .chip-stat strong { font-size: 21px; }
  .chip-stat span { font-size: 8px; }
  .hero-mark { font-size: clamp(80px, 30vw, 160px); opacity: 0.03; }

  /* Hero cards — horizontal swipe strip (mirrors work-grid approach) */
  .hero-cards {
    display: flex !important;
    flex-direction: row;
    height: auto;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 12px;
    padding: 4px 24px 24px;
    margin: 32px -24px 0;
    max-width: none;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-cards::-webkit-scrollbar { display: none; }
  .hcard {
    position: relative !important;
    flex: 0 0 78vw;
    max-width: 280px;
    scroll-snap-align: start;
    top: auto !important; left: auto !important; right: auto !important;
    transform: none !important;
    animation: none !important;
  }

  /* Tab bar — scrollable, no overflow cramping */
  .tabs-inner { padding: 0; justify-content: flex-start; }
  .tabs-nav {
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; padding: 0 16px;
    flex: 1;
  }
  .tabs-nav::-webkit-scrollbar { display: none; }
  .tab-btn { padding: 14px 14px; font-size: 11px; white-space: nowrap; }

  /* Swipe hint — mobile only */
  .work-swipe-hint {
    display: block;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--ink-60);
    margin-top: 8px;
  }

  /* Work grid — horizontal swipe carousel on mobile */
  .work-grid {
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 12px;
    padding: 4px 24px 20px;
    margin: 0 -24px; /* bleed to edges */
  }
  .work-grid::-webkit-scrollbar { display: none; }
  .work-card {
    flex: 0 0 78vw;
    max-width: 300px;
    scroll-snap-align: start;
  }
  /* Grids */
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-stat-row { grid-template-columns: repeat(3, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing-featured { margin: 0; }
  .pricing-badge { font-size: 9px; }

  /* Footer */
  .footer-top { flex-direction: column; gap: 24px; text-align: center; align-items: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .footer-cta-col { align-items: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; align-items: center; }

  /* Section spacing — tighter on mobile */
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .about-stat-row { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(44px, 16vw, 68px); letter-spacing: -0.02em; }
  .tab-btn { padding: 12px 12px; font-size: 10.5px; }
  .work-card { border-radius: 12px; }
}

/* ── Cursor glow (desktop only) ── */
@media (hover: hover) {
  .cursor-glow {
    position: fixed; pointer-events: none; z-index: 9999;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,168,130,0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
  }
}
