/* ShakeUp Socials — static HTML/CSS site. */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --background: hsl(184 28% 97%);
  --foreground: hsl(193 52% 16%);
  --card: hsl(182 22% 99%);
  --primary: hsl(193 54% 18%);
  --primary-foreground: hsl(172 60% 96%);
  --secondary: hsl(180 18% 93%);
  --secondary-foreground: hsl(193 52% 16%);
  --muted: hsl(180 16% 93%);
  --muted-foreground: hsl(193 22% 40%);
  --accent: hsl(172 82% 38%);
  --accent-foreground: hsl(0 0% 100%);
  --tropical: hsl(174 56% 50%);
  --tropical-foreground: hsl(193 54% 14%);
  --border: hsl(180 18% 88%);
  --radius: 0.75rem;
  --font-heading: 'Poppins', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); margin: 0; color: var(--primary); letter-spacing: -0.02em; }

.container-wide { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .container-wide { padding: 0 32px; } }

/* Layout helpers */
.flex { display: flex; }
.grid { display: grid; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; } .gap-3 { gap: 0.75rem; } .gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; } .gap-6 { gap: 1.5rem; }
.text-right { text-align: right; }
.relative { position: relative; } .absolute { position: absolute; }
.inset-0 { inset: 0; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Text */
.eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: var(--accent); }
.eyebrow.center { justify-content: center; }
.eyebrow.on-dark { color: hsl(172 82% 38% / 0.9); }
.text-muted { color: var(--muted-foreground); }
.text-accent { color: var(--accent); }
.text-xs { font-size: 0.75rem; } .text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; } .text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; } .text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.font-bold { font-weight: 700; } .font-extrabold { font-weight: 800; }
.font-semibold { font-weight: 600; } .font-medium { font-weight: 500; }
.uppercase { text-transform: uppercase; }
.leading-snug { line-height: 1.35; }
.leading-relaxed { line-height: 1.7; }

.max-w-sm { max-width: 24rem; }
.max-w-2xl { max-width: 42rem; }

/* Backgrounds / borders / tints */
.bg-background { background: var(--background); }
.bg-primary { background: var(--primary); }
.bg-accent { background: var(--accent); }
.bg-tropical { background: var(--tropical); }
.text-primary { color: var(--primary); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-tropical-foreground { color: var(--tropical-foreground); }
.text-accent-foreground { color: var(--accent-foreground); }
.bg-background-10 { background: hsl(184 28% 97% / 0.10); }
.bg-grad-up { background: linear-gradient(to top, var(--card), hsl(182 22% 99% / 0.3), transparent); }
.bg-grad-hero { background: linear-gradient(to right, var(--background), hsl(184 28% 97% / 0.85), hsl(184 28% 97% / 0.4)); }
.bg-grad-overlay { background: linear-gradient(to top, hsl(193 54% 18% / 0.85), hsl(193 54% 18% / 0.15), transparent); }
.bg-overlay-dark { background: linear-gradient(to top, hsl(193 54% 18% / 0.9), hsl(193 54% 18% / 0.45), hsl(193 54% 18% / 0.15)); }

.border { border: 1px solid var(--border); }
.border-light { border: 1px solid hsl(0 0% 100% / 0.2); }
.ring { box-shadow: inset 0 0 0 1px var(--border); }

.rounded-xl { border-radius: calc(var(--radius) - 4px); }
.rounded-2xl { border-radius: calc(var(--radius)); }

.backdrop-blur { backdrop-filter: blur(8px); }

/* Buttons */
.btn-gold, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: 9999px; padding: 0.75rem 1.5rem; font-size: 0.875rem; font-weight: 600;
  transition: all 0.2s; min-height: 44px; cursor: pointer; border: 0; font-family: var(--font-body);
}
.btn-gold { background: var(--accent); color: var(--accent-foreground); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -10px hsl(172 82% 38% / 0.4); }
.btn-ghost { background: var(--card); color: var(--primary); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: hsl(193 54% 18% / 0.4); transform: translateY(-2px); }
.btn-ghost.on-dark { background: hsl(0 0% 100% / 0.1); border-color: hsl(0 0% 100% / 0.2); color: var(--background); }
.btn-ghost.on-dark:hover { border-color: hsl(0 0% 100% / 0.4); }
.btn-block { width: 100%; }

.icon { width: 1em; height: 1em; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.icon.fill { fill: currentColor; stroke: none; }
.icon svg { width: 100%; height: 100%; display: block; }
.ic-3 { width: 12px; height: 12px; } .ic-3\.5 { width: 14px; height: 14px; }
.ic-4 { width: 16px; height: 16px; } .ic-5 { width: 20px; height: 20px; }
.ic-6 { width: 24px; height: 24px; } .ic-7 { width: 28px; height: 28px; } .ic-9 { width: 36px; height: 36px; }

/* Card */
.card { background: var(--card); border: 1px solid var(--border); border-radius: calc(var(--radius) + 0.5rem); overflow: hidden; }
.tile-box { border: 1px solid var(--border); background: var(--background); border-radius: calc(var(--radius)); }
.tag { display: inline-flex; align-items: center; border: 1px solid var(--border); background: var(--background); border-radius: 9999px; padding: 0.375rem 0.75rem; font-size: 0.75rem; font-weight: 500; color: var(--muted-foreground); }
.pill-check { display: inline-flex; align-items: center; gap: 0.375rem; border: 1px solid var(--border); background: var(--card); border-radius: 9999px; padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 600; color: var(--primary); }

/* Sections */
.section { padding: 56px 0; }
@media (min-width: 640px) { .section { padding: 80px 0; } }
.section-sm { padding: 48px 0; }

/* Animations */
@keyframes ken-burns { 0%,100% { transform: scale(1) translate3d(0,0,0); } 50% { transform: scale(1.14) translate3d(-2.5%,-1.5%,0); } }
.ken-burns { animation: ken-burns 18s ease-in-out infinite; will-change: transform; }
@keyframes ken-burns-alt { 0%,100% { transform: scale(1.12) translate3d(2.5%,1.5%,0); } 50% { transform: scale(1) translate3d(-1.5%,-2%,0); } }
.ken-burns-alt { animation: ken-burns-alt 22s ease-in-out infinite; will-change: transform; }
@keyframes bg-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-26px); } }
.bg-float { animation: bg-float 7s ease-in-out infinite; }
@keyframes bg-float-slow { 0%,100% { transform: translateY(0); } 50% { transform: translateY(22px); } }
.bg-float-slow { animation: bg-float-slow 9s ease-in-out infinite; }
@keyframes flywheel-spin { to { transform: rotate(360deg); } }
.flywheel-spin { animation: flywheel-spin 30s linear infinite; transform-box: fill-box; transform-origin: center; }
@keyframes arrow-pulse-right { 0%,100% { transform: translateX(0); opacity: .45; } 50% { transform: translateX(3px); opacity: 1; } }
.arrow-move { animation: arrow-pulse-right 1.1s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
  .ken-burns, .ken-burns-alt, .bg-float, .bg-float-slow, .flywheel-spin, .arrow-move { animation: none; }
}

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: hsl(184 28% 97% / 0.85); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.header-row { display: flex; height: 68px; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand-link { display: flex; align-items: center; gap: 0.75rem; }
.brand-logo { width: 44px; height: 44px; border-radius: 9999px; overflow: hidden; box-shadow: inset 0 0 0 1px var(--border); background: var(--card); }
.brand-logo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); }
.brand-name { font-family: var(--font-heading); font-size: 17px; font-weight: 800; letter-spacing: -0.02em; color: var(--primary); }
.nav-desktop { display: none; align-items: center; gap: 0.25rem; }
.nav-link { position: relative; border-radius: 9999px; padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 500; color: var(--muted-foreground); transition: color 0.2s; }
.nav-link:hover { color: var(--primary); }
.nav-link.active { color: var(--primary); }
.nav-link.active::after { content: ""; position: absolute; left: 1rem; right: 1rem; bottom: -1px; height: 1px; background: var(--accent); }
.nav-actions { display: none; align-items: center; gap: 0.75rem; }
.menu-btn { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 9999px; border: 1px solid var(--border); background: var(--card); cursor: pointer; }
.mobile-menu { display: none; border-top: 1px solid var(--border); background: var(--background); padding: 16px 20px; }
#nav-toggle { display: none; }
#nav-toggle:checked ~ .mobile-menu { display: block; }
#nav-toggle:checked ~ .header-row .menu-btn .icon-open { display: none; }
#nav-toggle:checked ~ .header-row .menu-btn .icon-close { display: inline-grid; }
.menu-btn .icon-close { display: none; }
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-actions { display: flex; }
  .menu-btn { display: none; }
}

