/* ==========================================================================
   Vaibhav Web Studio — main stylesheet
   ========================================================================== */

:root {
  --paper: #f7f5f0;
  --paper-2: #efebe3;
  --card: #ffffff;
  --ink: #141417;
  --ink-2: #3a3a42;
  --muted: #62616a;
  --line: #e3ded4;
  --line-strong: #cfc8bb;
  --accent: #b83c0c;
  --accent-soft: #fbe6dc;
  --accent-bright: #ff6a2b;
  --night: #141417;
  --night-2: #1d1d22;
  --night-text: #f2efe8;
  --night-muted: #a9a7ae;
  --success: #1e7a4c;
  --success-soft: #e3f3ea;
  --danger: #b42318;
  --danger-soft: #fdecea;

  --font-display: "Bricolage Grotesque", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(20, 20, 23, .06);
  --shadow: 0 1px 2px rgba(20, 20, 23, .04), 0 8px 24px -8px rgba(20, 20, 23, .12);
  --shadow-lg: 0 2px 4px rgba(20, 20, 23, .04), 0 24px 60px -20px rgba(20, 20, 23, .25);

  --gutter: 20px;
  --max: 1200px;
  --header-h: 68px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; letter-spacing: -.02em; margin: 0; font-weight: 700; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
[hidden] { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: 820px; }
.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px; text-decoration: none;
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
.text-muted { color: var(--muted); }
.m-0 { margin: 0 !important; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-36 { margin-top: 36px; }
.card-feature .card-meta { color: #fff; }
.small-print { font-size: .875rem; color: var(--muted); }
.small-print a { color: var(--ink); }
.accent { color: var(--accent); }

@media (min-width: 768px) { :root { --gutter: 32px; } }

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8125rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before { content: ""; width: 18px; height: 2px; background: currentColor; border-radius: 2px; }
.display { font-size: clamp(2.35rem, 7.2vw, 4.6rem); letter-spacing: -.035em; line-height: 1.02; font-weight: 750; }
.h2 { font-size: clamp(1.85rem, 4.6vw, 3rem); letter-spacing: -.03em; }
.h3 { font-size: 1.25rem; letter-spacing: -.01em; }
.lead { font-size: clamp(1.075rem, 2vw, 1.25rem); color: var(--ink-2); max-width: 60ch; }
.prose p + p { margin-top: 1em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 24px; border-radius: 999px;
  font-weight: 600; font-size: 1rem; text-decoration: none; line-height: 1;
  border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .2s var(--ease), background-color .2s, border-color .2s, color .2s, box-shadow .2s;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #000; box-shadow: 0 10px 24px -10px rgba(20, 20, 23, .6); }
.btn-primary .arrow { transition: transform .2s var(--ease); }
.btn-primary:hover .arrow { transform: translateX(3px); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: #a93508; }
.btn-ghost { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--paper-2); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .3); }
.btn-outline-light:hover { border-color: #fff; }
.btn-sm { min-height: 42px; padding: 0 18px; font-size: .9375rem; }
.btn-block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px; font-weight: 600; text-decoration: none;
  border-bottom: 1.5px solid currentColor; padding-bottom: 2px;
}
.link-arrow:hover { color: var(--accent); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
/* Blur lives on a pseudo-element: backdrop-filter on the header itself would
   trap the fixed-position mobile menu inside the header's box. */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(247, 245, 240, .86);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  backdrop-filter: saturate(160%) blur(12px);
}
body.menu-open .site-header::before { background: var(--paper); }
.site-header.is-scrolled { border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; min-width: 0; }
.brand img { width: 38px; height: 38px; border-radius: 50%; flex: none; box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--line); }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; letter-spacing: -.02em; line-height: 1.05; }
.brand-name small { display: block; font-family: var(--font-body); font-size: .6875rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

.nav-desktop { display: none; }
.nav-desktop ul { display: flex; gap: 4px; list-style: none; }
.nav-desktop a {
  display: block; padding: 8px 12px; border-radius: 999px;
  font-size: .9375rem; font-weight: 500; text-decoration: none; color: var(--ink-2);
  transition: background-color .2s, color .2s;
}
.nav-desktop a:hover { background: var(--paper-2); color: var(--ink); }
.nav-desktop a[aria-current="page"] { color: var(--ink); background: var(--paper-2); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.header-cta { display: none; }
.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 16px; border-radius: 999px; border: 1.5px solid var(--line-strong);
  background: #fff; cursor: pointer; font-weight: 600; font-size: .9375rem;
}
.menu-icon { position: relative; width: 16px; height: 10px; }
.menu-icon::before, .menu-icon::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform .25s var(--ease), top .25s var(--ease);
}
.menu-icon::before { top: 0; }
.menu-icon::after { top: 8px; }
.menu-toggle[aria-expanded="true"] .menu-icon::before { top: 4px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon::after { top: 4px; transform: rotate(-45deg); }

.header-cta { display: inline-flex; padding: 0 16px; }
.cta-short { display: none; }
@media (max-width: 479px) {
  .cta-long { display: none; }
  .cta-short { display: inline; }
  .hide-sm { display: none; }
}
@media (max-width: 359px) {
  .brand-name { display: none; }
  .menu-toggle { padding: 0 14px; }
}
@media (min-width: 1080px) {
  .nav-desktop { display: block; }
  .menu-toggle { display: none; }
}
@media (max-width: 419px) { .brand-name small { display: none; } }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 49;
  background: var(--paper);
  overflow-y: auto; overscroll-behavior: contain;
  padding: 12px var(--gutter) 32px;
  display: flex; flex-direction: column;
  animation: menu-in .28s var(--ease);
}
@keyframes menu-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.mobile-menu ul { list-style: none; border-top: 1px solid var(--line); }
.mobile-menu li { border-bottom: 1px solid var(--line); }
.mobile-menu li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 2px; text-decoration: none;
  font-family: var(--font-display); font-size: 1.625rem; font-weight: 650; letter-spacing: -.02em;
}
.mobile-menu li a::after { content: "→"; font-family: var(--font-body); font-size: 1.1rem; color: var(--muted); }
.mobile-menu li a[aria-current="page"] { color: var(--accent); }
.mobile-menu-foot { margin-top: auto; padding-top: 28px; display: grid; gap: 12px; }
.mobile-menu-contact { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: .9375rem; color: var(--muted); }
.mobile-menu-contact a { color: var(--ink); font-weight: 600; text-decoration: none; }
body.menu-open { overflow: hidden; }
@media (min-width: 1080px) { .mobile-menu { display: none !important; } }

