/* ============================================================
   FINERO — Editorial Professional CSS
   ============================================================ */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:    #8B3A2C;
  --primary-dk: #6B2B1E;
  --ink:        #111111;
  --ink-60:     #555555;
  --ink-30:     #AAAAAA;
  --rule:       #E0DEDA;
  --paper:      #F5F2EC;
  --gold:       #C8A870;
  --white:      #FFFFFF;
  --accent:     #3B5E26;
  --shadow-sm:  0 1px 6px rgba(0,0,0,0.07);
  --shadow:     0 4px 24px rgba(0,0,0,0.09);
  --t:          0.2s ease;
  --container:  1200px;
  --header-h:   64px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 56px; /* sticky-bar offset */
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

/* ============================================================
   SKIP / UTILITY
   ============================================================ */
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--primary); color: var(--white);
  padding: 8px 16px; z-index: 9999;
}
.skip-link:focus { top: 0; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ============================================================
   HEADER — editorial flat
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  height: var(--header-h);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon { flex-shrink: 0; }
.logo-stack { display: flex; flex-direction: column; gap: 1px; }
.logo-text {
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem; font-weight: 800;
  color: var(--ink); letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}
.logo-sub {
  font-size: 0.65rem; font-weight: 500;
  color: var(--primary); letter-spacing: 0.08em;
}

/* Nav */
.site-nav { flex: 1; display: flex; justify-content: flex-end; }
.nav-list { display: flex; align-items: stretch; }
.nav-link {
  display: flex; align-items: center;
  padding: 0 20px; height: var(--header-h);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-60);
  border-bottom: 2px solid transparent;
  transition: color var(--t), border-color var(--t);
}
.nav-link:hover { color: var(--ink); border-bottom-color: var(--primary); }
.nav-link--cta {
  background: var(--ink); color: var(--white) !important;
  margin-left: 20px; padding: 0 24px;
  border: none; border-bottom: none;
  font-size: 0.75rem; letter-spacing: 0.14em;
}
.nav-link--cta:hover { background: var(--primary); color: var(--white); border-bottom: none; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column;
  justify-content: center; gap: 5px;
  width: 42px; height: 42px; padding: 8px;
}
.hamburger-line {
  display: block; width: 100%; height: 1.5px;
  background: var(--ink);
  transition: transform var(--t), opacity var(--t);
}
.hamburger.is-active .hamburger-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.is-active .hamburger-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   BUTTONS — minimal, sharp
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 32px;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1.5px solid transparent; cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t);
  text-decoration: none; white-space: nowrap;
}
.btn--primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn--primary:hover { background: var(--primary-dk); border-color: var(--primary-dk); color: var(--white); }
.btn--outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--outline:hover { background: var(--primary); color: var(--white); }
.btn--ink { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn--ink:hover { background: #333; color: var(--white); }
.btn--ghost { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn--ghost:hover { background: rgba(255,255,255,0.22); color: var(--white); }
.btn--white { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--white:hover { background: var(--paper); color: var(--primary); }
.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn--outline-white:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.btn--full { width: 100%; }
.btn--lg { padding: 17px 44px; font-size: 0.83rem; }
.btn--sm { padding: 9px 20px; font-size: 0.72rem; }

/* ============================================================
   HERO — editorial cinematic
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  min-height: 100svh; min-height: 660px;
  display: flex; align-items: flex-end;
  background: var(--ink);
  color: var(--white);
}
.hero-slides {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.1s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(10,6,4,0.72) 0%,
    rgba(10,6,4,0.20) 45%,
    rgba(10,6,4,0.05) 100%
  );
}
.hero-body {
  position: relative; z-index: 2;
  width: 100%; padding-bottom: clamp(48px, 8vw, 80px);
}
.hero-content { max-width: 780px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.hero-kicker::before {
  content: ''; display: inline-block;
  width: 28px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px; word-break: keep-all;
}
.hero-sub {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.8; margin-bottom: 14px;
  word-break: keep-all; max-width: 520px;
}
.hero-notice {
  font-size: 0.78rem; color: var(--gold);
  border-left: 2px solid var(--gold);
  padding: 8px 14px; margin-bottom: 36px;
  line-height: 1.7; max-width: 480px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-rule {
  border: none; border-top: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 32px;
}
.hero-stats { display: flex; gap: 0; }
.hero-stat {
  padding: 0 32px 0 0;
  border-right: 1px solid rgba(255,255,255,0.15);
  margin-right: 32px;
}
.hero-stat:last-child { border-right: none; margin-right: 0; }
.hs-num {
  display: block; font-family: 'Manrope', sans-serif;
  font-size: 1.6rem; font-weight: 800;
  color: var(--white); line-height: 1;
}
.hs-label {
  display: block; font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em; margin-top: 4px;
}
.hero-dots {
  position: absolute; bottom: 28px; right: clamp(20px, 5vw, 48px);
  z-index: 3; display: flex; gap: 6px; align-items: center;
}
.hero-dot {
  width: 24px; height: 2px;
  background: rgba(255,255,255,0.3);
  border: none; cursor: pointer;
  transition: background var(--t), width var(--t);
  padding: 0;
}
.hero-dot.is-active { background: var(--white); width: 40px; }

/* ============================================================
   SECTIONS — editorial spacing
   ============================================================ */
.section { padding-block: clamp(64px, 10vw, 112px); }
.section--bg { background: var(--paper); }
.section--ink { background: var(--ink); color: var(--white); }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 14px;
}
.section-label::before {
  content: ''; display: inline-block;
  width: 20px; height: 1.5px; background: var(--primary);
}
.section-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.18;
  letter-spacing: -0.02em; margin-bottom: 16px;
  word-break: keep-all;
}
.section--ink .section-title { color: var(--white); }
.section--ink .section-label { color: var(--gold); }
.section--ink .section-label::before { background: var(--gold); }

.section-desc {
  font-size: 0.95rem; color: var(--ink-60);
  line-height: 1.85; max-width: 520px;
  word-break: keep-all;
}
.section--ink .section-desc { color: rgba(255,255,255,0.6); }
.section-header { margin-bottom: clamp(40px, 6vw, 64px); }
.section-header--center { text-align: center; }
.section-header--center .section-desc { margin-inline: auto; }
.section-header--center .section-label { justify-content: center; }

/* ============================================================
   PORTFOLIO GRID — editorial
   ============================================================ */
.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.port-card {
  background: var(--white);
  overflow: hidden;
  position: relative;
  transition: opacity var(--t);
}
.port-card:hover { opacity: 0.92; }
.port-img-wrap {
  position: relative; display: block;
  overflow: hidden; aspect-ratio: 4/3; background: #1a1a1a;
}
.port-img-after,
.port-img-before {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; transition: opacity 0.5s ease;
}
.port-img-before { opacity: 1; z-index: 1; }
.port-img-after  { opacity: 0; z-index: 2; }
.port-img-wrap:hover .port-img-before { opacity: 0; }
.port-img-wrap:hover .port-img-after  { opacity: 1; }
.port-label-b,
.port-label-a {
  position: absolute; bottom: 12px;
  padding: 3px 9px; font-size: 0.65rem;
  font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; pointer-events: none; z-index: 3;
}
.port-label-b { left: 12px; background: rgba(0,0,0,0.65); color: #fff; }
.port-label-a { right: 12px; background: var(--primary); color: #fff; }
.port-body { padding: 18px 20px; border-top: 1px solid var(--rule); }
.port-loc {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.72rem; color: var(--ink-30);
  letter-spacing: 0.05em; margin-bottom: 5px;
}
.port-title { font-size: 0.88rem; font-weight: 700; color: var(--ink); word-break: keep-all; }
.port-title a:hover { color: var(--primary); }

/* ============================================================
   SERVICES — editorial numbered
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--rule);
  gap: 0;
}
.svc-card {
  border-right: 1px solid var(--rule);
  padding: 36px 24px 32px;
  position: relative; display: flex; flex-direction: column;
  transition: background var(--t);
}
.svc-card:last-child { border-right: none; }
.svc-card:hover { background: var(--ink); }
.svc-card:hover .svc-num { color: rgba(255,255,255,0.08); }
.svc-card:hover .svc-situation { color: var(--gold); }
.svc-card:hover .svc-name { color: var(--white); }
.svc-card:hover .svc-desc { color: rgba(255,255,255,0.55); }
.svc-card:hover .svc-link { color: var(--gold); }

.svc-num {
  font-family: 'Manrope', sans-serif;
  font-size: 3.5rem; font-weight: 900;
  color: #EBEBEB; line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  transition: color var(--t);
}
.svc-situation {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.06em; color: var(--primary);
  margin-bottom: 10px; line-height: 1.55;
  word-break: keep-all;
  transition: color var(--t);
}
.svc-name {
  font-size: 1.1rem; font-weight: 800;
  color: var(--ink); margin-bottom: 10px;
  word-break: keep-all; transition: color var(--t);
}
.svc-desc {
  font-size: 0.8rem; color: var(--ink-60);
  line-height: 1.7; flex: 1; margin-bottom: 20px;
  word-break: keep-all; transition: color var(--t);
}
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary); margin-top: auto;
  transition: gap var(--t), color var(--t);
}
.svc-link:hover { gap: 10px; }

.svc-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--rule); border-top: 3px solid var(--primary);
  margin-top: 0;
}
.svc-stat {
  text-align: center; padding: 22px 12px;
  border-right: 1px solid var(--rule);
}
.svc-stat:last-child { border-right: none; }
.svc-stat strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--ink); }

/* ============================================================
   PROCESS — dark editorial
   ============================================================ */
.proc-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,0.1);
}
.proc-step {
  padding: 44px 28px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background var(--t);
}
.proc-step:last-child { border-right: none; }
.proc-step:hover { background: rgba(255,255,255,0.04); }
.proc-num {
  font-family: 'Manrope', sans-serif;
  font-size: 3rem; font-weight: 900;
  color: var(--primary); opacity: 0.7;
  line-height: 1; letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.proc-title {
  font-size: 0.93rem; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
  word-break: keep-all;
}
.proc-desc {
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  line-height: 1.75; word-break: keep-all;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--primary);
  color: var(--white);
  padding: clamp(64px, 10vw, 96px) 0;
  text-align: center;
}
.cta-band-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900; letter-spacing: -0.02em;
  margin-bottom: 14px; word-break: keep-all;
}
.cta-band-desc { font-size: 1rem; opacity: 0.82; margin-bottom: 36px; word-break: keep-all; }
.cta-band-note { font-size: 0.75rem; opacity: 0.55; margin-top: 18px; letter-spacing: 0.04em; }

/* ============================================================
   FAQ — paper bg
   ============================================================ */
.faq-list {
  max-width: 760px; margin-inline: auto;
  border-top: 1px solid var(--rule);
}
.faq-item { border-bottom: 1px solid var(--rule); }

/* new .faq-q */
.faq-q {
  width: 100%; text-align: left;
  padding: 20px 0;
  font-size: 0.93rem; font-weight: 600;
  display: flex; align-items: center; gap: 14px;
  background: none; cursor: pointer;
  color: var(--ink);
  transition: color var(--t);
  border: none;
}
.faq-q:hover { color: var(--primary); }
.faq-qnum {
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.06em; color: var(--ink-30);
  min-width: 22px; flex-shrink: 0;
}
.faq-qtext { flex: 1; }
.faq-q .faq-icon { flex-shrink: 0; color: var(--ink-30); transition: transform var(--t); }
.faq-item.is-open .faq-q .faq-icon { transform: rotate(180deg); }
.faq-item.is-open .faq-q { color: var(--primary); }
.faq-a {
  padding: 0 0 20px 36px;
  font-size: 0.88rem; color: var(--ink-60);
  line-height: 1.85; word-break: keep-all;
}

/* legacy .faq-question / .faq-answer (region pages) */
.faq-question {
  width: 100%; text-align: left; padding: 20px 0;
  font-size: 0.93rem; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  background: none; cursor: pointer; color: var(--ink); border: none;
  transition: color var(--t);
}
.faq-question:hover { color: var(--primary); }
.faq-item.is-open .faq-question { color: var(--primary); }
.faq-icon { flex-shrink: 0; transition: transform var(--t); }
.faq-item.is-open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  display: none; padding: 0 0 20px;
  font-size: 0.88rem; color: var(--ink-60);
  line-height: 1.85; background: none;
}
.faq-item.is-open .faq-answer { display: block; }

