:root {
  --ink: #171817;
  --paper: #f5f3ee;
  --white: #fff;
  --mint: #66d8b2;
  --mint-soft: #dff7ed;
  --line: rgba(23, 24, 23, .16);
  --display: "Syne", sans-serif;
  --body: "Manrope", sans-serif;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f5f3ee;
  --paper: #101210;
  --white: #181b18;
  --mint-soft: #11251d;
  --line: rgba(245, 243, 238, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .35s ease, color .35s ease;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.sr-only, .skip-link {
  clip: rect(0 0 0 0); clip-path: inset(50%); height: 1px; overflow: hidden;
  position: absolute; white-space: nowrap; width: 1px;
}
.skip-link:focus { clip: auto; clip-path: none; height: auto; left: 1rem; top: 1rem; width: auto; z-index: 100; }

.site-header {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(245, 243, 238, .86);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 86px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(24px, 4vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}
html[data-theme="dark"] .site-header { background: rgba(16, 18, 16, .88); }
html[data-theme="dark"] .brand img,
html[data-theme="dark"] footer img { filter: brightness(0) invert(1); }
.brand img { height: 34px; width: auto; }
.main-nav { align-items: center; display: flex; gap: clamp(18px, 2vw, 34px); }
.main-nav a { font-size: 13px; font-weight: 600; }
.main-nav > a:not(.nav-cta) { position: relative; }
.main-nav > a:not(.nav-cta)::after {
  background: var(--ink); bottom: -6px; content: ""; height: 1px; left: 0;
  position: absolute; transform: scaleX(0); transform-origin: right; transition: transform .3s; width: 100%;
}
.main-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { background: var(--ink); border-radius: 999px; color: var(--white); padding: 13px 18px; }
.nav-cta span, .button span { margin-left: 12px; }
.theme-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 8px;
  padding: 10px 13px;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.theme-toggle:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}
.theme-toggle-icon {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  height: 18px;
  justify-content: center;
  line-height: 1;
  width: 18px;
}
.menu-toggle { display: none; }

.hero {
  align-items: center;
  display: grid;
  gap: clamp(32px, 5vw, 88px);
  grid-template-columns: 1.05fr .95fr;
  min-height: 100vh;
  padding: 140px clamp(24px, 6vw, 110px) 70px;
  position: relative;
}
.eyebrow, .section-kicker {
  align-items: center; display: flex; font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow { margin-bottom: 34px; }
.eyebrow i, .availability i {
  animation: pulse 2s infinite; background: var(--mint); border-radius: 50%; height: 8px; margin-right: 10px; width: 8px;
}
.hero h1, .section h2 {
  font-family: var(--display); font-weight: 600; letter-spacing: -.055em; line-height: .95; margin: 0;
}
.hero h1 { font-size: clamp(58px, 5.2vw, 92px); }
.hero h1 span, .section h2 em { color: var(--mint); font-style: normal; }
.hero-intro { font-size: clamp(16px, 1.4vw, 20px); line-height: 1.6; margin: 34px 0; max-width: 590px; }
.hero-actions { align-items: center; display: flex; gap: 30px; }
.button {
  align-items: center; border: 1px solid transparent; border-radius: 999px; display: inline-flex;
  font-size: 13px; font-weight: 700; justify-content: space-between; padding: 17px 22px; transition: .3s ease;
}
.button:hover { transform: translateY(-3px); }
.web-page .button:hover { box-shadow: 0 18px 36px rgba(23,24,23,.18); }
.web-page .text-link { transition: border-color .3s ease, color .3s ease; }
.web-page .text-link:hover { border-color: var(--mint); color: var(--mint); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: var(--mint); color: var(--ink); }
.text-link { border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 700; padding-bottom: 5px; }
.text-link span { margin-left: 12px; }
.hero-visual { position: relative; }
.hero-frame {
  aspect-ratio: 1; background: var(--mint); border-radius: 48% 48% 12px 12px; overflow: hidden; position: relative;
}
.hero-frame::after { border: 1px solid rgba(255,255,255,.55); border-radius: 46% 46% 8px 8px; content: ""; inset: 18px; position: absolute; }
.hero-frame img { height: 100%; inset: 0; object-fit: cover; object-position: center; position: absolute; width: 100%; }
.frame-label {
  color: var(--white); font-size: 10px; font-weight: 700; left: 32px; letter-spacing: .15em;
  position: absolute; text-transform: uppercase; top: 34px; z-index: 2;
}
.availability {
  align-items: center; background: var(--white); border-radius: 999px; bottom: -20px; display: flex;
  font-size: 11px; font-weight: 700; left: 50%; padding: 14px 18px; position: absolute; transform: translateX(-50%); white-space: nowrap; z-index: 3;
}
.hero-note { bottom: 52px; font-size: 10px; left: 30px; line-height: 1.6; position: absolute; text-transform: uppercase; transform: rotate(-90deg); }

.ticker { background: var(--ink); color: var(--white); overflow: hidden; padding: 17px 0; }
html[data-theme="dark"] .ticker,
html[data-theme="dark"] .expertise,
html[data-theme="dark"] .reviews,
html[data-theme="dark"] .tattoo-page,
html[data-theme="dark"] .tattoo-process {
  background: #101210;
  color: #f5f3ee;
}
html[data-theme="dark"] .contact,
html[data-theme="dark"] .tattoo-contact,
html[data-theme="dark"] .web-contact,
html[data-theme="dark"] .formation-contact {
  color: #171817;
}
html[data-theme="dark"] .web-hero p,
html[data-theme="dark"] .web-media-head p,
html[data-theme="dark"] .web-offer-list p,
html[data-theme="dark"] .included-card p,
html[data-theme="dark"] .method-timeline p,
html[data-theme="dark"] .tattoo-offer-list p,
html[data-theme="dark"] .tattoo-media-head p,
html[data-theme="dark"] .tattoo-media-card p {
  color: rgba(245, 243, 238, .68);
}
html[data-theme="dark"] .social-links a:hover,
html[data-theme="dark"] .button-dark:hover,
html[data-theme="dark"] .button-outline:hover {
  color: #171817;
}
.ticker-track { animation: marquee 24s linear infinite; display: flex; width: max-content; will-change: transform; }
.ticker-group { align-items: center; display: flex; flex: 0 0 auto; justify-content: space-around; min-width: 100vw; }
.ticker span { font-family: var(--display); font-size: 14px; font-weight: 600; text-transform: uppercase; }
.ticker b { color: var(--mint); font-size: 11px; margin: 4px 28px 0; }

.section { padding: clamp(90px, 11vw, 170px) clamp(24px, 7vw, 120px); }
.section-kicker { border-top: 1px solid var(--line); padding-top: 14px; }
.studio-grid { display: grid; gap: 90px; grid-template-columns: 1.15fr .85fr; margin-top: 78px; }
.studio h2 { font-size: clamp(54px, 7vw, 108px); max-width: 900px; }
.studio-copy { align-self: end; }
.studio-copy p { font-size: 18px; line-height: 1.7; margin: 0 0 22px; }
.studio-copy .text-link { display: inline-block; margin-top: 20px; }
.numbers { border-top: 1px solid var(--line); display: grid; gap: 28px; grid-template-columns: repeat(3, 1fr); margin-top: 110px; padding-top: 30px; }
.numbers > div { align-items: flex-start; display: flex; gap: 24px; }
.numbers strong { font-family: var(--display); font-size: clamp(34px, 4vw, 60px); letter-spacing: -.05em; }
.numbers span { font-size: 11px; line-height: 1.6; padding-top: 8px; text-transform: uppercase; }

.social-proof {
  background: var(--mint-soft);
  color: var(--ink);
  overflow: hidden;
  position: relative;
}
.social-proof::before {
  border: 1px solid rgba(23,24,23,.1);
  border-radius: 50%;
  content: "";
  height: 620px;
  position: absolute;
  right: -250px;
  top: -290px;
  width: 620px;
}
.social-proof-head {
  align-items: flex-start;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.social-proof-head p {
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.2;
  margin: 12px 0 0;
}
.social-proof h2 {
  font-size: clamp(54px, 7vw, 108px);
  margin: 85px 0 105px;
  max-width: 1200px;
  position: relative;
}
.social-stats {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}
.social-stat {
  min-height: 330px;
  padding: 28px 0 38px;
  position: relative;
}
.social-stat + .social-stat {
  border-left: 1px solid var(--line);
  padding-left: clamp(30px, 5vw, 80px);
}
.stat-index {
  font-size: 10px;
  left: 0;
  letter-spacing: .12em;
  position: absolute;
  top: 28px;
}
.social-stat + .social-stat .stat-index { left: clamp(30px, 5vw, 80px); }
.social-stat strong {
  color: var(--mint);
  display: block;
  font-family: var(--display);
  font-size: clamp(65px, 9vw, 145px);
  font-weight: 600;
  letter-spacing: -.075em;
  line-height: .9;
  margin-top: 82px;
  white-space: nowrap;
}
.social-stat sup {
  font-family: var(--body);
  font-size: .5em;
  font-weight: 500;
  margin-right: .08em;
  top: -.45em;
}
.social-stat p {
  font-family: var(--display);
  font-size: clamp(17px, 1.7vw, 25px);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.2;
  margin: 24px 0 0;
}
.social-join {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-top: 42px;
  position: relative;
}
.social-join > div:first-child > span {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
}
.social-join > div:first-child p {
  font-size: 12px;
  margin: 8px 0 0;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-links a {
  align-items: center;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--white);
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 10px;
  padding: 11px 16px 11px 11px;
  transition: background .3s, color .3s, transform .3s;
}
.social-links a:hover {
  background: transparent;
  color: var(--ink);
  transform: translateY(-3px);
}
.social-links svg {
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 22px;
}
.social-links svg .fill {
  fill: currentColor;
  stroke: none;
}

.expertise, .reviews { background: var(--ink); color: var(--white); }
.section-kicker.light { border-color: rgba(255,255,255,.22); color: rgba(255,255,255,.65); }
.expertise-head { display: flex; justify-content: space-between; margin: 74px 0 90px; }
.expertise-head h2 { font-size: clamp(56px, 7.3vw, 110px); }
.expertise-head h2 span { color: rgba(255,255,255,.23); }
.expertise-head > p { align-self: flex-end; color: rgba(255,255,255,.64); line-height: 1.7; max-width: 350px; }
.services { border-top: 1px solid rgba(255,255,255,.2); display: grid; grid-template-columns: repeat(3, 1fr); }
.service { border-right: 1px solid rgba(255,255,255,.2); min-height: 400px; padding: 26px 32px; position: relative; transition: background .35s, color .35s; }
.service:last-child { border-right: 0; }
.service:hover { background: var(--mint); color: var(--ink); }
.service-no { font-size: 10px; }
.service h3 { font-family: var(--display); font-size: clamp(28px, 3vw, 46px); letter-spacing: -.04em; line-height: 1.05; margin: 72px 0 24px; }
.service p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.7; max-width: 290px; transition: color .35s; }
.service:hover p { color: var(--ink); }
.service-icon { bottom: 28px; font-size: 24px; position: absolute; right: 28px; }

.youtube { align-items: center; display: grid; gap: clamp(50px, 8vw, 130px); grid-template-columns: .9fr 1.1fr; }
.youtube-visual { background: var(--mint-soft); border-radius: 18px; min-height: 620px; overflow: hidden; position: relative; }
.youtube-visual::before { border: 1px solid rgba(23,24,23,.15); border-radius: 50%; content: ""; height: 420px; left: 50%; position: absolute; top: 50%; transform: translate(-50%,-50%); width: 420px; }
.youtube-visual img { height: 100%; object-fit: contain; padding: 100px 50px; position: absolute; width: 100%; z-index: 2; }
.floating-tag { background: var(--white); border: 1px solid var(--line); border-radius: 999px; font-size: 11px; font-weight: 700; padding: 13px 16px; position: absolute; z-index: 3; }
.tag-one { left: 7%; top: 11%; transform: rotate(-6deg); }
.tag-two { bottom: 12%; right: 7%; transform: rotate(4deg); }
.youtube-copy h2 { font-size: clamp(52px, 6vw, 92px); margin: 52px 0 28px; }
.youtube-copy > p { font-size: 17px; line-height: 1.7; max-width: 600px; }
.youtube-copy ul { list-style: none; margin: 38px 0; padding: 0; }
.youtube-copy li { border-top: 1px solid var(--line); font-size: 13px; font-weight: 600; padding: 15px 0; }
.youtube-copy li span { color: #888; display: inline-block; font-size: 9px; width: 44px; }

.portfolio { background: var(--white); }
.portfolio-head { align-items: flex-end; display: flex; justify-content: space-between; }
.portfolio h2 { font-size: clamp(58px, 7vw, 108px); margin-top: 64px; }
.filters { display: flex; gap: 6px; }
.filters button { background: transparent; border: 1px solid var(--line); border-radius: 999px; cursor: pointer; font-size: 11px; padding: 10px 14px; }
.filters button.active { background: var(--ink); color: var(--white); }
.project-grid { display: grid; gap: 55px 24px; grid-template-columns: repeat(2, 1fr); margin: 90px 0 70px; }
.project-image { background: var(--paper); overflow: hidden; }
.project-image img { aspect-ratio: 4/3; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); width: 100%; }
.project:hover .project-image img { transform: scale(1.045); }
.project-large .project-image img { aspect-ratio: 4/3; }
.project-meta { align-items: center; display: flex; font-size: 14px; font-weight: 700; justify-content: space-between; padding-top: 14px; }
.project-meta small { color: #777; font-size: 10px; font-weight: 500; text-transform: uppercase; }
.project[hidden] { display: none; }
.button-outline { border-color: var(--ink); }
.button-outline:hover { background: var(--ink); color: var(--white); }

.reviews { overflow: hidden; }
.reviews-head { align-items: flex-end; display: flex; justify-content: space-between; margin: 65px 0 60px; }
.reviews h2 { font-size: clamp(58px, 7vw, 108px); }
.review-controls { display: flex; gap: 8px; }
.review-controls button { background: transparent; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; cursor: pointer; height: 48px; width: 48px; }
.review-controls button:hover { background: var(--mint); border-color: var(--mint); color: var(--ink); }
.review-track {
  display: flex; gap: 20px; margin-right: -120px; overflow-x: auto; overscroll-behavior-inline: contain;
  padding-right: 120px; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none;
}
.review-track.is-looping {
  animation: reviewsLoop 34s linear infinite;
  margin-right: 0;
  overflow: visible;
  padding-right: 0;
  scroll-snap-type: none;
  width: max-content;
  will-change: transform;
}
.reviews:hover .review-track.is-looping { animation-play-state: paused; }
.review-track::-webkit-scrollbar { display: none; }
.review-card {
  background: var(--white); border-radius: 10px; color: var(--ink); display: flex; flex: 0 0 min(420px, 82vw);
  flex-direction: column; justify-content: space-between; min-height: 315px; padding: 30px; scroll-snap-align: start;
}
.review-track.is-looping .review-card { scroll-snap-align: none; }
.review-card.is-clone { pointer-events: none; }
@keyframes reviewsLoop {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-50% - 10px), 0, 0); }
}
.review-stars { color: var(--mint); font-size: 12px; letter-spacing: .18em; }
.review-card blockquote {
  font-family: var(--display); font-size: clamp(21px, 2vw, 29px); font-weight: 600; letter-spacing: -.035em;
  line-height: 1.25; margin: 40px 0;
}
.review-author { align-items: center; border-top: 1px solid var(--line); display: flex; gap: 13px; padding-top: 18px; }
.review-avatar {
  align-items: center; background: var(--mint); border-radius: 50%; display: flex; font-family: var(--display);
  border: 2px solid var(--mint); flex: 0 0 42px; font-size: 13px; font-weight: 700; height: 42px;
  justify-content: center; object-fit: cover; width: 42px;
}
.review-author strong, .review-author small { display: block; }
.review-author strong { font-family: var(--display); font-size: 13px; }
.review-author small { color: #777; font-size: 10px; margin-top: 3px; text-transform: uppercase; }

.contact { background: var(--mint); padding-bottom: 60px; }
.contact-top { align-items: flex-start; display: flex; justify-content: space-between; }
.contact-top .section-kicker { width: 65%; }
.contact-top > span { align-items: center; display: flex; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.contact-top > span::before { background: var(--ink); border-radius: 50%; content: ""; height: 7px; margin-right: 9px; width: 7px; }
.contact-main { margin: 105px 0 130px; }
.contact-main p { font-size: 15px; margin: 0 0 10px; }
.contact-main > a { align-items: center; border-bottom: 5px solid var(--ink); display: flex; font-family: var(--display); font-size: clamp(74px, 12vw, 190px); font-weight: 600; justify-content: space-between; letter-spacing: -.07em; line-height: 1; padding-bottom: 14px; }
.contact-main > a span { font-family: var(--body); font-size: clamp(34px, 5vw, 72px); }
.contact-footer { align-items: flex-end; border-top: 1px solid rgba(23,24,23,.25); display: grid; font-size: 12px; grid-template-columns: 1fr 1fr 1fr; padding-top: 24px; }
.contact-footer p { line-height: 1.7; margin: 0; text-transform: uppercase; }
.contact-footer > a { text-align: center; text-decoration: underline; }
.contact-footer > div { display: flex; gap: 18px; justify-content: flex-end; }

.tattoo-page { background: var(--ink); color: var(--white); }
.tattoo-page .site-header { color: var(--ink); }
.tattoo-page .main-nav .nav-cta { color: var(--white); }
.tattoo-page .text-link { border-color: var(--white); transition: border-color .3s ease, color .3s ease; }
.tattoo-page .text-link:hover { border-color: var(--mint); color: var(--mint); }
.tattoo-page .button:hover { box-shadow: 0 18px 36px rgba(102,216,178,.16); }
.tattoo-hero {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 100px);
  grid-template-columns: 1.05fr .95fr;
  min-height: 100vh;
  overflow: hidden;
  padding: 150px clamp(24px, 7vw, 120px) 85px;
  position: relative;
}
.tattoo-hero::before {
  background: radial-gradient(circle, rgba(102,216,178,.34), transparent 62%);
  content: "";
  height: 620px;
  position: absolute;
  right: -180px;
  top: 80px;
  width: 620px;
}
.tattoo-hero-copy { max-width: 920px; position: relative; z-index: 2; }
.tattoo-hero h1 {
  font-family: var(--display);
  font-size: clamp(52px, 6.35vw, 106px);
  font-weight: 600;
  letter-spacing: -.065em;
  line-height: .92;
  margin: 0;
}
.tattoo-hero h1 span, .tattoo-offer h2 em, .tattoo-contact h2 em {
  color: var(--mint);
  font-style: normal;
}
.tattoo-hero p {
  color: rgba(255,255,255,.72);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.65;
  margin: 34px 0 0;
  max-width: 670px;
}
.tattoo-actions {
  align-items: center;
  display: flex;
  gap: 28px;
  margin-top: 38px;
}
.tattoo-card {
  background: var(--ink);
  border-radius: 36px;
  color: var(--ink);
  min-height: 620px;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition: box-shadow .45s ease, transform .45s cubic-bezier(.2,.7,.2,1);
  z-index: 2;
}
.tattoo-card:hover {
  box-shadow: 0 34px 90px rgba(102,216,178,.16);
  transform: translateY(-8px) rotate(.5deg);
}
.tattoo-card::before { display: none; }
.tattoo-card-top {
  display: flex;
  gap: 8px;
  left: 24px;
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 2;
}
.tattoo-card-top span {
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 10px 13px;
  text-transform: uppercase;
}
.tattoo-hero-image {
  border-radius: inherit;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  transition: filter .6s ease, transform .6s cubic-bezier(.2,.7,.2,1);
  width: 100%;
}
.tattoo-card:hover .tattoo-hero-image {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.025);
}
.tattoo-offer {
  background: var(--paper);
  color: var(--ink);
}
.tattoo-offer-grid {
  display: grid;
  gap: clamp(45px, 8vw, 120px);
  grid-template-columns: 1fr .9fr;
  margin-top: 74px;
}
.tattoo-offer h2, .tattoo-contact h2 {
  font-family: var(--display);
  font-size: clamp(52px, 6.5vw, 108px);
  font-weight: 600;
  letter-spacing: -.06em;
  line-height: .95;
  margin: 0;
}
.tattoo-contact h2 {
  font-size: clamp(42px, 5vw, 82px);
}
.tattoo-offer-list {
  border-top: 1px solid var(--line);
}
.tattoo-offer-list article {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  transition: padding-left .35s ease, transform .35s ease;
}
.tattoo-offer-list article:hover {
  padding-left: 18px;
  transform: translateX(4px);
}
.tattoo-offer-list span, .process-grid span {
  color: var(--mint);
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.tattoo-offer-list h3, .process-grid h3 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -.04em;
  line-height: 1;
  margin: 0 0 16px;
  transition: color .35s ease;
}
.tattoo-offer-list article:hover h3 { color: var(--mint); }
.tattoo-offer-list p, .process-grid p {
  color: rgba(23,24,23,.65);
  line-height: 1.7;
  margin: 0;
}
.tattoo-media {
  background: var(--white);
  color: var(--ink);
}
.tattoo-media-head {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-top: 72px;
}
.tattoo-media-head h2 {
  font-family: var(--display);
  font-size: clamp(52px, 6.5vw, 108px);
  font-weight: 600;
  letter-spacing: -.06em;
  line-height: .95;
  margin: 0;
}
.tattoo-media-head h2 em { color: var(--mint); font-style: normal; }
.tattoo-media-head p {
  color: rgba(23,24,23,.65);
  line-height: 1.7;
  margin: 0;
  max-width: 430px;
}
.tattoo-gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 74px;
}
.tattoo-media-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  padding: 16px;
  transition: box-shadow .4s ease, transform .4s cubic-bezier(.2,.7,.2,1);
}
.tattoo-media-card:hover {
  box-shadow: 0 26px 65px rgba(23,24,23,.12);
  transform: translateY(-7px);
}
.tattoo-media-placeholder {
  align-items: flex-start;
  background:
    radial-gradient(circle at 24% 24%, rgba(102,216,178,.38), transparent 28%),
    linear-gradient(135deg, rgba(23,24,23,.08), transparent 46%),
    var(--mint-soft);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 430px;
  overflow: hidden;
  padding: 24px;
  position: relative;
}
.tattoo-media-placeholder::after {
  border: 1px solid rgba(23,24,23,.16);
  border-radius: 50%;
  content: "";
  height: 300px;
  position: absolute;
  right: -100px;
  top: -90px;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
  width: 300px;
}
.tattoo-media-card:hover .tattoo-media-placeholder::after { transform: scale(1.08) translate(-8px, 8px); }
.tattoo-media-visual {
  background: #fff;
  justify-content: center;
  padding: 0;
}
.tattoo-media-visual::after { display: none; }
.tattoo-media-visual img {
  display: block;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  position: absolute;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
  width: 100%;
}
.tattoo-media-card:hover .tattoo-media-visual img { transform: scale(1.035); }
.tattoo-media-placeholder span {
  background: var(--white);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  padding: 10px 12px;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
}
.tattoo-media-visual span {
  left: 18px;
  position: absolute;
  top: 18px;
}
.tattoo-media-placeholder strong {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 66px);
  letter-spacing: -.055em;
  line-height: .95;
  max-width: 520px;
  position: relative;
  z-index: 2;
}
.tattoo-media-placeholder-line {
  background:
    linear-gradient(135deg, transparent 46%, rgba(102,216,178,.45) 46% 48%, transparent 48%),
    var(--paper);
  min-height: 320px;
}
.tattoo-media-placeholder-skin {
  background:
    radial-gradient(circle at 70% 25%, rgba(102,216,178,.32), transparent 28%),
    #eadfd4;
  min-height: 320px;
}
.tattoo-media-card p {
  color: rgba(23,24,23,.62);
  font-size: 13px;
  line-height: 1.7;
  margin: 16px 6px 2px;
}
.tattoo-process {
  background: var(--ink);
  color: var(--white);
}
.process-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 75px;
}
.process-grid article {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  min-height: 340px;
  padding: 28px;
  transition: background .35s ease, border-color .35s ease, transform .35s cubic-bezier(.2,.7,.2,1);
}
.process-grid article:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(102,216,178,.65);
  transform: translateY(-6px);
}
.process-grid p { color: rgba(255,255,255,.62); }
.tattoo-contact {
  background: var(--mint);
  color: var(--ink);
}
.tattoo-contact-box {
  align-items: flex-end;
  display: flex;
  gap: 45px;
  justify-content: space-between;
}
.tattoo-contact .section-kicker { margin-bottom: 58px; }

