/* =========================================================
   Paride Tattoo — Grebe Tattoo Studio | styles.css
   ========================================================= */

:root {
  --bg: #0b0a09;
  --bg-alt: #141210;
  --bg-card: #1a1714;
  --line: rgba(233, 224, 205, 0.1);
  --text: #f3ede1;
  --muted: #b3a996;
  --muted-2: #a89c86;
  --accent: #c9a13b;
  --accent-soft: #e4c877;
  --accent-deep: #8a3324;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
  --container: 1180px;
  --ff-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --ff-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

h1, h2, h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); }
h2 { font-size: clamp(2rem, 5vw, 2.9rem); color: var(--accent-soft); }
h3 { font-size: 1.35rem; letter-spacing: 0.03em; }

p { margin: 0 0 16px; color: var(--muted); }

a { color: inherit; text-decoration: none; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.section { padding: 92px 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { max-width: 680px; margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-primary {
  background: linear-gradient(135deg, #25d366, #1fb959);
  color: #06210f;
  box-shadow: 0 12px 30px -10px rgba(37, 211, 102, 0.55);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 16px 36px -10px rgba(37, 211, 102, 0.7); }
.btn-ghost {
  background: transparent;
  color: var(--accent-soft);
  border-color: rgba(201, 161, 59, 0.5);
}
.btn-ghost:hover { background: rgba(201, 161, 59, 0.1); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: padding 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; }
.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(11, 10, 9, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.8);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--ff-display); font-size: 1.5rem; letter-spacing: 0.04em; }
.brand small { display: block; font-family: var(--ff-body); font-size: 0.6rem; letter-spacing: 0.2em; color: var(--muted-2); text-transform: uppercase; font-weight: 600; }
.brand-mark { color: var(--accent); }

.nav-links { display: none; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover { color: var(--accent-soft); }

.header-cta { display: none; }
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}
.nav-toggle svg { width: 20px; height: 20px; color: var(--text); }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(9, 8, 7, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s;
}
.mobile-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-nav a { font-family: var(--ff-display); font-size: 2rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text); }
.mobile-nav a:hover { color: var(--accent-soft); }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(255,255,255,0.03);
  display: flex; align-items: center; justify-content: center;
}
.mobile-nav-close svg { width: 20px; height: 20px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("images/studio-paride-closeup-web.jpg") center 30% / cover no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,10,9,0.55) 0%, rgba(11,10,9,0.75) 45%, rgba(11,10,9,0.97) 100%),
    linear-gradient(90deg, rgba(11,10,9,0.92) 0%, rgba(11,10,9,0.55) 55%, rgba(11,10,9,0.35) 100%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero-content { max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(201,161,59,0.4);
  border-radius: 999px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-soft);
  background: rgba(201,161,59,0.08);
  margin-bottom: 22px;
}
.hero-badge svg { width: 16px; height: 16px; color: var(--accent); }
.hero h1 { color: var(--text); }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-lede { font-size: 1.1rem; color: var(--muted); max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; }
.hero-trust {
  display: flex; align-items: center; gap: 14px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 500px;
}
.stars { display: flex; gap: 2px; color: var(--accent); flex-shrink: 0; }
.stars svg { width: 16px; height: 16px; }
.hero-trust strong { color: var(--text); font-size: 0.95rem; }
.hero-trust span { display: block; color: var(--muted-2); font-size: 0.82rem; }

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted-2); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  z-index: 1;
}
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(var(--accent), transparent); animation: scrollcue 1.8s ease-in-out infinite; }
@keyframes scrollcue { 0%{ transform: scaleY(0); transform-origin: top;} 50%{ transform: scaleY(1); transform-origin: top;} 51%{transform-origin: bottom;} 100%{ transform: scaleY(0); transform-origin: bottom;} }

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

/* ---------- About / Style ---------- */
.about-grid { display: grid; gap: 48px; align-items: center; }
.about-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-media-frame {
  position: absolute; inset: 14px;
  border: 1px solid rgba(201,161,59,0.5);
  border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
}
.focus-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 16px; }
.focus-list li { display: flex; gap: 14px; align-items: flex-start; }
.focus-list .ico {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,161,59,0.1); border: 1px solid rgba(201,161,59,0.35); color: var(--accent);
}
.focus-list .ico svg { width: 18px; height: 18px; }
.focus-list strong { color: var(--text); display: block; margin-bottom: 2px; font-size: 1rem; }
.focus-list p { margin: 0; font-size: 0.92rem; }

@media (min-width: 860px) {
  .about-grid { grid-template-columns: 0.85fr 1.15fr; }
  .about-grid.reverse { grid-template-columns: 1.15fr 0.85fr; }
  .about-grid.reverse .about-media { order: 2; }
}