/* ============================================================
   REVIEWS — editorial quotes
   ============================================================ */
.review-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--rule); gap: 0;
}
.review-card {
  padding: 36px 28px;
  border-right: 1px solid var(--rule);
  position: relative; display: flex; flex-direction: column;
}
.review-card:last-child { border-right: none; }
.review-stars {
  color: var(--primary); font-size: 0.8rem;
  letter-spacing: 2px; margin-bottom: 18px;
}
.review-text {
  font-size: 0.875rem; color: var(--ink-60);
  line-height: 1.85; margin-bottom: 24px;
  flex: 1; word-break: keep-all;
}
.review-author {
  font-size: 0.75rem; color: var(--ink-30);
  letter-spacing: 0.04em; padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.review-author strong { display: block; color: var(--ink); font-size: 0.8rem; margin-bottom: 2px; }

/* ============================================================
   REGION LINKS
   ============================================================ */
.region-links { display: flex; flex-wrap: wrap; gap: 8px; }
.region-link {
  display: inline-block; padding: 7px 16px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
  border: 1px solid var(--rule); color: var(--ink-60);
  transition: background var(--t), color var(--t), border-color var(--t);
}
.region-link:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.rv, .reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.rv.is-visible, .reveal.revealed { opacity: 1; transform: none; }

/* ============================================================
   CONSULTATION — 전화/문자 연결
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
  max-width: 720px;
  margin-inline: auto;
}
.contact-card {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  padding: 52px 32px;
  text-align: center;
  text-decoration: none;
  transition: background var(--t), color var(--t);
}
.contact-card--call {
  background: var(--ink); color: var(--white);
}
.contact-card--call:hover { background: #222; color: var(--white); }
.contact-card--sms {
  background: var(--primary); color: var(--white);
}
.contact-card--sms:hover { background: var(--primary-dk); color: var(--white); }
.contact-card-icon {
  display: flex; align-items: center; justify-content: center;
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 4px;
}
.contact-card-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  opacity: 0.65;
}
.contact-card-num {
  font-family: 'Manrope', sans-serif;
  font-size: 1.6rem; font-weight: 800;
  letter-spacing: 0.02em; line-height: 1.1;
}
.contact-card-desc { font-size: 0.8rem; opacity: 0.7; }
.contact-card-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 28px;
  border: 1.5px solid rgba(255,255,255,0.5);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.contact-card:hover .contact-card-btn { border-color: rgba(255,255,255,0.9); }

/* Guide box */
.contact-guide {
  max-width: 720px; margin: 32px auto 0;
  padding: 28px 32px;
  background: var(--paper); border: 1px solid var(--rule);
}
.contact-guide-title {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-60); margin-bottom: 18px;
}
.contact-guide-list {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 18px;
}
.contact-guide-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 0.9rem; color: var(--ink);
}
.contact-guide-num {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--white);
  font-size: 0.72rem; font-weight: 700;
  font-family: 'Manrope', sans-serif;
  margin-top: 1px;
}
.contact-guide-note {
  font-size: 0.82rem; color: var(--ink-60);
  border-top: 1px solid var(--rule); padding-top: 14px;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--ink); color: var(--white);
  padding: 64px 0;
}
.page-hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; letter-spacing: -0.02em;
  margin-bottom: 12px; word-break: keep-all;
}
.page-hero-desc { font-size: 1rem; color: rgba(255,255,255,0.6); word-break: keep-all; }
.section--primary {
  background: var(--ink); color: var(--white);
  padding: 64px 0;
}
.section--primary .breadcrumb a,
.section--primary .breadcrumb span { color: rgba(255,255,255,0.6); }
.section--primary .page-hero-title { color: var(--white); }
.section--primary .page-hero-desc  { color: rgba(255,255,255,0.6); }
.section--primary .btn--white { background: var(--white); color: var(--ink); border-color: var(--white); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { font-size: 0.78rem; color: var(--ink-30); padding: 14px 0; }
.breadcrumb a { color: var(--ink-30); transition: color var(--t); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { margin: 0 6px; opacity: 0.4; }
.breadcrumb ol { display: flex; align-items: center; flex-wrap: wrap; list-style: none; }
.breadcrumb ol li { display: flex; align-items: center; gap: 6px; }
.breadcrumb ol li:not(:last-child)::after { content: '›'; opacity: 0.4; }

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.service-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.service-detail-text h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.6rem; font-weight: 800; margin-bottom: 16px;
}
.service-detail-text p { color: var(--ink-60); margin-bottom: 14px; line-height: 1.85; }
.service-detail-text ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.service-detail-text ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; padding: 10px 0; border-bottom: 1px solid var(--rule);
}
.service-detail-text ul li::before {
  content: '';
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0; margin-top: 8px;
}
.service-sidebar {
  background: var(--paper); padding: 32px;
  border: 1px solid var(--rule);
  position: sticky; top: calc(var(--header-h) + 20px);
}
.service-sidebar-title {
  font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 18px; color: var(--ink);
}