.web-page { background: var(--paper); color: var(--ink); }
.web-hero {
  align-items: center;
  display: grid;
  gap: clamp(36px, 7vw, 120px);
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  overflow: hidden;
  padding: 150px clamp(24px, 7vw, 120px) 85px;
  position: relative;
}
.web-hero::before {
  background: var(--mint-soft);
  border-radius: 50%;
  content: "";
  height: 560px;
  left: -240px;
  position: absolute;
  top: 130px;
  width: 560px;
}
.web-hero-copy { max-width: 930px; position: relative; z-index: 2; }
.web-hero h1 {
  font-family: var(--display);
  font-size: clamp(58px, 7.2vw, 122px);
  font-weight: 600;
  letter-spacing: -.065em;
  line-height: .92;
  margin: 0;
}
.web-hero h1 span, .web-offer h2 em, .web-method-head h2 em, .web-contact h2 em {
  color: var(--mint);
  font-style: normal;
}
.web-hero p {
  color: rgba(23,24,23,.68);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.65;
  margin: 34px 0 0;
  max-width: 640px;
}
.web-actions {
  align-items: center;
  display: flex;
  gap: 28px;
  margin-top: 38px;
}
.web-preview {
  background: transparent;
  border-radius: 34px;
  box-shadow: 0 36px 90px rgba(23,24,23,.16);
  min-height: 560px;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition: box-shadow .45s ease, transform .45s cubic-bezier(.2,.7,.2,1);
  z-index: 2;
}
.web-preview-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform .6s cubic-bezier(.2,.7,.2,1), filter .6s ease;
  width: 100%;
}
.web-preview:hover {
  box-shadow: 0 44px 110px rgba(23,24,23,.24);
  transform: translateY(-8px) rotate(-.6deg);
}
.web-preview:hover .web-preview-image {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.025);
}
.browser-bar {
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.56);
  display: flex;
  gap: 8px;
  padding: 5px 4px 17px;
}
.browser-bar span {
  background: rgba(255,255,255,.35);
  border-radius: 50%;
  height: 10px;
  width: 10px;
}
.browser-bar span:first-child { background: var(--mint); }
.browser-bar small {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  font-size: 10px;
  margin-left: auto;
  padding: 7px 12px;
}
.web-preview-screen {
  background:
    radial-gradient(circle at 78% 18%, rgba(102,216,178,.55), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,.08), transparent 44%);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 490px;
  margin-top: 18px;
  padding: 34px;
}
.preview-copy { color: var(--white); max-width: 390px; }
.preview-copy span {
  color: var(--mint);
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.preview-copy strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 64px);
  letter-spacing: -.055em;
  line-height: .95;
}
.preview-copy p {
  color: rgba(255,255,255,.62);
  font-size: 13px;
  margin: 18px 0 0;
}
.preview-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
}
.preview-grid i {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  min-height: 110px;
  transition: background .35s ease, transform .35s cubic-bezier(.2,.7,.2,1);
}
.preview-grid i:nth-child(2), .preview-grid i:nth-child(4) { background: var(--mint); }
.web-preview:hover .preview-grid i:nth-child(1) { transform: translateY(-8px); }
.web-preview:hover .preview-grid i:nth-child(2) { transform: translateY(8px); }
.web-preview:hover .preview-grid i:nth-child(3) { transform: translateY(-5px); }
.web-preview:hover .preview-grid i:nth-child(4) { transform: translateY(5px); }
.web-offer {
  background: var(--white);
  color: var(--ink);
}
.web-offer-grid {
  display: grid;
  gap: clamp(45px, 8vw, 120px);
  grid-template-columns: 1fr .9fr;
  margin-top: 74px;
}
.web-offer h2, .web-method-head h2, .web-contact h2 {
  font-family: var(--display);
  font-size: clamp(52px, 6.5vw, 108px);
  font-weight: 600;
  letter-spacing: -.06em;
  line-height: .95;
  margin: 0;
}
.web-offer-list {
  border-top: 1px solid var(--line);
}
.web-offer-list article {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  transition: padding-left .35s ease, transform .35s ease;
}
.web-offer-list article:hover {
  padding-left: 18px;
  transform: translateX(4px);
}
.web-offer-list span {
  color: var(--mint);
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.web-offer-list h3 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -.04em;
  line-height: 1;
  margin: 0 0 16px;
  transition: color .35s ease;
}
.web-offer-list article:hover h3 { color: var(--mint); }
.web-offer-list p {
  color: rgba(23,24,23,.65);
  line-height: 1.7;
  margin: 0;
}
.web-media {
  background: var(--paper);
  color: var(--ink);
}
.web-media-head {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-top: 72px;
}
.web-media-head h2 {
  font-family: var(--display);
  font-size: clamp(52px, 6.5vw, 108px);
  font-weight: 600;
  letter-spacing: -.06em;
  line-height: .95;
  margin: 0;
}
.web-media-head h2 em { color: var(--mint); font-style: normal; }
.web-media-head p {
  color: rgba(23,24,23,.65);
  line-height: 1.7;
  margin: 0;
  max-width: 390px;
}
.media-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.35fr .65fr;
  margin-top: 74px;
}
.media-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  padding: 16px;
  transition: box-shadow .4s ease, transform .4s cubic-bezier(.2,.7,.2,1);
}
.media-card:hover {
  box-shadow: 0 26px 65px rgba(23,24,23,.12);
  transform: translateY(-7px);
}
.media-card-large { grid-row: span 2; }
.media-placeholder {
  align-items: flex-start;
  background:
    linear-gradient(135deg, rgba(102,216,178,.22), transparent 44%),
    var(--mint-soft);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 490px;
  overflow: hidden;
  padding: 24px;
  position: relative;
}
.media-placeholder::after {
  border: 1px solid rgba(23,24,23,.12);
  border-radius: 50%;
  content: "";
  height: 320px;
  position: absolute;
  right: -110px;
  top: -95px;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
  width: 320px;
}
.media-card:hover .media-placeholder::after { transform: scale(1.08) translate(-8px, 8px); }
.media-visual {
  min-height: 490px;
  padding: 0;
}
.media-visual::after { display: none; }
.media-visual img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform .6s cubic-bezier(.2,.7,.2,1), filter .6s ease;
  width: 100%;
}
.media-card:hover .media-visual img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.035);
}
.media-placeholder span {
  background: var(--white);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  padding: 10px 12px;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
}
.media-visual span {
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(23,24,23,.12);
  left: 20px;
  position: absolute;
  top: 20px;
}
.media-placeholder strong {
  font-family: var(--display);
  font-size: clamp(26px, 2.7vw, 44px);
  letter-spacing: -.055em;
  line-height: .95;
  max-width: 470px;
  position: relative;
  z-index: 2;
}
.media-placeholder-phone {
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.42), transparent 24%),
    var(--mint);
  min-height: 250px;
}
.media-placeholder-dark {
  background:
    linear-gradient(135deg, rgba(102,216,178,.35), transparent 42%),
    var(--ink);
  color: var(--white);
  min-height: 250px;
}
.media-placeholder-dark span {
  background: rgba(255,255,255,.12);
  color: var(--white);
}
.media-visual.media-placeholder-dark span {
  background: rgba(23,24,23,.62);
  color: var(--white);
}
.media-card p {
  color: rgba(23,24,23,.62);
  font-size: 13px;
  line-height: 1.7;
  margin: 16px 6px 2px;
}
.web-process {
  background: var(--ink);
  color: var(--white);
}
.web-method-head {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-top: 72px;
}
.web-method-head p {
  color: rgba(255,255,255,.62);
  line-height: 1.7;
  margin: 0;
  max-width: 340px;
}
.web-process-grid { margin-top: 70px; }
.web-included {
  background: var(--paper);
  color: var(--ink);
}
.included-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 74px;
}
.included-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  min-height: 235px;
  padding: 25px;
  transition: background .35s ease, border-color .35s ease, color .35s ease, transform .35s cubic-bezier(.2,.7,.2,1);
}
.included-card:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  transform: translateY(-6px);
}
.included-card strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(24px, 2.5vw, 38px);
  letter-spacing: -.04em;
  line-height: 1;
}
.included-card p {
  color: rgba(23,24,23,.65);
  line-height: 1.7;
  margin: 62px 0 0;
  transition: color .35s ease;
}
.included-card:hover p { color: rgba(255,255,255,.65); }
.web-contact {
  background: var(--mint);
  color: var(--ink);
}
.web-contact-box {
  align-items: flex-end;
  display: flex;
  gap: 45px;
  justify-content: space-between;
}
.web-contact .section-kicker { margin-bottom: 58px; }

