/* ============================================
   ANCHOR hair works - Industrial Chic
   Masculine, Grid-based, Copper & Concrete
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #3D3D3D;
  --accent: #B87333;
  --accent-light: rgba(184, 115, 51, .15);
  --bg: #F0EDED;
  --surface: #fff;
  --surface2: #E8E5E3;
  --text: #2A2A2A;
  --muted: #7A7A7A;
  --border: rgba(61, 61, 61, .12);
  --font-en: 'Barlow Condensed', sans-serif;
  --font-jp: 'Noto Sans JP', sans-serif;
  --radius: 4px;
  --grid-color: rgba(184, 115, 51, .08);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-jp);
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
}

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

/* ── Exposed Grid Background ── */
.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .4;
}

.grid-bg svg {
  width: 100%;
  height: 100%;
}

/* ── Sample Banner ── */
.sample-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: #fff;
  text-align: center;
  font-size: 12px;
  padding: 7px 16px;
  z-index: 99999;
  letter-spacing: 1px;
  font-family: var(--font-en);
  font-weight: 600;
  text-transform: uppercase;
}

/* ── Header ── */
.header {
  position: fixed;
  top: 30px;
  left: 0;
  right: 0;
  z-index: 9998;
  padding: 12px 0;
  transition: all .3s;
}

.header.scrolled {
  background: rgba(240, 237, 237, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: -1px;
}

.logo-text {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo-text small {
  display: block;
  font-size: .55rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 3px;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-family: var(--font-en);
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color .3s;
  text-decoration: none;
}

.nav a:hover {
  color: var(--accent);
}

.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 10px 24px;
  border: none;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  transition: all .3s !important;
}

.nav-cta:hover {
  background: var(--accent) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--primary);
  transition: .3s;
  display: block;
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav {
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    z-index: 9999;
  }
  .nav.open { opacity: 1; visibility: visible; }
  .nav a { font-size: 1rem; }
  .header-inner { padding: 0 20px; }
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 40%, #3D3D3D 100%);
}

.hero-grid-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-grid-svg line {
  stroke: var(--accent);
  stroke-width: 0.5;
  opacity: 0;
}

.hero-grid-svg line.animate {
  animation: gridDraw 1.5s ease forwards;
}