/* ============================================================
   CTA BANNER (region/service pages)
   ============================================================ */
.cta-banner {
  background: var(--ink); color: var(--white);
  padding: clamp(56px, 8vw, 80px) 0; text-align: center;
}
.cta-banner-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 900; letter-spacing: -0.02em;
  margin-bottom: 12px; word-break: keep-all;
}
.cta-banner-desc { font-size: 0.93rem; opacity: 0.65; margin-bottom: 32px; word-break: keep-all; }
.cta-banner-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   TRUST GRID (region pages)
   ============================================================ */
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border: 1px solid var(--rule);
}
.trust-card {
  padding: 36px 28px; border-right: 1px solid var(--rule);
}
.trust-card:last-child { border-right: none; }
.trust-icon-svg { margin-bottom: 18px; }
.trust-title { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.trust-desc { font-size: 0.85rem; color: var(--ink-60); line-height: 1.8; word-break: keep-all; }
.trust-icon { font-size: 1.5rem; margin-bottom: 14px; }

/* ============================================================
   REGION PAGE COMPONENTS
   ============================================================ */
.area-tags { display: flex; align-items: flex-start; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.area-tags-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); white-space: nowrap; padding-top: 2px;
}
.area-tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.area-tag {
  padding: 4px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.78rem; color: rgba(255,255,255,0.75);
}

