/* =============================================================
   PET ART BY DAYAN GLEZ · XOX Studio
   Main Stylesheet (cloned from tattoos.xoxstudio.net)
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  --black: #080808;
  --bg: #030303;
  --dark: #0f0f0f;
  --surface: #141414;
  --surface-2: #1b1b1b;
  --line: rgba(244, 239, 231, 0.075);
  --line-2: rgba(244, 239, 231, 0.13);
  --white: #F4EFE7;
  --off: #FAF7F0;
  --muted: #A6A19A;
  --muted-2: #C7C2BA;
  --red: #C1121F;
  --red-2: #FF1024;
  --red-deep: #8A0D16;
  --red-focus: #FF1024;
  --glow: rgba(193, 18, 31, 0.28);
  --col: 430px;
  --col-md: 720px;
  --col-lg: 1180px;
  --float: 74px;
  --nav-h: 60px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
*:focus-visible { outline: 2px solid var(--red-focus); outline-offset: 3px; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); -webkit-text-size-adjust: 100%; }
body { background: var(--bg); color: var(--white); font-family: var(--font-body); font-size: 15px; font-weight: 400; line-height: 1.65; letter-spacing: -0.003em; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; padding-bottom: calc(var(--float) + 18px + env(safe-area-inset-bottom)); text-rendering: optimizeLegibility; }
body.scroll-lock { overflow: hidden; position: fixed; width: 100%; left: 0; right: 0; }
a { color: inherit; -webkit-tap-highlight-color: rgba(193, 18, 31, 0.18); }
button, input, textarea { font: inherit; }
img, picture { max-width: 100%; display: block; }
::selection { background: var(--red); color: var(--white); }

/* ---------- Layout ---------- */
.site { max-width: var(--col); margin: 0 auto; background: var(--black); min-height: 100vh; position: relative; overflow: hidden; box-shadow: 0 0 80px rgba(0,0,0,0.6); }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--red); color: var(--white); padding: 12px 16px; z-index: 999; text-transform: uppercase; letter-spacing: 0.16em; font-weight: 700; font-size: 11px; text-decoration: none; }
.skip-link:focus { left: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- Navigation ---------- */
.site-nav { position: fixed; top: 0; left: 50%; transform: translateX(-50%); width: 100%; max-width: var(--col); height: var(--nav-h); z-index: 70; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; background: rgba(8,8,8,0.94); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--line); }
.logo { text-decoration: none; display: flex; align-items: center; gap: 10px; line-height: 1; }
.logo-mark { width: 28px; height: 28px; flex-shrink: 0; display: block; }
.logo-mark circle:nth-child(2) { transform-origin: 16px 16px; animation: logoDotOrbit 4.5s linear infinite; }
@keyframes logoDotOrbit { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.logo-text { display: flex; flex-direction: column; gap: 5px; line-height: 1; }
.logo-line-1, .logo-line-2 { font-family: var(--font-body); font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; line-height: 1; }
.logo-line-1 { color: var(--white); }
.logo-line-2 { color: var(--red); }
.nav-right { display: flex; align-items: center; gap: 8px; }
.lang-toggle { display: flex; border: 1px solid var(--line); overflow: hidden; }
.lang-btn { background: transparent; border: 0; color: var(--muted); padding: 8px 10px; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; cursor: pointer; min-height: 34px; min-width: 34px; }
.lang-btn.active { background: rgba(244,239,231,0.06); color: var(--white); }
.lang-divider { width: 1px; background: var(--line); height: 13px; align-self: center; }
.menu-btn { width: 34px; height: 29px; border: 1px solid var(--line); background: transparent; display: flex; flex-direction: column; gap: 4px; align-items: center; justify-content: center; cursor: pointer; }
.menu-btn span { width: 14px; height: 1.5px; background: var(--white); display: block; transition: 0.25s var(--ease); }
.menu-btn span:nth-child(2) { width: 10px; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); background: var(--red); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); background: var(--red); }

