/* =============================================
   서민라이프상조 — style.css
   ============================================= */
:root {
  --navy-deep:   #060b18;
  --navy-dark:   #0d1b3e;
  --navy-mid:    #162447;
  --gold:        #c9a84c;
  --gold-light:  #e8c96a;
  --gold-pale:   #f5e8c0;
  --white:       #ffffff;
  --off-white:   #f8f6f2;
  --light-gray:  #f1f2f4;
  --dark-text:   #1a1f36;
  --mid-text:    #4a5068;
  --light-text:  #8a91aa;
  --overlay:     rgba(6,11,24,0.68);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Sans KR", sans-serif;
  background: var(--white);
  color: var(--dark-text);
  overflow-x: hidden;
}

/* ──────────────────────────────────────────
   HEADER
────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s, box-shadow 0.5s;
}
.header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
}
.header.scrolled .logo-ko  { color: var(--navy-dark); }
.header.scrolled .logo-en  { color: var(--mid-text); }
.header.scrolled .nav-link { color: var(--mid-text); }
.header.scrolled .hamburger span { background: var(--navy-dark); }

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  transition: opacity 0.4s, filter 0.4s;
  /* 투명 PNG — 다크 배경에서 밝게 보이도록 밝기만 살짝 */
  filter: brightness(1.1) drop-shadow(0 1px 4px rgba(0,0,0,0.25));
}
.logo-img-footer {
  height: 34px;
  filter: brightness(0.95) opacity(0.80);
}
.header.scrolled .logo-img {
  filter: none;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-ko {
  font-family: "Nanum Myeongjo", serif;
  font-size: 19px; font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px; line-height: 1.15;
  transition: color 0.4s;
}
.logo-en {
  font-size: 9.5px; letter-spacing: 2.5px;
  color: var(--gold); text-transform: uppercase;
  transition: color 0.4s;
}

.nav { display: flex; align-items: center; gap: 34px; }
.nav-link {
  text-decoration: none;
  color: rgba(255,255,255,0.82);
  font-size: 13.5px; font-weight: 500;
  letter-spacing: 0.2px;
  position: relative; transition: color 0.2s;
}
.nav-link::after {
  content: "";
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.25s;
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold);
  color: var(--navy-deep) !important;
  padding: 9px 22px; border-radius: 1px;
  font-weight: 700 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer;
  padding: 9px 10px;
  background: rgba(6,11,24,0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  transition: background 0.4s, border-color 0.4s;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); transition: background 0.4s;
  border-radius: 2px;
}
.header.scrolled .hamburger {
  background: rgba(255,255,255,0.95);
  border-color: rgba(0,0,0,0.1);
}
.header.scrolled .hamburger span {
  background: var(--navy-dark);
}