.apt-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 0; border: 1px solid var(--rule); }
.apt-card {
  padding: 18px 20px; font-size: 0.88rem; font-weight: 600;
  border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.apt-age { display: block; font-size: 0.73rem; color: var(--ink-30); margin-top: 4px; font-weight: 400; }

/* ============================================================
   GALLERY / CASES (service pages)
   ============================================================ */
.cases-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.case-card {
  border: 1px solid var(--rule); overflow: hidden;
  transition: box-shadow var(--t);
}
.case-card:hover { box-shadow: var(--shadow); }
.before-after {
  position: relative; overflow: hidden; aspect-ratio: 16/9; background: #111;
}
.before-after img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.45s ease; }
.before-after .img-after { position: absolute; inset: 0; opacity: 0; }
.before-after:hover .img-before { opacity: 0; }
.before-after:hover .img-after  { opacity: 1; }
.ba-label {
  position: absolute; bottom: 10px; padding: 3px 10px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; pointer-events: none;
}
.ba-label--before { left: 10px; background: rgba(0,0,0,0.6); color: #fff; }
.ba-label--after  { right: 10px; background: var(--primary); color: #fff; }
.case-body { padding: 20px; }
.case-location {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.72rem; color: var(--ink-30); margin-bottom: 8px; letter-spacing: 0.04em;
}
.case-title { font-size: 0.93rem; font-weight: 700; margin-bottom: 8px; word-break: keep-all; }
.case-title a:hover { color: var(--primary); }
.case-desc { font-size: 0.83rem; color: var(--ink-60); line-height: 1.7; }
.case-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.case-tag {
  padding: 2px 10px; border: 1px solid var(--rule);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em;
  color: var(--ink-60); text-transform: uppercase;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
  padding: 8px 18px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid var(--rule); background: var(--white); color: var(--ink-60);
  cursor: pointer; transition: all var(--t);
}
.filter-btn:hover,
.filter-btn.is-active { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ============================================================
   PORTFOLIO DETAIL
   ============================================================ */
.portfolio-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.portfolio-img-wrap { overflow: hidden; aspect-ratio: 4/3; }
.portfolio-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-meta { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--rule); }
.portfolio-meta-item { display: flex; gap: 16px; font-size: 0.88rem; padding: 14px 18px; border-bottom: 1px solid var(--rule); }
.portfolio-meta-item:last-child { border-bottom: none; }
.portfolio-meta-label { font-weight: 700; min-width: 70px; color: var(--ink-30); font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; }

/* ============================================================
   SITEMAP
   ============================================================ */
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 40px; }
.sitemap-section-title {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--primary);
}
.sitemap-links { display: flex; flex-direction: column; gap: 8px; }
.sitemap-links a { font-size: 0.88rem; color: var(--ink-60); }
.sitemap-links a:hover { color: var(--primary); }

/* ============================================================
   404
   ============================================================ */
.not-found { text-align: center; padding: 120px 20px; }
.not-found-code { font-family: 'Manrope', sans-serif; font-size: 8rem; font-weight: 900; color: var(--rule); line-height: 1; }
.not-found-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 14px; }
.not-found-desc { color: var(--ink-60); margin-bottom: 32px; }


/* ============================================================
   SERVICE PAGE — enhanced sections
   ============================================================ */

/* Split hero */
.svc-page-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  border-bottom: 1px solid var(--rule);
}
.svc-page-hero-text {
  display: flex; align-items: center;
  background: var(--paper);
  border-right: 1px solid var(--rule);
}
.svc-page-hero-inner {
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 60px);
}
.svc-page-hero-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 14px;
}
.svc-page-hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px; color: var(--ink);
}
.svc-page-hero-desc {
  font-size: 1rem; color: var(--ink-60);
  line-height: 1.75; margin-bottom: 32px;
  word-break: keep-all;
}
.svc-page-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.svc-page-hero-img { overflow: hidden; }
.svc-page-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* Stats bar */
.svc-statsbar {
  background: var(--ink);
  color: var(--white);
  padding: 0;
}
.svc-statsbar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255,255,255,0.08);
}
.svc-stat {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.svc-stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: 1.6rem; font-weight: 800;
  color: var(--gold); letter-spacing: -0.01em;
}
.svc-stat-label {
  font-size: 0.7rem; font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em; text-align: center;
}