/* ---------- Drawer ---------- */
.drawer { position: fixed; top: var(--nav-h); left: 50%; transform: translateX(-50%); z-index: 69; width: 100%; max-width: var(--col); background: rgba(8,8,8,0.985); border-bottom: 1px solid var(--line); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px); max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.drawer.open { max-height: 640px; }
.drawer ul { list-style: none; padding: 14px 24px 22px; }
.drawer a { display: block; text-decoration: none; color: var(--off); border-bottom: 1px solid var(--line); padding: 16px 0; font-family: var(--font-display); font-size: 17px; font-weight: 500; letter-spacing: -0.005em; transition: color 0.2s var(--ease); }
.drawer li:last-child a { border-bottom: 0; }
.drawer a.active { color: var(--red-2); }
.drawer a.active::after { content: ''; display: inline-block; width: 8px; height: 8px; margin-left: 10px; background: var(--red); border-radius: 50%; vertical-align: middle; }

/* ---------- Float CTA ---------- */
.float-cta { position: fixed; left: 50%; bottom: 0; transform: translateX(-50%); z-index: 68; width: 100%; max-width: var(--col); display: flex; align-items: center; justify-content: space-between; gap: 12px; background: rgba(8,8,8,0.93); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-top: 1px solid var(--red); padding: 12px 18px; padding-bottom: calc(12px + env(safe-area-inset-bottom)); }
.float-cta span { color: var(--off); font-size: 10px; line-height: 1.35; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; display: inline-flex; align-items: center; flex: 1; }
.float-cta span::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--red); box-shadow: 0 0 8px rgba(255,16,36,0.6); margin-right: 9px; flex-shrink: 0; animation: ctaDot 2.6s ease-in-out infinite; }
@keyframes ctaDot { 0%,100% { opacity: 0.7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.2); } }

/* ---------- Buttons ---------- */
.btn, .btn-ghost { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; text-align: center; text-decoration: none; cursor: pointer; padding: 14px 24px; font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: -0.005em; border-radius: 8px; transition: 0.25s var(--ease); -webkit-user-select: none; user-select: none; touch-action: manipulation; }
.btn { background: var(--red); border: 1px solid var(--red); color: var(--white); box-shadow: 0 6px 18px -6px rgba(193,18,31,0.45); }
.btn-ghost { background: transparent; border: 1px solid rgba(244,239,231,0.18); color: var(--white); }
@media (hover: hover) {
  .btn:hover { background: var(--red-2); border-color: var(--red-2); box-shadow: 0 0 28px var(--glow), 0 8px 22px -6px rgba(193,18,31,0.55); transform: translateY(-2px); }
  .btn-ghost:hover { border-color: rgba(244,239,231,0.45); background: rgba(244,239,231,0.04); transform: translateY(-2px); }
  .drawer a:hover { color: var(--red); }
}
.btn:active, .btn-ghost:active { transform: scale(0.98); }

/* ---------- Section ---------- */
.section { padding: 72px 24px; border-top: 1px solid var(--line); position: relative; content-visibility: auto; contain-intrinsic-size: auto 800px; }
.label { display: inline-flex; align-items: center; gap: 10px; color: var(--red); font-family: var(--font-body); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; margin-bottom: 18px; }
.label::before { content: ""; width: 22px; height: 1px; background: var(--red); }
.headline { font-family: var(--font-display); font-size: clamp(38px, 9.5vw, 52px); line-height: 0.98; letter-spacing: -0.035em; font-weight: 600; margin-bottom: 20px; color: var(--white); }
.headline em { font-style: normal; color: var(--red); font-weight: 600; }
.lead { color: var(--off); font-size: 15px; line-height: 1.7; letter-spacing: -0.003em; max-width: 34em; }
.text { color: var(--muted-2); font-size: 13.5px; line-height: 1.72; }