.formation-page { background: var(--paper); color: var(--ink); }
.formation-page .button:hover { box-shadow: 0 18px 36px rgba(23,24,23,.18); }
.formation-page .text-link { transition: border-color .3s ease, color .3s ease; }
.formation-page .text-link:hover { border-color: var(--mint); color: var(--mint); }
.formation-hero {
  align-items: center;
  display: grid;
  gap: clamp(36px, 7vw, 120px);
  grid-template-columns: 1.05fr .95fr;
  min-height: 100vh;
  overflow: hidden;
  padding: 150px clamp(24px, 7vw, 120px) 85px;
  position: relative;
}
.formation-hero::before {
  background: radial-gradient(circle, rgba(102,216,178,.32), transparent 62%);
  content: "";
  height: 640px;
  position: absolute;
  right: -190px;
  top: 70px;
  width: 640px;
}
.formation-hero-copy {
  max-width: 980px;
  position: relative;
  z-index: 2;
}
.formation-hero h1 {
  font-family: var(--display);
  font-size: clamp(54px, 6.65vw, 112px);
  font-weight: 600;
  letter-spacing: -.065em;
  line-height: .92;
  margin: 0;
}
.formation-hero h1 span,
.formation-programs h2 em,
.discord-pro h2 em,
.formation-review h2 em,
.formation-contact h2 em {
  color: var(--mint);
  font-style: normal;
}
.formation-hero p {
  color: rgba(23,24,23,.68);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.65;
  margin: 34px 0 0;
  max-width: 690px;
}
.formation-actions {
  align-items: center;
  display: flex;
  gap: 28px;
  margin-top: 38px;
}
.formation-board {
  background: var(--ink);
  border-radius: 34px;
  box-shadow: 0 36px 90px rgba(23,24,23,.16);
  color: var(--white);
  display: grid;
  gap: 14px;
  padding: 18px;
  position: relative;
  transition: box-shadow .45s ease, transform .45s cubic-bezier(.2,.7,.2,1);
  z-index: 2;
}
.formation-board:hover {
  box-shadow: 0 44px 110px rgba(23,24,23,.24);
  transform: translateY(-8px) rotate(.5deg);
}
.formation-board-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  min-height: 150px;
  padding: 24px;
  transition: background .35s ease, border-color .35s ease, transform .35s cubic-bezier(.2,.7,.2,1);
}
.formation-board-card:hover,
.formation-board-card.is-active {
  background: var(--mint);
  border-color: var(--mint);
  color: var(--ink);
  transform: translateX(-6px);
}
.formation-board-card span {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.formation-board-card strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(32px, 3.2vw, 54px);
  letter-spacing: -.055em;
  line-height: .95;
}
.formation-board-card p {
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.6;
  margin: 16px 0 0;
}
.formation-board-card:hover p,
.formation-board-card.is-active p { color: rgba(23,24,23,.68); }
.formation-programs {
  background: var(--white);
  color: var(--ink);
}
.formation-programs-head {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-top: 72px;
}
.formation-programs h2,
.formation-review h2,
.formation-contact h2 {
  font-family: var(--display);
  font-size: clamp(52px, 6.5vw, 108px);
  font-weight: 600;
  letter-spacing: -.06em;
  line-height: .95;
  margin: 0;
}
.formation-programs-head p {
  color: rgba(23,24,23,.65);
  line-height: 1.7;
  margin: 0;
  max-width: 410px;
}
.program-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 74px;
}
.program-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 26px;
  min-height: 520px;
  padding: 28px;
  transition: background .35s ease, border-color .35s ease, color .35s ease, transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.program-card:hover {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 26px 65px rgba(23,24,23,.12);
  color: var(--white);
  transform: translateY(-7px);
}
.program-card > span {
  background: var(--white);
  border-radius: 999px;
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  padding: 10px 12px;
  text-transform: uppercase;
  transition: background .35s ease, color .35s ease;
}
.program-card:hover > span {
  background: var(--mint);
  color: var(--ink);
}
.program-card h3 {
  font-family: var(--display);
  font-size: clamp(32px, 3.5vw, 58px);
  letter-spacing: -.055em;
  line-height: .95;
  margin: 78px 0 22px;
}
.program-card p {
  color: rgba(23,24,23,.65);
  line-height: 1.7;
  margin: 0;
  transition: color .35s ease;
}
.program-card:hover p { color: rgba(255,255,255,.66); }
.program-card ul {
  list-style: none;
  margin: 38px 0 0;
  padding: 0;
}
.program-card li {
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  padding: 13px 0;
  transition: border-color .35s ease;
}
.program-card:hover li { border-color: rgba(255,255,255,.18); }
.discord-pro {
  background: var(--paper);
  color: var(--ink);
}
.discord-pro-card {
  background: var(--ink);
  border-radius: 34px;
  color: var(--white);
  display: grid;
  gap: 18px;
  grid-template-columns: 1.15fr .45fr;
  overflow: hidden;
  padding: clamp(24px, 4vw, 54px);
  position: relative;
}
.discord-pro-card::before {
  background: radial-gradient(circle, rgba(102,216,178,.42), transparent 62%);
  content: "";
  height: 520px;
  position: absolute;
  right: -170px;
  top: -210px;
  width: 520px;
}
.discord-pro-main,
.discord-price,
.discord-features {
  position: relative;
  z-index: 2;
}
.discord-pro h2 {
  font-family: var(--display);
  font-size: clamp(48px, 5.85vw, 96px);
  font-weight: 600;
  letter-spacing: -.06em;
  line-height: .95;
  margin: 58px 0 28px;
}
.discord-pro-main > p {
  color: rgba(255,255,255,.68);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.7;
  margin: 0 0 34px;
  max-width: 720px;
}
.discord-price {
  align-self: start;
  background: var(--mint);
  border-radius: 28px;
  color: var(--ink);
  min-height: 250px;
  padding: 28px;
  transition: box-shadow .4s ease, transform .4s cubic-bezier(.2,.7,.2,1);
}
.discord-pro-card:hover .discord-price {
  box-shadow: 0 28px 70px rgba(102,216,178,.2);
  transform: translateY(-8px) rotate(1deg);
}
.discord-price span {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  margin-bottom: 42px;
  text-transform: uppercase;
}
.discord-price strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(78px, 8vw, 132px);
  font-weight: 600;
  letter-spacing: -.08em;
  line-height: .82;
}
.discord-price small {
  display: block;
  font-size: 16px;
  font-weight: 800;
  margin-top: 14px;
}
.discord-features {
  display: grid;
  gap: 14px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 24px;
}
.discord-features article {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  min-height: 260px;
  padding: 24px;
  transition: background .35s ease, border-color .35s ease, color .35s ease, transform .35s cubic-bezier(.2,.7,.2,1);
}
.discord-features article:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
  transform: translateY(-6px);
}
.discord-features span {
  color: var(--mint);
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  margin-bottom: 58px;
  text-transform: uppercase;
  transition: color .35s ease;
}
.discord-features article:hover span { color: var(--ink); }
.discord-features h3 {
  font-family: var(--display);
  font-size: clamp(25px, 2.6vw, 38px);
  letter-spacing: -.04em;
  line-height: 1;
  margin: 0 0 16px;
}
.discord-features p {
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
  transition: color .35s ease;
}
.discord-features article:hover p { color: rgba(23,24,23,.68); }
.formation-review {
  background: var(--ink);
  color: var(--white);
}
.formation-review-grid {
  display: grid;
  gap: clamp(45px, 8vw, 120px);
  grid-template-columns: 1fr .9fr;
  margin-top: 74px;
}
.review-points {
  border-top: 1px solid rgba(255,255,255,.16);
}
.review-points article {
  border-bottom: 1px solid rgba(255,255,255,.16);
  padding: 28px 0;
  transition: padding-left .35s ease, transform .35s ease;
}
.review-points article:hover {
  padding-left: 18px;
  transform: translateX(4px);
}
.review-points span {
  color: var(--mint);
  display: block;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 16px;
}
.review-points p {
  color: rgba(255,255,255,.62);
  line-height: 1.7;
  margin: 0;
}
.formation-method {
  background: var(--paper);
  color: var(--ink);
}
.method-timeline {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 74px;
}
.method-timeline article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  min-height: 310px;
  padding: 28px;
  transition: background .35s ease, border-color .35s ease, color .35s ease, transform .35s cubic-bezier(.2,.7,.2,1);
}
.method-timeline article:hover {
  background: var(--mint);
  border-color: var(--mint);
  transform: translateY(-6px);
}
.method-timeline span {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  margin-bottom: 72px;
  text-transform: uppercase;
}
.method-timeline h3 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -.04em;
  line-height: 1;
  margin: 0 0 16px;
}
.method-timeline p {
  color: rgba(23,24,23,.65);
  line-height: 1.7;
  margin: 0;
}
.formation-contact {
  background: var(--mint);
  color: var(--ink);
}
.formation-contact-box {
  align-items: flex-end;
  display: flex;
  gap: 45px;
  justify-content: space-between;
}
.formation-contact .section-kicker { margin-bottom: 58px; }