/* Service detail grid */
.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.svc-detail-text h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800; margin: 12px 0 20px;
  line-height: 1.25;
}
.svc-detail-intro {
  color: var(--ink-60); line-height: 1.85;
  margin-bottom: 28px; word-break: keep-all;
}
.svc-feature-list {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 32px;
}
.svc-feature-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--ink);
}
.svc-detail-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Sidebar */
.svc-sidebar-inner {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 28px 24px;
  position: sticky; top: calc(var(--header-h) + 20px);
}
.svc-sidebar-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem; font-weight: 800;
  letter-spacing: 0.04em; margin-bottom: 8px;
}
.svc-sidebar-desc {
  font-size: 0.83rem; color: var(--ink-60);
  margin-bottom: 18px; line-height: 1.7;
}
.svc-sidebar-points {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 18px; margin-bottom: 0;
}
.svc-sidebar-points li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--ink-60);
}
.svc-sidebar-hr { border: none; border-top: 1px solid var(--rule); margin: 20px 0; }
.svc-sidebar-other-title { font-size: 0.82rem; font-weight: 700; margin-bottom: 10px; }
.svc-sidebar-other { display: flex; flex-direction: column; gap: 8px; }
.svc-sidebar-other a { font-size: 0.83rem; color: var(--ink-60); }
.svc-sidebar-other a:hover { color: var(--primary); }

/* WHY FINERO cards */
.svc-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.svc-why-card {
  background: var(--white);
  padding: 36px 28px;
}
.svc-why-icon { font-size: 2rem; display: block; margin-bottom: 16px; }
.svc-why-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem; font-weight: 800;
  margin-bottom: 10px; letter-spacing: 0.01em;
}
.svc-why-desc { font-size: 0.875rem; color: var(--ink-60); line-height: 1.75; word-break: keep-all; }

/* Process steps */
.svc-process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.svc-process-step {
  background: var(--white);
  padding: 28px 20px;
  display: flex; flex-direction: column; gap: 12px;
}
.svc-process-num {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem; font-weight: 900;
  color: var(--rule); line-height: 1;
}
.svc-process-name {
  font-size: 0.88rem; font-weight: 700;
  color: var(--ink); display: block; margin-bottom: 6px;
}
.svc-process-desc { font-size: 0.8rem; color: var(--ink-60); line-height: 1.7; }

/* ba-grid 3-col variant */
.ba-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ============================================================
   FOOTER — dark editorial
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.5); }
.footer-inner { padding-top: 64px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); font-size: 1rem; font-weight: 800;
  margin-bottom: 14px; letter-spacing: 0.04em; text-transform: uppercase;
}
.footer-tagline { font-size: 0.83rem; color: rgba(255,255,255,0.4); margin-bottom: 16px; line-height: 1.8; }
.footer-biz-info { font-size: 0.78rem; color: rgba(255,255,255,0.3); display: flex; flex-direction: column; gap: 4px; }
.footer-heading {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.83rem; color: rgba(255,255,255,0.4); transition: color var(--t); }
.footer-links a:hover { color: var(--white); }
.footer-cta-desc { font-size: 0.83rem; color: rgba(255,255,255,0.4); margin-bottom: 18px; line-height: 1.8; }
.footer-cta-btn { margin-top: 0; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.75rem; color: rgba(255,255,255,0.25); transition: color var(--t); }
.footer-bottom-links a:hover { color: var(--white); }

/* ============================================================
   STICKY BOTTOM BAR
   ============================================================ */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 850; display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.sticky-bar__btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 12px;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: filter var(--t); text-decoration: none;
}
.sticky-bar__btn:hover { filter: brightness(0.88); }
.sticky-bar__btn--sms   { background: var(--accent); color: var(--white); }
.sticky-bar__btn--visit { background: var(--primary); color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .port-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); review-grid-gap: 0; }
  .proc-steps { grid-template-columns: repeat(2, 1fr); }
  .svc-stats { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { display: none; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .section { padding-block: 56px; }

  .hamburger { display: flex; }
  .site-nav {
    display: none; position: absolute;
    top: var(--header-h); left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 12px 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  }
  .site-nav.is-open { display: block; }
  .nav-list { flex-direction: column; }
  .nav-link {
    height: auto; padding: 13px clamp(20px,5vw,48px);
    border-bottom: none;
    border-top: 1px solid var(--rule);
    font-size: 0.8rem;
  }
  .nav-link:first-child { border-top: none; }
  .nav-link:hover { color: var(--primary); }
  .nav-link--cta {
    margin: 10px clamp(20px,5vw,48px) 0;
    padding: 13px; text-align: center; justify-content: center;
  }

  .hero { min-height: auto; }
  .hero-body { padding: 56px 0 40px; }
  .hero-stats { display: none; }
  .hero-btns { flex-direction: column; }

  .svc-grid { grid-template-columns: 1fr 1fr; }
  .svc-card { border-bottom: 1px solid var(--rule); }
  .port-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card { border-bottom: 1px solid var(--rule); border-right: none; }
  .proc-steps { grid-template-columns: 1fr; }
  .proc-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-card { border-right: none; border-bottom: 1px solid var(--rule); }
  .portfolio-detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 36px 24px; }
  .contact-card-num { font-size: 1.3rem; }
  .contact-guide { padding: 22px 20px; }
  .svc-stats { grid-template-columns: 1fr 1fr; }
  .svc-stat + .svc-stat { border-left: none; }
}

@media (max-width: 480px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-stats { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 2.4rem; }
  .sticky-bar__btn { font-size: 0.75rem; padding: 13px 8px; }
  .cta-band-actions,
  .cta-banner-actions { flex-direction: column; align-items: center; }
}

/* ============================================================
   ARCHITECTURAL HERO
   ============================================================ */