/* ---------- Hero ---------- */
#hero { min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 110px 24px 170px; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
#hero::before { content: ""; position: absolute; inset: -24% -42%; background: radial-gradient(ellipse 50% 40% at center 35%, rgba(193,18,31,0.32), transparent 55%), radial-gradient(ellipse 35% 25% at 50% 60%, rgba(255,16,36,0.18), transparent 60%), linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.36) 100%); pointer-events: none; animation: heroGlowAlive 5.5s ease-in-out infinite; will-change: opacity, transform; }
@keyframes heroGlowAlive { 0% { opacity: 0.55; transform: scale(1) translate3d(-1%,0%,0); } 20% { opacity: 1; transform: scale(1.06) translate3d(2%,-1.5%,0); } 45% { opacity: 0.7; transform: scale(0.98) translate3d(-2%,1%,0); } 65% { opacity: 1; transform: scale(1.08) translate3d(1.5%,-0.5%,0); } 85% { opacity: 0.6; transform: scale(1.02) translate3d(-0.5%,1.5%,0); } 100% { opacity: 0.55; transform: scale(1) translate3d(-1%,0%,0); } }
.hero-inner { position: relative; z-index: 1; max-width: 680px; text-align: center; width: 100%; }
.hero-kicker { color: var(--off); font-family: var(--font-body); font-size: 11px; text-transform: uppercase; letter-spacing: 0.24em; font-weight: 600; margin-bottom: 26px; opacity: 0; animation: heroReveal 0.85s var(--ease) 0.08s forwards; display: inline-flex; align-items: center; gap: 10px; }
.hero-kicker::before { content: ""; width: 22px; height: 1px; background: var(--red); }
.hero-kicker::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--red); box-shadow: 0 0 10px rgba(255,16,36,0.7); animation: dotBreath 1.8s ease-in-out infinite; }
@keyframes dotBreath { 0%,100% { box-shadow: 0 0 6px rgba(255,16,36,0.4); transform: scale(1); } 50% { box-shadow: 0 0 14px rgba(255,16,36,0.9); transform: scale(1.15); } }
.hero-title { font-family: var(--font-display); text-transform: uppercase; margin: 0 auto 28px; overflow: visible; padding-bottom: 0.18em; text-align: center; display: block; line-height: 1; }
.hero-title .title-line { display: block; color: var(--white); opacity: 0; transform: translateY(0.36em); filter: blur(5px); animation: heroTitleReveal 0.9s var(--ease) forwards; }
.title-pet { font-size: clamp(72px, 21vw, 120px); font-weight: 800; letter-spacing: -0.045em; line-height: 0.92; animation-delay: 0.20s; margin-bottom: 0.08em; }
.title-art { font-size: clamp(14px, 3.4vw, 18px); font-weight: 500; letter-spacing: 0.32em; color: var(--muted-2); animation-delay: 0.38s; margin-bottom: 0.08em; }
.title-dayan { font-size: clamp(36px, 10.5vw, 60px); font-weight: 900; letter-spacing: -0.03em; line-height: 1; padding-bottom: 0.08em; animation: heroTitleReveal 0.9s var(--ease) 0.56s forwards, dayanColorShift 5s ease-in-out 1.5s infinite; }
@keyframes heroTitleReveal { from { opacity: 0; transform: translateY(0.36em); filter: blur(5px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }
@keyframes heroReveal { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes dayanColorShift { 0% { color: var(--white); text-shadow: none; transform: scale(1); } 30% { color: #FFE4E6; text-shadow: 0 0 12px rgba(193,18,31,0.3); } 50% { color: var(--red); text-shadow: 0 0 28px rgba(255,16,36,0.7), 0 0 60px rgba(193,18,31,0.3); transform: scale(1.02); } 70% { color: #FFB3B8; text-shadow: 0 0 12px rgba(193,18,31,0.3); } 100% { color: var(--white); text-shadow: none; transform: scale(1); } }
.hero-sub { max-width: 520px; margin: 0 auto 34px; color: var(--off); opacity: 0; font-size: 14px; line-height: 1.7; animation: heroReveal 0.85s var(--ease) 0.72s forwards; }
.hero-actions { display: flex; flex-direction: column; gap: 10px; margin: 10px auto 0; max-width: 310px; opacity: 0; animation: heroReveal 0.85s var(--ease) 0.92s forwards; }

/* ---------- Marquee ---------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 14px 0; overflow: hidden; white-space: nowrap; background: var(--surface); }
.marquee-track { display: inline-flex; animation: marquee 32s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { display: inline-flex; align-items: center; gap: 16px; padding: 0 28px; font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.marquee-item i { width: 5px; height: 5px; border-radius: 50%; background: var(--red); box-shadow: 0 0 6px rgba(255,16,36,0.5); display: block; flex-shrink: 0; }

/* ---------- Home cards ---------- */
.home-cards { display: grid; gap: 18px; grid-template-columns: 1fr; margin-top: 36px; }
.home-card { position: relative; display: block; padding: 30px 26px 28px; border: 1px solid var(--line-2); background: linear-gradient(180deg, var(--surface) 0%, var(--dark) 100%); text-decoration: none; color: inherit; overflow: hidden; transition: transform .55s var(--ease), border-color .35s ease; }
.home-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(450px 200px at 100% 0%, rgba(193,18,31,0.18), transparent 70%); opacity: 0; transition: opacity .55s var(--ease); pointer-events: none; }
.home-card:hover { transform: translateY(-4px); border-color: rgba(193,18,31,0.55); }
.home-card:hover::before { opacity: 1; }
.home-card-num { font-family: var(--font-display); font-size: 28px; font-weight: 700; letter-spacing: -0.02em; color: var(--red); display: block; margin-bottom: 14px; }
.home-card h3 { font-family: var(--font-display); font-size: clamp(24px, 4vw, 32px); line-height: 1.02; letter-spacing: -0.025em; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.home-card p { color: var(--muted-2); font-size: 14px; line-height: 1.65; margin-bottom: 18px; }
.home-card .home-card-link { font-family: var(--font-body); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; font-size: 11px; color: var(--red-2); display: inline-flex; align-items: center; gap: 8px; position: relative; }
.home-card .home-card-link::after { content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px; background: currentColor; transform-origin: left center; transform: scaleX(0); transition: transform .35s var(--ease); }
.home-card:hover .home-card-link::after { transform: scaleX(1); }

/* ---------- Gallery — horizontal scroll case studies ---------- */
.gallery-scroll { position: relative; overflow: hidden; margin-top: 32px; }
.gallery-scroll::after { content: '›'; position: absolute; top: 50%; right: 14px; transform: translateY(-50%); font-family: var(--font-display); font-size: 28px; color: var(--red); opacity: 0.6; pointer-events: none; animation: swipeHint 1.6s ease-in-out infinite; transition: opacity 0.4s; z-index: 2; }
.gallery-scroll.scrolled::after { opacity: 0; }
@keyframes swipeHint { 0%,100% { transform: translateY(-50%) translateX(0); } 50% { transform: translateY(-50%) translateX(6px); } }
.gallery-track { display: flex; gap: 3px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 0 24px 20px; cursor: grab; user-select: none; }
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track.dragging { cursor: grabbing; scroll-behavior: auto; }

/* Each commission case card */
.case-card { flex-shrink: 0; width: calc(100vw - 48px); max-width: calc(var(--col) - 48px); scroll-snap-align: start; background: var(--surface); border: 1px solid var(--line); display: flex; flex-direction: column; overflow: hidden; transition: box-shadow 0.3s, border-color 0.3s; }
@media (hover: hover) { .case-card:hover { box-shadow: 0 0 0 1px rgba(193,18,31,0.2), 0 8px 32px rgba(0,0,0,0.4); border-color: var(--line-2); } }

/* Case header */
.case-header { display: flex; justify-content: space-between; align-items: flex-start; padding: 20px 20px 16px; border-bottom: 1px solid var(--line); }
.case-pet-name { font-family: var(--font-display); font-size: clamp(28px, 6vw, 36px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; color: var(--white); }
.case-service { font-size: 9px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); margin-top: 6px; }
.case-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; text-align: right; }
.case-meta span { font-size: 9px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); line-height: 1.4; }

/* Reference row — 3 small thumbnails */
.case-ref-label { font-size: 8px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); padding: 14px 20px 8px; }
.case-refs { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3px; padding: 0 20px; }
.case-ref { aspect-ratio: 1; overflow: hidden; background: var(--surface-2); position: relative; border: 1px solid var(--line); }
.case-ref img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
@media (hover: hover) { .case-ref:hover img { transform: scale(1.06); } }

/* Artwork image — main focus */
.case-art-label { font-size: 8px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); padding: 14px 20px 8px; }
.case-artwork { width: 100%; aspect-ratio: 4/5; overflow: hidden; position: relative; background: var(--surface-2); }
.case-artwork img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s var(--ease); }
@media (hover: hover) { .case-card:hover .case-artwork img { transform: scale(1.02); } }