/* ---------- Sections ---------- */
.section { padding-block: clamp(64px, 10vw, 120px); }
.section-tight { padding-block: clamp(48px, 7vw, 80px); }
.section-alt { background: var(--paper-2); }
.section-dark { background: var(--night); color: var(--night-text); }
.section-dark .lead, .section-dark .text-muted { color: var(--night-muted); }
.section-dark .eyebrow { color: var(--accent-bright); }
.section-head { display: grid; gap: 16px; margin-bottom: clamp(36px, 5vw, 56px); max-width: 720px; }
.section-head-split { display: grid; gap: 20px; margin-bottom: clamp(36px, 5vw, 56px); }
@media (min-width: 900px) {
  .section-head-split { grid-template-columns: 1.1fr 1fr; align-items: end; gap: 48px; }
}

/* ---------- Hero ---------- */
.hero { padding-top: clamp(32px, 6vw, 72px); padding-bottom: clamp(56px, 8vw, 96px); overflow: hidden; }
.hero-grid { display: grid; gap: clamp(40px, 6vw, 64px); align-items: center; }
.hero-copy { display: grid; gap: 22px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; justify-self: start;
  padding: 6px 14px 6px 6px; border-radius: 999px; background: #fff; border: 1px solid var(--line);
  font-size: .875rem; font-weight: 500; color: var(--ink-2);
}
.hero-badge img { width: 28px; height: 28px; border-radius: 50%; }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #22a55a; box-shadow: 0 0 0 3px rgba(34, 165, 90, .18); }
.display .highlight { position: relative; white-space: nowrap; }
.display .highlight::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: .06em; height: .2em; z-index: -1;
  background: var(--accent-soft); border-radius: 4px;
}
.hero-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 6px; }
.hero-note { font-size: .9375rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero-note svg { width: 16px; height: 16px; color: var(--success); flex: none; }
@media (min-width: 480px) { .hero-actions { flex-direction: row; flex-wrap: wrap; } }
@media (min-width: 1000px) { .hero-grid { grid-template-columns: 1.05fr 1fr; } }

/* Hero visual: a laptop-ish browser + phone, built in CSS */
.hero-visual { position: relative; padding: 0 0 40px; }
.hero-visual .mock { transform: rotate(-1deg); }
.hero-phone {
  position: absolute; right: 0; bottom: 0; width: 34%; max-width: 180px; min-width: 116px;
  border-radius: 26px; background: var(--ink); padding: 7px;
  box-shadow: var(--shadow-lg); transform: rotate(3deg);
}
.hero-phone .phone-screen { border-radius: 20px; overflow: hidden; aspect-ratio: 9 / 18; background: #fff; }
.hero-chip {
  position: absolute; display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 14px; font-size: .8125rem; font-weight: 600; box-shadow: var(--shadow);
}
.hero-chip b { color: var(--success); font-variant-numeric: tabular-nums; }
.hero-chip-1 { left: -6px; top: 18%; }
.hero-chip-2 { left: 10%; bottom: 6px; }
@media (max-width: 479px) { .hero-chip-1 { top: -14px; left: 8px; } }

/* ---------- Mock browser + mini sites (used in hero & showcase) ---------- */
.mock {
  background: #fff; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
}
.mock-bar { display: flex; align-items: center; gap: 6px; padding: 9px 12px; background: #f3f1ec; border-bottom: 1px solid var(--line); }
.mock-bar i { width: 9px; height: 9px; border-radius: 50%; background: #d9d4ca; }
.mock-url {
  flex: 1; margin-left: 8px; height: 20px; border-radius: 6px; background: #fff; border: 1px solid var(--line);
  font-size: 10px; line-height: 18px; color: var(--muted); padding: 0 8px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}

/* The mini site scales purely from its own width using container query units */
.mini { container-type: inline-size; aspect-ratio: 16 / 10; position: relative; overflow: hidden; }
.phone-screen .mini { aspect-ratio: auto; height: 100%; }
.mini-inner { position: absolute; inset: 0; display: flex; flex-direction: column; padding: 3.2cqw 4.5cqw; gap: 3cqw; }
.mini-nav { display: flex; align-items: center; justify-content: space-between; font-size: 2.3cqw; }
.mini-logo { font-weight: 800; font-size: 2.9cqw; letter-spacing: -.02em; }
.mini-links { display: flex; gap: 2.6cqw; opacity: .75; }
.mini-links span { width: 6cqw; height: .9cqw; border-radius: 1cqw; background: currentColor; opacity: .5; }
.mini-hero { display: grid; grid-template-columns: 1.15fr 1fr; gap: 4cqw; align-items: center; flex: 1; }
.mini-title { font-size: 5.6cqw; line-height: 1.02; font-weight: 800; letter-spacing: -.03em; }
.mini-sub { font-size: 2.1cqw; line-height: 1.4; opacity: .75; margin-top: 2cqw; }
.mini-btns { display: flex; gap: 1.6cqw; margin-top: 3cqw; }
.mini-btn { font-size: 1.9cqw; font-weight: 700; padding: 1.4cqw 2.6cqw; border-radius: 6cqw; }
.mini .mini-btn.ghost { background: transparent !important; color: inherit !important; border: .3cqw solid currentColor; }
.mini-art { height: 100%; max-height: 38cqw; border-radius: 2.4cqw; position: relative; overflow: hidden; }
.mini-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2cqw; }
.mini-cards span { height: 6cqw; border-radius: 1.6cqw; }

/* Phone-sized mini: stack */
.phone-screen .mini-inner { padding: 7cqw 7cqw; gap: 6cqw; }
.phone-screen .mini-hero { grid-template-columns: 1fr; gap: 7cqw; align-content: start; }
.phone-screen .mini-title { font-size: 11cqw; }
.phone-screen .mini-sub { font-size: 5cqw; }
.phone-screen .mini-btn { font-size: 4.6cqw; padding: 3cqw 5cqw; }
.phone-screen .mini-logo { font-size: 6cqw; }
.phone-screen .mini-links { display: none; }
.phone-screen .mini-art { max-height: none; height: 60cqw; }
.phone-screen .mini-cards { grid-template-columns: 1fr 1fr; }
.phone-screen .mini-cards span { height: 18cqw; }
.phone-screen .mini-menu { width: 6cqw; height: 4cqw; border-top: .8cqw solid currentColor; border-bottom: .8cqw solid currentColor; }

/* Mini themes */
.t-restaurant { background: #13291f; color: #f6ecd9; font-family: Georgia, "Times New Roman", serif; }
.t-restaurant .mini-btn { background: #e8a33d; color: #13291f; font-family: var(--font-body); }
.t-restaurant .mini-art { background: radial-gradient(circle at 50% 55%, #f6ecd9 0 24%, transparent 25%), radial-gradient(circle at 50% 55%, #e8a33d 0 33%, #1f3d2f 34%); }
.t-restaurant .mini-cards span { background: rgba(246, 236, 217, .1); border: .2cqw solid rgba(246, 236, 217, .2); }

.t-salon { background: #f7e9e3; color: #3d1832; }
.t-salon .mini-title { font-family: Georgia, serif; font-weight: 400; font-style: italic; }
.t-salon .mini-btn { background: #3d1832; color: #f7e9e3; }
.t-salon .mini-art { background: linear-gradient(160deg, #e6b8a8, #b9687f); border-radius: 50% 50% 2.4cqw 2.4cqw; }
.t-salon .mini-cards span { background: #fff; }

.t-construction { background: #1c1c1c; color: #fff; }
.t-construction .mini-title { text-transform: uppercase; letter-spacing: -.01em; }
.t-construction .mini-title em { color: #f5b700; font-style: normal; }
.t-construction .mini-btn { background: #f5b700; color: #1c1c1c; border-radius: .6cqw; }
.t-construction .mini-art { background: repeating-linear-gradient(-45deg, #f5b700 0 3cqw, #1c1c1c 3cqw 6cqw); border-radius: .6cqw; }
.t-construction .mini-cards span { background: #2a2a2a; border-left: .8cqw solid #f5b700; border-radius: .4cqw; }

.t-realestate { background: #f4f1ea; color: #14213d; }
.t-realestate .mini-title { font-family: Georgia, serif; font-weight: 400; }
.t-realestate .mini-btn { background: #14213d; color: #fff; border-radius: .6cqw; }
.t-realestate .mini-art { background: linear-gradient(180deg, #b7c7d9 0 55%, #7f9a7a 55%); }
.t-realestate .mini-art::after { content: ""; position: absolute; left: 22%; right: 22%; bottom: 28%; height: 34%; background: #fff; clip-path: polygon(0 40%, 50% 0, 100% 40%, 100% 100%, 0 100%); }
.t-realestate .mini-cards span { background: #fff; border: .2cqw solid #e2dccf; }

.t-coaching { background: #fff; color: #10204d; }
.t-coaching .mini-btn { background: #2f5bea; color: #fff; }
.t-coaching .mini-title em { color: #2f5bea; font-style: normal; }
.t-coaching .mini-art { background: #e8eeff; }
.t-coaching .mini-art::before { content: ""; position: absolute; inset: 18% 20%; border-radius: 50%; background: #2f5bea; opacity: .9; }
.t-coaching .mini-art::after { content: ""; position: absolute; right: 12%; top: 14%; width: 22%; aspect-ratio: 1; background: #ffc53d; border-radius: 1.6cqw; transform: rotate(12deg); }
.t-coaching .mini-cards span { background: #f1f4fd; }

.t-store { background: #f3ebe0; color: #3b1f16; }
.t-store .mini-btn { background: #b5523b; color: #fff; border-radius: 1cqw; }
.t-store .mini-art { background: repeating-linear-gradient(90deg, #b5523b 0 2.2cqw, #e3b27a 2.2cqw 4.4cqw, #3b1f16 4.4cqw 5cqw, #f3ebe0 5cqw 7cqw); border-radius: 1.4cqw; }
.t-store .mini-cards span { background: #fff; height: 9cqw; }

.t-portfolio { background: #0e0e0e; color: #eee; }
.t-portfolio .mini-title { font-weight: 300; letter-spacing: -.04em; }
.t-portfolio .mini-btn { background: #eee; color: #0e0e0e; }
.t-portfolio .mini-art { background: linear-gradient(135deg, #3a3a3a, #8c8c8c 40%, #d8cbb5 70%, #1a1a1a); border-radius: 0; }
.t-portfolio .mini-cards span { background: #262626; border-radius: 0; }

/* ---------- Value strip ---------- */
.value-strip { border-block: 1px solid var(--line); background: #fff; }
.value-list {
  list-style: none; display: grid; grid-template-columns: repeat(2, 1fr);
}
.value-list li {
  display: flex; align-items: center; gap: 12px; padding: 18px 8px;
  font-weight: 600; font-size: .9375rem;
}
.value-list svg { width: 22px; height: 22px; color: var(--accent); flex: none; }
@media (max-width: 599px) {
  .value-list li { border-bottom: 1px solid var(--line); }
  .value-list li:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 12px; }
  .value-list li:nth-child(even) { padding-left: 16px; }
  .value-list li:last-child { grid-column: 1 / -1; border-bottom: 0; border-right: 0; justify-content: center; }
}
@media (min-width: 600px) {
  .value-list { grid-template-columns: repeat(5, auto); justify-content: space-between; }
  .value-list li { padding: 24px 0; }
}

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 16px; }
@media (min-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1000px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; display: flex; flex-direction: column; gap: 12px;
}
.card p { color: var(--muted); font-size: 1rem; }
.card-icon {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent); margin-bottom: 6px;
}
.card-icon svg { width: 22px; height: 22px; }
.card-link { transition: border-color .2s, transform .25s var(--ease), box-shadow .25s; text-decoration: none; }
.card-link:hover { border-color: var(--line-strong); transform: translateY(-3px); box-shadow: var(--shadow); }
.card-meta { margin-top: auto; padding-top: 10px; font-size: .875rem; font-weight: 600; color: var(--ink); }
.card-feature { background: var(--ink); color: var(--night-text); border-color: var(--ink); }
.card-feature p { color: var(--night-muted); }
.card-feature .card-icon { background: rgba(255, 106, 43, .15); color: var(--accent-bright); }

/* Service list with numbers (services page) */
.check-list { list-style: none; display: grid; gap: 10px; }
.check-list li { position: relative; padding-left: 28px; color: var(--ink-2); font-size: 1rem; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .35em; width: 18px; height: 18px; border-radius: 50%;
  background: var(--success-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e7a4c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.section-dark .check-list li { color: var(--night-text); }

/* ---------- Showcase ---------- */
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-btn {
  min-height: 42px; padding: 0 16px; border-radius: 999px; border: 1.5px solid var(--line-strong);
  background: transparent; cursor: pointer; font-weight: 600; font-size: .9375rem;
  transition: background-color .2s, color .2s, border-color .2s;
}
.filter-btn:hover { border-color: var(--ink); }
.filter-btn[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.showcase-grid { display: grid; gap: 28px; }
@media (min-width: 720px) { .showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; } }
@media (min-width: 1100px) { .showcase-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.project { display: flex; flex-direction: column; gap: 16px; }
.project > a { display: block; text-decoration: none; border-radius: 14px; }
.project .mock { box-shadow: var(--shadow); transition: transform .35s var(--ease), box-shadow .35s; }
.project:hover .mock { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.project-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.tag {
  display: inline-flex; align-items: center; height: 26px; padding: 0 10px; border-radius: 999px;
  font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  background: var(--paper-2); color: var(--ink-2); border: 1px solid var(--line);
}
.tag-concept { background: transparent; color: var(--muted); border-style: dashed; }
.project h3 { font-size: 1.375rem; }
.project p { color: var(--muted); font-size: 1rem; }
.feature-pills { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; }
.feature-pills li { font-size: .8125rem; padding: 4px 10px; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--ink-2); }
.project-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 2px; }
.showcase-note { margin-top: 28px; font-size: .9375rem; color: var(--muted); display: flex; gap: 10px; align-items: flex-start; }
.showcase-note svg { width: 18px; height: 18px; flex: none; margin-top: 3px; }
.empty-state { text-align: center; padding: 48px 20px; border: 1.5px dashed var(--line-strong); border-radius: var(--radius); color: var(--muted); }

/* ---------- Why ---------- */
.why-grid { display: grid; gap: 1px; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius); overflow: hidden; }
.why-item { background: var(--night); padding: 28px 24px; display: grid; gap: 10px; align-content: start; }
.why-item h3 { font-size: 1.125rem; color: #fff; }
.why-item p { color: var(--night-muted); font-size: .9875rem; }
.why-num { font-family: var(--font-display); font-size: .875rem; color: var(--accent-bright); font-weight: 700; }
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Process ---------- */
.steps { list-style: none; display: grid; gap: 0; counter-reset: step; }
.step { position: relative; display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding-bottom: 32px; }
.step:last-child { padding-bottom: 0; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; border: 1.5px solid var(--line-strong);
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; position: relative; z-index: 1;
}
.step::after { content: ""; position: absolute; left: 25px; top: 52px; bottom: 0; width: 2px; background: var(--line); }
.step:last-child::after { display: none; }
.step:first-child::before { background: var(--ink); color: #fff; border-color: var(--ink); }
.step h3 { font-size: 1.25rem; margin: 12px 0 6px; }
.step p { color: var(--muted); font-size: 1rem; }
.step small { display: inline-block; margin-top: 8px; font-size: .8125rem; font-weight: 600; color: var(--ink-2); background: var(--paper-2); padding: 3px 10px; border-radius: 999px; }
@media (min-width: 1000px) {
  .steps { grid-template-columns: repeat(5, 1fr); gap: 20px; }
  .step { grid-template-columns: 1fr; gap: 14px; padding-bottom: 0; }
  .step::after { left: 52px; right: -20px; top: 25px; bottom: auto; width: auto; height: 2px; }
  .step h3 { margin-top: 4px; }
}

/* ---------- About ---------- */
.about-grid { display: grid; gap: 40px; align-items: center; }
.portrait { position: relative; width: min(100%, 260px); justify-self: center; }
@media (min-width: 900px) { .portrait { width: min(100%, 360px); } }
.portrait-frame { border-radius: 50%; overflow: hidden; aspect-ratio: 1; box-shadow: var(--shadow-lg); border: 6px solid #fff; }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
.portrait-tag {
  position: absolute; left: 50%; bottom: -12px; transform: translateX(-50%);
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 999px; white-space: nowrap;
  font-size: .875rem; font-weight: 600; display: inline-flex; gap: 8px; align-items: center;
}
.portrait-tag svg { width: 16px; height: 16px; color: var(--accent-bright); }
.about-copy { display: grid; gap: 18px; }
.about-copy p:not(.eyebrow) { color: var(--ink-2); }
.skill-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.skill-list li { padding: 8px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: .9375rem; font-weight: 500; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 380px 1fr; gap: 72px; } }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .2s; }
.faq details[open] { border-color: var(--line-strong); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 22px; display: flex; justify-content: space-between; gap: 16px; align-items: center;
  font-weight: 600; font-size: 1.0625rem; border-radius: var(--radius);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--paper-2)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23141417' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 14px no-repeat;
  transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 22px 22px; color: var(--ink-2); }
.faq .faq-body a { color: var(--accent); font-weight: 600; }
.faq-group + .faq-group { margin-top: 48px; }
.faq-group h2 { font-size: 1.5rem; margin-bottom: 18px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--night); color: #fff; border-radius: var(--radius-lg); padding: clamp(36px, 7vw, 80px) clamp(24px, 6vw, 72px); position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; right: -120px; top: -120px; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 43, .35), transparent 70%);
}
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(2rem, 6vw, 3.6rem); letter-spacing: -.035em; max-width: 14ch; }
.cta-band h2 span { color: var(--accent-bright); }
.cta-band p { color: var(--night-muted); max-width: 52ch; margin-top: 16px; }
.cta-band .btn-row { margin-top: 28px; }
.cta-contact { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px 24px; font-size: .9375rem; color: var(--night-muted); }
.cta-contact a { color: #fff; text-decoration: none; font-weight: 600; }
.cta-contact a:hover { text-decoration: underline; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding-top: clamp(40px, 7vw, 88px); padding-bottom: clamp(36px, 5vw, 56px); }
.page-hero .container { display: grid; gap: 18px; }
.page-hero h1 { font-size: clamp(2.25rem, 6.4vw, 4rem); letter-spacing: -.035em; max-width: 18ch; }
.breadcrumb { display: flex; gap: 8px; font-size: .875rem; color: var(--muted); list-style: none; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); text-decoration: underline; }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: var(--line-strong); }

/* ---------- Pricing ---------- */
.price-card { position: relative; }
.price { font-family: var(--font-display); font-size: 2rem; font-weight: 750; letter-spacing: -.03em; color: var(--ink); }
.price small { font-family: var(--font-body); font-size: .875rem; font-weight: 500; color: var(--muted); letter-spacing: 0; display: block; margin-bottom: 2px; }
.price-card .check-list { margin-top: 6px; }
.price-card .btn { margin-top: auto; }
.price-card .card-body { display: grid; gap: 12px; margin-bottom: 20px; }
.price-card.card-feature .price { color: #fff; }
.price-card.card-feature .price small { color: var(--night-muted); }
.price-card.card-feature .check-list li { color: var(--night-text); }
.ribbon { position: absolute; top: 18px; right: 18px; font-size: .75rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: var(--accent-bright); color: #1a0a02; }
.note-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; display: grid; gap: 10px; font-size: 1rem; color: var(--ink-2); }
.note-box h3 { font-size: 1.125rem; }
.note-box ul { padding-left: 20px; display: grid; gap: 6px; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 18px; }
.form-row { display: grid; gap: 18px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 8px; }
.field label, .field .label { font-weight: 600; font-size: .9375rem; }
.field .optional { font-weight: 400; color: var(--muted); }
.field .hint { font-size: .875rem; color: var(--muted); }
.input, .textarea, .select {
  width: 100%; min-height: 52px; padding: 12px 16px; border-radius: 12px;
  border: 1.5px solid var(--line-strong); background: #fff;
  font-size: 1rem; /* 16px prevents iOS zoom */
  transition: border-color .2s, box-shadow .2s;
}
.textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.input:hover, .textarea:hover, .select:hover { border-color: #b3ab9c; }
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 4px rgba(20, 20, 23, .08); }
.field.has-error .input, .field.has-error .textarea, .field.has-error .select { border-color: var(--danger); }
.field.has-error .input:focus, .field.has-error .textarea:focus { box-shadow: 0 0 0 4px rgba(180, 35, 24, .12); }
.field-error { font-size: .875rem; color: var(--danger); font-weight: 500; display: flex; gap: 6px; align-items: flex-start; }
.field-error:empty { display: none; }
.field-error::before { content: "!"; flex: none; width: 16px; height: 16px; margin-top: 2px; border-radius: 50%; background: var(--danger); color: #fff; font-size: 11px; font-weight: 700; display: grid; place-items: center; }
.char-count { font-size: .8125rem; color: var(--muted); justify-self: end; font-variant-numeric: tabular-nums; }

/* Honeypot: visually removed, skipped by keyboard & assistive tech */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.alert { display: flex; gap: 14px; padding: 18px 20px; border-radius: var(--radius); font-size: 1rem; align-items: flex-start; }
.alert svg { width: 22px; height: 22px; flex: none; margin-top: 1px; }
.alert h3 { font-size: 1.0625rem; font-family: var(--font-body); letter-spacing: 0; margin-bottom: 4px; }
.alert p { color: inherit; opacity: .9; }
.alert a { color: inherit; font-weight: 700; }
.alert-success { background: var(--success-soft); color: #0f4d2f; border: 1px solid #b9e0c9; }
.alert-error { background: var(--danger-soft); color: #7a1a12; border: 1px solid #f3c1bb; }

.spinner { width: 18px; height: 18px; border-radius: 50%; border: 2.5px solid rgba(255, 255, 255, .35); border-top-color: #fff; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Contact layout */
.contact-grid { display: grid; gap: 32px; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(22px, 4vw, 40px); }
.contact-methods { display: grid; gap: 12px; align-content: start; }
.method {
  display: flex; gap: 16px; align-items: center; padding: 18px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line); text-decoration: none;
  transition: border-color .2s, transform .25s var(--ease);
}
.method:hover { border-color: var(--ink); transform: translateY(-2px); }
.method-icon { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; flex: none; background: var(--paper-2); }
.method-icon svg { width: 22px; height: 22px; }
.method-icon.wa { background: #e3f6ea; color: #128c4a; }
.method strong { display: block; font-size: 1rem; }
.method span { color: var(--muted); font-size: .9375rem; word-break: break-word; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 1.4fr 1fr; gap: 48px; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--night); color: var(--night-muted); padding-top: 64px; font-size: .9375rem; }
.footer-grid { display: grid; gap: 36px; padding-bottom: 48px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-name small { color: var(--night-muted); }
.footer-brand .brand img { box-shadow: 0 0 0 2px var(--night-2); }
.footer-brand p { margin-top: 16px; max-width: 34ch; }
.footer-col h2 { font-family: var(--font-body); font-size: .8125rem; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 14px; font-weight: 600; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { text-decoration: none; color: var(--night-muted); }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding-block: 22px; display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; font-size: .875rem; }
.footer-bottom ul { display: flex; gap: 20px; list-style: none; }
.footer-bottom a { color: var(--night-muted); }
.footer-bottom a:hover { color: #fff; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }

/* ---------- Legal / prose pages ---------- */
.legal { max-width: 760px; }
.legal h2 { font-size: 1.5rem; margin: 40px 0 12px; }
.legal h3 { font-size: 1.125rem; margin: 24px 0 8px; }
.legal p, .legal li { color: var(--ink-2); }
.legal ul { padding-left: 22px; display: grid; gap: 6px; margin: 10px 0; }
.legal p + p { margin-top: 12px; }
.legal a { color: var(--accent); }
.legal .updated { font-size: .9375rem; color: var(--muted); }

/* ---------- 404 ---------- */
.not-found { min-height: 60vh; display: grid; place-items: center; text-align: center; padding-block: 80px; }
.not-found .big { font-family: var(--font-display); font-size: clamp(5rem, 22vw, 11rem); font-weight: 800; letter-spacing: -.06em; line-height: 1; color: var(--paper-2); -webkit-text-stroke: 2px var(--line-strong); }
.not-found h1 { font-size: clamp(1.75rem, 5vw, 2.5rem); margin-top: 8px; }
.not-found p { color: var(--muted); margin: 14px auto 28px; max-width: 44ch; }
.not-found .btn-row { justify-content: center; }

/* ---------- Scroll reveal (only when JS + motion allowed) ---------- */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }


/* ==========================================================================
   Motion & hover effects
   ========================================================================== */
.emoji, .v-emoji, .why-emoji, .step-emoji, .h-emoji, .wave, .rocket { font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif; font-weight: 400; }
.card-icon.emoji { font-size: 1.5rem; line-height: 1; transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), background-color .25s; }
.v-emoji { font-size: 1.35rem; display: inline-block; transition: transform .35s cubic-bezier(.34, 1.56, .64, 1); }
.why-emoji { display: inline-block; margin-right: 10px; transition: transform .35s cubic-bezier(.34, 1.56, .64, 1); }
.step-emoji, .h-emoji { display: inline-block; transition: transform .35s cubic-bezier(.34, 1.56, .64, 1); }
.wave { display: inline-block; transform-origin: 70% 70%; animation: wave 2.4s ease-in-out 1s infinite; }
@keyframes wave { 0%, 60%, 100% { transform: rotate(0); } 10%, 30% { transform: rotate(16deg); } 20% { transform: rotate(-8deg); } 40% { transform: rotate(-4deg); } 50% { transform: rotate(10deg); } }
.rocket { display: inline-block; animation: float 3s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* Hero entrance */
.hero-copy > * { animation: rise-soft .7s var(--ease) both; }
@keyframes rise-soft { from { transform: translateY(14px); } to { transform: none; } }
.hero-copy > :nth-child(2) { animation-delay: .08s; }
.hero-copy > :nth-child(3) { animation-delay: .16s; }
.hero-copy > :nth-child(4) { animation-delay: .24s; }
.hero-copy > :nth-child(5) { animation-delay: .32s; }
.hero-visual { animation: rise-soft .9s var(--ease) both; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hero-chip-1 { animation: float 4s ease-in-out infinite; }
.hero-chip-2 { animation: float 4.6s ease-in-out .8s infinite; }
.display .highlight::after { transform-origin: left; animation: grow .8s var(--ease) .6s both; }
@keyframes grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* Buttons: pop + shine */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .35), transparent);
  transform: skewX(-20deg); pointer-events: none; opacity: 0;
}
.btn-primary, .btn-accent, .btn-light { box-shadow: 0 0 0 0 rgba(196, 65, 15, 0); }

@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-2px) scale(1.03); }
  .btn:hover::after { opacity: 1; animation: shine .7s ease; }
  .btn-primary:hover { background: var(--accent); box-shadow: 0 12px 28px -10px rgba(196, 65, 15, .7); }
  .btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
  .btn-light:hover { background: var(--accent-bright); color: #1a0a02; }
  .btn-outline-light:hover { background: rgba(255, 255, 255, .1); }

  /* Nav: sliding underline */
  .nav-desktop a { position: relative; }
  .nav-desktop a::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px; border-radius: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
  .nav-desktop a:hover::after { transform: scaleX(1); }
  .nav-desktop a:hover { color: var(--accent); background: transparent; }
  .brand:hover img { transform: rotate(-8deg) scale(1.08); }
  .brand img { transition: transform .3s cubic-bezier(.34, 1.56, .64, 1); }

  /* Cards: lift, glow and icon pop */
  .card { transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s, border-color .3s, background-color .3s, opacity .6s var(--ease); }
  .card:hover { transform: translateY(-6px) scale(1.015); border-color: var(--accent); box-shadow: 0 18px 40px -18px rgba(196, 65, 15, .45); background: #fffdfa; }
  .card.card-feature:hover { background: #1b1b20; }
  .card:hover .card-icon.emoji { transform: scale(1.25) rotate(-10deg); background: #ffd9c7; }
  .card:hover .h-emoji { transform: scale(1.35) rotate(-10deg); }
  .card:hover h3 { color: var(--accent); }
  .card.card-feature:hover h3, .price-card.card-feature:hover h3 { color: var(--accent-bright); }
  .card h3 { transition: color .25s; }

  /* Value strip */
  .value-list li { transition: color .2s, background-color .2s; border-radius: 12px; cursor: default; }
  .value-list li:hover { color: var(--accent); }
  .value-list li:hover .v-emoji { transform: scale(1.4) translateY(-3px) rotate(-8deg); }

  /* Why grid */
  .why-item { transition: background-color .3s, transform .6s var(--ease), opacity .6s var(--ease); }
  .why-item:hover { background: linear-gradient(160deg, #2a1a12, var(--night) 70%); }
  .why-item:hover .why-emoji { transform: scale(1.4) rotate(-10deg); }
  .why-item:hover h3 { color: var(--accent-bright); }
  .why-item h3 { transition: color .25s; }

  /* Process steps */
  .step { transition: opacity .6s var(--ease), transform .6s var(--ease); }
  .step::before { transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), background-color .3s, color .3s, border-color .3s; }
  .step:hover::before { transform: scale(1.15); background: var(--accent); border-color: var(--accent); color: #fff; }
  .step:hover .step-emoji { transform: scale(1.4) rotate(-10deg); }
  .step:hover h3 { color: var(--accent); }
  .step h3 { transition: color .25s; }

  /* Showcase */
  .project .mock { transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), box-shadow .4s; }
  .project:hover .mock { transform: translateY(-8px) rotate(-.6deg) scale(1.02); box-shadow: 0 30px 60px -24px rgba(20, 20, 23, .45); }
  .project:hover h3 { color: var(--accent); }
  .project h3 { transition: color .25s; }
  .feature-pills li { transition: background-color .2s, color .2s, border-color .2s, transform .2s; }
  .feature-pills li:hover { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
  .filter-btn:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--accent); }
  .filter-btn[aria-pressed="true"]:hover { color: #fff; }
  .filter-btn { transition: transform .2s, background-color .2s, color .2s, border-color .2s; }

  /* Hero visual tilt */
  .hero-visual .mock { transition: transform .5s var(--ease); }
  .hero-visual:hover .mock { transform: rotate(0) scale(1.02); }
  .hero-phone { transition: transform .5s cubic-bezier(.34, 1.56, .64, 1); }
  .hero-visual:hover .hero-phone { transform: rotate(-2deg) translateY(-10px) scale(1.04); }

  /* Portrait */
  .portrait-frame { transition: transform .5s cubic-bezier(.34, 1.56, .64, 1), box-shadow .4s; }
  .portrait:hover .portrait-frame { transform: rotate(-3deg) scale(1.03); box-shadow: 0 0 0 6px var(--accent-soft), var(--shadow-lg); }
  .skill-list li { transition: background-color .2s, color .2s, transform .2s; }
  .skill-list li:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }

  /* FAQ */
  .faq details { transition: border-color .2s, box-shadow .2s, transform .2s; }
  .faq details:hover { border-color: var(--accent); box-shadow: 0 8px 20px -14px rgba(196, 65, 15, .5); }
  .faq summary:hover { color: var(--accent); }
  .faq details:hover summary::after { background-color: var(--accent-soft); }

  /* Contact + planner */
  .method:hover { border-color: var(--accent); box-shadow: 0 12px 28px -16px rgba(196, 65, 15, .5); }
  .method:hover .method-icon { transform: scale(1.12) rotate(-8deg); }
  .method-icon { transition: transform .3s cubic-bezier(.34, 1.56, .64, 1); }
  .option-card { transition: border-color .15s, background-color .15s, box-shadow .15s, transform .2s cubic-bezier(.34, 1.56, .64, 1); }
  .option input:hover + .option-card { transform: translateY(-2px); border-color: var(--accent); box-shadow: 0 8px 18px -12px rgba(196, 65, 15, .5); }
  .option input:hover + .option-card .o-icon { background: var(--accent-soft); color: var(--accent); }
  .chip span { transition: background-color .15s, color .15s, border-color .15s, transform .2s cubic-bezier(.34, 1.56, .64, 1); }
  .chip input:hover + span { transform: translateY(-2px); border-color: var(--accent); color: var(--accent); }
  .chip input:checked:hover + span { color: #fff; }

  /* Footer & links */
  .footer-col a { transition: color .2s, padding-left .2s; }
  .footer-col a:hover { color: var(--accent-bright); padding-left: 4px; text-decoration: none; }
  .link-arrow { transition: color .2s, gap .2s; }
  .link-arrow:hover { gap: 10px; }
}
/* Tap feedback on touch screens */
@media (hover: none) {
  .card:active, .project:active .mock, .method:active, .faq summary:active { transform: scale(.98); }
  .btn:active { transform: scale(.96); }
}
/* Selected options pop */
.option input:checked + .option-card { animation: pop .3s cubic-bezier(.34, 1.56, .64, 1); }
.chip input:checked + span { animation: pop .3s cubic-bezier(.34, 1.56, .64, 1); }
@keyframes pop { 0% { transform: scale(.95); } 60% { transform: scale(1.04); } 100% { transform: scale(1); } }
@keyframes shine { from { left: -60%; } to { left: 130%; } }


/* Header account link */
.nav-account { display: none; font-weight: 600; font-size: .9375rem; text-decoration: none; padding: 8px 12px; border-radius: 999px; color: var(--ink-2); }
.nav-account:hover { color: var(--accent); background: var(--accent-soft); }
@media (min-width: 1080px) { .nav-account { display: inline-flex; } }