.hero {
  flex-direction: column;
  justify-content: space-between;
  min-height: 100svh;
  min-height: 680px;
  align-items: stretch;
  padding: 0;
}
.hero-topbar {
  position: relative; z-index: 3;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
}
.hero-tag {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.hero-counter {
  font-family: 'Manrope', sans-serif;
  font-size: 0.68rem; color: rgba(255,255,255,0.35);
  letter-spacing: 0.12em;
}

.hero-main {
  position: relative; z-index: 3;
  flex: 1; display: flex; align-items: flex-end;
  padding: clamp(40px,6vw,64px) 0;
}
.hero-main-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px,5vw,72px);
  align-items: flex-end;
  width: 100%;
}
.hero-left {}
.hero-kicker {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.hero-kicker::before {
  content: ''; display: inline-block;
  width: 32px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(3.2rem, 9vw, 7rem);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--white); word-break: keep-all;
}
.hero-right {
  display: flex; flex-direction: column;
  justify-content: flex-end; padding-bottom: 4px;
}
.hero-sub {
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.85; margin-bottom: 14px; word-break: keep-all;
}
.hero-notice {
  font-size: 0.73rem; color: var(--gold);
  border-left: 2px solid var(--gold);
  padding: 8px 14px; margin-bottom: 28px; line-height: 1.7;
}
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }

.hero-statsbar {
  position: relative; z-index: 3;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(6px);
}
.hero-statsbar-inner {
  display: grid; grid-template-columns: repeat(4,1fr);
}
.hsb-item {
  display: flex; flex-direction: column;
  padding: 20px clamp(16px,3vw,32px);
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hsb-item:last-child { border-right: none; }
.hsb-num {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem; font-weight: 800;
  color: var(--white); line-height: 1;
}
.hsb-label {
  font-size: 0.65rem; color: rgba(255,255,255,0.42);
  letter-spacing: 0.06em; margin-top: 5px;
}

/* dots: bar style, bottom-right */
.hero-dots {
  position: absolute; bottom: 80px; right: clamp(20px,5vw,48px);
  z-index: 4;
}
.hero-dot {
  width: 28px; height: 2px;
  background: rgba(255,255,255,0.28);
  border: none; cursor: pointer; padding: 0;
  transition: background var(--t), width var(--t);
  display: block;
}
.hero-dot + .hero-dot { margin-top: 6px; }
.hero-dot.is-active { background: var(--white); width: 44px; }

/* ============================================================
   TICKER BAND
   ============================================================ */
.ticker-wrap {
  overflow: hidden;
  background: var(--primary);
  border-top: 1px solid var(--primary-dk);
  border-bottom: 1px solid var(--primary-dk);
  padding: 13px 0;
}
.ticker-track {
  display: flex; white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
}
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.82); padding: 0 6px;
}
.ticker-sep {
  font-size: 0.68rem; color: rgba(255,255,255,0.3);
  padding: 0 4px;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   ARCH HEADER (section header — split left / right)
   ============================================================ */
.arch-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 40px;
  margin-bottom: clamp(36px,6vw,60px);
}
.arch-header-left { flex-shrink: 0; }
.arch-header-left .section-title { margin-bottom: 0; }
.arch-header-right {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 16px;
  text-align: right; max-width: 380px;
}
.arch-header-right .section-desc { max-width: none; }

/* ============================================================
   SERVICE ROW LIST (architectural)
   ============================================================ */
.svc-rows { border-top: 1px solid var(--rule); }
.svc-row {
  display: grid;
  grid-template-columns: 72px 180px 1fr 1fr 130px;
  align-items: center; gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
  transition: background var(--t), padding-left var(--t), padding-right var(--t);
}
.svc-row:hover {
  background: var(--ink);
  padding-left: 24px; padding-right: 24px;
}
.svc-row:hover .sr-num  { color: rgba(255,255,255,0.15); }
.svc-row:hover .sr-name { color: var(--white); }
.svc-row:hover .sr-sit  { color: var(--gold); }
.svc-row:hover .sr-desc { color: rgba(255,255,255,0.48); }
.svc-row:hover .sr-link { color: var(--gold); border-color: rgba(255,255,255,0.18); }

.sr-num {
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem; font-weight: 900;
  color: #D8D4CE; letter-spacing: -0.04em;
  transition: color var(--t);
}
.sr-name {
  font-size: 1rem; font-weight: 800; color: var(--ink);
  word-break: keep-all; transition: color var(--t);
}
.sr-sit {
  font-size: 0.75rem; color: var(--primary);
  font-weight: 600; word-break: keep-all;
  transition: color var(--t);
}
.sr-desc {
  font-size: 0.8rem; color: var(--ink-60);
  line-height: 1.65; word-break: keep-all;
  transition: color var(--t);
}
.sr-link {
  justify-self: end;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary); border: 1px solid var(--rule);
  padding: 9px 16px;
  transition: color var(--t), border-color var(--t), background var(--t);
}

/* ============================================================
   SPLIT PANEL
   ============================================================ */
.split-panel {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.split-panel__dark {
  background: var(--ink); display: flex; align-items: center;
  padding: clamp(56px,9vw,104px) clamp(32px,5vw,80px);
}
.split-panel__light {
  background: var(--paper); display: flex; align-items: center;
  padding: clamp(56px,9vw,104px) clamp(32px,5vw,80px);
  border-left: 1px solid var(--rule);
}
.sp-inner { width: 100%; }
.sp-label {
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
}
.split-panel__dark .sp-label { color: var(--gold); }
.split-panel__dark .sp-label::before { content:''; display:block; width:20px; height:1px; background:var(--gold); }
.split-panel__light .sp-label { color: var(--primary); }
.split-panel__light .sp-label::before { content:''; display:block; width:20px; height:1px; background:var(--primary); }

.sp-stat {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -0.03em; color: var(--white);
  margin-bottom: 20px; word-break: keep-all;
}
.sp-sub {
  font-size: 0.85rem; color: rgba(255,255,255,0.48);
  line-height: 1.9; word-break: keep-all; margin-bottom: 32px;
}
.sp-feature-list { display: flex; flex-direction: column; gap: 10px; }
.sp-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.83rem; color: rgba(255,255,255,0.62); font-weight: 500;
}
.sp-feature-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0;
}