/* Case description */
.case-desc { padding: 16px 20px; font-size: 12px; line-height: 1.7; color: var(--muted); border-top: 1px solid var(--line); font-style: italic; }

/* Gallery progress bar */
.gallery-progress { margin: 0 24px; height: 2px; background: var(--line); position: relative; overflow: hidden; }
.gallery-progress-fill { position: absolute; top: 0; left: 0; bottom: 0; background: var(--red); width: 0%; transition: width 0.1s linear; box-shadow: 0 0 8px rgba(255,16,36,0.5); }

/* Gallery controls */
.gallery-controls { display: flex; justify-content: center; gap: 8px; margin-top: 18px; padding: 0 24px; }
.gallery-controls .icon-btn { width: 44px; height: 44px; border: 1px solid var(--line-2); background: var(--surface); color: var(--white); font-size: 20px; cursor: pointer; display: grid; place-items: center; transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease); }
@media (hover: hover) { .gallery-controls .icon-btn:hover { border-color: var(--red); background: rgba(193,18,31,0.08); transform: scale(1.05); } }
.gallery-controls .icon-btn:active { transform: scale(0.95); }

/* Gallery counter */
.gallery-counter { font-family: var(--font-body); font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); text-align: center; margin-top: 12px; }

/* ---------- Services ---------- */
.service-card { background: var(--surface); padding: 32px 24px; position: relative; overflow: hidden; border: 1px solid var(--line); margin-bottom: 2px; transition: background 0.3s, transform 0.25s var(--ease); }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
@media (hover: hover) { .service-card:hover { background: var(--surface-2); transform: translateY(-2px); } .service-card:hover::after { transform: scaleX(1); } }
.service-num { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; color: var(--red); margin-bottom: 16px; display: block; }
.service-title { font-family: var(--font-display); font-size: clamp(22px, 4vw, 28px); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 12px; line-height: 1.1; }
.service-desc { font-size: 13.5px; line-height: 1.72; color: var(--muted-2); margin-bottom: 20px; }
.service-price { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--off); }
.service-price .unit { font-size: 10px; color: var(--muted); font-weight: 400; margin: 0 4px; letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- Steps ---------- */
.steps { margin-top: 32px; }
.step { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.step:first-child { border-top: 1px solid var(--line); }
.step-num { font-family: var(--font-display); font-size: 28px; font-weight: 700; letter-spacing: -0.02em; color: var(--red); line-height: 1; padding-top: 2px; }
.step h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 8px; }
.step p { color: var(--muted-2); font-size: 13.5px; line-height: 1.72; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 28px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; cursor: pointer; text-align: left; font-family: var(--font-display); font-size: 15px; font-weight: 600; letter-spacing: -0.01em; color: var(--white); background: none; border: none; transition: color 0.2s; }
@media (hover: hover) { .faq-q:hover { color: var(--red-2); } }
.faq-plus { width: 24px; height: 24px; flex-shrink: 0; position: relative; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; background: var(--red); left: 50%; top: 50%; transform: translate(-50%,-50%); transition: 0.25s; }
.faq-plus::before { width: 13px; height: 1.5px; }
.faq-plus::after { width: 1.5px; height: 13px; }
.faq-item.open .faq-plus::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a-inner { padding: 0 0 20px; color: var(--muted-2); font-size: 13px; line-height: 1.78; }
.faq-item.open .faq-a { max-height: 420px; }

/* ---------- About ---------- */
.about-grid { display: flex; flex-direction: column; gap: 32px; }
.about-photo { width: 100%; aspect-ratio: 3/4; background: var(--surface); border: 1px solid var(--line); overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-body { color: var(--muted-2); font-size: 13.5px; line-height: 1.72; }
.about-body p { margin-bottom: 16px; }
.about-body strong { color: var(--white); font-weight: 600; }
.signature { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; }
.signature strong { font-family: var(--font-display); font-size: 15px; font-weight: 700; }
.signature span { font-size: 11px; font-weight: 500; color: var(--muted); letter-spacing: 0.06em; }

/* ---------- Pre-footer / Contact icons ---------- */
.pre-footer { padding: 50px 22px 30px; border-top: 1px solid var(--line); position: relative; text-align: center; }
.pre-footer::before { content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%); width: 60px; height: 2px; background: var(--red); }
.pre-footer-label { font-family: var(--font-body); font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; font-size: 11px; color: var(--muted); margin-bottom: 26px; }
.icon-contacts { display: flex; flex-wrap: nowrap; justify-content: space-between; align-items: flex-start; gap: 8px; margin-top: 30px; max-width: 320px; margin-left: auto; margin-right: auto; padding: 0 4px; }
.icon-contact { --size: 48px; position: relative; display: flex; flex-direction: column; align-items: center; gap: 8px; text-decoration: none; color: inherit; padding: 4px; flex: 1 1 0; min-width: 0; }
.icon-contact .icon-bubble { width: var(--size); height: var(--size); border-radius: 50%; background: var(--surface); border: 1px solid var(--line-2); display: grid; place-items: center; transition: transform .5s var(--ease), background .35s ease, border-color .35s ease, box-shadow .5s var(--ease); position: relative; }
.icon-contact .icon-bubble::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid rgba(193,18,31,0.35); opacity: 0; transform: scale(0.85); transition: opacity .5s var(--ease), transform .5s var(--ease); pointer-events: none; }
.icon-contact:hover .icon-bubble { transform: translateY(-5px) scale(1.05); background: linear-gradient(160deg,#1a1a1a 0%,#0c0c0c 100%); border-color: rgba(193,18,31,0.65); box-shadow: 0 16px 30px -16px rgba(193,18,31,0.55); }
.icon-contact:hover .icon-bubble::after { opacity: 1; transform: scale(1.05); animation: icon-pulse 1.6s var(--ease) infinite; }
@keyframes icon-pulse { 0% { opacity: 0.9; transform: scale(1.05); } 70% { opacity: 0; transform: scale(1.45); } 100% { opacity: 0; transform: scale(1.45); } }
.icon-contact .icon-bubble svg { width: 22px; height: 22px; stroke: var(--white); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: stroke .35s ease, transform .5s var(--ease); }
.icon-contact:hover .icon-bubble svg { stroke: var(--red-2); transform: rotate(-6deg) scale(1.06); }
.icon-contact .icon-label { font-family: var(--font-body); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; font-size: 8.5px; color: var(--muted-2); transition: color .35s ease; white-space: nowrap; }
.icon-contact:hover .icon-label { color: var(--white); }
.icon-contact[data-icon="whatsapp"]:hover .icon-bubble svg { animation: wiggle 0.7s var(--ease); }
@keyframes wiggle { 0%,100% { transform: rotate(-6deg) scale(1.06); } 25% { transform: rotate(6deg) scale(1.06); } 50% { transform: rotate(-4deg) scale(1.06); } 75% { transform: rotate(4deg) scale(1.06); } }
.icon-contact[data-icon="email"]:hover .icon-bubble svg { animation: bob 1s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-6deg) scale(1.06); } 50% { transform: translateY(-3px) rotate(-6deg) scale(1.06); } }
.icon-contact[data-icon="instagram"]:hover .icon-bubble svg { animation: soft-spin 1.5s linear infinite; }
@keyframes soft-spin { from { transform: rotate(-6deg) scale(1.06); } to { transform: rotate(354deg) scale(1.06); } }

