/* ============================================================
   HERO
   ============================================================ */
.hero {
  height: 100svh;
  max-height: 100svh;
  display: grid; grid-template-columns: 1fr;
  position: relative; overflow: hidden;
}
.hero__left {
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + var(--sp-8)) var(--sp-4) var(--sp-8);
  position: relative; z-index: 2;
  background: linear-gradient(90deg, var(--bg) 0%, var(--bg) 0%, transparent 100%);
}
.hero__eyebrow {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: 0.6875rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: var(--sp-3);
}
.hero__eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px;
  background: var(--accent); opacity: 0.7;
}
.hero__title { margin-bottom: var(--sp-3); }
.hero__title em { font-style: italic; color: var(--accent); }
.hero__subtitle {
  color: var(--text-muted); font-size: 1.05rem; line-height: 1.72;
  margin-bottom: var(--sp-6); max-width: 42ch;
}
.hero__actions { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.hero__right {
  position: absolute; inset: 0; z-index: 1; overflow: hidden;
}
.hero__right::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, var(--bg) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.15) 100%);
}
.hero__img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.hero__float {
  display: none;
}
.hero__float-label {
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 4px;
}
.hero__float-time {
  font-family: var(--f-head); font-size: 1.3rem; color: var(--text); line-height: 1;
}
.hero__float-meta { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }

@media (min-width: 1024px) {
  .hero { grid-template-columns: 56fr 44fr; }
  .hero__left {
    background: none;
    padding: calc(var(--nav-h) + var(--sp-12)) var(--sp-12) var(--sp-12);
  }
  .hero__right {
    position: relative; inset: auto;
    height: 100%;
    min-height: 0;
  }
  .hero__right::after {
    background: linear-gradient(180deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.35) 100%);
  }
}

/* ============================================================
   SVC / PRICE SQUARES — blur-reveal
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}
@media (min-width: 768px) { .svc-grid { grid-template-columns: repeat(4, 1fr); } }

.svc-square {
  position: relative; aspect-ratio: 1;
  overflow: hidden; cursor: pointer;
  background: var(--surface-2); display: block;
}
.svc-square img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: blur(7px) brightness(0.3) saturate(0.45);
  transform: scale(1.1);
  transition: filter 600ms cubic-bezier(0.4,0,0.2,1), transform 600ms cubic-bezier(0.4,0,0.2,1);
}
.svc-square:hover img {
  filter: blur(0px) brightness(0.72) saturate(1);
  transform: scale(1.0);
}
.svc-square__hint {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 0.5625rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(240,237,232,0.75); pointer-events: none;
  transition: opacity 350ms ease; white-space: nowrap;
  border: 1px solid rgba(240,237,232,0.25); padding: 7px 14px; border-radius: 2px;
}
.svc-square:hover .svc-square__hint { opacity: 0; }
.svc-square__overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(12px,3vw,24px);
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.82) 100%);
  pointer-events: none;
}
.svc-square__caption {
  font-size: clamp(0.625rem,1.1vw,0.8125rem); color: rgba(240,237,232,0.72);
  line-height: 1.55; margin-bottom: 8px; max-width: 20ch;
}
.svc-square__meta {
  display: flex; justify-content: space-between; align-items: center;
}
.svc-square__dur   { font-size: 0.75rem; color: rgba(240,237,232,0.5); }
.svc-square__price { font-family: var(--f-head); font-size: 1.05rem; color: var(--accent); }

/* ============================================================
   PROCESS SCROLL
   ============================================================ */
.proc-scroll-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: var(--sp-2);
}
.proc-editorial {
  display: flex; gap: 0; min-width: 560px;
}
@media (min-width: 768px) {
  .proc-scroll-wrap { overflow-x: visible; padding-bottom: 0; }
  .proc-editorial { display: grid; grid-template-columns: repeat(4,1fr); min-width: 0; }
}
.proc-ed-item {
  flex: 0 0 210px;
  padding: var(--sp-4) var(--sp-4) var(--sp-4) var(--sp-4);
  border-right: 1px solid var(--border);
}
.proc-ed-item:first-child { padding-left: 0; }
.proc-ed-item:last-child { border-right: none; padding-right: 0; }
@media (min-width: 768px) {
  .proc-ed-item {
    flex: none;
    padding: var(--sp-4) var(--sp-6) var(--sp-4) var(--sp-6);
  }
  .proc-ed-item:first-child { padding-left: 0; }
  .proc-ed-item:last-child { padding-right: 0; }
}
.proc-ed-num {
  font-family: var(--f-head); font-size: 0.75rem; color: var(--accent);
  letter-spacing: 0.16em; display: block; margin-bottom: var(--sp-3);
}
.proc-ed-title {
  font-family: var(--f-head); font-size: clamp(1.25rem,2.2vw,1.65rem);
  font-weight: 400; font-style: italic; color: var(--text);
  line-height: 1.15; margin-bottom: var(--sp-2); margin-top: 0;
}
.proc-ed-text {
  font-size: 0.875rem; color: var(--text-muted); line-height: 1.78; max-width: 22ch;
}

/* ============================================================
   HOME FAQ
   ============================================================ */
.home-faq__body {
  max-width: 720px;
  width: 100%;
  margin-inline: auto;
  padding-inline: max(0px, env(safe-area-inset-left)) max(0px, env(safe-area-inset-right));
}

.home-faq__body .s-title {
  text-align: center;
  margin-bottom: var(--sp-6);
}

@media (max-width: 767px) {
  .home-faq__body .s-title {
    margin-bottom: var(--sp-5);
  }
}

.home-faq__body .faq-list-wrap {
  max-width: none;
  margin-inline: 0;
}