.sp-steps { display: flex; flex-direction: column; margin-bottom: 36px; }
.sp-step {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--rule);
}
.sp-step:first-child { border-top: 1px solid var(--rule); }
.sp-step-num {
  font-family: 'Manrope', sans-serif;
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.06em; color: var(--primary);
  min-width: 22px; padding-top: 3px; flex-shrink: 0;
}
.sp-step strong { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 3px; color: var(--ink); }
.sp-step p { font-size: 0.78rem; color: var(--ink-60); line-height: 1.75; word-break: keep-all; }

/* ============================================================
   CTA BAND — split layout
   ============================================================ */
.cta-band-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 48px;
}
.cta-band-text { flex: 1; }
.cta-band-title { text-align: left; margin-bottom: 8px; }
.cta-band-action {
  flex-shrink: 0; text-align: right;
  display: flex; flex-direction: column; align-items: flex-end; gap: 16px;
}
.cta-band-desc { font-size: 0.88rem; opacity: 0.65; line-height: 1.8; word-break: keep-all; }

/* ============================================================
   RESPONSIVE — architectural components
   ============================================================ */
@media (max-width: 1024px) {
  .hero-main-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-title { font-size: clamp(3rem, 10vw, 5rem); }
  .arch-grid { grid-template-columns: 1fr 1fr; min-height: auto; }
  .arch-grid .port-card:first-child { grid-row: auto; }
  .arch-grid .port-card:first-child .port-img-wrap { aspect-ratio: 4/3; min-height: auto; }
  .svc-row { grid-template-columns: 56px 150px 1fr; gap: 16px; }
  .sr-sit, .sr-link { display: none; }
  .split-panel { grid-template-columns: 1fr; min-height: auto; }
  .split-panel__light { border-left: none; border-top: 1px solid var(--rule); }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-title { text-align: center; }
  .cta-band-action { align-items: center; }
  .arch-header { flex-direction: column; align-items: flex-start; }
  .arch-header-right { align-items: flex-start; text-align: left; }
}

@media (max-width: 768px) {
  .hero-statsbar { display: none; }
  .hero-dots { bottom: 24px; right: 20px; }
  .arch-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 44px 1fr; gap: 12px; }
  .sr-desc { display: none; }
  .svc-row:hover { padding-left: 10px; padding-right: 10px; }
  .arch-header { gap: 20px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.8rem; }
  .hero-topbar { display: none; }
  .split-panel__dark, .split-panel__light { padding: 48px 24px; }
  .sp-stat { font-size: 2.4rem; }
}

/* ============================================================
   BEFORE / AFTER — always-visible split (no hover required)
   ============================================================ */

/* Port cards (main page / gallery) */
.port-img-before,
.port-img-after {
  opacity: 1 !important;
  transition: none;
}
.port-img-before { clip-path: inset(0 50% 0 0); z-index: 1; }
.port-img-after  { clip-path: inset(0 0 0 50%);  z-index: 2; }

/* centre divider line */
.port-img-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: calc(50% - 1px);
  width: 2px; background: var(--white);
  z-index: 3; pointer-events: none;
}
/* centre icon */
.port-img-wrap::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 6px rgba(0,0,0,0.3);
  z-index: 4; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M5 8H11M5 8L3 6M5 8L3 10M11 8L13 6M11 8L13 10' stroke='%23555' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* remove old hover toggle */
.port-img-wrap:hover .port-img-before,
.port-img-wrap:hover .port-img-after { opacity: 1; }

/* Case cards (.before-after) in service/gallery pages */
.before-after .img-before { clip-path: inset(0 50% 0 0); opacity: 1; z-index: 1; }
.before-after .img-after  { clip-path: inset(0 0 0 50%);  opacity: 1; z-index: 2; }
.before-after:hover .img-before,
.before-after:hover .img-after { opacity: 1; }

.before-after::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: calc(50% - 1px);
  width: 2px; background: var(--white);
  z-index: 3; pointer-events: none;
}
.before-after::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 6px rgba(0,0,0,0.3);
  z-index: 4; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M5 8H11M5 8L3 6M5 8L3 10M11 8L13 6M11 8L13 10' stroke='%23555' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* labels — always visible, adjust vertical so they don't clash with center icon */
.port-label-b,
.port-label-a,
.ba-label--before,
.ba-label--after { bottom: 10px; }

/* ============================================================
   MOBILE OPTIMIZATIONS
   ============================================================ */

@media (max-width: 768px) {
  /* floating-cta 숨김 — sticky-bar가 대체 */
  .floating-cta { display: none; }

  /* back-to-top: sticky-bar(56px) 위 */
  .back-to-top { bottom: 68px; right: 16px; }

  /* hero */
  .hero-main { padding: 32px 0 28px; }
  .hero-btns .btn { flex: 1 1 100%; justify-content: center; min-height: 48px; }
  .hero-notice { margin-bottom: 20px; font-size: 0.71rem; }

  /* inner page hero */
  .page-hero, .section--primary { padding: 40px 0; }
  .page-hero-title { font-size: clamp(1.7rem, 7vw, 2.4rem); }

  /* 섹션 간격 축소 */
  .section { padding-block: 48px; }

  /* cta 버튼 전체폭 */
  .cta-banner-actions { flex-direction: column; align-items: stretch; padding: 0 clamp(20px,5vw,40px); }
  .cta-banner-actions .btn { width: 100%; justify-content: center; min-height: 52px; }

  /* cases grid 1열 */
  .cases-grid { grid-template-columns: 1fr; gap: 16px; }

  /* apt-grid */
  .apt-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }

  /* trust-card 패딩 축소 */
  .trust-card { padding: 24px 20px; }

  /* form */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 36px 24px; }
  .contact-card-num { font-size: 1.3rem; }
  .contact-guide { padding: 22px 20px; }

  /* portfolio detail */
  .portfolio-detail-grid { gap: 20px; }

  /* arch header */
  .arch-header-right { max-width: 100%; }

  /* section title */
  .section-title { line-height: 1.2; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }

  /* 섹션 간격 */
  .section { padding-block: 36px; }
  .page-hero, .section--primary { padding: 32px 0; }

  /* hero */
  .hero-title { font-size: 2.6rem; line-height: 0.95; letter-spacing: -0.03em; }
  .hero-kicker { font-size: 0.6rem; margin-bottom: 10px; }
  .hero-main { padding: 24px 0 20px; }

  /* 버튼 — 터치 타겟 최소 44px */
  .btn { padding: 13px 20px; font-size: 0.77rem; min-height: 44px; }
  .btn--lg { padding: 14px 20px; font-size: 0.78rem; min-height: 48px; }
  .btn--sm { padding: 10px 16px; min-height: 40px; }

  /* page hero title */
  .page-hero-title { font-size: 1.6rem; }

  /* section title */
  .section-title { font-size: 1.5rem; }

  /* service row */
  .svc-row { grid-template-columns: 36px 1fr; gap: 10px; padding: 16px 0; }
  .sr-num { font-size: 1.1rem; }
  .sr-name { font-size: 0.93rem; }

  /* apt grid */
  .apt-grid { grid-template-columns: 1fr 1fr; }

  /* 404 */
  .not-found { padding: 80px 20px; }
  .not-found-code { font-size: 5rem; }

  /* footer */
  .footer-inner { padding-top: 40px; }
  .footer-grid { gap: 24px; }

  /* sticky bar */
  .sticky-bar__btn { font-size: 0.73rem; padding: 14px 8px; gap: 5px; min-height: 52px; }

  /* faq */
  .faq-q, .faq-question { font-size: 0.88rem; }
  .faq-a, .faq-answer { font-size: 0.83rem; padding-left: 0; }

  /* sitemap grid */
  .sitemap-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  /* service sidebar */
  .service-sidebar { padding: 22px 18px; }

  /* split panel */
  .split-panel__dark, .split-panel__light { padding: 40px clamp(20px,5vw,32px); }

  /* cta banner */
  .cta-banner { padding: 44px 0; }
  .cta-banner-title { font-size: 1.4rem; }
}

/* ============================================================
   HOME STATS BAND
   ============================================================ */
.home-stats-band {
  border-bottom: 3px solid var(--primary);
  background: var(--white);
}
.home-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.home-stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 40px 20px; border-right: 1px solid var(--rule);
  text-align: center;
}
.home-stat-item:last-child { border-right: none; }
.home-stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: 2.8rem; font-weight: 900;
  color: var(--ink); line-height: 1; margin-bottom: 8px;
}
.home-stat-unit { font-size: 1.5rem; color: var(--primary); }
.home-stat-label { font-size: 0.78rem; color: var(--ink-60); letter-spacing: 0.04em; }

@media (max-width: 768px) {
  .home-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .home-stat-item { padding: 28px 16px; border-bottom: 1px solid var(--rule); }
  .home-stat-item:nth-child(2) { border-right: none; }
  .home-stat-num { font-size: 2.2rem; }
}
@media (max-width: 480px) { .home-stat-num { font-size: 1.9rem; } }

/* ============================================================
   BEFORE/AFTER GRID (홈 포트폴리오)
   ============================================================ */
.ba-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; background: var(--rule); border: 1px solid var(--rule);
}
.ba-card { background: var(--white); overflow: hidden; }
.ba-split {
  display: flex; text-decoration: none; color: inherit;
  aspect-ratio: 16/9; overflow: hidden; position: relative;
}
.ba-half { flex: 1; position: relative; overflow: hidden; }
.ba-half img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.45s ease;
}
.ba-split:hover .ba-half img { transform: scale(1.04); }
.ba-half + .ba-half { border-left: 2px solid rgba(255,255,255,0.7); }
.ba-tag {
  position: absolute; bottom: 10px; left: 10px;
  padding: 3px 10px; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(0,0,0,0.6); color: #fff; pointer-events: none;
}
.ba-tag--after { left: auto; right: 10px; background: var(--primary); }

@media (max-width: 768px) {
  .ba-grid { grid-template-columns: 1fr; }
  .ba-split { aspect-ratio: 4/3; }
}

/* ============================================================
   WHY FINERO GRID
   ============================================================ */
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--rule); border: 1px solid var(--rule);
}
.why-card {
  background: var(--white); padding: 36px 28px;
  transition: background var(--t);
}
.why-card:hover { background: var(--paper); }
.why-icon { margin-bottom: 22px; }
.why-title { font-size: 1rem; font-weight: 700; margin-bottom: 12px; word-break: keep-all; }
.why-desc { font-size: 0.83rem; color: var(--ink-60); line-height: 1.85; word-break: keep-all; }

@media (max-width: 1024px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .why-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PROCESS — 5단계
   ============================================================ */
.proc-steps--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1024px) { .proc-steps--5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .proc-steps--5 { grid-template-columns: 1fr; } }

/* ============================================================
   SERVICE PAGE — responsive
   ============================================================ */
@media (max-width: 1024px) {
  .svc-page-hero { grid-template-columns: 1fr; min-height: auto; }
  .svc-page-hero-img { min-height: 320px; border-right: none; border-top: 1px solid var(--rule); order: -1; }
  .svc-page-hero-text { border-right: none; }
  .svc-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .svc-sidebar-inner { position: static; }
  .svc-why-grid { grid-template-columns: 1fr 1fr; }
  .svc-process-list { grid-template-columns: repeat(3, 1fr); }
  .ba-grid--3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .svc-page-hero-img { min-height: 240px; }
  .svc-statsbar-inner { grid-template-columns: 1fr 1fr; }
  .svc-why-grid { grid-template-columns: 1fr; }
  .svc-process-list { grid-template-columns: 1fr 1fr; }
  .ba-grid--3 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .svc-page-hero-img { min-height: 200px; }
  .svc-statsbar-inner { grid-template-columns: 1fr 1fr; }
  .svc-stat-num { font-size: 1.3rem; }
  .svc-process-list { grid-template-columns: 1fr; }
}