/* ---------- Footer ---------- */
footer.site-footer { position: relative; padding: 0; margin-top: 60px; background: transparent; border: none; }
.footer-block { position: relative; padding: 50px 22px 36px; border-top: 1px solid rgba(193,18,31,0.4); overflow: hidden; background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(193,18,31,0.18), transparent 60%), linear-gradient(180deg, transparent 0%, rgba(193,18,31,0.10) 100%); }
.footer-block::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 140px; height: 2px; background: linear-gradient(90deg, transparent, var(--red-2), transparent); box-shadow: 0 0 14px rgba(255,16,36,0.5); animation: footerBarPulse 3.5s ease-in-out infinite; z-index: 2; }
@keyframes footerBarPulse { 0%,100% { width: 100px; opacity: 0.7; } 50% { width: 200px; opacity: 1; } }
.footer-block .footer-bg-word { position: absolute; left: 50%; bottom: -10px; transform: translateX(-50%); width: min(720px, 130%); pointer-events: none; user-select: none; z-index: 0; opacity: 0.10; animation: fbwBreath 6s ease-in-out infinite; }
.footer-bg-word svg { width: 100%; height: auto; display: block; }
.footer-bg-word .fbw-x { fill: var(--red); }
.footer-bg-word .fbw-o circle { stroke: var(--red); }
@keyframes fbwBreath { 0%,100% { opacity: 0.08; transform: translateX(-50%) scale(1); } 50% { opacity: 0.18; transform: translateX(-50%) scale(1.04); } }
.footer-block-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; text-align: center; }
.footer-tagline { font-family: var(--font-display); font-size: clamp(34px, 6.5vw, 56px); line-height: 1.02; letter-spacing: -0.035em; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.footer-tagline em { font-style: normal; color: var(--red); font-weight: 600; }
.footer-text { color: var(--muted-2); font-size: 14px; line-height: 1.65; max-width: 480px; margin: 0 auto 28px; }
.footer-rule { width: 50px; height: 1px; background: var(--red); margin: 0 auto 24px; border: none; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; margin-bottom: 28px; }
.footer-links a { font-family: var(--font-body); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; font-size: 11px; color: var(--muted-2); text-decoration: none; position: relative; padding: 4px 0; transition: color .25s ease; }
.footer-links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--red-2); transform: scaleX(0); transform-origin: center; transition: transform .35s var(--ease); }
.footer-links a:hover { color: var(--white); }
.footer-links a:hover::after { transform: scaleX(1); }
.footer-meta { display: flex; flex-direction: column; align-items: center; gap: 10px; padding-top: 22px; border-top: 1px solid rgba(193,18,31,0.3); position: relative; }
.footer-meta::before { content: ""; position: absolute; top: -1px; left: 50%; transform: translateX(-50%); width: 80px; height: 1px; background: var(--red); box-shadow: 0 0 12px rgba(255,16,36,0.7); animation: footerMetaBar 3s ease-in-out infinite; }
@keyframes footerMetaBar { 0%,100% { width: 60px; opacity: 0.7; } 50% { width: 140px; opacity: 1; } }
.footer-mark { display: inline-flex; flex-direction: column; align-items: flex-start; line-height: 1; gap: 4px; }
.fm-xox { font-family: var(--font-display); font-size: 18px; font-weight: 800; letter-spacing: -0.02em; color: var(--white); font-style: normal; }
.fm-studio { font-family: var(--font-body); font-size: 9px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); font-style: normal; }
.copy { color: rgba(116,116,116,0.72); font-size: 10px; }
.credit { font-size: 10px; color: var(--muted); letter-spacing: 0.1em; }