.mobile-nav {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  z-index: 999; flex-direction: column; padding: 12px 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  text-decoration: none; color: var(--dark-text);
  font-size: 15px; font-weight: 500;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:hover { color: var(--gold); background: rgba(201,168,76,0.04); }

/* ──────────────────────────────────────────
   HERO — Photo Background
────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
/* Slideshow slides */
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide-1 {
  background-image: url('https://images.unsplash.com/photo-1725645605815-c8f1b81b8e4e?auto=format&fit=crop&w=1920&q=80');
  background-position: center 50%;
  animation: kenburns1 10s ease-in-out infinite;
}
.hero-slide-2 {
  background-image: url('https://images.unsplash.com/photo-1605008045461-88e7f484309d?auto=format&fit=crop&w=1920&q=80');
  background-position: center 40%;
  animation: kenburns2 10s ease-in-out infinite;
}
.hero-slide-3 {
  background-image: url('https://images.unsplash.com/photo-1586226900887-4fb28c224b57?auto=format&fit=crop&w=1920&q=80');
  background-position: center 55%;
  animation: kenburns3 10s ease-in-out infinite;
}
/* Ken Burns — 10초 기준, 줌 범위 확대 */
@keyframes kenburns1 {
  0%   { transform: scale(1.00) translate(0px, 0px); }
  100% { transform: scale(1.14) translate(-18px, -10px); }
}
@keyframes kenburns2 {
  0%   { transform: scale(1.14) translate(10px, 6px); }
  100% { transform: scale(1.00) translate(-6px, -12px); }
}
@keyframes kenburns3 {
  0%   { transform: scale(1.02) translate(-8px, 4px); }
  100% { transform: scale(1.13) translate(10px, -8px); }
}
/* Top gradient to protect header readability */
.hero-top-fade {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(4,8,20,0.80) 0%, rgba(4,8,20,0.30) 60%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(18, 10, 6, 0.62) 0%,
    rgba(14, 10, 8, 0.52) 40%,
    rgba(16, 9, 5, 0.58) 100%
  );
  transition: background 1.8s ease-in-out;
}
/* 밝은 슬라이드: 가장자리 크림, 중앙 어둡게 — 텍스트 가독성 유지 */
.hero-overlay.slide-bright {
  background:
    radial-gradient(
      ellipse 70% 65% at 50% 50%,
      rgba(20, 14, 8, 0.52) 0%,
      rgba(20, 14, 8, 0.32) 50%,
      transparent 100%
    ),
    linear-gradient(
      160deg,
      rgba(245, 238, 225, 0.38) 0%,
      rgba(240, 232, 215, 0.25) 40%,
      rgba(245, 238, 225, 0.35) 100%
    );
}
.hero-overlay-warm {
  position: absolute; inset: 0;
  background: radial-gradient(
    ellipse 90% 70% at 50% 60%,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 70%
  );
}
.hero-overlay-gold {
  position: absolute; inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 25% 55%,
    rgba(201,168,76,0.06) 0%, transparent 65%
  );
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
.particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute; border-radius: 50%;
  background: var(--gold); opacity: 0;
  animation: float-up linear infinite;
}
@keyframes float-up {
  0%   { opacity: 0; transform: translateY(100vh) scale(0); }
  8%   { opacity: 0.7; }
  90%  { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-30px) scale(1.5); }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 130px 24px 90px;
  max-width: 880px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--gold); font-size: 14px;
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 32px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.hero-badge::before,
.hero-badge::after {
  content: ""; display: block;
  width: 30px; height: 1px; background: var(--gold); opacity: 0.5;
}
.hero-title {
  font-family: "Nanum Myeongjo", serif;
  font-size: clamp(40px, 7.5vw, 78px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -1.5px; color: var(--white);
  margin-bottom: 10px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.45), 0 1px 6px rgba(0,0,0,0.3);
}
.hero-title .gold { color: var(--gold); }
.hero-tagline {
  font-family: "Nanum Myeongjo", serif;
  font-size: clamp(18px, 3vw, 30px);
  font-weight: 400; color: rgba(255,255,255,0.85);
  letter-spacing: 2px; margin-bottom: 24px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.hero-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto 24px;
}
.hero-sub {
  font-size: clamp(13px, 1.8vw, 16px);
  color: rgba(255,255,255,0.90); line-height: 2;
  font-weight: 300; letter-spacing: 0.5px; margin-bottom: 44px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.35);
}
.hero-btns {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 60px;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; padding: 15px 34px;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.8px; border-radius: 1px;
  cursor: pointer; border: none;
  font-family: "Noto Sans KR", sans-serif;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-gold {
  background: var(--gold); color: var(--navy-deep);
}
.btn-gold:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.38);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.32);
}
.btn-outline:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,168,76,0.07); transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy-dark); color: var(--white);
}
.btn-navy:hover {
  background: var(--gold); color: var(--navy-deep);
}
.hero-phone-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.phone-chip {
  font-size: 13px; letter-spacing: 2px;
  color: var(--gold); text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.phone-num {
  font-family: "Nanum Myeongjo", serif;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 800; color: var(--white);
  letter-spacing: 2px; text-decoration: none;
  transition: color 0.2s;
}
.phone-num:hover { color: var(--gold); }
.phone-note { font-size: 14px; color: rgba(255,255,255,0.75); letter-spacing: 0.8px; text-shadow: 0 1px 8px rgba(0,0,0,0.4); }

.scroll-hint {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: bob 2.2s ease-in-out infinite;
}
.scroll-hint span { font-size: 9px; letter-spacing: 3px; color: rgba(201,168,76,0.6); text-transform: uppercase; }
.scroll-hint-line { width: 1px; height: 44px; background: linear-gradient(var(--gold), transparent); }
@keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(9px)} }

/* ──────────────────────────────────────────
   SECTION COMMONS
────────────────────────────────────────── */
section { padding: 104px 0; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 44px; }

.eyebrow {
  font-size: 10.5px; letter-spacing: 4px;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 12px; display: block;
}
.eyebrow.dark { color: var(--navy-dark); opacity: 0.55; }