footer { align-items: center; background: var(--paper); color: var(--ink); display: flex; flex-wrap: wrap; font-size: 10px; gap: 22px; justify-content: space-between; line-height: 1.4; padding: 32px clamp(24px, 7vw, 120px); text-transform: uppercase; }
footer img { flex: 0 0 auto; height: 25px; width: auto; }
footer a { color: inherit; text-decoration: none; transition: color .25s ease; }
footer a:hover { color: var(--mint); }
.footer-meta { align-items: center; display: flex; flex-wrap: wrap; gap: 10px clamp(18px, 3vw, 42px); justify-content: flex-end; }
.footer-meta > * { white-space: nowrap; }
footer .footer-legal { text-transform: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(102,216,178,.15); } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 980px) {
  .main-nav {
    align-items: stretch; background: var(--paper); flex-direction: column; gap: 0; left: 0; padding: 110px 24px 30px;
    position: fixed; right: 0; top: 0; transform: translateY(-110%); transition: transform .4s ease; z-index: -1;
  }
  .main-nav.open { box-shadow: 0 20px 40px rgba(0,0,0,.08); transform: none; }
  .main-nav > a { border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 28px; padding: 18px 0; }
  .main-nav .theme-toggle {
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-family: var(--display);
    font-size: 28px;
    justify-content: space-between;
    padding: 18px 0;
  }
  .main-nav .nav-cta { border: 0; border-radius: 0; color: var(--white); margin-top: 14px; padding: 18px; }
  .menu-toggle { background: none; border: 0; cursor: pointer; display: block; height: 28px; padding: 4px; width: 34px; }
  .menu-toggle span:not(.sr-only) { background: var(--ink); display: block; height: 1px; margin: 6px 0; transition: .3s; width: 100%; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .hero { grid-template-columns: 1fr; padding-top: 135px; }
  .hero-copy { max-width: 780px; }
  .hero-note { display: none; }
  .studio-grid, .youtube { grid-template-columns: 1fr; }
  .studio-copy { max-width: 650px; }
  .social-join { align-items: flex-start; flex-direction: column; gap: 30px; }
  .tattoo-hero, .tattoo-offer-grid, .tattoo-gallery, .process-grid, .web-hero, .web-offer-grid, .media-grid, .included-grid, .formation-hero, .program-grid, .discord-pro-card, .discord-features, .formation-review-grid, .method-timeline { grid-template-columns: 1fr; }
  .tattoo-card { min-height: 560px; }
  .tattoo-contact-box, .tattoo-media-head, .web-contact-box, .web-media-head, .web-method-head, .formation-programs-head, .formation-contact-box { align-items: flex-start; flex-direction: column; }
  .tattoo-media-card-large { grid-column: auto; }
  .web-preview { aspect-ratio: 1448 / 1086; min-height: 0; }
  .web-preview-image { object-fit: contain; }
  .formation-board-card:hover,
  .formation-board-card.is-active { transform: translateY(-4px); }
  .discord-price { max-width: 360px; width: 100%; }
  .media-card-large { grid-row: auto; }
  .expertise-head { display: block; }
  .expertise-head > p { margin-top: 40px; }
  .services { grid-template-columns: 1fr; }
  .service { border-bottom: 1px solid rgba(255,255,255,.2); border-right: 0; min-height: 310px; }
  .youtube-visual { min-height: 650px; }
}

@media (max-width: 680px) {
  .site-header { height: 72px; padding: 0 20px; }
  .brand img { height: 28px; }
  .hero { min-height: auto; padding: 120px 20px 70px; }
  .hero h1 { font-size: clamp(48px, 14vw, 72px); }
  .hero-intro { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-frame { border-radius: 44% 44% 10px 10px; }
  .availability { font-size: 9px; }
  .section { padding: 82px 20px; }
  .studio-grid { gap: 40px; margin-top: 50px; }
  .numbers { gap: 26px; grid-template-columns: 1fr; margin-top: 70px; }
  .numbers > div { border-bottom: 1px solid var(--line); padding-bottom: 22px; }
  .social-proof-head { gap: 24px; grid-template-columns: 1fr; }
  .social-proof h2 { margin: 58px 0 68px; }
  .social-stats { grid-template-columns: 1fr; }
  .social-stat { min-height: 245px; }
  .social-stat + .social-stat {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }
  .social-stat + .social-stat .stat-index { left: 0; }
  .social-stat strong { font-size: clamp(64px, 20vw, 88px); margin-top: 68px; }
  .social-links { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; }
  .social-links a { justify-content: center; padding: 13px; }
  .social-links a span { display: none; }
  .expertise-head { margin: 54px 0; }
  .expertise h2 { font-size: 52px; }
  .service { padding-left: 20px; padding-right: 20px; }
  .youtube-visual { min-height: 450px; }
  .youtube-visual img { padding: 70px 30px; }
  .youtube-visual::before { height: 300px; width: 300px; }
  .portfolio-head { align-items: flex-start; flex-direction: column; gap: 35px; }
  .portfolio h2 { margin-top: 45px; }
  .project-grid { grid-template-columns: 1fr; margin-top: 55px; }
  .project-meta { align-items: flex-start; flex-direction: column; gap: 5px; }
  .reviews-head { align-items: flex-start; flex-direction: column; gap: 35px; }
  .contact-top .section-kicker { width: 55%; }
  .contact-main { margin: 80px 0 100px; }
  .contact-main > a { border-bottom-width: 3px; font-size: 20vw; }
  .contact-footer { align-items: flex-start; gap: 30px; grid-template-columns: 1fr; }
  .contact-footer > a { text-align: left; }
  .contact-footer > div { justify-content: flex-start; }
  .tattoo-hero { min-height: auto; padding: 120px 20px 76px; }
  .tattoo-hero h1 { font-size: clamp(42px, 12.4vw, 64px); }
  .tattoo-actions { align-items: flex-start; flex-direction: column; }
  .tattoo-card { border-radius: 24px; min-height: 520px; }
  .tattoo-card::before { height: 340px; width: 340px; }
  .tattoo-card-top { flex-wrap: wrap; }
  .tattoo-offer-grid { gap: 42px; margin-top: 52px; }
  .tattoo-media-head { gap: 28px; margin-top: 52px; }
  .tattoo-gallery { margin-top: 52px; }
  .tattoo-media-placeholder { min-height: 300px; }
  .tattoo-media-placeholder-line, .tattoo-media-placeholder-skin { min-height: 220px; }
  .process-grid { margin-top: 52px; }
  .process-grid article { min-height: auto; }
  .web-hero { min-height: auto; padding: 120px 20px 76px; }
  .web-hero h1 { font-size: clamp(48px, 14vw, 74px); }
  .web-actions { align-items: flex-start; flex-direction: column; }
  .web-preview { border-radius: 24px; min-height: 0; padding: 0; }
  .web-preview-screen { min-height: 400px; padding: 24px; }
  .preview-grid { grid-template-columns: repeat(2, 1fr); }
  .preview-grid i { min-height: 72px; }
  .web-offer-grid { gap: 42px; margin-top: 52px; }
  .web-media-head { gap: 28px; margin-top: 52px; }
  .media-grid { margin-top: 52px; }
  .media-placeholder { min-height: 310px; }
  .media-placeholder-phone, .media-placeholder-dark { min-height: 220px; }
  .web-method-head { gap: 28px; margin-top: 52px; }
  .included-grid { margin-top: 52px; }
  .included-card { min-height: auto; }
  .included-card p { margin-top: 32px; }
  .formation-hero { min-height: auto; padding: 120px 20px 76px; }
  .formation-hero h1 { font-size: clamp(44px, 12.5vw, 66px); }
  .formation-actions { align-items: flex-start; flex-direction: column; }
  .formation-board { border-radius: 24px; }
  .formation-board-card { min-height: auto; }
  .formation-programs-head { gap: 28px; margin-top: 52px; }
  .program-grid { margin-top: 52px; }
  .program-card { min-height: auto; }
  .program-card h3 { margin-top: 56px; }
  .discord-pro-card { border-radius: 24px; padding: 22px; }
  .discord-pro h2 { margin-top: 52px; }
  .discord-price { min-height: auto; }
  .discord-price span { margin-bottom: 34px; }
  .discord-features { margin-top: 8px; }
  .discord-features article { min-height: auto; }
  .discord-features span { margin-bottom: 42px; }
  .formation-review-grid { gap: 42px; margin-top: 52px; }
  .method-timeline { margin-top: 52px; }
  .method-timeline article { min-height: auto; }
  .method-timeline span { margin-bottom: 46px; }
  footer { align-items: flex-start; flex-direction: column; gap: 20px; }
  .footer-meta { align-items: flex-start; flex-direction: column; gap: 10px; justify-content: flex-start; }
}

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