		/* =========================================================
		   Little Lotus Studio — Modern landing page
		   Palette: Lotus Pink #F47C9C · Peaceful Purple #9B7AD6
		   Calm Teal #4DB6AC · Warm Orange #FFB36B
		   Soft Cream #FFF7EA · Deep Text #2F2A3A
		========================================================= */
		:root {
			--pink:   #F47C9C;
			--purple: #9B7AD6;
			--teal:   #4DB6AC;
			--orange: #FFB36B;
			--cream:  #FFF7EA;
			--text:   #2F2A3A;

			--cream-2: #FFFDF8;
			--muted:   rgba(47, 42, 58, 0.62);
			--line:    rgba(47, 42, 58, 0.10);
			--glass:   rgba(255, 255, 255, 0.55);

			--shadow-sm: 0 6px 18px rgba(47, 42, 58, 0.06);
			--shadow-md: 0 18px 44px rgba(47, 42, 58, 0.10);
			--shadow-lg: 0 40px 90px rgba(47, 42, 58, 0.16);
			--radius: 28px;

			--maxw: 1200px;
			--ease: cubic-bezier(0.22, 1, 0.36, 1);
		}

		* { margin: 0; padding: 0; box-sizing: border-box; }
		html { scroll-behavior: smooth; scroll-padding-top: 100px; -webkit-text-size-adjust: 100%; }

		body {
			font-family: "Plus Jakarta Sans", system-ui, sans-serif;
			color: var(--text);
			background: var(--cream);
			line-height: 1.6;
			overflow-x: hidden;
			position: relative;
		}

		/* Animated gradient mesh background */
		.bg-mesh {
			position: fixed;
			inset: 0;
			z-index: -2;
			overflow: hidden;
			pointer-events: none;
		}
		.blob {
			position: absolute;
			border-radius: 50%;
			filter: blur(90px);
			opacity: 0.55;
			animation: drift 18s var(--ease) infinite alternate;
		}
		.blob.b1 { width: 520px; height: 520px; background: var(--pink);   top: -120px; left: -100px; }
		.blob.b2 { width: 480px; height: 480px; background: var(--purple); top: 30%;   right: -140px; animation-delay: -4s; }
		.blob.b3 { width: 460px; height: 460px; background: var(--teal);   bottom: -160px; left: 18%; animation-delay: -8s; }
		.blob.b4 { width: 400px; height: 400px; background: var(--orange); top: 58%;   left: -120px; animation-delay: -12s; }
		@keyframes drift {
			from { transform: translate3d(0,0,0) scale(1); }
			to   { transform: translate3d(40px,60px,0) scale(1.15); }
		}

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

		.container { width: min(var(--maxw), 92%); margin-inline: auto; }
		section { padding: 110px 0; position: relative; }

		h1, h2, h3 { font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; }
		.fr { font-family: "Fraunces", serif; font-style: italic; font-weight: 500; letter-spacing: -0.01em; }

		.eyebrow {
			display: inline-flex; align-items: center; gap: 8px;
			font-size: 13px; font-weight: 700; letter-spacing: 0.14em;
			text-transform: uppercase; color: var(--purple);
			background: rgba(155, 122, 214, 0.12);
			padding: 8px 16px; border-radius: 50px; margin-bottom: 22px;
		}
		.section-head { max-width: 640px; margin-bottom: 60px; }
		.section-head.center { margin-inline: auto; text-align: center; }
		.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.25rem); }
		.section-head p { color: var(--muted); font-size: 1.1rem; margin-top: 16px; }

		/* ---------- Buttons ---------- */
		.btn {
			display: inline-flex; align-items: center; gap: 10px;
			font-weight: 700; font-size: 1rem;
			padding: 15px 30px; border-radius: 50px;
			cursor: pointer; border: none;
			transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
			will-change: transform;
		}
		.btn svg { width: 18px; height: 18px; }
		.btn-primary {
			background: linear-gradient(135deg, var(--pink), var(--purple));
			color: #fff;
			box-shadow: 0 12px 30px rgba(244, 124, 156, 0.4);
		}
		.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(155, 122, 214, 0.45); }
		.btn-ghost {
			background: var(--cream-2);
			color: var(--text);
			box-shadow: var(--shadow-sm);
			border: 1px solid var(--line);
		}
		.btn-ghost:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

		/* ---------- Header ---------- */
		header {
			position: fixed; top: 0; left: 0; right: 0; z-index: 100;
			transition: all .35s var(--ease);
		}
		.nav {
			display: flex; align-items: center; justify-content: space-between;
			margin-top: 18px; padding: 12px 14px 12px 22px;
			border-radius: 50px;
			background: rgba(255, 253, 248, 0.6);
			backdrop-filter: blur(18px);
			-webkit-backdrop-filter: blur(18px);
			border: 1px solid rgba(255,255,255,0.6);
			box-shadow: var(--shadow-sm);
			transition: all .35s var(--ease);
		}
		header.scrolled .nav { background: rgba(255, 253, 248, 0.85); box-shadow: var(--shadow-md); margin-top: 10px; }
		.brand img { height: 46px; width: auto; }
		.nav-links { display: flex; align-items: center; gap: 4px; }
		.nav-links a {
			font-weight: 600; font-size: 0.95rem; color: var(--text);
			padding: 9px 16px; border-radius: 50px; transition: all .25s;
		}
		.nav-links a:hover { background: rgba(155,122,214,0.12); color: var(--purple); }
		.nav-cta { display: flex; align-items: center; gap: 12px; }
		.nav-cta .btn { padding: 12px 24px; font-size: 0.92rem; }
		.hamburger {
			display: none; width: 46px; height: 46px; border-radius: 50%;
			background: var(--cream-2); border: 1px solid var(--line);
			cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px;
		}
		.hamburger span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }
		.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
		.hamburger.open span:nth-child(2) { opacity: 0; }
		.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

		/* ---------- Hero ---------- */
		.hero { padding-top: 175px; padding-bottom: 60px; }
		.hero-grid {
			display: grid; grid-template-columns: 1.05fr 0.95fr;
			gap: 50px; align-items: center;
		}
		.hero h1 { font-size: clamp(2.6rem, 5.6vw, 4.6rem); }
		.hero h1 .grad {
			background: linear-gradient(120deg, var(--pink), var(--purple) 55%, var(--teal));
			-webkit-background-clip: text; background-clip: text; color: transparent;
		}
		.hero .sub { font-size: 1.18rem; color: var(--muted); margin: 26px 0 34px; max-width: 540px; }
		.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
		.hero-meta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
		.avatars { display: flex; }
		.avatars span {
			width: 46px; height: 46px; border-radius: 50%; margin-left: -14px;
			border: 3px solid var(--cream); overflow: hidden; background: #eee;
			box-shadow: var(--shadow-sm);
		}
		.avatars span:first-child { margin-left: 0; }
		.avatars span img { width: 100%; height: 100%; object-fit: cover; }
		.rating-txt { font-weight: 700; }
		.rating-txt small { display: block; font-weight: 500; color: var(--muted); font-size: 0.85rem; }
		.hero-note { margin-top: 26px; font-size: 0.92rem; color: var(--muted); max-width: 460px; }

		/* Hero 3D visual */
		.hero-visual { perspective: 1200px; }
		.stage {
			position: relative; aspect-ratio: 1/1; max-width: 480px; margin-inline: auto;
			transform-style: preserve-3d;
			transition: transform .2s var(--ease);
		}
		.halo {
			position: absolute; inset: 8%;
			background: radial-gradient(circle at 50% 45%, rgba(255,179,107,0.55), rgba(244,124,156,0.35) 45%, transparent 70%);
			border-radius: 50%; filter: blur(8px);
			transform: translateZ(-40px);
		}
		.disc {
			position: absolute; inset: 12%;
			border-radius: 50%;
			background: linear-gradient(160deg, #fff, var(--cream));
			box-shadow: var(--shadow-lg), inset 0 0 40px rgba(155,122,214,0.12);
			display: grid; place-items: center;
			transform: translateZ(10px);
		}
		.disc img { width: 78%; filter: drop-shadow(0 20px 30px rgba(155,122,214,0.35)); animation: bob 5s ease-in-out infinite; }
		@keyframes bob { 0%,100% { transform: translateY(-8px); } 50% { transform: translateY(8px); } }

		.chip {
			position: absolute; display: flex; align-items: center; gap: 10px;
			background: var(--glass); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
			border: 1px solid rgba(255,255,255,0.7);
			padding: 12px 16px; border-radius: 18px; box-shadow: var(--shadow-md);
			font-weight: 700; font-size: 0.9rem; transform: translateZ(60px);
			animation: float 6s ease-in-out infinite;
		}
		.chip .ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; font-size: 1.1rem; color: #fff; }
		.chip small { display: block; font-weight: 500; color: var(--muted); font-size: 0.74rem; }
		.chip.c1 { top: 6%; left: -6%; }
		.chip.c2 { bottom: 14%; right: -8%; animation-delay: -2s; }
		.chip.c3 { bottom: -2%; left: 8%; animation-delay: -4s; }
		@keyframes float { 0%,100% { transform: translateZ(60px) translateY(-6px); } 50% { transform: translateZ(60px) translateY(6px); } }

		/* ---------- Marquee ---------- */
		.marquee {
			padding: 26px 0; border-block: 1px solid var(--line);
			background: rgba(255,255,255,0.4); overflow: hidden; white-space: nowrap;
		}
		.marquee-track { display: inline-flex; gap: 18px; align-items: center; animation: scroll 26s linear infinite; }
		.marquee:hover .marquee-track { animation-play-state: paused; }
		.marquee-track span { font-family: "Fraunces", serif; font-style: italic; font-size: 1.5rem; color: var(--text); }
		.marquee-track .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--pink); }
		.marquee-track .dot:nth-child(4n) { background: var(--purple); }
		.marquee-track .dot:nth-child(4n+2) { background: var(--teal); }
		.marquee-track .dot:nth-child(4n+3) { background: var(--orange); }
		@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

		/* ---------- Services ---------- */
		.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
		.card {
			background: var(--cream-2); border: 1px solid var(--line);
			border-radius: var(--radius); padding: 34px 30px;
			box-shadow: var(--shadow-sm); transition: box-shadow .35s var(--ease);
			transform-style: preserve-3d; will-change: transform;
		}
		.card:hover { box-shadow: var(--shadow-lg); }
		.card .ic {
			width: 62px; height: 62px; border-radius: 18px; display: grid; place-items: center;
			font-size: 1.7rem; margin-bottom: 22px; color: #fff; box-shadow: var(--shadow-sm);
			transform: translateZ(40px);
		}
		.card h3 { font-size: 1.32rem; margin-bottom: 12px; transform: translateZ(25px); }
		.card p { color: var(--muted); transform: translateZ(15px); }
		.card .num { font-family: "Fraunces", serif; font-style: italic; color: var(--line); font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
		.svc-1 .ic { background: linear-gradient(135deg, var(--orange), #ff9f6b); }
		.svc-2 .ic { background: linear-gradient(135deg, var(--pink), #f25c84); }
		.svc-3 .ic { background: linear-gradient(135deg, var(--teal), #38a89d); }
		.svc-4 .ic { background: linear-gradient(135deg, var(--purple), #7d59c9); }
		.svc-5 .ic { background: linear-gradient(135deg, #ffb36b, var(--pink)); }

		/* ---------- About ---------- */
		.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
		.about-visual { perspective: 1000px; }
		.about-stack { position: relative; aspect-ratio: 4/5; max-width: 420px; }
		.about-card {
			position: absolute; border-radius: var(--radius); box-shadow: var(--shadow-lg);
			display: grid; place-items: center; font-size: 4rem;
		}
		.about-card.big { inset: 10% 0 0 10%; background: linear-gradient(160deg, var(--purple), var(--pink)); }
		.about-card.sm  { width: 46%; aspect-ratio: 1; left: -6%; bottom: 6%; background: linear-gradient(160deg, var(--teal), #6fd0c6); box-shadow: var(--shadow-md); }
		.about-badge {
			position: absolute; top: 4%; right: -4%; background: var(--cream-2);
			padding: 16px 20px; border-radius: 20px; box-shadow: var(--shadow-md); text-align: center;
		}
		.about-badge b { font-size: 1.6rem; color: var(--purple); }
		.about-badge small { color: var(--muted); }
		.checks { margin: 28px 0 32px; display: grid; gap: 14px; }
		.checks li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
		.checks .tick { flex: none; width: 26px; height: 26px; border-radius: 50%; background: rgba(77,182,172,0.15); color: var(--teal); display: grid; place-items: center; font-size: 0.8rem; }

		/* ---------- Stats ---------- */
		.stats { background: linear-gradient(135deg, rgba(155,122,214,0.08), rgba(77,182,172,0.08)); }
		.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
		.stat {
			background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius);
			padding: 36px 26px; text-align: center; box-shadow: var(--shadow-sm);
		}
		.stat .n { font-size: clamp(2.4rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -0.03em;
			background: linear-gradient(120deg, var(--pink), var(--purple)); -webkit-background-clip: text; background-clip: text; color: transparent; }
		.stat p { color: var(--muted); font-weight: 600; margin-top: 6px; }

		/* ---------- Work ---------- */
		.work-item {
			display: grid; grid-template-columns: 1fr 1fr; gap: 0;
			border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md);
			margin-bottom: 34px; background: var(--cream-2); border: 1px solid var(--line);
			transition: transform .4s var(--ease), box-shadow .4s var(--ease);
		}
		.work-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
		.work-text { padding: 50px; display: flex; flex-direction: column; justify-content: center; }
		.work-text .num { font-family: "Fraunces", serif; font-style: italic; font-size: 1.2rem; color: var(--purple); }
		.work-text h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: 8px 0 14px; }
		.work-text p { color: var(--muted); margin-bottom: 20px; }
		.tags { display: flex; flex-wrap: wrap; gap: 10px; }
		.tags span { font-size: 0.82rem; font-weight: 600; padding: 7px 14px; border-radius: 50px; background: rgba(47,42,58,0.05); color: var(--text); }
		.work-art { min-height: 320px; display: grid; place-items: center; font-size: 5rem; position: relative; overflow: hidden; }
		.work-art::after { content:""; position:absolute; inset:0; background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.35), transparent 60%); }
		.work-art .emoji { position: relative; z-index: 1; filter: drop-shadow(0 20px 30px rgba(47,42,58,0.25)); animation: bob 6s ease-in-out infinite; }
		.art-1 { background: linear-gradient(150deg, var(--teal), #6fd0c6); }
		.art-2 { background: linear-gradient(150deg, var(--orange), var(--pink)); }
		.art-3 { background: linear-gradient(150deg, var(--pink), var(--purple)); }
		.art-4 { background: linear-gradient(150deg, var(--purple), var(--teal)); }
		.work-item:nth-child(even) .work-text { order: 2; }

		/* ---------- Testimonials ---------- */
		.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
		.tcard {
			background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius);
			padding: 34px 30px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
		}
		.tcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
		.tcard .stars { color: var(--orange); margin-bottom: 16px; letter-spacing: 2px; }
		.tcard blockquote { font-size: 1.08rem; font-weight: 500; }
		.tcard .who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
		.tcard .who .ava { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; background: #eee; flex: none; }
		.tcard .who .ava img { width: 100%; height: 100%; object-fit: cover; }
		.tcard .who b { display: block; }
		.tcard .who small { color: var(--muted); }

		/* ---------- Contact ---------- */
		.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 44px; align-items: stretch; }
		.contact-info {
			background: linear-gradient(160deg, var(--purple), var(--pink));
			border-radius: var(--radius); padding: 46px; color: #fff; box-shadow: var(--shadow-lg);
			display: flex; flex-direction: column;
		}
		.contact-info h3 { font-size: 1.8rem; }
		.contact-info .lead { opacity: 0.9; margin: 14px 0 30px; }
		.contact-info .row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; font-weight: 600; }
		.contact-info .row .ci { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.18); display: grid; place-items: center; flex: none; }
		.socials { display: flex; gap: 12px; margin-top: auto; padding-top: 26px; }
		.socials a { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.18); display: grid; place-items: center; transition: .25s; }
		.socials a:hover { background: #fff; color: var(--purple); transform: translateY(-3px); }
		.form-card { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 46px; box-shadow: var(--shadow-sm); }
		.field { margin-bottom: 20px; }
		.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; }
		.field input, .field textarea {
			width: 100%; font: inherit; color: var(--text);
			padding: 15px 18px; border-radius: 16px; border: 1px solid var(--line);
			background: #fff; transition: border .25s, box-shadow .25s;
		}
		.field input:focus, .field textarea:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 4px rgba(155,122,214,0.15); }
		.field textarea { resize: vertical; min-height: 130px; }
		.two { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

		/* ---------- Newsletter ---------- */
		.news-band {
			background: linear-gradient(135deg, var(--text), #423a52);
			border-radius: var(--radius); padding: 60px; color: #fff;
			display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
			box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
		}
		.news-band::before { content:""; position:absolute; width: 300px; height: 300px; border-radius:50%; background: var(--pink); filter: blur(80px); opacity: .4; top:-100px; right: 10%; }
		.news-band h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); position: relative; }
		.news-band p { opacity: 0.8; margin-top: 12px; position: relative; }
		.news-form { display: flex; gap: 12px; position: relative; }
		.news-form input { flex: 1; padding: 16px 20px; border-radius: 50px; border: none; font: inherit; }
		.news-form input:focus { outline: 3px solid rgba(255,255,255,0.3); }

		/* ---------- Footer ---------- */
		footer { background: var(--text); color: rgba(255,255,255,0.7); padding: 70px 0 30px; }
		.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
		.foot-brand .flogo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
		.foot-brand .flogo img { width: 48px; height: 48px; }
		.foot-brand .flogo b { color: #fff; font-size: 1.2rem; }
		.foot-brand p { max-width: 320px; }
		footer h4 { color: #fff; font-size: 1rem; margin-bottom: 20px; letter-spacing: 0.02em; }
		footer ul li { margin-bottom: 12px; }
		footer ul a { transition: color .25s; }
		footer ul a:hover { color: var(--pink); }
		.foot-contact a { display: block; margin-bottom: 12px; color: rgba(255,255,255,0.8); }
		.foot-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 50px; padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.9rem; }

		/* ---------- Scroll top ---------- */
		.to-top {
			position: fixed; right: 26px; bottom: 26px; width: 52px; height: 52px; border-radius: 50%;
			background: linear-gradient(135deg, var(--pink), var(--purple)); color: #fff; border: none; cursor: pointer;
			display: grid; place-items: center; box-shadow: var(--shadow-md); z-index: 90;
			opacity: 0; transform: translateY(20px); transition: .35s var(--ease);
		}
		.to-top.show { opacity: 1; transform: translateY(0); }

		/* ---------- Reveal animation ---------- */
		.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
		.reveal.in { opacity: 1; transform: none; }

		/* ---------- Icon sizing ---------- */
		.card .ic svg, .feature .fic svg, .chip .ic svg { width: 26px; height: 26px; }
		.about-card svg { width: 66px; height: 66px; color: #fff; }
		.work-art .emoji svg { width: 92px; height: 92px; color: #fff; }
		.contact-info .row .ci svg { width: 20px; height: 20px; }
		.socials a svg { width: 18px; height: 18px; }
		.eyebrow svg { width: 15px; height: 15px; }

		/* ---------- Scroll progress ---------- */
		.progress {
			position: fixed; top: 0; left: 0; height: 4px; width: 0; z-index: 200;
			background: linear-gradient(90deg, var(--pink), var(--purple), var(--teal));
			transition: width .1s linear;
		}

		/* ---------- Features (Why) ---------- */
		.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
		.feature {
			background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius);
			padding: 32px 26px; box-shadow: var(--shadow-sm);
			transition: transform .35s var(--ease), box-shadow .35s var(--ease);
		}
		.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
		.feature .fic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; font-size: 1.55rem; margin-bottom: 18px; color: #fff; box-shadow: var(--shadow-sm); }
		.feature h3 { font-size: 1.14rem; margin-bottom: 8px; }
		.feature p { color: var(--muted); font-size: 0.96rem; }
		.f1 .fic { background: linear-gradient(135deg, var(--teal), #38a89d); }
		.f2 .fic { background: linear-gradient(135deg, var(--pink), #f25c84); }
		.f3 .fic { background: linear-gradient(135deg, var(--orange), #ff9f6b); }
		.f4 .fic { background: linear-gradient(135deg, var(--purple), #7d59c9); }

		/* ---------- Process (How we work) ---------- */
		.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
		.step {
			position: relative; background: var(--cream-2); border: 1px solid var(--line);
			border-radius: var(--radius); padding: 34px 28px; box-shadow: var(--shadow-sm);
			transition: transform .35s var(--ease), box-shadow .35s var(--ease);
		}
		.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
		.step .sn {
			font-family: "Fraunces", serif; font-style: italic; font-weight: 700; font-size: 2.6rem; line-height: 1;
			background: linear-gradient(120deg, var(--pink), var(--purple));
			-webkit-background-clip: text; background-clip: text; color: transparent;
		}
		.step h3 { font-size: 1.2rem; margin: 10px 0 10px; }
		.step p { color: var(--muted); font-size: 0.96rem; }

		/* ---------- FAQ ---------- */
		.faq { max-width: 840px; margin-inline: auto; }
		.faq-item {
			background: var(--cream-2); border: 1px solid var(--line); border-radius: 20px;
			margin-bottom: 14px; overflow: hidden; transition: box-shadow .3s var(--ease);
		}
		.faq-item.open { box-shadow: var(--shadow-md); }
		.faq-q {
			display: flex; align-items: center; justify-content: space-between; gap: 16px;
			width: 100%; text-align: left; background: none; border: none; cursor: pointer;
			font: inherit; font-weight: 700; font-size: 1.06rem; color: var(--text); padding: 22px 24px;
		}
		.faq-q .pm {
			flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
			background: rgba(155,122,214,0.12); color: var(--purple); font-size: 1.3rem; line-height: 1;
			transition: transform .3s var(--ease), background .3s, color .3s;
		}
		.faq-item.open .pm { transform: rotate(45deg); background: var(--purple); color: #fff; }
		.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
		.faq-a p { padding: 0 24px 24px; color: var(--muted); }

		/* ---------- Form status ---------- */
		.form-status { margin-top: 14px; font-weight: 600; font-size: 0.95rem; min-height: 1.2em; }
		.form-status.ok { color: var(--teal); }
		.form-status.err { color: var(--pink); }
		.form-status.light.ok { color: #b8f1e9; }
		.form-status.light.err { color: #ffd2dd; }

		/* ---------- Responsive ---------- */
		@media (max-width: 980px) {
			section { padding: 80px 0; }
			.hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
			.hero-visual { order: -1; }
			.cards, .tcards, .features, .steps { grid-template-columns: repeat(2, 1fr); }
			.stat-grid { grid-template-columns: repeat(2, 1fr); }
			.work-item { grid-template-columns: 1fr; }
			.work-item:nth-child(even) .work-text { order: 0; }
			.work-art { min-height: 240px; }
			.news-band { grid-template-columns: 1fr; padding: 44px; }
			.foot-grid { grid-template-columns: 1fr 1fr; }
			.nav-links { display: none; }
			.hamburger { display: flex; }
			.nav-cta .btn-ghost { display: none; }

			/* Mobile menu */
			.nav-links.mobile {
				display: flex; position: absolute; top: 84px; left: 0; right: 0;
				flex-direction: column; align-items: stretch; gap: 6px;
				background: rgba(255,253,248,0.97); backdrop-filter: blur(18px);
				padding: 18px; border-radius: 24px; box-shadow: var(--shadow-lg);
			}
			.nav-links.mobile a { padding: 14px 18px; }
		}
		@media (max-width: 600px) {
			.cards, .tcards, .stat-grid, .foot-grid, .two, .features, .steps { grid-template-columns: 1fr; }
			.hero-actions .btn { flex: 1; justify-content: center; }
			.work-text, .form-card, .contact-info { padding: 32px; }
			.chip.c1 { left: 0; } .chip.c2 { right: 0; }
		}
		@media (prefers-reduced-motion: reduce) {
			*, *::before, *::after { animation: none !important; transition: none !important; }
		}

		/* =========================================================
		   Blog — listing + single article
		========================================================= */
		.page-hero { padding: 160px 0 40px; text-align: center; }
		.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
		.page-hero p { color: var(--muted); font-size: 1.12rem; margin: 18px auto 0; max-width: 620px; }
		.crumbs { font-size: 0.92rem; color: var(--muted); margin-bottom: 18px; }
		.crumbs a:hover { color: var(--purple); }

		.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
		.post-card {
			background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius);
			overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
			transition: transform .35s var(--ease), box-shadow .35s var(--ease);
		}
		.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
		.post-card .thumb { aspect-ratio: 16/10; position: relative; overflow: hidden; display: grid; place-items: center; }
		.post-card .thumb svg { width: 76px; height: 76px; color: #fff; filter: drop-shadow(0 14px 22px rgba(47,42,58,0.25)); }
		.post-card .thumb::after { content:""; position:absolute; inset:0; background: radial-gradient(circle at 70% 25%, rgba(255,255,255,0.35), transparent 60%); }
		.t-pink { background: linear-gradient(150deg, var(--pink), var(--purple)); }
		.t-teal { background: linear-gradient(150deg, var(--teal), #6fd0c6); }
		.t-orange { background: linear-gradient(150deg, var(--orange), var(--pink)); }
		.post-card .body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
		.post-card .cat { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--purple); margin-bottom: 10px; }
		.post-card h3 { font-size: 1.24rem; line-height: 1.25; margin-bottom: 10px; }
		.post-card p { color: var(--muted); font-size: 0.96rem; margin-bottom: 18px; }
		.post-meta { display: flex; align-items: center; gap: 10px; font-size: 0.86rem; color: var(--muted); margin-top: auto; }
		.post-meta .dot2 { width: 4px; height: 4px; border-radius: 50%; background: var(--line); }
		.read-more { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--text); margin-top: 16px; }
		.read-more svg { width: 16px; height: 16px; transition: transform .25s; }
		.post-card:hover .read-more svg { transform: translateX(4px); }
		.read-more:hover { color: var(--purple); }

		/* Single article */
		.article-hero { max-width: 820px; margin-inline: auto; text-align: center; }
		.article-hero .cat { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--purple); }
		.article-hero h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin: 14px 0 20px; }
		.article-hero .meta { display: flex; align-items: center; justify-content: center; gap: 12px; color: var(--muted); font-weight: 500; }
		.article-hero .meta img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
		.article-cover { max-width: 980px; margin: 44px auto 0; height: clamp(220px, 36vw, 420px); border-radius: var(--radius); display: grid; place-items: center; box-shadow: var(--shadow-lg); }
		.article-cover svg { width: 120px; height: 120px; color: #fff; filter: drop-shadow(0 20px 30px rgba(47,42,58,0.25)); }
		.article-body { max-width: 760px; margin: 0 auto; }
		.article-body h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 44px 0 16px; }
		.article-body h3 { font-size: 1.3rem; margin: 32px 0 12px; }
		.article-body p { color: rgba(47,42,58,0.8); font-size: 1.1rem; margin-bottom: 20px; }
		.article-body ul, .article-body ol { margin: 0 0 22px 22px; color: rgba(47,42,58,0.8); font-size: 1.1rem; }
		.article-body li { margin-bottom: 10px; }
		.article-body blockquote {
			border-left: 4px solid var(--purple); background: rgba(155,122,214,0.07);
			padding: 18px 24px; border-radius: 12px; font-family: "Fraunces", serif; font-style: italic;
			font-size: 1.2rem; color: var(--text); margin: 0 0 24px;
		}
		.article-body strong { color: var(--text); }
		.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 36px 0; }
		.tag-row span { font-size: 0.84rem; font-weight: 600; padding: 8px 16px; border-radius: 50px; background: rgba(47,42,58,0.05); }
		.share-box { display: flex; align-items: center; gap: 14px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 30px 0; }
		.share-box b { font-weight: 700; }
		.share-box a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--cream); border: 1px solid var(--line); transition: .25s; }
		.share-box a:hover { background: var(--purple); color: #fff; transform: translateY(-3px); }
		.share-box a svg { width: 17px; height: 17px; }

		@media (max-width: 980px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
		@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

		/* ---------- Google Play button ---------- */
		.btn-play {
			display: inline-flex; align-items: center; gap: 12px; align-self: flex-start; width: fit-content;
			background: var(--text); color: #fff; padding: 11px 22px; border-radius: 14px;
			box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
		}
		.btn-play:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: #fff; }
		.btn-play svg { width: 24px; height: 24px; }
		.btn-play small { display: block; font-size: 0.64rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.8; line-height: 1; }
		.btn-play b { display: block; font-size: 1.05rem; font-weight: 700; line-height: 1.15; }
		.work-text h3 a:hover { color: var(--purple); }

		/* ---------- App screenshot in work panel ---------- */
		.work-art .app-shot {
			width: min(230px, 62%); border-radius: 34px; position: relative; z-index: 1;
			box-shadow: 0 26px 54px rgba(47,42,58,0.30);
			animation: bob 6s ease-in-out infinite;
		}

		/* ---------- AEO: Quick-answer callout ---------- */
		.tldr {
			background: rgba(155,122,214,0.08); border: 1px solid var(--line);
			border-left: 4px solid var(--purple); border-radius: 14px;
			padding: 20px 24px; margin: 0 0 30px;
		}
		.tldr b { display: block; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--purple); margin-bottom: 6px; }
		.tldr p { margin: 0; color: rgba(47,42,58,0.85); font-size: 1.05rem; }
		.post-faq { margin: 40px 0 10px; }
		.post-faq h2 { margin-bottom: 18px; }