.sec-title {
  font-family: "Nanum Myeongjo", serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800; line-height: 1.25; margin-bottom: 14px;
}
.sec-title.on-light { color: var(--dark-text); }
.sec-title.on-dark  { color: var(--white); }
.sec-title .accent  { color: var(--gold); }
.sec-title .navy    { color: var(--navy-dark); }

.gold-rule { width: 44px; height: 2px; background: var(--gold); margin-bottom: 18px; }
.gold-rule.center { margin-left: auto; margin-right: auto; }

.sec-desc { font-size: 15.5px; line-height: 1.95; font-weight: 300; }
.sec-desc.on-light { color: var(--mid-text); }
.sec-desc.on-dark  { color: rgba(255,255,255,0.55); }

/* ──────────────────────────────────────────
   STATS — Pure White
────────────────────────────────────────── */
.stats-sec {
  background: var(--white);
  border-top: 3px solid var(--gold);
  padding: 88px 0;
}
.stats-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.stat-card {
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.07);
  border-bottom: 3px solid var(--gold);
  padding: 28px 22px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.stat-card:hover { transform: translateY(-5px); box-shadow: 0 14px 44px rgba(0,0,0,0.09); }
.stat-num {
  font-family: "Nanum Myeongjo", serif;
  font-size: 40px; font-weight: 800;
  color: var(--navy-dark); letter-spacing: -1.5px; line-height: 1; margin-bottom: 8px;
}
.stat-lbl { font-size: 13px; color: var(--mid-text); font-weight: 500; line-height: 1.65; }

/* ──────────────────────────────────────────
   PRINCIPLES — Off-White
────────────────────────────────────────── */
.principles-sec { background: var(--off-white); }
.sec-header-center { text-align: center; margin-bottom: 64px; }
.principles-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 22px;
}
.principle-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
}
.principle-card::after {
  content: ""; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0);
  transition: transform 0.35s;
}
.principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 52px rgba(0,0,0,0.09);
  border-color: rgba(201,168,76,0.25);
}
.principle-card:hover::after { transform: scaleX(1); }
.p-num {
  font-family: "Nanum Myeongjo", serif;
  font-size: 52px; font-weight: 800;
  color: rgba(201,168,76,0.14); line-height: 1;
  margin-bottom: 10px; letter-spacing: -3px;
}
.p-icon { font-size: 26px; margin-bottom: 12px; display: block; }
.p-title { font-size: 16.5px; font-weight: 700; color: var(--dark-text); margin-bottom: 9px; }
.p-desc { font-size: 13.5px; color: var(--mid-text); line-height: 1.9; font-weight: 300; }

/* ──────────────────────────────────────────
   PRODUCTS — Light Gray
────────────────────────────────────────── */
.products-sec { background: var(--light-gray); }
.products-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; align-items: start;
}
.product-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden; position: relative;
  transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 18px 56px rgba(0,0,0,0.11); }