/* ---------- Why / Feature cards ---------- */
.feature-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(201,161,59,0.45); box-shadow: var(--shadow); }
.feature-card .ico {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,161,59,0.1); color: var(--accent);
  margin-bottom: 18px;
}
.feature-card .ico svg { width: 24px; height: 24px; }
.feature-card p { font-size: 0.92rem; margin: 0; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11,10,9,0.85) 0%, rgba(11,10,9,0) 45%);
  opacity: 0.85;
}
.gallery-cap {
  position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 1;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; color: var(--text);
  text-transform: uppercase;
}
.gallery-cap span { display: block; font-size: 0.7rem; font-weight: 500; color: var(--accent-soft); letter-spacing: 0.1em; margin-top: 2px; text-transform: none; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 16/10; }

@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
  .gallery-item.wide { grid-column: span 2; aspect-ratio: 16/10; }
}

/* ---------- Process ---------- */
.process-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); counter-reset: step; margin-bottom: 40px; }
.process-step { position: relative; padding: 30px 24px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-card); }
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--ff-display);
  font-size: 2.4rem;
  color: rgba(201,161,59,0.3);
  display: block;
  margin-bottom: 8px;
}
.process-step h3 { margin-bottom: 6px; font-size: 1.05rem; }
.process-step p { font-size: 0.9rem; margin: 0; }
.process-cta { text-align: center; padding-top: 12px; }

/* ---------- Testimonials ---------- */
.rating-badge {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  width: fit-content;
  margin: 0 auto 48px;
}
.rating-badge .num { font-family: var(--ff-display); font-size: 2.4rem; color: var(--accent-soft); line-height: 1; }
.rating-badge .meta { text-align: left; }
.rating-badge .meta strong { display: block; font-size: 0.9rem; color: var(--text); }
.rating-badge .meta small { color: var(--muted-2); font-size: 0.78rem; }

.testi-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.testi-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.testi-card .stars { color: var(--accent); }
.testi-card p { color: var(--text); font-size: 0.95rem; margin: 0; font-style: italic; }
.testi-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); }
.testi-foot strong { font-size: 0.85rem; color: var(--text); }
.testi-foot span { font-size: 0.75rem; color: var(--muted-2); }

.testi-cta { text-align: center; margin-top: 40px; }
.testi-cta a { color: var(--accent-soft); font-weight: 600; font-size: 0.9rem; border-bottom: 1px solid rgba(201,161,59,0.4); padding-bottom: 2px; }

/* ---------- Location ---------- */
.location-grid { display: grid; gap: 32px; }
.location-info { display: grid; gap: 18px; }
.info-row { display: flex; gap: 14px; align-items: flex-start; }
.info-row .ico { flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; background: rgba(201,161,59,0.1); border: 1px solid rgba(201,161,59,0.3); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.info-row .ico svg { width: 19px; height: 19px; }
.info-row strong { display: block; color: var(--text); font-size: 0.95rem; margin-bottom: 2px; }
.info-row p, .info-row a { margin: 0; font-size: 0.9rem; }
.info-row a:hover { color: var(--accent-soft); }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); aspect-ratio: 4/3; }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) contrast(1.05); }

@media (min-width: 860px) { .location-grid { grid-template-columns: 0.9fr 1.1fr; } }

/* ---------- Contact form ---------- */
.contact-panel {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; gap: 18px; }
@media (min-width: 640px) { .form-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: rgba(201,161,59,0.06);
}
.field textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.8rem; color: var(--muted-2); margin-top: 14px; text-align: center; }
.form-note svg { width: 14px; height: 14px; vertical-align: -2px; margin-right: 4px; color: var(--accent); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--line); padding: 64px 0 28px; }
.footer-grid { display: grid; gap: 40px; margin-bottom: 48px; }
.footer-brand p { max-width: 320px; font-size: 0.9rem; }
.footer-col h4 { font-family: var(--ff-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-soft); margin: 0 0 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { font-size: 0.9rem; color: var(--muted); }
.footer-col a:hover { color: var(--accent-soft); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--muted);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.footer-social a:hover { color: var(--accent-soft); border-color: var(--accent); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--line); font-size: 0.78rem; color: var(--muted-2); }
.footer-bottom a { color: var(--muted-2); }
.footer-bottom a:hover { color: var(--accent-soft); }

@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.3fr 0.7fr 0.7fr 0.9fr; }
}

/* ---------- Floating WhatsApp ---------- */
.float-wa {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 90;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1fb959);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -8px rgba(37,211,102,0.6);
  color: #06210f;
  animation: floatpulse 2.6s ease-in-out infinite;
}
.float-wa svg { width: 30px; height: 30px; }
.float-wa:hover { animation-play-state: paused; transform: scale(1.06); }
@keyframes floatpulse {
  0%, 100% { box-shadow: 0 14px 30px -8px rgba(37,211,102,0.6); }
  50% { box-shadow: 0 14px 40px -4px rgba(37,211,102,0.85); }
}

/* ---------- Misc ---------- */
.divider-gold { width: 60px; height: 2px; background: var(--accent); margin: 0 auto 20px; }
::selection { background: var(--accent); color: #100c05; }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--accent); color: #100c05;
  padding: 12px 18px; z-index: 1000; border-radius: 0 0 8px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }
