/* ==========================================================
   Thoorigai Arts — mobile-first stylesheet
   ========================================================== */
:root {
  --pink: #e0218a;
  --magenta: #c21fa6;
  --violet: #7a3cf0;
  --blue: #3f63ee;
  --teal: #17b3c9;
  --grad: linear-gradient(100deg, #e0218a 0%, #a331e8 38%, #5b54f2 68%, #17b3c9 100%);
  --grad-warm: linear-gradient(135deg, #ff5aa5 0%, #e0218a 45%, #9b34ef 100%);
  --grad-wa: linear-gradient(135deg, #2ee07a 0%, #15a94f 100%);

  --ink: #2a1238;
  --ink-2: #5a4466;
  --muted: #8b7797;
  --bg: #fff7fb;
  --bg-2: #fdeef6;
  --card: #ffffff;
  --line: rgba(122, 40, 120, .12);
  --plum: #22092f;

  --radius: 22px;
  --shadow-sm: 0 6px 18px -10px rgba(120, 20, 110, .38);
  --shadow: 0 18px 40px -18px rgba(120, 20, 110, .42);
  --shadow-lg: 0 30px 60px -24px rgba(90, 10, 90, .55);

  --font-head: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Mukta', system-ui, sans-serif;
  --font-script: 'Dancing Script', cursive;

  --dock-h: 66px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 76px; }
html.lock { overflow: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3 { margin: 0; }
:focus-visible { outline: 3px solid var(--violet); outline-offset: 3px; border-radius: 8px; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 16px; }
.ico { width: 22px; height: 22px; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 22px; border-radius: 16px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; line-height: 1.1;
  transition: transform .2s var(--ease), box-shadow .25s, filter .2s;
  white-space: nowrap; cursor: pointer;
}
.btn:active { transform: scale(.96); }
.btn-sm { min-height: 42px; padding: 0 16px; font-size: .92rem; border-radius: 13px; }
.btn-lg { min-height: 58px; padding: 0 28px; font-size: 1.08rem; }
.btn-wa { background: var(--grad-wa); color: #fff; box-shadow: 0 14px 26px -12px rgba(21, 169, 79, .75); }
.btn-grad { background: var(--grad-warm); color: #fff; box-shadow: 0 14px 26px -12px rgba(224, 33, 138, .7); }
.btn-ghost { background: #fff; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line), var(--shadow-sm); }
@media (hover: hover) {
  .btn:hover { transform: translateY(-2px); filter: saturate(1.1); }
}

/* ---------- scroll progress + header ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 90;
  background: var(--grad); transform-origin: 0 50%; transform: scaleX(0);
}
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: calc(8px + env(safe-area-inset-top)) 14px 8px;
  background: rgba(255, 247, 251, .78);
  -webkit-backdrop-filter: saturate(1.6) blur(14px); backdrop-filter: saturate(1.6) blur(14px);
  transition: box-shadow .3s, background .3s;
}
.topbar.scrolled { background: rgba(255, 255, 255, .9); box-shadow: 0 8px 26px -16px rgba(120, 20, 110, .5); }
.brand img { height: 50px; width: auto; transition: height .3s var(--ease); }
.topbar.scrolled .brand img { height: 42px; }
.nav-desktop, .desk-only { display: none; }
.top-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center;
  background: #fff; color: var(--pink); box-shadow: var(--shadow-sm);
}
.menu-btn { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 4px; color: var(--ink); }
.menu-btn span { display: block; width: 18px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .3s var(--ease), opacity .2s, width .3s; }
.menu-btn span:nth-child(2) { width: 12px; margin-left: 6px; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 45;
  padding: calc(92px + env(safe-area-inset-top)) 24px calc(30px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column; justify-content: space-between; gap: 24px;
  background:
    radial-gradient(60% 40% at 100% 0%, rgba(167, 139, 250, .35), transparent 70%),
    radial-gradient(60% 40% at 0% 100%, rgba(255, 140, 198, .4), transparent 70%),
    #fff7fb;
  opacity: 0; transform: translateY(-14px); pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  overflow-y: auto;
}
.menu.open { opacity: 1; transform: none; pointer-events: auto; }
.m-link {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 12px 2px; border-bottom: 1px dashed var(--line);
  font-family: var(--font-head); font-weight: 700; font-size: 1.55rem;
  opacity: 0; transform: translateX(-16px); transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.menu.open .m-link { opacity: 1; transform: none; }
.menu.open .m-link:nth-child(2) { transition-delay: .04s; } .menu.open .m-link:nth-child(3) { transition-delay: .08s; }
.menu.open .m-link:nth-child(4) { transition-delay: .12s; } .menu.open .m-link:nth-child(5) { transition-delay: .16s; }
.menu.open .m-link:nth-child(6) { transition-delay: .2s; }
.m-link small { font-family: var(--font-body); font-weight: 700; font-size: .8rem; color: var(--pink); letter-spacing: .08em; }
.menu-foot { display: grid; gap: 10px; }
html.menu-open .dock { transform: translateY(160%); }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: 14px 0 34px; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(48px); opacity: .55; animation: drift 14s ease-in-out infinite alternate; }
.b1 { width: 320px; height: 320px; background: #ff8cc6; top: -90px; left: -110px; }
.b2 { width: 290px; height: 290px; background: #b69cff; top: 240px; right: -140px; animation-delay: -5s; }
.b3 { width: 240px; height: 240px; background: #7fe6f4; bottom: -80px; left: 25%; opacity: .35; animation-delay: -9s; }
@keyframes drift { to { transform: translate(30px, 40px) scale(1.12); } }

.hero-inner { position: relative; display: grid; gap: 18px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 5px; border-radius: 999px;
  background: #fff; color: var(--pink); font-weight: 700; font-size: .84rem; box-shadow: var(--shadow-sm);
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 0 rgba(224, 33, 138, .6); animation: ping 2s infinite; }
@keyframes ping { 70% { box-shadow: 0 0 0 10px rgba(224, 33, 138, 0); } 100% { box-shadow: 0 0 0 0 rgba(224, 33, 138, 0); } }
.hero h1 {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2.3rem, 10.6vw, 4.6rem); line-height: 1.08; letter-spacing: -.01em;
  margin: 14px 0 8px;
}
.h1-line { display: block; }
.h1-grad, .sec-head h2 em, .big-phone, .q-copy h2 em {
  background: var(--grad); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shine 7s linear infinite;
}
.h1-grad { display: block; padding-bottom: .08em; }
@keyframes shine { to { background-position: 200% center; } }
.hero-sub { margin: 0 0 20px; font-size: 1.08rem; font-weight: 600; color: var(--ink-2); }
.script { display: block; font-family: var(--font-script); font-weight: 700; font-size: 1.45rem; color: var(--violet); line-height: 1.3; margin-top: 2px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; }
.cta-row .btn { flex: 1 1 auto; padding: 0 16px; font-size: .98rem; }
.hero-points { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.hero-points li {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px 4px 6px; border-radius: 999px;
  font-size: .82rem; font-weight: 600; background: rgba(255, 255, 255, .75); box-shadow: inset 0 0 0 1px var(--line);
}
.hero-points .ico { width: 18px; height: 18px; padding: 3px; border-radius: 50%; color: #fff; background: var(--grad-warm); stroke-width: 3; }

/* photo stack */
.hero-visual { position: relative; height: clamp(390px, 112vw, 520px); display: grid; place-items: center; }
.stack { position: relative; width: min(64vw, 280px); aspect-ratio: 4 / 5.25; cursor: pointer; outline: none; }
.card {
  position: absolute; inset: 0; margin: 0; padding: 10px 10px 42px; border-radius: 6px; background: #fff;
  box-shadow: 0 24px 44px -20px rgba(70, 10, 70, .6), 0 2px 6px rgba(0, 0, 0, .06);
  transition: transform .75s var(--ease), opacity .6s var(--ease);
  will-change: transform;
}
.card::before {
  content: ""; position: absolute; top: -11px; left: 50%; width: 88px; height: 24px; z-index: 2;
  transform: translateX(-50%) rotate(-4deg);
  background: repeating-linear-gradient(90deg, rgba(255, 170, 210, .85) 0 8px, rgba(255, 196, 225, .85) 8px 16px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, .08);
}
.card img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; background: var(--bg-2); }
.card figcaption {
  position: absolute; left: 8px; right: 8px; bottom: 9px; text-align: center;
  font-family: var(--font-head); font-weight: 700; font-size: .92rem; color: var(--ink-2);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.card[data-pos="0"] { transform: rotate(-3deg); }
.card[data-pos="1"] { transform: translate(30px, 8px) rotate(7deg) scale(.95); }
.card[data-pos="2"] { transform: translate(-30px, 14px) rotate(-11deg) scale(.91); }
.card[data-pos="3"] { transform: translate(10px, 22px) rotate(13deg) scale(.87); }
.card[data-pos="4"], .card[data-pos="5"], .card[data-pos="6"] { transform: translate(0, 26px) scale(.84); opacity: 0; }
.card.fly { transform: translate(140%, -10%) rotate(28deg) !important; opacity: 0 !important; }

.spin-badge { position: absolute; right: max(1%, calc(50% - 196px)); top: 3%; width: 104px; height: 104px; z-index: 12; border-radius: 50%; overflow: hidden; }
.spin-badge svg { width: 100%; height: 100%; animation: spin 14s linear infinite; }
.spin-badge text { font-family: var(--font-head); font-weight: 800; font-size: 11.5px; fill: var(--ink); }
.spin-core {
  position: absolute; inset: 25px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-warm); color: #fff; box-shadow: 0 10px 24px -8px rgba(224, 33, 138, .8);
}
.spin-core .ico { width: 26px; height: 26px; animation: beat 1.4s ease-in-out infinite; }
.spin-badge::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: rgba(255, 255, 255, .85); box-shadow: var(--shadow); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.spin-badge svg { position: relative; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes beat { 0%, 100% { transform: scale(1); } 15% { transform: scale(1.2); } 30% { transform: scale(1); } 45% { transform: scale(1.15); } }

.float-heart { position: absolute; width: 26px; height: 26px; color: var(--pink); animation: bob 5s ease-in-out infinite; }
.h1x { top: 8%; left: 8%; width: 30px; height: 30px; }
.h2x { bottom: 22%; right: 8%; width: 20px; height: 20px; color: var(--violet); animation-delay: -2s; }
.h3x { bottom: 16%; left: 6%; color: var(--teal); fill: none; stroke: currentColor; stroke-width: 2; animation-delay: -3.5s; }
@keyframes bob { 50% { transform: translateY(-14px) rotate(8deg); } }
.stack-hint {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); margin: 0;
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .8rem; font-weight: 600; color: var(--muted);
}
.stack-hint .ico { width: 16px; height: 16px; animation: nudge 1.6s ease-in-out infinite; }
@keyframes nudge { 50% { transform: translateX(4px); } }

/* ---------- ribbons ---------- */
.ribbons { position: relative; height: 112px; margin: 8px 0 0; overflow: hidden; }
.ribbon { position: absolute; left: -20px; right: -20px; overflow: hidden; padding: 11px 0 9px; }
.ribbon-front { top: 30px; background: var(--grad); color: #fff; transform: rotate(-3deg); box-shadow: 0 16px 30px -18px rgba(122, 60, 240, .8); z-index: 2; }
.ribbon-back { top: 34px; background: #fff; color: var(--ink); transform: rotate(3deg); box-shadow: var(--shadow-sm); }
.ribbon-track {
  display: flex; width: max-content; animation: marquee 34s linear infinite;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; white-space: nowrap;
}
.ribbon-back .ribbon-track { animation-direction: reverse; animation-duration: 40s; font-family: var(--font-body); letter-spacing: .06em; text-transform: uppercase; font-size: .86rem; }
.ribbon-track span { display: inline-flex; align-items: center; }
.ribbon-track span::after { content: "✦"; margin: 0 22px; font-size: .8em; opacity: .85; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { padding: 60px 0; }
.sec-head { text-align: center; max-width: 660px; margin: 0 auto 26px; }
.kicker { display: block; font-family: var(--font-script); font-weight: 700; font-size: 1.45rem; line-height: 1; color: var(--pink); }
.kicker-light { color: #ffb0d6; }
.sec-head h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.8rem, 7vw, 2.9rem); line-height: 1.2; margin: 8px 0 6px; }
.sec-head h2 em { font-style: normal; }
.sec-head h2::after {
  content: ""; display: block; width: 74px; height: 10px; margin: 8px auto 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 74 10'%3E%3Cpath d='M1 5c6-5 12-5 18 0s12 5 18 0 12-5 18 0 12 5 18 0' fill='none' stroke='%23e0218a' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain;
}
.sec-head p { margin: 0; color: var(--ink-2); }
.sec-head p b { color: var(--pink); }

/* reveal on scroll */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s var(--ease), transform .75s var(--ease); transition-delay: var(--d, 0ms); }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- services ---------- */
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.svc {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; flex-direction: column; gap: 8px; padding: 16px 14px 18px;
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s;
  cursor: pointer;
}
.svc::after {
  content: ""; position: absolute; z-index: -1; right: -40px; bottom: -50px; width: 130px; height: 130px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c1), var(--c2)); opacity: .1; transition: transform .5s var(--ease), opacity .3s;
}
.svc-ico {
  width: 48px; height: 48px; border-radius: 15px; display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--c1), var(--c2)); box-shadow: 0 10px 20px -10px var(--c1);
}
.svc strong { font-family: var(--font-head); font-weight: 700; font-size: 1rem; line-height: 1.3; }
.svc small { color: var(--muted); font-size: .78rem; line-height: 1.3; margin-top: auto; }
.svc-go { position: absolute; top: 16px; right: 14px; width: 18px; height: 18px; color: var(--c1); opacity: .7; }
.svc:active { transform: scale(.97); }
@media (hover: hover) {
  .svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
  .svc:hover::after { transform: scale(1.5); opacity: .16; }
}

/* ---------- quality band ---------- */
.quality {
  position: relative; overflow: hidden; isolation: isolate;
  display: grid; gap: 22px; justify-items: center; text-align: center;
  padding: 34px 20px 26px; border-radius: 30px; color: #fff;
  background:
    radial-gradient(70% 60% at 0% 0%, rgba(224, 33, 138, .55), transparent 70%),
    radial-gradient(60% 60% at 100% 100%, rgba(63, 99, 238, .5), transparent 70%),
    linear-gradient(160deg, #3a0f52, #22092f);
  box-shadow: var(--shadow-lg);
}
.quality::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .18;
  background-image: radial-gradient(rgba(255, 255, 255, .8) 1px, transparent 1.4px); background-size: 18px 18px;
}
.q-badge { position: relative; width: 132px; height: 132px; }
.q-badge svg { width: 100%; height: 100%; animation: spin 16s linear infinite; }
.q-badge text { font-family: var(--font-head); font-weight: 800; font-size: 11px; letter-spacing: .5px; fill: #ffd36b; }
.q-core {
  position: absolute; inset: 30px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: #3a0f52;
  background: linear-gradient(135deg, #ffe08a, #ffb938); box-shadow: 0 10px 30px -8px rgba(255, 185, 56, .8);
}
.q-copy h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 8vw, 3.1rem); line-height: 1.15; margin-top: 6px; }
.q-copy h2 span { color: #ffd36b; }
.q-copy h2 em { font-style: normal; display: inline-block; background: linear-gradient(100deg, #ff9fcf, #c9a7ff, #8fe9f5, #ff9fcf); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; }
.q-list { list-style: none; margin: 0; padding: 0; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; text-align: left; }
.q-list li {
  display: grid; gap: 2px; padding: 14px 12px; border-radius: 18px;
  background: rgba(255, 255, 255, .08); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
}
.q-list .ico { color: #ffd36b; margin-bottom: 4px; }
.q-list b { font-family: var(--font-head); font-size: 1rem; }
.q-list small { font-size: .76rem; line-height: 1.35; opacity: .75; }

/* ---------- categories ---------- */
.cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cat-card {
  position: relative; isolation: isolate; overflow: hidden; aspect-ratio: 4 / 5;
  border-radius: var(--radius); background: linear-gradient(135deg, #fbe3f0, #ece4ff); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease);
}
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.cat-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(34, 9, 47, .92) 0%, rgba(34, 9, 47, .45) 38%, transparent 62%);
}
.cat-text { position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 2; color: #fff; }
.cat-text strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.04rem; line-height: 1.25; }
.cat-text small { display: block; font-size: .72rem; opacity: .78; letter-spacing: .02em; line-height: 1.3; margin-top: 2px; }
.cat-count {
  position: absolute; top: 10px; right: 10px; z-index: 2; min-width: 30px; height: 30px; padding: 0 9px;
  display: grid; place-items: center; border-radius: 999px;
  font-weight: 800; font-size: .8rem; color: var(--pink); background: rgba(255, 255, 255, .92);
}
.cat-feature { grid-column: 1 / -1; aspect-ratio: 16 / 11; }
.cat-feature .cat-text strong { font-size: 1.5rem; }
.cat-feature .cat-text small { font-size: .85rem; }
.cat-feature .cat-go {
  position: absolute; right: 12px; bottom: 14px; z-index: 2; width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; background: var(--grad-warm); box-shadow: 0 8px 20px -6px rgba(224, 33, 138, .9);
}
.cat-card:active { transform: scale(.97); }
@media (hover: hover) { .cat-card:hover img { transform: scale(1.08); } }
.cat-grid:not(.show-all) .cat-more { display: none; }
.cat-more-btn { display: flex; margin: 20px auto 0; }
.cat-more-btn b { color: var(--pink); }

/* ---------- photo marquee ---------- */
.photo-marquee { padding: 30px 0 10px; overflow: hidden; }
.pm-row { display: flex; gap: 10px; width: max-content; margin-top: 10px; animation: marquee 70s linear infinite; }
.pm-rev { animation-direction: reverse; animation-duration: 80s; }
.pm-row a { flex: none; width: 118px; aspect-ratio: 4 / 5; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); background: var(--bg-2); }
.pm-row:nth-child(odd) a:nth-child(even), .pm-rev a:nth-child(odd) { transform: translateY(6px); }
.pm-row img { width: 100%; height: 100%; object-fit: cover; }
.photo-marquee:hover .pm-row { animation-play-state: paused; }

/* ---------- featured picks ---------- */
.picks { padding-bottom: 50px; }
.picks-track {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding: 0 16px;
  padding: 6px 16px 22px; scrollbar-width: none; overscroll-behavior-x: contain;
}
.picks-track::-webkit-scrollbar { display: none; }
.pick {
  flex: 0 0 74%; max-width: 310px; scroll-snap-align: center;
  background: var(--card); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.pick-img { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--bg-2); }
.pick-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.pick-img .num {
  position: absolute; top: 12px; left: 12px; min-width: 34px; height: 34px; padding: 0 10px; border-radius: 12px;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; color: #fff; background: rgba(34, 9, 47, .55);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.pick-body { padding: 14px 16px 16px; display: grid; gap: 4px; }
.pick-cat { font-size: .74rem; font-weight: 700; color: var(--pink); letter-spacing: .02em; }
.pick-title { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; line-height: 1.3; }
.pick-go { display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; font-weight: 700; font-size: .88rem; color: var(--violet); }
.pick-go .ico { width: 18px; height: 18px; }
@media (hover: hover) { .pick:hover .pick-img img { transform: scale(1.06); } }

/* ---------- studio ---------- */
.studio {
  position: relative; overflow: hidden; color: #fff; padding: 64px 0 70px;
  border-radius: 34px 34px 0 0; margin-top: 10px;
  background:
    radial-gradient(60% 40% at 10% 10%, rgba(224, 33, 138, .45), transparent 70%),
    radial-gradient(60% 50% at 90% 90%, rgba(23, 179, 201, .3), transparent 70%),
    linear-gradient(170deg, #2e0b41, #1a0724);
}
.studio-inner { display: grid; gap: 34px; justify-items: center; }
.phone {
  position: relative; width: min(70vw, 300px); aspect-ratio: 9 / 16; padding: 9px; border-radius: 38px;
  background: linear-gradient(145deg, #3b3b46, #0c0c10);
  box-shadow: 0 40px 80px -30px rgba(224, 33, 138, .7), 0 0 0 1px rgba(255, 255, 255, .12), inset 0 0 0 2px rgba(255, 255, 255, .06);
}
.phone::before { content: ""; position: absolute; top: 18px; left: 50%; width: 70px; height: 20px; transform: translateX(-50%); border-radius: 12px; background: #000; z-index: 3; }
.phone video { width: 100%; height: 100%; object-fit: cover; border-radius: 30px; background: #000; }
.play-btn {
  position: absolute; inset: 0; margin: auto; width: 78px; height: 78px; border-radius: 50%; z-index: 4;
  display: grid; place-items: center; color: #fff; background: var(--grad-warm);
  box-shadow: 0 0 0 0 rgba(255, 90, 165, .6); animation: pulse 2s infinite;
}
.play-btn .ico { width: 30px; height: 30px; margin-left: 4px; }
.phone.playing .play-btn { opacity: 0; pointer-events: none; transition: opacity .3s; }
@keyframes pulse { 70% { box-shadow: 0 0 0 22px rgba(255, 90, 165, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 90, 165, 0); } }
.studio-copy { max-width: 540px; }
.studio-copy h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.9rem, 7vw, 2.9rem); line-height: 1.2; margin: 8px 0 10px; }
.studio-copy h2 em { font-style: normal; color: #ffb0d6; }
.studio-copy p { color: rgba(255, 255, 255, .8); margin: 0 0 18px; }
.ticks { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 10px; }
.ticks li {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 16px; font-weight: 600;
  background: rgba(255, 255, 255, .07); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
}
.ticks .ico { color: #ffb0d6; }
.studio-shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 22px; }
.studio-shots a { aspect-ratio: 1; border-radius: 14px; overflow: hidden; box-shadow: 0 0 0 1px rgba(255, 255, 255, .15); }
.studio-shots img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
@media (hover: hover) { .studio-shots a:hover img { transform: scale(1.1); } }

/* ---------- occasions ---------- */
.occ-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.occ-list li {
  position: relative; padding: 9px 16px 8px; border-radius: 999px; font-weight: 700; font-size: .92rem;
  background: #fff; box-shadow: var(--shadow-sm);
}
.occ-list li::before { content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 8px; border-radius: 50%; background: var(--grad-warm); vertical-align: 1px; }
.occ-list li:nth-child(3n+2)::before { background: linear-gradient(135deg, #6366f1, #17b3c9); }
.occ-list li:nth-child(3n)::before { background: linear-gradient(135deg, #ffb938, #f97316); }

/* ---------- steps ---------- */
.steps { padding-top: 20px; }
.steps-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; position: relative; }
.steps-list::before { content: ""; position: absolute; left: 41px; top: 30px; bottom: 30px; border-left: 2px dashed rgba(224, 33, 138, .35); }
.step { position: relative; padding: 18px 18px 18px 84px; border-radius: var(--radius); background: var(--card); box-shadow: var(--shadow-sm); }
.step-num {
  position: absolute; left: 16px; top: 18px; width: 52px; height: 52px; border-radius: 17px;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: #fff;
  background: var(--grad-warm); box-shadow: 0 10px 22px -10px rgba(224, 33, 138, .9);
}
.step:nth-child(2) .step-num { background: linear-gradient(135deg, #a855f7, #5b54f2); }
.step:nth-child(3) .step-num { background: linear-gradient(135deg, #5b54f2, #17b3c9); }
.step b { display: block; font-family: var(--font-head); font-size: 1.1rem; line-height: 1.3; margin-bottom: 4px; }
.step p { margin: 0; color: var(--ink-2); font-size: .92rem; line-height: 1.5; }
.steps-cta { text-align: center; margin-top: 26px; }
.steps-cta .btn { width: 100%; max-width: 420px; }

/* ---------- contact ---------- */
.contact { padding-top: 20px; }
.contact-grid { display: grid; gap: 14px; }
.contact-card { padding: 22px 18px; border-radius: 26px; background: var(--card); box-shadow: var(--shadow); }
.addr { display: flex; gap: 14px; }
.addr-ico { flex: none; width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center; color: #fff; background: var(--grad-warm); }
.addr address { font-style: normal; line-height: 1.65; color: var(--ink-2); font-size: .95rem; }
.addr b { display: block; font-family: var(--font-head); font-size: 1.25rem; color: var(--ink); line-height: 1.2; }
.addr-tag { display: block; color: var(--pink); font-weight: 700; font-size: .85rem; margin-bottom: 6px; }
.phone-line { margin: 18px 0 16px; padding: 14px 16px; border-radius: 18px; background: var(--bg-2); }
.phone-line small { display: block; font-weight: 700; color: var(--muted); font-size: .78rem; }
.big-phone { display: inline-block; font-family: var(--font-head); font-weight: 800; font-size: 2rem; line-height: 1.2; letter-spacing: .02em; }
.contact-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.contact-actions .btn { padding: 0 12px; }
.span-2 { grid-column: 1 / -1; }
.map { position: relative; aspect-ratio: 4 / 3; border-radius: 26px; overflow: hidden; background: linear-gradient(135deg, #fbe3f0, #ece4ff); box-shadow: var(--shadow); }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- footer ---------- */
.footer {
  position: relative; text-align: center; color: rgba(255, 255, 255, .78);
  padding: 50px 0 calc(34px + var(--dock-h) + 20px + env(safe-area-inset-bottom));
  background: radial-gradient(60% 50% at 50% 0%, rgba(224, 33, 138, .35), transparent 70%), linear-gradient(170deg, #2a0c3a, #13051a);
}
.footer img { width: 210px; height: auto; margin: 0 auto 8px; }
.foot-tag { font-family: var(--font-head); font-weight: 700; color: #fff; margin: 0 0 12px; letter-spacing: .05em; }
.foot-line { max-width: 460px; margin: 0 auto; font-size: .95rem; }
.foot-line .ico { width: 14px; height: 14px; color: #ff7ab8; vertical-align: -1px; }
.foot-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 18px; margin: 22px 0; font-weight: 600; }
.foot-links a { color: #fff; }
.copy { margin: 0; font-size: .8rem; opacity: .6; }

/* ---------- mobile dock ---------- */
.dock {
  position: fixed; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); z-index: 40;
  height: var(--dock-h); display: grid; grid-template-columns: repeat(5, 1fr); align-items: center;
  padding: 0 6px; border-radius: 24px;
  background: rgba(255, 255, 255, .88); -webkit-backdrop-filter: saturate(1.8) blur(16px); backdrop-filter: saturate(1.8) blur(16px);
  box-shadow: 0 14px 40px -12px rgba(90, 10, 90, .45), inset 0 0 0 1px rgba(255, 255, 255, .7);
  transition: transform .4s var(--ease);
}
.dock a { display: grid; justify-items: center; gap: 2px; font-size: .68rem; font-weight: 700; color: var(--ink-2); }
.dock a .ico { width: 22px; height: 22px; color: var(--ink); }
.dock .dock-wa {
  width: 60px; height: 60px; margin: -30px auto 0; border-radius: 50%; place-items: center; color: #fff;
  background: var(--grad-wa); box-shadow: 0 12px 24px -8px rgba(21, 169, 79, .85), 0 0 0 5px #fff7fb;
  position: relative;
}
.dock .dock-wa .ico { width: 30px; height: 30px; color: #fff; }
.dock .dock-wa::after { content: ""; position: absolute; inset: 0; border-radius: 50%; animation: ring 2.4s infinite; }
@keyframes ring { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .55); } 70%, 100% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); } }
html.lock .dock { transform: translateY(160%); }
.fab-wa { display: none; }

/* ---------- category sheet ---------- */
.sheet {
  position: fixed; inset: 0; z-index: 70; display: flex; flex-direction: column; background: var(--bg);
  transform: translateY(100%); transition: transform .5s var(--ease);
}
.sheet.open { transform: none; }
.sheet-head {
  display: flex; align-items: center; gap: 12px; padding: calc(10px + env(safe-area-inset-top)) 14px 10px;
  background: rgba(255, 255, 255, .92); box-shadow: 0 1px 0 var(--line);
}
.back-btn { flex: none; width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; background: var(--bg-2); color: var(--ink); }
.sheet-titles { min-width: 0; flex: 1; }
.sheet-titles strong { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.22rem; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sheet-titles small { display: block; color: var(--muted); font-size: .78rem; font-weight: 600; }
.sheet-count { display: inline-block; margin-left: 6px; padding: 1px 8px 0; border-radius: 999px; font-weight: 800; font-size: .72rem; color: #fff; background: var(--grad-warm); vertical-align: 1px; }
.sheet-chips { display: flex; gap: 8px; overflow-x: auto; padding: 10px 14px; background: rgba(255, 255, 255, .92); box-shadow: 0 1px 0 var(--line); scrollbar-width: none; flex: none; }
.sheet-chips::-webkit-scrollbar { display: none; }
.chip { flex: none; padding: 7px 14px 6px; border-radius: 999px; font-weight: 700; font-size: .84rem; white-space: nowrap; background: #fff; box-shadow: inset 0 0 0 1.5px var(--line); transition: background .25s, color .25s; }
.chip.active { color: #fff; background: var(--grad-warm); box-shadow: none; }
.sheet-body { flex: 1; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; padding: 14px 10px calc(100px + env(safe-area-inset-bottom)); }
.sheet-desc { margin: 0 4px 14px; color: var(--ink-2); font-weight: 600; font-size: .95rem; }
.masonry { columns: 2; column-gap: 10px; }
.m-item {
  position: relative; display: block; break-inside: avoid; margin: 0 0 10px; border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, #fbe3f0, #ece4ff); box-shadow: var(--shadow-sm);
  animation: rise .6s var(--ease) both; animation-delay: var(--d, 0ms);
}
@keyframes rise { from { opacity: 0; transform: translateY(18px); } }
.m-item img { width: 100%; height: auto; opacity: 0; transition: opacity .5s; }
.m-item img.loaded { opacity: 1; }
.m-item span {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 10px 8px;
  font-size: .72rem; font-weight: 700; line-height: 1.3; color: #fff; background: linear-gradient(transparent, rgba(34, 9, 47, .8));
}
.sheet-cta { position: absolute; left: 14px; right: 14px; bottom: calc(14px + env(safe-area-inset-bottom)); }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 80; display: flex; flex-direction: column;
  background: rgba(14, 4, 20, var(--bgop, .96)); color: #fff; opacity: 0; transition: opacity .3s;
}
.lightbox.open { opacity: 1; }
.lb-top { display: flex; align-items: center; justify-content: space-between; padding: calc(10px + env(safe-area-inset-top)) 14px 8px; }
.lb-count { font-weight: 700; font-size: .9rem; opacity: .8; }
.lb-top-actions { display: flex; gap: 8px; }
.lb-btn { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; background: rgba(255, 255, 255, .12); }
.lb-stage { position: relative; flex: 1; min-height: 0; overflow: hidden; touch-action: none; }
.lb-stage img {
  position: absolute; inset: 0; margin: auto; max-width: calc(100% - 20px); max-height: calc(100% - 10px);
  border-radius: 10px; user-select: none; -webkit-user-drag: none;
  transition: transform .35s var(--ease), opacity .35s;
}
.lb-nav { display: none; }
.lb-caption {
  display: grid; gap: 12px; padding: 12px 16px calc(16px + env(safe-area-inset-bottom));
  background: linear-gradient(transparent, rgba(0, 0, 0, .35));
}
.lb-cat { display: block; color: #ffb0d6; font-weight: 700; font-size: .8rem; }
.lb-caption strong { display: block; font-family: var(--font-head); font-size: 1.1rem; line-height: 1.3; }

/* ==========================================================
   Larger screens
   ========================================================== */
@media (min-width: 640px) {
  .container { padding: 0 24px; }
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-feature { aspect-ratio: auto; grid-row: span 2; grid-column: span 2; }
  .masonry { columns: 3; }
  .pick { flex-basis: 300px; }
  .pm-row a { width: 150px; }
  .q-list { grid-template-columns: repeat(4, 1fr); }
  .steps-list { grid-template-columns: repeat(3, 1fr); }
  .steps-list::before { left: 60px; right: 60px; top: 44px; bottom: auto; border-left: 0; border-top: 2px dashed rgba(224, 33, 138, .35); }
  .step { padding: 88px 20px 22px; }
  .step-num { left: 20px; top: 20px; }
}

@media (min-width: 900px) {
  .footer { padding-bottom: 34px; }
  .dock { display: none; }
  .fab-wa {
    display: grid; place-items: center; position: fixed; right: 26px; bottom: 26px; z-index: 40;
    width: 62px; height: 62px; border-radius: 50%; color: #fff; background: var(--grad-wa);
    box-shadow: 0 16px 30px -10px rgba(21, 169, 79, .8); transition: transform .3s var(--ease);
  }
  .fab-wa .ico { width: 32px; height: 32px; }
  .fab-wa::after { content: ""; position: absolute; inset: 0; border-radius: 50%; animation: ring 2.4s infinite; }
  .fab-wa:hover { transform: scale(1.08); }
  html.lock .fab-wa { display: none; }

  .topbar { padding: 12px 32px; }
  .brand img { height: 54px; }
  .topbar.scrolled .brand img { height: 46px; }
  .nav-desktop { display: flex; gap: 6px; }
  .nav-desktop a { padding: 8px 14px; border-radius: 12px; font-weight: 700; color: var(--ink-2); transition: background .2s, color .2s; }
  .nav-desktop a:hover { background: #fff; color: var(--pink); }
  .desk-only { display: inline-flex; }
  .menu-btn { display: none; }

  .hero { padding: 40px 0 70px; }
  .hero-inner { grid-template-columns: 1.25fr .75fr; align-items: center; gap: 30px; }
  .hero h1 { font-size: clamp(3.2rem, 5.2vw, 4.8rem); }
  .cta-row { max-width: 460px; }
  .hero-visual { height: 560px; }
  .stack { width: 330px; }
  .spin-badge { right: 4%; width: 128px; height: 128px; }
  .spin-core { inset: 31px; }

  .section { padding: 90px 0; }
  .svc-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .svc { padding: 22px 20px 22px; }
  .quality { grid-template-columns: auto 1fr; text-align: left; justify-items: start; align-items: center; padding: 40px 44px; column-gap: 34px; }
  .q-list { grid-column: 1 / -1; }
  .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .masonry { columns: 4; column-gap: 14px; }
  .m-item { margin-bottom: 14px; }
  .sheet-body { padding: 20px 28px 110px; max-width: 1400px; width: 100%; margin: 0 auto; }
  .sheet-cta { left: auto; right: 28px; bottom: 24px; }
  .pm-row a { width: 170px; }
  .picks-track { padding-left: max(24px, calc(50vw - 566px)); padding-right: 24px; scroll-padding-left: max(24px, calc(50vw - 566px)); }
  .pick { scroll-snap-align: start; }
  .studio { padding: 96px 0; border-radius: 48px 48px 0 0; }
  .studio-inner { grid-template-columns: auto 1fr; align-items: center; gap: 70px; justify-items: start; }
  .phone { width: 320px; }
  .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 20px; }
  .contact-card { padding: 30px; }
  .map { aspect-ratio: auto; min-height: 100%; }

  .lb-nav {
    display: grid; place-items: center; position: absolute; top: 50%; width: 52px; height: 52px; margin-top: -26px;
    border-radius: 50%; background: rgba(255, 255, 255, .14); color: #fff; transition: background .2s;
  }
  .lb-nav:hover { background: rgba(255, 255, 255, .26); }
  .lb-prev { left: 20px; } .lb-next { right: 20px; }
  .lb-caption { grid-template-columns: 1fr auto; align-items: center; padding: 16px 30px 24px; max-width: 1100px; width: 100%; margin: 0 auto; }
}


@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
  .pm-row, .picks-track { overflow-x: auto; }
}