.product-card.featured {
  border: 2px solid var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(201,168,76,0.18);
}
.product-card.featured:hover { transform: translateY(-14px); }
.feat-badge {
  position: absolute; top: 0; right: 0;
  background: var(--gold); color: var(--navy-deep);
  font-size: 10.5px; font-weight: 700;
  padding: 5px 14px; letter-spacing: 1px;
}
.product-head {
  background: var(--navy-dark);
  padding: 30px 26px 22px;
}
.product-tier { font-size: 10px; letter-spacing: 3.5px; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; }
.product-price {
  font-family: "Nanum Myeongjo", serif;
  font-size: 44px; font-weight: 800; color: var(--white);
  line-height: 1; letter-spacing: -2px;
}
.product-price sup { font-size: 20px; vertical-align: super; font-weight: 400; color: rgba(255,255,255,0.55); }
.product-pdesc { font-size: 12.5px; color: rgba(255,255,255,0.5); margin-top: 6px; line-height: 1.6; }
.product-body { padding: 22px 26px; }
.feat-list { list-style: none; margin-bottom: 18px; }
.feat-list li {
  font-size: 13px; color: var(--mid-text);
  padding: 7px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.55;
}
.feat-list li:last-child { border-bottom: none; }
.feat-list li::before { content: "—"; color: var(--gold); font-size: 11px; flex-shrink: 0; margin-top: 3px; }
.toggle-btn {
  width: 100%; background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.09);
  color: var(--navy-dark); padding: 11px;
  font-size: 12.5px; font-weight: 600; cursor: pointer;
  font-family: "Noto Sans KR", sans-serif; letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.toggle-btn:hover { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.detail-panel { display: none; padding: 18px 26px; background: #fafafa; border-top: 1px solid rgba(0,0,0,0.05); }
.detail-panel.open { display: block; }
.dtable { width: 100%; border-collapse: collapse; font-size: 12px; }
.dtable tr { border-bottom: 1px solid rgba(0,0,0,0.045); }
.dtable tr:last-child { border-bottom: none; }
.dtable td { padding: 7px 4px; vertical-align: top; line-height: 1.65; }
.dtable td:first-child { color: var(--navy-dark); font-weight: 600; width: 86px; }
.dtable td:last-child { color: var(--mid-text); }
.products-note { text-align: center; margin-top: 36px; font-size: 13px; color: var(--light-text); line-height: 1.9; }
.products-note em { color: var(--gold); font-style: normal; font-weight: 600; }

/* ──────────────────────────────────────────
   CORPORATE — Pure White
────────────────────────────────────────── */
.corporate-sec {
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.06);
}
.corporate-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.benefit-card {
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 26px 20px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.benefit-card::before {
  content: ""; position: absolute;
  top: 0; left: 0; width: 3px; height: 100%;
  background: var(--gold); opacity: 0; transition: opacity 0.3s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 38px rgba(0,0,0,0.08);
  border-color: rgba(201,168,76,0.3);
}
.benefit-card:hover::before { opacity: 1; }
.b-icon { font-size: 24px; margin-bottom: 11px; display: block; }
.b-title { font-size: 14.5px; font-weight: 700; color: var(--dark-text); margin-bottom: 6px; line-height: 1.5; }
.b-desc { font-size: 12.5px; color: var(--mid-text); line-height: 1.8; }

/* ──────────────────────────────────────────
   CONTACT — Dark Photo
────────────────────────────────────────── */
.contact-sec {
  position: relative; overflow: hidden;
}
.contact-photo {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1519710164239-da123dc03ef4?auto=format&fit=crop&w=1920&q=80');
  background-size: cover; background-position: center;
}
.contact-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,11,24,0.92) 0%, rgba(9,18,50,0.88) 100%);
}
.contact-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-left { padding-top: 6px; }
.c-phone-big {
  display: block;
  font-family: "Nanum Myeongjo", serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800; color: var(--gold);
  letter-spacing: 1.5px; text-decoration: none;
  line-height: 1.05; margin: 22px 0 6px;
  transition: color 0.2s;
}
.c-phone-big:hover { color: var(--gold-light); }
.c-phone-label { font-size: 11px; letter-spacing: 3px; color: rgba(255,255,255,0.45); text-transform: uppercase; }
.c-note { font-size: 12.5px; color: rgba(255,255,255,0.4); margin-bottom: 32px; line-height: 1.75; }
.sms-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.22);
  padding: 22px; margin-bottom: 26px;
}
.sms-box-ttl { font-size: 12.5px; font-weight: 700; color: var(--gold); letter-spacing: 1px; margin-bottom: 13px; display: flex; align-items: center; gap: 8px; }
.sms-box ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.sms-box ul li { font-size: 13px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 7px; }
.sms-box ul li::before { content: "·"; color: var(--gold); font-size: 16px; line-height: 1; }
.c-info-list { display: flex; flex-direction: column; gap: 9px; }
.c-info-row { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.55); }
.c-info-row .lbl { font-size: 10px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; min-width: 48px; margin-top: 2px; }