/* Footer */
.site-footer { position: relative; margin-top: 4rem; border-top: 1px solid var(--border); background: hsl(180 18% 93% / 0.4); padding-bottom: 3rem; }
.footer-inner { padding: 48px 0; }
.footer-grid { display: flex; flex-direction: column; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { flex-direction: row; align-items: flex-start; justify-content: space-between; } }
.footer-nav { display: flex; flex-wrap: wrap; column-gap: 2.5rem; row-gap: 0.75rem; font-size: 0.875rem; }
.footer-nav a { color: var(--muted-foreground); }
.footer-nav a:hover { color: var(--primary); }
.footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 1rem; border-top: 1px solid var(--border); padding-top: 1.5rem; margin-top: 3rem; font-size: 0.75rem; color: var(--muted-foreground); }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

/* Hero */
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.hero-glow { position: absolute; border-radius: 9999px; filter: blur(48px); pointer-events: none; }
.hero-grid { position: relative; display: grid; gap: 3rem; align-items: center; padding: 56px 0; }
@media (min-width: 640px) { .hero-grid { padding: 80px 0; } }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 2rem; } }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 800; line-height: 1.04; margin-top: 1.25rem; }

.page-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--border); background: hsl(180 18% 93% / 0.3); }
.page-hero-inner { padding: 48px 0; text-align: center; }
@media (min-width: 640px) { .page-hero-inner { padding: 72px 0; } }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; line-height: 1.05; margin: 1.25rem auto 0; max-width: 48rem; }

/* Trust strip */
.trust-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: hsl(180 18% 93% / 0.4); }
.trust-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; column-gap: 2rem; row-gap: 0.75rem; padding: 20px 0; }
@media (min-width: 640px) { .trust-inner { justify-content: space-between; } }

/* Service / work grids */
.grid-2 { grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }
@media (min-width: 1024px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.svc-head { display: grid; gap: 2rem; border-bottom: 1px solid var(--border); padding-bottom: 2.25rem; }
@media (min-width: 768px) { .svc-head { grid-template-columns: 1fr 1fr; align-items: end; } }

.svc-card { display: flex; flex-direction: column; overflow: hidden; }
.svc-card .svc-img { position: relative; height: 176px; overflow: hidden; }
.svc-card .svc-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-card .svc-body { padding: 22px; }
@media (min-width: 640px) { .svc-card .svc-body { padding: 28px; } }
.svc-icon-lg { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 1rem; flex-shrink: 0; }
.svc-step { border: 1px solid var(--border); background: hsl(184 28% 97% / 0.6); border-radius: 1rem; padding: 0.85rem; }
.svc-step .step-ic { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 0.75rem; background: hsl(172 82% 38% / 0.1); color: var(--accent); }

.dist-row { display: flex; align-items: center; gap: 0.5rem; border: 1px solid var(--border); background: hsl(184 28% 97% / 0.6); border-radius: 0.75rem; padding: 0.65rem; height: 64px; }
.dist-grid { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1024px) { .dist-grid { grid-template-columns: repeat(3, 1fr); } }
.dist-ic { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 0.5rem; background: var(--card); box-shadow: inset 0 0 0 1px var(--border); flex-shrink: 0; }
.dist-ic svg { width: 22px; height: 22px; }

.rel-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem; border: 1px solid var(--border); background: hsl(180 18% 93% / 0.5); border-radius: 1rem; padding: 1.25rem 1.5rem; text-align: center; font-size: 0.875rem; font-weight: 500; color: var(--muted-foreground); }