@keyframes gridDraw {
  0% { stroke-dashoffset: 2000; opacity: 0; }
  10% { opacity: .25; }
  100% { stroke-dashoffset: 0; opacity: .25; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left {}

.hero-label {
  font-family: var(--font-en);
  font-size: .7rem;
  color: var(--accent);
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
  opacity: 0;
  transform: translateX(-40px);
}

.hero-label.animate {
  animation: slideInLeft .8s ease forwards;
}

.hero h1 {
  font-family: var(--font-en);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateX(-60px);
}

.hero h1.animate {
  animation: slideInLeft 1s .2s ease forwards;
}

.hero-tagline {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: 4px;
  opacity: 0;
  transform: translateX(-40px);
}

.hero-tagline.animate {
  animation: slideInLeft .8s .5s ease forwards;
}

@keyframes slideInLeft {
  to { opacity: 1; transform: translateX(0); }
}

.hero-desc {
  font-size: .88rem;
  color: rgba(255, 255, 255, .6);
  line-height: 2;
  margin-bottom: 36px;
  max-width: 440px;
  opacity: 0;
}

.hero-desc.animate {
  animation: fadeIn .8s .7s ease forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
}

.hero-actions.animate {
  animation: fadeIn .8s .9s ease forwards;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-stat-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(184, 115, 51, .2);
  padding: 24px 28px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.hero-stat-num {
  font-family: var(--font-en);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-unit {
  font-family: var(--font-en);
  font-size: .9rem;
  font-weight: 600;
  color: var(--accent);
}

.hero-stat-label {
  font-size: .75rem;
  color: rgba(255, 255, 255, .5);
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding: 120px 20px 60px;
    gap: 40px;
  }
  .hero-right {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero-stat-card {
    flex: 1;
    min-width: 140px;
  }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: .82rem;
  font-weight: 700;
  padding: 14px 36px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all .3s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: #a06228;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 115, 51, .3);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-dark {
  background: var(--primary);
  color: #fff;
}

.btn-dark:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── Section System ── */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-alt {
  background: var(--surface);
}

.section-dark {
  background: var(--primary);
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
}

.section-header {
  margin-bottom: 56px;
}

.section-label {
  font-family: var(--font-en);
  font-size: .7rem;
  color: var(--accent);
  letter-spacing: 6px;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 1s ease;
}

.section-title.in-view::after {
  width: 100%;
}

.section-dark .section-title {
  color: #fff;
}

.section-dark .section-label {
  color: var(--accent);
}

.section-sub {
  font-size: .88rem;
  color: var(--muted);
  margin-top: 20px;
  line-height: 2;
  max-width: 560px;
}

.section-dark .section-sub {
  color: rgba(255, 255, 255, .5);
}

/* ── Trust Strip ── */
.trust-strip {
  background: var(--surface);
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.trust-items {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 0 20px;
}

.trust-item {
  text-align: center;
  flex: 1;
  min-width: 140px;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}

.trust-item:last-child {
  border-right: none;
}

.trust-num {
  font-family: var(--font-en);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.trust-unit {
  font-family: var(--font-en);
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent);
}

.trust-label {
  display: block;
  font-size: .7rem;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 1px;
}

@media (max-width: 600px) {
  .trust-items { gap: 24px; }
  .trust-item { border-right: none; flex: none; width: 45%; }
}

/* ── Industrial Counter Animation ── */
.counter-value {
  display: inline-flex;
  overflow: hidden;
}

.counter-digit {
  display: inline-block;
  position: relative;
}

.counter-digit .digit-inner {
  transition: transform .6s cubic-bezier(.2, .8, .2, 1);
}

.counter-digit.flip .digit-inner {
  animation: mechanicalFlip .6s cubic-bezier(.2, .8, .2, 1) forwards;
}

@keyframes mechanicalFlip {
  0% { transform: translateY(-100%); opacity: 0; }
  30% { opacity: 1; }
  60% { transform: translateY(4%); }
  80% { transform: translateY(-2%); }
  100% { transform: translateY(0); }
}

/* ── Service List (left-border copper) ── */
.service-list {
  display: grid;
  gap: 0;
}

.service-item {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: all .3s;
  cursor: default;
}

.service-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform .4s ease;
  transform-origin: bottom;
}

.service-item:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.service-item:hover {
  padding-left: 20px;
  background: var(--accent-light);
}

.service-name {
  font-family: var(--font-en);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-desc {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.7;
}

.service-price {
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .service-item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 20px 0;
  }
  .service-price { justify-self: start; }
}

/* ── 3D Tilt Cards ── */
.tilt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tilt-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 28px;
  transition: transform .4s ease, box-shadow .4s ease;
  transform-style: preserve-3d;
  perspective: 800px;
  will-change: transform;
}

.tilt-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.tilt-card-num {
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  opacity: .08;
  line-height: 1;
  margin-bottom: 12px;
}

.tilt-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.tilt-card p {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.9;
}

@media (max-width: 900px) {
  .tilt-grid { grid-template-columns: 1fr; }
}

/* ── Owner Section ── */
.owner-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.owner-visual {
  position: relative;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #2a2a2a, #3d3d3d);
  border: 1px solid rgba(184, 115, 51, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.owner-visual-inner {
  text-align: center;
  color: rgba(255, 255, 255, .15);
  font-family: var(--font-en);
}

.owner-visual-inner .big-letter {
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -4px;
}

.owner-visual-inner .sub-text {
  font-size: .7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 8px;
}

.owner-visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}

.owner-content {}

.owner-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.owner-title {
  font-family: var(--font-en);
  font-size: .75rem;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}

.owner-msg {
  font-size: .92rem;
  line-height: 2.2;
  margin-bottom: 24px;
  color: var(--muted);
}

.owner-msg strong {
  color: var(--text);
}

@media (max-width: 768px) {
  .owner-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .owner-visual { aspect-ratio: 4/3; }
}

/* ── Testimonials ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  position: relative;
  transition: all .3s;
}

.testimonial-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
  opacity: 0;
  transition: opacity .3s;
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-quote {
  font-family: var(--font-en);
  font-size: 2rem;
  color: var(--accent);
  opacity: .3;
  line-height: 1;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: .88rem;
  line-height: 2;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: .85rem;
  color: var(--accent);
}

.testimonial-author strong {
  display: block;
  font-size: .88rem;
}

.testimonial-author span {
  font-size: .75rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ── Photo Break (no photo, CSS only) ── */
.break-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  overflow: hidden;
  z-index: 1;
}

.break-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 115, 51, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 115, 51, .1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.break-text {
  position: relative;
  text-align: center;
  color: #fff;
}

.break-text h3 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 4px;
  margin-bottom: 8px;
}

.break-text p {
  font-family: var(--font-en);
  font-size: .8rem;
  color: rgba(255, 255, 255, .4);
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* ── Company Table ── */
.company-table {}

.company-row {
  display: flex;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.company-label {
  min-width: 160px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 1px;
}

.company-value {
  font-size: .85rem;
  color: var(--muted);
}

@media (max-width: 600px) {
  .company-row { flex-direction: column; gap: 4px; }
  .company-label { min-width: auto; }
}

/* ── FAQ ── */
.faq-list {}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  transition: color .3s;
}

.faq-q:hover {
  color: var(--accent);
}

.faq-q-mark {
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--accent);
  font-size: .9rem;
  min-width: 28px;
}

.faq-q h3 {
  flex: 1;
  font-size: .92rem;
  font-weight: 600;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform .3s;
  font-family: var(--font-en);
  font-weight: 300;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  display: flex;
  gap: 16px;
  padding: 0;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 0 20px 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a-mark {
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--muted);
  font-size: .9rem;
  min-width: 28px;
}

.faq-a p {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.9;
}

/* ── Contact ── */
.contact-box {
  max-width: 800px;
  margin: 0 auto;
}

.contact-info {
  text-align: center;
  margin-bottom: 40px;
}

.contact-tel {
  margin-bottom: 8px;
}

.contact-tel span {
  font-family: var(--font-en);
  font-size: .7rem;
  color: var(--muted);
  letter-spacing: 3px;
  margin-right: 12px;
}

.contact-tel a {
  font-family: var(--font-en);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 2px;
}

.contact-hours {
  font-size: .8rem;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: .88rem;
  font-family: var(--font-jp);
  color: var(--text);
  transition: border-color .3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
}

/* ── Footer ── */
.footer {
  background: #1a1a1a;
  color: #888;
  padding: 60px 0 30px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: .78rem;
  line-height: 1.9;
}

.footer h4 {
  font-family: var(--font-en);
  font-size: .75rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 8px;
}

.footer li a {
  font-size: .8rem;
  transition: color .3s;
}

.footer li a:hover {
  color: var(--accent);
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 20px 40px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .72rem;
}

.footer-bottom-right {
  font-family: var(--font-en);
  font-size: .65rem;
  letter-spacing: 2px;
  color: #555;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    padding: 20px 20px 0;
    text-align: center;
  }
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* ── Stagger children ── */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

.stagger.in-view > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger.in-view > *:nth-child(2) { transition-delay: .1s; opacity: 1; transform: translateY(0); }
.stagger.in-view > *:nth-child(3) { transition-delay: .2s; opacity: 1; transform: translateY(0); }
.stagger.in-view > *:nth-child(4) { transition-delay: .3s; opacity: 1; transform: translateY(0); }
.stagger.in-view > *:nth-child(5) { transition-delay: .4s; opacity: 1; transform: translateY(0); }
.stagger.in-view > *:nth-child(6) { transition-delay: .5s; opacity: 1; transform: translateY(0); }

/* ── Process Timeline ── */
.process-timeline {
  position: relative;
  max-width: 700px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.process-step {
  display: flex;
  gap: 28px;
  padding: 24px 0;
  position: relative;
}

.process-dot {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: .75rem;
  color: var(--accent);
  position: relative;
  z-index: 2;
}

.process-step h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.process-step p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.8;
}