/* FORM */
.form-wrap {
  background: var(--white);
  border-top: 3px solid var(--gold);
  padding: 38px;
}
.form-title { font-family: "Nanum Myeongjo", serif; font-size: 22px; font-weight: 800; color: var(--dark-text); margin-bottom: 4px; }
.form-sub { font-size: 13px; color: var(--mid-text); margin-bottom: 26px; line-height: 1.7; }
.fgroup { margin-bottom: 14px; }
.fgroup label { display: block; font-size: 11px; font-weight: 600; color: var(--mid-text); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; }
.fgroup label .req { color: var(--gold); margin-left: 1px; }
.fgroup input,
.fgroup select,
.fgroup textarea {
  width: 100%;
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.09);
  color: var(--dark-text); padding: 11px 13px;
  font-size: 14px; font-family: "Noto Sans KR", sans-serif;
  outline: none; border-radius: 0;
  appearance: none; -webkit-appearance: none;
  transition: border-color 0.2s, background 0.2s;
}
.fgroup input::placeholder,
.fgroup textarea::placeholder { color: var(--light-text); }
.fgroup input:focus,
.fgroup select:focus,
.fgroup textarea:focus { border-color: var(--gold); background: #fffdf7; }
.fgroup select option { background: var(--white); color: var(--dark-text); }
.fgroup textarea { resize: vertical; min-height: 90px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.privacy { display: flex; align-items: flex-start; gap: 9px; margin: 16px 0; }
.privacy input { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; accent-color: var(--gold); }
.privacy label { font-size: 11.5px; color: var(--light-text); line-height: 1.65; text-transform: none; letter-spacing: 0; }
.submit-btn {
  width: 100%; background: var(--navy-dark); color: var(--white);
  border: none; padding: 15px; font-size: 14.5px; font-weight: 700;
  cursor: pointer; font-family: "Noto Sans KR", sans-serif; letter-spacing: 1px;
  transition: background 0.2s, transform 0.15s;
}
.submit-btn:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-1px); }
.form-success { display: none; text-align: center; padding: 44px 20px; }
.form-success.show { display: block; animation: fadeInUp 0.5s ease; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.success-icon { font-size: 48px; margin-bottom: 16px; display: block; }
.form-success h3 { font-family: "Nanum Myeongjo", serif; font-size: 22px; color: var(--navy-dark); margin-bottom: 10px; }
.form-success p { font-size: 14px; color: var(--mid-text); line-height: 1.75; }
.success-bar {
  width: 100%; height: 3px;
  background: var(--light-gray);
  margin-top: 24px; border-radius: 2px;
  overflow: hidden;
}
.success-bar-fill {
  height: 100%; width: 100%;
  background: var(--gold);
  animation: countdown 5s linear forwards;
}
@keyframes countdown {
  from { width: 100%; }
  to   { width: 0%; }
}
.success-note {
  font-size: 11px; color: var(--light-text);
  margin-top: 8px; letter-spacing: 0.5px;
}


/* ──────────────────────────────────────────
   PROCEDURE SECTION — Light Floral
────────────────────────────────────────── */
.procedure-sec {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}
.procedure-photo {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1586226900887-4fb28c224b57?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 40%;
}
.procedure-overlay {
  position: absolute; inset: 0;
  background: rgba(248, 244, 238, 0.90);
}

/* Timeline wrapper */
.proc-header { text-align: center; margin-bottom: 64px; position: relative; z-index: 2; }
.proc-header .sec-title.on-light { color: var(--dark-text); }
.proc-header .sec-desc.on-light  { color: var(--mid-text); }

.proc-timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  z-index: 2;
}

/* Center spine */
.timeline-spine {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold) 4%, var(--gold) 96%, transparent);
  transform: translateX(-50%);
}

/* Day separator */
.tl-day-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  margin: 44px 0 32px;
}
.tl-day-sep::before,
.tl-day-sep::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.45));
  max-width: calc(50% - 72px);
}
.tl-day-sep::after {
  background: linear-gradient(to left, transparent, rgba(201,168,76,0.45));
}
.tl-day-sep:first-child { margin-top: 0; }
.tl-day-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy-dark);
  color: var(--gold);
  padding: 10px 28px;
  font-family: "Nanum Myeongjo", serif;
  font-size: 18px; font-weight: 800;
  letter-spacing: 3px;
  white-space: nowrap;
  position: relative;
}
.tl-day-badge::before,
.tl-day-badge::after {
  content: ""; display: block;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}
.tl-day-subtitle {
  display: block;
  text-align: center;
  font-size: 14px;
  color: var(--mid-text);
  letter-spacing: 1px;
  margin-bottom: 28px;
  position: relative; z-index: 3;
}

/* Timeline item */
.tl-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  min-height: 60px;
}
.tl-item.tl-right {
  flex-direction: row;
  padding-right: calc(50% + 28px);
}
.tl-item.tl-left {
  flex-direction: row-reverse;
  padding-left: calc(50% + 28px);
}

/* Dot on spine */
.tl-dot {
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--gold);
  z-index: 4;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.tl-item:hover .tl-dot {
  background: var(--gold);
  transform: translateX(-50%) scale(1.2);
}