/* ---------- Responsive ---------- */
@media (min-width: 760px) {
  body { background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(193,18,31,0.08), transparent 60%), radial-gradient(ellipse 80% 60% at 50% 100%, rgba(193,18,31,0.05), transparent 60%), var(--bg); }
  .site { max-width: var(--col-md); box-shadow: 0 0 120px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.03); }
  .site-nav, .drawer, .float-cta { max-width: var(--col-md); }
  #hero { min-height: 760px; }
  .section { padding: 88px 48px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .case-card { width: calc(100vw - 96px); max-width: 380px; }
  .home-cards { grid-template-columns: 1fr 1fr; gap: 22px; }
  .hero-actions { flex-direction: row; max-width: 540px; justify-content: center; flex-wrap: wrap; }
  .hero-actions .btn, .hero-actions .btn-ghost { flex: 0 1 auto; min-width: 160px; }
  .icon-contacts { max-width: 380px; gap: 18px; }
  .icon-contact { --size: 56px; }
  .icon-contact .icon-bubble svg { width: 26px; height: 26px; }
  .icon-contact .icon-label { font-size: 10px; letter-spacing: 0.16em; }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  .footer-links { grid-template-columns: repeat(4, auto); justify-content: center; gap: 24px; }
}

@media (min-width: 1100px) {
  .site { max-width: var(--col-lg); }
  .site-nav, .drawer, .float-cta { max-width: var(--col-lg); }
  .section { padding: 110px 80px; }
  .headline { font-size: 76px; }
  .case-card { width: 420px; max-width: 420px; }
  footer { padding: 60px 80px 40px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .marquee-track { animation: none !important; }
  .hero-kicker, .hero-title .title-line, .hero-sub, .hero-actions { opacity: 1 !important; transform: none !important; filter: none !important; }
}

/* ---------- Print ---------- */
@media print { .site-nav, .float-cta, .drawer, .marquee { display: none !important; } body { background: #fff; color: #000; padding: 0; } .site { max-width: 100%; background: #fff; box-shadow: none; } *, *::before, *::after { color: #000 !important; background: transparent !important; border-color: #ccc !important; } a { text-decoration: underline; } }
