/* ==========================================================================
   TATWOO — Marketing for Tattoo Artists
   Global stylesheet
   ========================================================================== */

:root{
  --black: #0a0a0a;
  --black-2: #111113;
  --charcoal: #17171a;
  --charcoal-2: #1f1f23;
  --line: rgba(255,255,255,.08);
  --white: #f5f5f4;
  --grey: #a8a8ad;
  --grey-2: #6f6f76;
  --red: #e00f13;
  --red-2: #ff3b3f;
  --red-dim: rgba(224,15,19,.14);
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --ease: cubic-bezier(.22,.68,0,1);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
html,body{ margin:0; padding:0; }
body{
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family: inherit; cursor:pointer; }
input,textarea,select{ font-family: inherit; }

.container{ width:100%; max-width: var(--container); margin:0 auto; padding:0 24px; }

h1,h2,h3,h4{
  font-family: var(--font-display);
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 .5em;
}
h1{ font-size: clamp(2.6rem, 6.5vw, 5.4rem); letter-spacing: .01em; }
h2{ font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3{ font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
p{ margin: 0 0 1em; color: var(--grey); }
.lead{ font-size: 1.2rem; color: var(--grey); }

.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family: var(--font-body); font-weight:700; font-size:.78rem;
  letter-spacing:.18em; text-transform:uppercase; color: var(--red-2);
  margin-bottom: 16px;
}
.eyebrow::before{ content:''; width:24px; height:2px; background: var(--red); display:inline-block; }

.section{ padding: 110px 0; position:relative; }
.section-head{ max-width: 720px; margin-bottom: 56px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-alt{ background: var(--black-2); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 16px 30px; border-radius: 999px; font-weight:700; font-size:.95rem;
  letter-spacing:.02em; border: 1px solid transparent; transition: transform .25s var(--ease), background .25s ease, border-color .25s ease, box-shadow .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--red); color:#fff; box-shadow: 0 8px 24px -8px rgba(224,15,19,.6);
}
.btn-primary:hover{ background: var(--red-2); transform: translateY(-3px); box-shadow: 0 14px 30px -8px rgba(224,15,19,.75); }
.btn-outline{
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.25);
}
.btn-outline:hover{ border-color:#fff; transform: translateY(-3px); background: rgba(255,255,255,.06); }
.btn-ghost{ color: var(--white); border-color: transparent; padding: 12px 4px; }
.btn-ghost::after{ content:'→'; margin-left:6px; transition: transform .25s var(--ease); display:inline-block; }
.btn-ghost:hover::after{ transform: translateX(6px); }
.btn-sm{ padding: 11px 22px; font-size:.85rem; }
.btn-wa{ background:#22c55e; color:#08130b; box-shadow: 0 8px 24px -8px rgba(34,197,94,.5); }
.btn-wa:hover{ background:#2fdc6b; transform: translateY(-3px); }
.btn svg{ width:18px; height:18px; flex-shrink:0; }

/* ---------- Header ---------- */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 1000;
  padding: 22px 0; transition: padding .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled{
  padding: 12px 0; background: rgba(10,10,10,.88); backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px); border-color: var(--line);
  box-shadow: 0 10px 30px -20px rgba(0,0,0,.8);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; gap: 24px; }
.brand{ display:flex; align-items:center; }
.brand img{ height: 40px; width:auto; transition: height .35s var(--ease); }
.site-header.scrolled .brand img{ height: 32px; }

.main-nav{ display:flex; align-items:center; gap: 34px; }
.main-nav a{
  font-size:.86rem; font-weight:600; letter-spacing:.03em; text-transform:uppercase;
  color: var(--grey); position:relative; padding: 6px 0; transition: color .2s ease;
}
.main-nav a::after{
  content:''; position:absolute; left:0; bottom:0; height:2px; width:0; background: var(--red);
  transition: width .3s var(--ease);
}
.main-nav a:hover{ color: var(--white); }
.main-nav a:hover::after{ width:100%; }

.header-actions{ display:flex; align-items:center; gap:18px; }

.lang-switch{ position:relative; }
.lang-current{
  display:flex; align-items:center; gap:6px; font-size:.8rem; font-weight:700;
  letter-spacing:.05em; color: var(--grey); border:1px solid var(--line); border-radius: 999px;
  padding: 8px 14px; transition: border-color .2s ease, color .2s ease;
}
.lang-current:hover{ color:#fff; border-color: rgba(255,255,255,.3); }
.lang-current svg{ width:12px; height:12px; transition: transform .25s ease; }
.lang-switch.open .lang-current svg{ transform: rotate(180deg); }
.lang-menu{
  position:absolute; top: calc(100% + 10px); right:0; background: var(--charcoal);
  border:1px solid var(--line); border-radius: 12px; padding: 6px; min-width:150px;
  opacity:0; visibility:hidden; transform: translateY(-8px); transition: all .22s var(--ease);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.7);
}
.lang-switch.open .lang-menu{ opacity:1; visibility:visible; transform: translateY(0); }
.lang-menu a{
  display:flex; align-items:center; gap:10px; padding:9px 12px; border-radius:8px;
  font-size:.85rem; color: var(--grey); font-weight:600;
}
.lang-menu a:hover{ background: rgba(255,255,255,.06); color:#fff; }
.lang-menu a.active{ color: var(--red-2); }
.lang-code{
  display:inline-flex; align-items:center; justify-content:center; width:22px; height:16px;
  font-size:.62rem; font-weight:800; letter-spacing:0; border-radius:3px; background: rgba(255,255,255,.08);
}

.nav-toggle{
  display:none; flex-direction:column; gap:5px; width:26px; background:none; border:none; padding:8px 0;
}
.nav-toggle span{ width:100%; height:2px; background:#fff; transition: all .3s var(--ease); }

.mobile-nav{ display:none; }

/* ---------- Hero ---------- */
.hero{
  position:relative; min-height: 100svh; display:flex; align-items:center;
  padding-top: 140px; padding-bottom: 90px; overflow:hidden;
}
.hero-bg{
  position:absolute; inset:0; z-index:0;
}
.hero-bg img{ width:100%; height:100%; object-fit:cover; object-position: center 30%; }
.hero-bg::after{
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.75) 45%, var(--black) 100%),
              linear-gradient(90deg, rgba(10,10,10,.9) 0%, rgba(10,10,10,.35) 55%, rgba(10,10,10,.75) 100%);
}
.hero-content{ position:relative; z-index:1; max-width: 820px; }
.hero h1{ margin-bottom: .3em; }
.hero h1 .accent{ color: var(--red-2); }
.hero-lead{ font-size: 1.25rem; color:#dcdcdc; max-width: 560px; margin-bottom: 2.2em; }
.hero-cta{ display:flex; flex-wrap:wrap; gap: 16px; margin-bottom: 56px; }
.hero-stats{ display:flex; flex-wrap:wrap; gap: 40px; padding-top: 34px; border-top: 1px solid var(--line); max-width:620px; }
.hero-stat b{ display:block; font-family: var(--font-display); font-size: 2.1rem; color:#fff; letter-spacing:.01em; }
.hero-stat span{ font-size:.8rem; color: var(--grey); text-transform:uppercase; letter-spacing:.05em; }

.scroll-cue{
  position:absolute; bottom: 34px; left:50%; transform: translateX(-50%); z-index:1;
  display:flex; flex-direction:column; align-items:center; gap:8px; color: var(--grey);
  font-size:.7rem; letter-spacing:.15em; text-transform:uppercase; opacity:.8;
}
.scroll-cue .dot{
  width:1px; height:34px; background: linear-gradient(180deg, var(--red), transparent);
  position:relative; overflow:hidden;
}

/* ---------- Trusted strip ---------- */
.trusted{ padding: 42px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); background: var(--black-2); }
.trusted-inner{ display:flex; flex-wrap:wrap; align-items:center; gap: 28px 48px; justify-content:space-between; }
.trusted-label{ font-size:.78rem; letter-spacing:.12em; text-transform:uppercase; color: var(--grey-2); white-space:nowrap; }
.trusted-logos{ display:flex; flex-wrap:wrap; gap: 14px 36px; align-items:center; }
.trusted-logos a{
  font-family: var(--font-display); font-size:1.3rem; letter-spacing:.03em; color: var(--grey);
  transition: color .2s ease;
}
.trusted-logos a:hover{ color: var(--red-2); }

/* ---------- Services ---------- */
.services-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card{
  background: var(--charcoal); border:1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; transition: transform .35s var(--ease), border-color .35s ease, background .35s ease;
  position:relative; overflow:hidden;
}
.service-card::before{
  content:''; position:absolute; top:0; left:0; width:100%; height:2px;
  background: linear-gradient(90deg, var(--red), transparent 70%);
  transform: scaleX(0); transform-origin:left; transition: transform .4s var(--ease);
}
.service-card:hover{ transform: translateY(-6px); border-color: rgba(224,15,19,.35); background: var(--charcoal-2); }
.service-card:hover::before{ transform: scaleX(1); }
.service-icon{
  width:52px; height:52px; border-radius: 12px; background: var(--red-dim); color: var(--red-2);
  display:flex; align-items:center; justify-content:center; margin-bottom: 22px; transition: transform .35s var(--ease);
}
.service-card:hover .service-icon{ transform: scale(1.08) rotate(-4deg); }
.service-icon svg{ width:26px; height:26px; }
.service-card h3{ margin-bottom:.5em; }
.service-card p{ font-size:.94rem; margin-bottom:0; }
.service-card.wide{ grid-column: span 1; }

/* ---------- Process ---------- */
.process-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.process-card{ position:relative; padding: 30px 24px 24px; border-left: 1px solid var(--line); }
.process-card .num{
  font-family: var(--font-display); font-size: 3.2rem; color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.25); line-height:1; margin-bottom: 18px; display:block;
}
.process-card h4{ font-family: var(--font-body); text-transform:none; letter-spacing:0; font-size:1.05rem; font-weight:700; color:#fff; margin-bottom:.4em; }
.process-card p{ font-size:.9rem; margin-bottom:0; }

/* ---------- Cases ---------- */
.cases{ display:flex; flex-direction:column; gap: 28px; }
.case-card{
  display:grid; grid-template-columns: 1.1fr 1fr; gap: 0; background: var(--charcoal);
  border:1px solid var(--line); border-radius: var(--radius); overflow:hidden;
  transition: border-color .35s ease, transform .35s var(--ease);
}
.case-card:hover{ border-color: rgba(224,15,19,.35); }
.case-card:nth-child(even){ direction: rtl; }
.case-card:nth-child(even) > *{ direction: ltr; }
.case-media{ position:relative; min-height: 340px; }
.case-photo-grid{ position:absolute; inset:0; display:grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: 1fr 1fr; gap:2px; }
.case-photo-grid img{ width:100%; height:100%; object-fit:cover; }
.case-photo-grid .big{ grid-row: 1 / 3; }
.case-body{ padding: 44px 44px; display:flex; flex-direction:column; justify-content:center; }
.case-tag{ font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color: var(--red-2); font-weight:700; margin-bottom:14px; }
.case-body h3{ margin-bottom:.4em; }
.case-role{ color: var(--grey-2); font-size:.85rem; margin-bottom:1.2em; }
.case-results{ display:flex; gap:26px; margin: 20px 0 24px; flex-wrap:wrap; }
.case-results div b{ display:block; font-family: var(--font-display); font-size:1.7rem; color:#fff; }
.case-results div span{ font-size:.74rem; color: var(--grey-2); text-transform:uppercase; letter-spacing:.05em; }

/* ---------- About ---------- */
.about-grid{ display:grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items:center; }
.about-media{ position:relative; border-radius: var(--radius); overflow:hidden; aspect-ratio: 4/5; }
.about-media img{ width:100%; height:100%; object-fit:cover; }
.about-badge{
  position:absolute; bottom: 22px; left: 22px; background: rgba(10,10,10,.75); backdrop-filter: blur(10px);
  border:1px solid var(--line); border-radius: 12px; padding: 16px 20px;
}
.about-badge b{ display:block; font-family: var(--font-display); font-size:1.9rem; color: var(--red-2); }
.about-badge span{ font-size:.72rem; color: var(--grey); text-transform:uppercase; letter-spacing:.05em; }
.about-list{ display:flex; flex-direction:column; gap: 16px; margin: 26px 0; }
.about-list li{ display:flex; gap:14px; align-items:flex-start; color: var(--grey); font-size:.95rem; }
.about-list svg{ width:20px; height:20px; flex-shrink:0; color: var(--red-2); margin-top:2px; }

/* ---------- FAQ ---------- */
.faq-list{ max-width: 820px; margin: 0 auto; display:flex; flex-direction:column; gap:12px; }
.faq-item{ border:1px solid var(--line); border-radius: var(--radius-sm); background: var(--charcoal); overflow:hidden; }
.faq-q{
  display:flex; align-items:center; justify-content:space-between; gap: 20px;
  padding: 22px 26px; cursor:pointer; font-weight:700; font-size:1rem; color:#fff;
}
.faq-q .plus{ width:20px; height:20px; position:relative; flex-shrink:0; }
.faq-q .plus::before,.faq-q .plus::after{ content:''; position:absolute; background: var(--red-2); transition: transform .3s var(--ease); }
.faq-q .plus::before{ width:100%; height:2px; top:9px; left:0; }
.faq-q .plus::after{ width:2px; height:100%; left:9px; top:0; }
.faq-item.open .plus::after{ transform: rotate(90deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .4s var(--ease); }
.faq-a-inner{ padding: 0 26px 24px; }
.faq-a-inner p{ margin:0; font-size:.94rem; }
.faq-item.open .faq-a{ max-height: 300px; }

/* ---------- CTA banner ---------- */
.cta-banner{ position:relative; padding: 110px 0; text-align:center; overflow:hidden; }
.cta-banner .hero-bg img{ object-position: center 25%; }
.cta-banner-content{ position:relative; z-index:1; max-width:680px; margin:0 auto; }
.cta-banner h2{ margin-bottom:.4em; }
.cta-banner p{ font-size:1.1rem; color:#ddd; }
.cta-actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-top: 28px; }

/* ---------- Contact ---------- */
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info-card{ background: var(--charcoal); border:1px solid var(--line); border-radius: var(--radius); padding: 36px; }
.contact-info-card h3{ margin-bottom: .3em; }
.contact-method{ display:flex; align-items:center; gap:14px; padding: 16px 0; border-top:1px solid var(--line); }
.contact-method:first-of-type{ border-top:none; margin-top: 10px; }
.contact-method .ic{ width:42px; height:42px; border-radius:10px; background: var(--red-dim); color:var(--red-2); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-method .ic svg{ width:20px; height:20px; }
.contact-method a,.contact-method span{ font-weight:600; color:#fff; font-size:.95rem; }
.contact-method small{ display:block; color: var(--grey-2); font-size:.75rem; text-transform:uppercase; letter-spacing:.04em; margin-bottom:2px; }

.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field{ margin-bottom: 18px; }
.field label{ display:block; font-size:.78rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase; color: var(--grey); margin-bottom:8px; }
.field input,.field textarea,.field select{
  width:100%; background: var(--charcoal); border:1px solid var(--line); border-radius: 10px;
  padding: 14px 16px; color:#fff; font-size:.95rem; transition: border-color .2s ease, background .2s ease;
}
.field input:focus,.field textarea:focus,.field select:focus{ outline:none; border-color: var(--red); background: var(--charcoal-2); }
.field textarea{ resize: vertical; min-height: 110px; }
.form-note{ font-size:.8rem; color: var(--grey-2); margin-top: 14px; }
.form-success,.form-error{ display:none; padding: 16px 20px; border-radius: 10px; font-size:.9rem; margin-bottom:18px; }
.form-success{ background: rgba(34,197,94,.12); border:1px solid rgba(34,197,94,.35); color:#86efac; }
.form-error{ background: rgba(224,15,19,.12); border:1px solid rgba(224,15,19,.35); color:#ff9c9e; }
.form-success.show,.form-error.show{ display:block; }

/* ---------- Footer ---------- */
.site-footer{ padding: 70px 0 30px; border-top:1px solid var(--line); }
.footer-top{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-brand img{ height: 34px; margin-bottom: 18px; }
.footer-brand p{ max-width: 300px; font-size:.9rem; }
.footer-social{ display:flex; gap:12px; margin-top: 18px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%; border:1px solid var(--line); display:flex; align-items:center;
  justify-content:center; transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.footer-social a:hover{ border-color: var(--red); background: var(--red-dim); transform: translateY(-3px); }
.footer-social svg{ width:16px; height:16px; }
.footer-col h5{ font-family: var(--font-body); text-transform:uppercase; font-size:.78rem; letter-spacing:.1em; color:#fff; margin-bottom:18px; font-weight:800; }
.footer-col li{ margin-bottom: 12px; }
.footer-col a{ color: var(--grey); font-size:.9rem; transition: color .2s ease; }
.footer-col a:hover{ color: var(--red-2); }
.footer-bottom{ display:flex; flex-wrap:wrap; justify-content:space-between; gap: 16px; padding-top: 28px; border-top:1px solid var(--line); font-size:.8rem; color: var(--grey-2); }
.footer-credits{ font-size:.72rem; color: rgba(255,255,255,.28); margin-top: 10px; }
.footer-credits a{ color: rgba(255,255,255,.4); }

/* ---------- WhatsApp float ---------- */
.wa-float{
  position: fixed; bottom: 26px; right: 26px; z-index: 900; width:60px; height:60px; border-radius:50%;
  background:#22c55e; display:flex; align-items:center; justify-content:center; box-shadow: 0 10px 30px -8px rgba(34,197,94,.7);
  transition: transform .3s var(--ease);
}
.wa-float:hover{ transform: scale(1.08); }
.wa-float svg{ width:28px; height:28px; color:#0a1a0f; }

/* ---------- Reveal ---------- */
[data-reveal]{ opacity:0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible{ opacity:1; transform:none; }
[data-reveal-delay="1"]{ transition-delay: .1s; }
[data-reveal-delay="2"]{ transition-delay: .2s; }
[data-reveal-delay="3"]{ transition-delay: .3s; }
[data-reveal-delay="4"]{ transition-delay: .4s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px){
  .services-grid{ grid-template-columns: repeat(2,1fr); }
  .process-grid{ grid-template-columns: repeat(2,1fr); }
  .about-grid{ grid-template-columns: 1fr; }
  .about-media{ max-width: 420px; aspect-ratio: 4/3; }
  .case-card,.case-card:nth-child(even){ grid-template-columns: 1fr; direction:ltr; }
  .case-media{ min-height: 280px; }
  .footer-top{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px){
  .main-nav{ display:none; }
  .nav-toggle{ display:flex; }
  .header-actions .lang-switch{ display:none; }
  .contact-grid{ grid-template-columns: 1fr; }

  .mobile-nav{
    position: fixed; inset:0; background: var(--black); z-index: 1100; padding: 100px 30px 40px;
    display:flex; flex-direction:column; gap: 6px; transform: translateX(100%); transition: transform .4s var(--ease);
    overflow-y:auto; visibility: hidden;
  }
  .mobile-nav.open{ visibility: visible; }
  .mobile-nav.open{ transform: translateX(0); }
  .mobile-nav a{
    font-family: var(--font-display); font-size: 2rem; letter-spacing:.02em; padding: 14px 0;
    border-bottom: 1px solid var(--line); color:#fff;
  }
  .mobile-nav .lang-menu-mobile{ display:flex; gap:10px; margin-top: 30px; flex-wrap:wrap; }
  .mobile-nav .lang-menu-mobile a{ font-family: var(--font-body); font-size:.85rem; border:1px solid var(--line); border-radius:999px; padding:10px 18px; }
  .mobile-nav .btn{ margin-top: 26px; }
  .mobile-close{ position:absolute; top:26px; right:24px; width:44px; height:44px; border:1px solid var(--line); border-radius:50%; display:flex; align-items:center; justify-content:center; background:none; }
  .mobile-close svg{ width:18px; height:18px; }
}

@media (max-width: 720px){
  .section{ padding: 76px 0; }
  .services-grid{ grid-template-columns: 1fr; }
  .process-grid{ grid-template-columns: 1fr; }
  .hero-stats{ gap: 26px; }
  .footer-top{ grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .form-row{ grid-template-columns: 1fr; }
  .case-body{ padding: 34px 26px; }
}

@media (max-width: 480px){
  .footer-top{ grid-template-columns: 1fr; }
  .hero-cta{ flex-direction:column; align-items:stretch; }
  .hero-cta .btn{ width:100%; }
}