/* Connector line from dot to card */
.tl-connector {
  position: absolute;
  top: 24px;
  height: 1px;
  background: rgba(201,168,76,0.35);
  width: 24px;
}
.tl-item.tl-right .tl-connector {
  right: calc(50% + 7px);
}
.tl-item.tl-left .tl-connector {
  left: calc(50% + 7px);
}

/* Card */
.tl-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(201,168,76,0.18);
  border-left: 3px solid var(--gold);
  padding: 18px 20px;
  width: 100%;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
}
.tl-item.tl-left .tl-card {
  border-left: none;
  border-right: 3px solid var(--gold);
}
.tl-item:hover .tl-card {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 6px 28px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.tl-badge {
  display: inline-block;
  background: var(--navy-dark);
  color: var(--gold);
  font-size: 14px; font-weight: 700;
  padding: 5px 16px;
  letter-spacing: 1px;
  margin-bottom: 11px;
}
.tl-desc {
  font-size: 15px;
  color: var(--dark-text);
  line-height: 1.95;
  font-weight: 400;
}
.tl-desc strong { color: var(--navy-dark); font-weight: 600; }

/* CTA */
.proc-cta {
  text-align: center;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(0,0,0,0.08);
  position: relative; z-index: 2;
}
.proc-cta p {
  font-size: 15px; color: var(--mid-text);
  margin-bottom: 22px; line-height: 1.7;
}

/* ── Responsive */
@media (max-width: 720px) {
  .timeline-spine { left: 20px; }
  .tl-item.tl-right,
  .tl-item.tl-left {
    flex-direction: row;
    padding-right: 0;
    padding-left: 52px;
  }
  .tl-dot { left: 20px; }
  .tl-connector { left: 27px !important; right: auto !important; width: 16px; }
  .tl-item.tl-left .tl-card { border-left: 3px solid var(--gold); border-right: none; }
  .tl-day-sep::before { background: linear-gradient(to right, transparent, rgba(201,168,76,0.4)); max-width: calc(50% - 60px); }
  .tl-day-sep::after  { background: linear-gradient(to left, transparent, rgba(201,168,76,0.4)); }
}
@media (max-width: 500px) {
  .tl-badge { font-size: 11px; }
  .tl-desc  { font-size: 12px; }
}



/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(201,168,76,0.13);
  padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px; margin-bottom: 52px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.95; max-width: 340px; margin-top: 14px; }
.f-head { font-size: 11px; letter-spacing: 3.5px; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
.f-info { display: flex; flex-direction: column; gap: 9px; }
.f-info-item { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.7; }
.f-info-item strong { color: rgba(255,255,255,0.82); font-size: 16px; font-weight: 600; display: block; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.055);
  padding-top: 22px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.f-copy { font-size: 12px; color: rgba(255,255,255,0.22); letter-spacing: 0.5px; }
.f-links { display: flex; gap: 18px; }
.f-links a { font-size: 12px; color: rgba(255,255,255,0.32); text-decoration: none; transition: color 0.2s; }
.f-links a:hover { color: var(--gold); }

/* ──────────────────────────────────────────
   FLOATING CALL
────────────────────────────────────────── */
.float-call {
  display: none; position: fixed;
  bottom: 22px; right: 22px; z-index: 998;
  flex-direction: column; align-items: flex-end; gap: 9px;
}
.float-lbl {
  background: var(--navy-dark); color: var(--white);
  font-size: 11.5px; font-weight: 600;
  padding: 6px 13px; border-radius: 2px;
  white-space: nowrap; border: 1px solid rgba(201,168,76,0.3);
}
.float-btn {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--gold); display: flex;
  align-items: center; justify-content: center;
  font-size: 22px; text-decoration: none;
  box-shadow: 0 4px 18px rgba(201,168,76,0.42);
  animation: pulse 2.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 4px 18px rgba(201,168,76,0.42); }
  50%      { box-shadow: 0 4px 28px rgba(201,168,76,0.7), 0 0 0 9px rgba(201,168,76,0.1); }
}

/* ──────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 920px) {
  .header { padding: 0 22px; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .stats-layout,
  .corporate-layout,
  .contact-layout { grid-template-columns: 1fr; gap: 44px; }
  .principles-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .product-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .float-call { display: flex; }
  section { padding: 72px 0; }
  .container { padding: 0 22px; }
}
@media (max-width: 600px) {
  .principles-grid,
  .benefits-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .frow { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
  .hero-phone-bar { flex-direction: column; gap: 10px; text-align: center; }
  .form-wrap { padding: 24px 18px; }
}