/* Featured work */
.work-card { position: relative; display: block; overflow: hidden; border: 1px solid var(--border); border-radius: calc(var(--radius) + 0.5rem); }
.work-thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--muted); }
.work-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.work-card:hover .work-thumb img { transform: scale(1.05); }
.work-play { position: absolute; left: 20px; top: 20px; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 9999px; background: hsl(184 28% 97% / 0.9); color: var(--primary); }
.work-meta { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem; color: var(--background); }

/* Stats band */
.stats-band { background: var(--primary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; gap: 1.25rem; padding: 24px 0; }
@media (min-width: 640px) { .stats-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
.stat-item { display: flex; align-items: center; gap: 0.75rem; }
.stat-ic { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 0.5rem; background: hsl(172 82% 38% / 0.15); color: var(--accent); flex-shrink: 0; }
.stat-val { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; line-height: 1; color: var(--background); }
.stat-lbl { margin-top: 0.25rem; font-size: 0.75rem; line-height: 1.3; color: hsl(184 28% 97% / 0.7); }

/* About teaser */
.about-teaser { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .about-teaser { grid-template-columns: 0.9fr 1.1fr; gap: 4rem; } }
.about-img { position: relative; overflow: hidden; border-radius: calc(var(--radius) + 0.5rem); border: 1px solid var(--border); }
.about-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-img-inner { position: relative; min-height: 440px; display: flex; flex-direction: column; justify-content: flex-end; padding: 32px; color: var(--background); }
@media (min-width: 640px) { .about-img-inner { padding: 40px; } }
.team-mini-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .team-mini-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .team-mini-grid { grid-template-columns: 1fr 1fr 1fr; } }
.contact-mini-grid { display: grid; gap: 0.75rem; }
@media (min-width: 640px) { .contact-mini-grid { grid-template-columns: 1fr 1fr; } }

/* CTA */
.cta-box { position: relative; overflow: hidden; border-radius: 2rem; border: 1px solid var(--border); background: var(--primary); padding: 56px 24px; text-align: center; }
@media (min-width: 640px) { .cta-box { padding: 80px 48px; } }

/* Growth Engine flywheel */
.ge-wrap { position: relative; max-width: 520px; margin: 0 auto; border-radius: 2rem; padding: 1.5rem; }
.ge-wheel { position: relative; aspect-ratio: 1; width: 100%; }
@media (max-width: 639px) { .ge-wheel { display: none; } }
.ge-mobile { display: grid; gap: 0.75rem; }
@media (min-width: 640px) { .ge-mobile { display: none; } }
.ge-glow { position: absolute; left: 50%; top: 50%; width: 42%; height: 42%; transform: translate(-50%,-50%); border-radius: 9999px; filter: blur(24px); background: hsl(172 82% 50% / 0.1); }
.ge-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.ge-hub { position: absolute; left: 50%; top: 50%; width: 150px; transform: translate(-50%,-50%); }
.ge-hub-inner { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; width: 150px; height: 150px; border-radius: 9999px; text-align: center; border: 1px solid #2a4b5d; background: hsl(195 47% 14% / 0.85); }
.ge-ic-box { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 0.75rem; background: hsl(172 100% 50% / 0.12); color: #00e5ff; }
.ge-node { position: absolute; width: 150px; transform: translate(-50%,-50%); }
.ge-node-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; border-radius: 1rem; padding: 14px; text-align: center; background: #152a34; border: 1px solid #2a4b5d; box-shadow: 0 12px 30px -14px rgba(0,0,0,0.55); height: 150px; }
.ge-step-label { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: #00e5ff; }
.ge-node-ic { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 0.75rem; background: hsl(172 100% 50% / 0.12); color: #00e5ff; }
.ge-node-title { font-family: var(--font-heading); font-size: 12px; font-weight: 700; line-height: 1.15; color: #fff; }
.ge-node-cap { font-size: 11px; line-height: 1.3; color: #a0b1b9; }
.ge-mrow { display: flex; align-items: center; gap: 0.75rem; border-radius: 1rem; padding: 1rem; background: #152a34; border: 1px solid #2a4b5d; }
.ge-mic { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 0.75rem; background: hsl(172 100% 50% / 0.12); color: #00e5ff; flex-shrink: 0; }

/* Ecosystem */
.phase-card { position: relative; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--border); background: var(--card); border-radius: calc(var(--radius) + 0.5rem); padding: 28px; }
.phase-card.featured { border-color: hsl(172 82% 38% / 0.4); background: hsl(172 82% 38% / 0.05); }
.phase-watermark { position: absolute; bottom: -32px; right: -24px; width: 176px; height: 176px; color: var(--primary); opacity: 0.06; pointer-events: none; }
.phase-device { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 1rem; background: var(--primary); color: var(--primary-foreground); }
.phase-list { list-style: none; margin: 0; padding: 1.25rem 0 0; border-top: 1px solid var(--border); }
.phase-list li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.875rem; padding: 0.375rem 0; }
.phase-list li::before { content: ""; margin-top: 6px; width: 6px; height: 6px; border-radius: 9999px; background: var(--accent); flex-shrink: 0; }

.reel-card { position: relative; display: block; width: 100%; overflow: hidden; border: 1px solid var(--border); background: var(--muted); border-radius: 1rem; }
.reel-frame { position: relative; width: 100%; aspect-ratio: 9/17; }
.reel-frame iframe { position: absolute; left: 0; right: 0; top: -8%; height: 108%; width: 100%; border: 0; pointer-events: none; }
.reel-strip { position: absolute; left: 0; right: 0; bottom: 0; height: 32px; background: #fff; pointer-events: none; }
.reel-title { position: absolute; left: 12px; top: 12px; z-index: 10; border-radius: 9999px; background: hsl(184 28% 97% / 0.9); padding: 4px 12px; font-size: 11px; font-weight: 600; color: var(--primary); }
.yt-card { position: relative; display: block; overflow: hidden; border: 1px solid var(--border); background: var(--muted); border-radius: 1rem; }
.yt-frame { position: relative; aspect-ratio: 16/9; }
.yt-frame img { width: 100%; height: 100%; object-fit: cover; }
.yt-play { position: absolute; inset: 0; display: grid; place-items: center; background: hsl(193 54% 18% / 0.3); }
.yt-play-btn { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 9999px; background: hsl(184 28% 97% / 0.9); color: var(--primary); }
.yt-badge { position: absolute; bottom: 12px; right: 12px; display: inline-flex; align-items: center; gap: 6px; border-radius: 9999px; background: hsl(184 28% 97% / 0.9); padding: 4px 10px; font-size: 11px; font-weight: 600; color: var(--primary); }

/* Studio */
.studio-card .svc-img { background: linear-gradient(135deg, var(--primary), hsl(193 54% 18% / 0.7)); }
.studio-card .studio-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.studio-card .studio-ic { position: absolute; left: 24px; top: 24px; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 1rem; background: hsl(184 28% 97% / 0.9); color: var(--primary); }
.studio-card .studio-watermark { position: absolute; bottom: -24px; right: -16px; width: 160px; height: 160px; color: hsl(172 60% 96% / 0.1); }
.incl-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.625rem; }
@media (min-width: 640px) { .incl-list { grid-template-columns: 1fr 1fr; } }
.incl-list li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.875rem; }
.more-chip { display: inline-flex; align-items: center; gap: 0.375rem; border: 1px solid var(--border); background: var(--card); border-radius: 9999px; padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 500; }
.more-chip::before { content: ""; width: 6px; height: 6px; border-radius: 9999px; background: var(--accent); }

/* About page */
.about-split { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-split { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.about-badge-card { position: relative; overflow: hidden; border: 1px solid var(--border); background: hsl(180 18% 93% / 0.4); border-radius: calc(var(--radius) + 0.5rem); padding: 40px; }
.team-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .team-grid { grid-template-columns: 1fr 1fr; } }
.team-card { display: flex; flex-direction: column; border: 1px solid var(--border); background: var(--card); border-radius: calc(var(--radius) + 0.5rem); padding: 32px; }
.team-avatar { display: grid; place-items: center; width: 80px; height: 80px; border-radius: 1rem; overflow: hidden; background: linear-gradient(135deg, var(--primary), var(--tropical)); color: var(--primary-foreground); flex-shrink: 0; }
.contact-card { display: flex; align-items: center; gap: 1rem; border: 1px solid var(--border); background: var(--card); border-radius: 1rem; padding: 1rem; }
.contact-ic { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 0.75rem; flex-shrink: 0; }

/* Contact page */
.contact-grid { display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1.3fr 0.7fr; } }
.contact-info-card { position: relative; overflow: hidden; border: 1px solid var(--border); background: var(--card); border-radius: calc(var(--radius) + 0.5rem); padding: 28px; }
.info-ic { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 1rem; }

/* misc */
.link-accent { color: var(--primary); font-weight: 600; font-size: 0.875rem; }
.link-accent:hover { color: var(--accent); }
.mt-auto { margin-top: auto; }
.footnote { margin-top: 1.5rem; text-align: center; font-size: 0.875rem; color: var(--muted-foreground); }
/* ---------- Hover-to-play YouTube embeds ---------- */
.yt-embed-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 2;
}
.work-thumb.is-playing .work-play,
.yt-frame.is-playing .yt-play {
  opacity: 0;
  pointer-events: none;
}

/* Instagram embeds are always live but Instagram does not support forced
   autoplay in its public embed — enable interaction on hover so a visitor
   can play/control it themselves instead of only linking out. */
.reel-card:hover .reel-frame iframe,
.yt-card:hover .yt-frame iframe {
  pointer-events: auto;
}

/* ---------- Contact form ---------- */
.form-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-size: 0.8rem; font-weight: 600; color: var(--muted-foreground); }
.form-field input, .form-field textarea {
  font-family: var(--font-body); font-size: 0.95rem; color: var(--primary);
  background: var(--background); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0.7rem 0.9rem; outline: none; transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.form-field input:focus, .form-field textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px hsl(172 82% 38% / 0.15);
}
.hidden-field { position: absolute; opacity: 0; height: 0; width: 0; overflow: hidden; pointer-events: none; }
.form-status { margin-top: 1rem; font-size: 0.875rem; min-height: 1.2em; }
.form-status.is-success { color: var(--accent); font-weight: 600; }
.form-status.is-error { color: #c0392b; font-weight: 600; }
.btn-gold[disabled] { opacity: .6; cursor: not-allowed; }
@media (min-width: 1024px) {
  .svc-cards-grid {
    grid-template-rows: repeat(8, auto);
    align-items: stretch;
  }
  .svc-cards-grid .svc-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 8;
  }
  .svc-cards-grid .svc-card .svc-body {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: 2 / span 7;
    grid-column: 1;
  }
  .svc-cards-grid .svc-card .svc-body > .grid {
    align-self: start;
  }
}
