/* ========================================
   GPR Renewal Main Page Styles
   ======================================== */

/* --- Variables --- */
:root {
  --green-900: #1f2e1d;
  --green-800: #2a3d27;
  --green-700: #354d31;
  --green-600: #4a6b44;
  --green-500: #6a8a5f;
  --green-50:  #eef2ea;
  --cream-100: #faf6ec;
  --cream-200: #f3ecd9;
  --cream-300: #e8dec3;
  --gold-600:  #c9a82e;
  --gold-500:  #efd355;
  --gold-400:  #f5e285;
  --ink-900:   #1a1a1a;
  --ink-700:   #3a3a3a;
  --ink-500:   #6b6b6b;
  --ink-300:   #b6b6b6;
  --line:      #e6dfcd;

  /* Footer 토큰 — 테마에서 오버라이드 */
  --footer-bg:           #141d12;
  --footer-text:         #a4ab98;
  --footer-text-soft:    #7a8074;
  --footer-text-strong:  #cdd2c8;
  --footer-title:        var(--gold-400);
  --footer-divider:      rgba(255,255,255,0.08);
  --footer-link-hover:   #fff;

  /* 섹션 보조 배경 (Partners 등) */
  --section-soft-bg:     #fbfaf6;
}


*{max-width: 100%;}
/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
body {
  font-family: 'Pretendard', -apple-system, sans-serif;
  color: var(--ink-900);
  background: var(--cream-100);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

/* --- Typography --- */
.serif { font-family: 'Noto Serif KR', serif; }
.batang { font-family: 'Gowun Batang', serif; }

/* --- Container --- */
.rn-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* --- Gold pill badge --- */
.gold-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(239,211,85, 0.14);
  color: var(--gold-600);
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.gold-pill::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}
.gold-pill--dark {
  background: rgba(245,226,133, 0.18);
  color: var(--gold-400);
}


/* ========================================
   HEADER
   ======================================== */
.rn-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.3s, box-shadow 0.3s;
  background: transparent;
}
.rn-header.is-scrolled {
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}
/* 블러는 ::before로 분리 — 헤더에 직접 걸면 자손 fixed(드로어·오버레이)의 기준점이 헤더로 바뀌어 모바일 메뉴 닫기가 깨짐 */
.rn-header.is-scrolled::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(250, 246, 236, 0.96);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

/* Header top bar */
.rn-header__top {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.3s;
}
.rn-header.is-scrolled .rn-header__top {
  border-bottom-color: rgba(0,0,0,0.06);
}
.rn-header__top-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 32px;
  display: flex;
  justify-content: flex-end;
}
.rn-header__user-menu {
  display: flex;
  gap: 6px;
  align-items: center;
}
.rn-header__user-menu li a {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.2s;
  white-space: nowrap;
}
.rn-header__user-menu li a:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
}
.rn-header.is-scrolled .rn-header__user-menu li a {
  color: var(--ink-500);
  border-color: var(--line);
}
.rn-header.is-scrolled .rn-header__user-menu li a:hover {
  color: var(--ink-900);
  border-color: var(--green-700);
  background: var(--cream-200);
}

.rn-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rn-header__logo {
  display: flex;
  align-items: center;
}
.rn-header__logo-img {
  height: 48px;
  width: auto;
  display: none;
}
.rn-header__logo-img.white {
  display: block;
}
.rn-header.is-scrolled .rn-header__logo-img {
  display: block;
}
.rn-header.is-scrolled .rn-header__logo-img.white {
  display: none;
}
/* 회원 사이트 로고 미설정 시 사이트명 텍스트 */
.rn-header__logo-text {
  font-family: 'Noto Serif KR', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  color: #fff;
}
.rn-header.is-scrolled .rn-header__logo-text,
body.rn-sub .rn-header__logo-text {
  color: var(--ink-900);
}

.rn-header__nav {
  display: flex;
  gap: 32px;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  transition: color 0.3s;
}
.rn-header.is-scrolled .rn-header__nav { color: var(--ink-900); }
.rn-header__nav-item {
  position: relative;
  width: 100%;
}
.rn-header__nav-link {
  opacity: 0.9;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.rn-header__nav-arrow { font-size: 10px; opacity: 0.6; }
.rn-header__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 10px;
  padding: 10px 0;
  min-width: 140px;
  background: var(--card-bg,#fff);
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
}
.rn-header__nav-item:hover .rn-header__dropdown { display: block; }
.rn-header__dropdown-link {
  display: block;
  padding: 10px 22px;
  color: var(--ink-900);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.15s;
}
.rn-header__dropdown-link:hover { background: var(--cream-100); }
.rn-header__cta {
  padding: 10px 20px;
  background: var(--green-800);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
  white-space: nowrap;
}
.rn-header__cta:hover { background: var(--green-700); }

/* Hamburger button — hidden on desktop */
.rn-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 60;
}
.rn-header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--card-bg,#fff);
  border-radius: 2px;
  transition: all 0.3s;
}
.rn-header.is-scrolled .rn-header__burger span {
  background: var(--ink-900);
}
.rn-header__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.rn-header__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.rn-header__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile-only user links — hidden on desktop */
.rn-header__mobile-user {
  display: none;
  width: 100%;
}

/* ========================================
   HERO
   ======================================== */
.rn-hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
}
.rn-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.1s ease;
}
.rn-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.rn-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 7s ease-out;
}
.rn-hero__slide.is-active .rn-hero__bg { transform: scale(1.04); }

/* Slide backgrounds — Desktop */
.rn-hero__bg--1 { background-image: url("/images/banner_01.jpg"); }
.rn-hero__bg--2 { background-image: url("https://images.unsplash.com/photo-1542273917363-3b1817f69a2d?auto=format&fit=crop&w=2400&q=80"); }
.rn-hero__bg--3 { background-image: url("https://images.unsplash.com/photo-1476231682828-37e571bc172f?w=2000&q=80&auto=format"); }

/* Slide scrims */
.rn-hero__scrim {
  position: absolute;
  inset: 0;
}
.rn-hero__scrim--1 { background: linear-gradient(180deg,rgba(20,30,18,0.55) 0%,rgba(20,30,18,0.45) 35%,rgba(20,30,18,0.85) 100%); }
.rn-hero__scrim--2 { background: linear-gradient(180deg,rgba(20,30,18,0.5) 0%,rgba(20,30,18,0.25) 35%,rgba(20,30,18,0.85) 100%); }
.rn-hero__scrim--3 { background: linear-gradient(180deg,rgba(20,30,18,0.6) 0%,rgba(20,30,18,0.35) 35%,rgba(20,30,18,0.85) 100%); }
.rn-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rn-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(245,226,133, 0.18);
  border: 1px solid rgba(245,226,133, 0.45);
  color: var(--gold-400);
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 600;
  width: fit-content;
}
.rn-hero__title {
  font-family: 'Noto Serif KR', serif;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 24px 0 0 0;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  text-wrap: pretty;
  max-width: 900px;
  word-break: keep-all;
}
.rn-hero__highlight { color: var(--gold-400); }
.rn-hero__sub {
  font-size: 18px;
  margin-top: 22px;
  opacity: 0.9;
  font-weight: 400;
  max-width: 640px;
  line-height: 1.45;
}
.rn-hero__cta-row {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.rn-hero__cta-primary {
  padding: 16px 32px;
  background: var(--gold-500);
  color: #1f2e1d;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: background 0.2s;
}
.rn-hero__cta-primary:hover { background: var(--gold-600); }
.rn-hero__cta-ghost {
  padding: 16px 28px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
  transition: background 0.2s;
}
.rn-hero__cta-ghost:hover { background: rgba(255,255,255,0.15); }

/* Hero location chip */
.rn-hero__loc-chip {
  position: absolute;
  top: 110px;
  right: 32px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-family: monospace;
  color: #fff;
}
.rn-hero__pin {
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: var(--gold-500);
  transform: rotate(-45deg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Hero controls */
.rn-hero__controls {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rn-hero__page-no {
  font-family: 'Noto Serif KR', serif;
  font-size: 14px;
  letter-spacing: 0.15em;
}
.rn-hero__page-big {
  font-size: 32px;
  font-weight: 600;
  color: var(--gold-400);
}
.rn-hero__page-faded { opacity: 0.5; }
.rn-hero__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.rn-hero__dot {
  height: 3px;
  border-radius: 2px;
  transition: all 0.3s;
  padding: 0;
  width: 8px;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
}
.rn-hero__dot.is-active {
  width: 36px;
  background: var(--gold-400);
}


/* ========================================
   SERVICE LINEUP (QuickMenu)
   ======================================== */
.rn-lineup {
  background: var(--surface-deep,var(--green-900));
  color: #fff;
  padding: 120px 0 110px;
  position: relative;
  overflow: hidden;
}
.rn-lineup__ambient {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 70% 40%, rgba(74,107,68,0.35) 0%, transparent 55%),
                     radial-gradient(ellipse at 20% 90%, rgba(201,168,46,0.18) 0%, transparent 55%);
  pointer-events: none;
}
.rn-lineup__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.rn-lineup__left { padding-right: 12px; }
.rn-lineup__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(245,226,133,0.14);
  border: 1px solid rgba(245,226,133,0.3);
  border-radius: 999px;
  color: var(--gold-400);
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 700;
}
.rn-lineup__title {
  font-family: 'Noto Serif KR', serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  margin: 24px 0 22px 0;
  letter-spacing: -0.02em;
  color: #fff;
  text-wrap: pretty;
  word-break: keep-all;
}
.rn-lineup__highlight { color: var(--gold-400); }
.rn-lineup__lead {
  font-size: 16px;
  line-height: 1.45;
  color: #cdd2c8;
  max-width: 460px;
  word-break: keep-all;
}
.rn-lineup__underline {
  width: 240px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-400) 0%, rgba(245,226,133,0.1) 100%);
  margin-top: 56px;
}

/* Lineup tabs */
.rn-lineup__tabs {
  margin-top: 30px;
  overflow: hidden;
}
.rn-lineup__tabs .swiper-wrapper {
  display: flex;
  flex-direction: column;
}
.rn-lineup__tab {
  display: flex !important;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: transparent;
  border: none;
  border-left: 2px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  text-align: left;
  transition: all 0.25s;
}
.rn-lineup__tab:hover {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.75);
}
.rn-lineup__tab.is-active {
  border-left-color: var(--gold-400);
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.rn-lineup__tab-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255,255,255,0.45);
  transition: color 0.25s;
}
.rn-lineup__tab.is-active .rn-lineup__tab-icon { color: var(--gold-400); }
.rn-lineup__tab-name {
  font-family: 'Noto Serif KR', serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}
.rn-lineup__tab-sub {
  font-size: 11px;
  margin-top: 2px;
  opacity: 0.65;
  letter-spacing: 0.04em;
}

/* Lineup right visual */
.rn-lineup__stage {
  position: relative;
  aspect-ratio: 16/10;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #0a1209;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(245,226,133,0.18) inset;
}
.rn-lineup__stage-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}
.rn-lineup__stage-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.rn-lineup__stage-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 8s ease-out;
}
.rn-lineup__stage-slide.is-active .rn-lineup__stage-img { transform: scale(1.04); }
.rn-lineup__stage-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,30,18,0.35) 0%, rgba(20,30,18,0.05) 50%, rgba(20,30,18,0.6) 100%);
}
.rn-lineup__badge {
  position: absolute;
  top: 26px;
  left: 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245,226,133,0.35);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--gold-400);
  z-index: 2;
}
.rn-lineup__badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-400);
}
.rn-lineup__panel {
  position: absolute;
  bottom: 26px;
  left: 26px;
  right: 26px;
  padding: 22px 26px;
  background: rgba(10,18,9,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245,226,133,0.22);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 2;
}
.rn-lineup__panel-name {
  font-family: 'Noto Serif KR', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.rn-lineup__panel-desc {
  font-size: 13px;
  color: #cdd2c8;
  margin-top: 6px;
  line-height: 1.6;
}
.rn-lineup__panel-price { text-align: right; flex: 0 0 auto; }
.rn-lineup__panel-price-label {
  font-size: 11px;
  color: var(--gold-400);
  letter-spacing: 0.15em;
  font-weight: 700;
}
.rn-lineup__panel-price-num {
  font-family: 'Noto Serif KR', serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-top: 4px;
}
.rn-lineup__panel-price-unit {
  font-size: 14px;
  margin-left: 4px;
  color: #cdd2c8;
}


/* ========================================
   PHOTO STUDIO
   ======================================== */
.rn-photo {
  background: var(--cream-200);
  padding: 120px 0 130px;
  position: relative;
  overflow: hidden;
}
.rn-photo__texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(201,168,46,0.06) 0px, transparent 60%),
                     radial-gradient(circle at 80% 70%, rgba(74,107,68,0.05) 0px, transparent 50%);
  pointer-events: none;
}
.rn-photo__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.rn-photo__title {
  font-family: 'Noto Serif KR', serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--green-900);
  margin: 18px 0 24px 0;
  letter-spacing: -0.01em;
}
.rn-photo__highlight { color: var(--gold-600); }
.rn-photo__body {
  font-size: 16px;
  line-height: 1.45;
  color: var(--ink-700);
  max-width: 480px;
}
.rn-photo__feats {
  margin: 32px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rn-photo__feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-900);
}
.rn-photo__check {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}
.rn-photo__price-tag {
  margin-top: 36px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.rn-photo__price-from {
  font-size: 13px;
  color: var(--ink-500);
  letter-spacing: 0.1em;
}
.rn-photo__price-num {
  font-family: 'Noto Serif KR', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--green-900);
  line-height: 1;
}
.rn-photo__price-unit {
  font-size: 18px;
  color: var(--ink-700);
  font-weight: 600;
}
.rn-photo__cta {
  margin-top: 36px;
  padding: 18px 32px;
  background: var(--green-800);
  color: #fff;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(31,46,29,0.25);
  transition: background 0.2s;
}
.rn-photo__cta:hover { background: var(--green-700); }

/* Comparison frame */
.rn-photo__frame {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(31,46,29,0.25), 0 0 0 1px rgba(0,0,0,0.05);
  background: #000;
  cursor: ew-resize;
  user-select: none;
}
.rn-photo__img-full {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rn-photo__after-clip {
  position: absolute;
  inset: 0;
}
.rn-photo__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 16px rgba(0,0,0,0.3);
  transform: translateX(-1px);
}
.rn-photo__handle {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-500);
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  cursor: ew-resize;
}
.rn-photo__label {
  position: absolute;
  top: 20px;
  padding: 6px 14px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.rn-photo__label--before { left: 20px; }
.rn-photo__label--after { right: 20px; }
.rn-photo__caption {
  margin-top: 22px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-500);
  letter-spacing: 0.04em;
}
.rn-photo__thumbs {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  justify-content: center;
}
.rn-photo__thumb {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.55;
  cursor: pointer;
  transition: all 0.2s;
}
.rn-photo__thumb.is-active {
  border-color: var(--gold-500);
  opacity: 1;
}
.rn-photo__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ========================================
   DIGITAL MEMORIAL
   ======================================== */
.rn-memorial {
  position: relative;
  padding: 160px 0 170px;
  background: var(--surface-deep,var(--green-900));
  color: #fff;
  overflow: hidden;
}
.rn-memorial__bg {
  position: absolute;
  inset: 0;
  background-image: url("/images/tribute_bg.png");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: grayscale(0.3);
}
.rn-memorial__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,46,29,0.5) 0%, rgba(31,46,29,0.8) 50%, rgba(31,46,29,0.7) 100%);
}
.rn-memorial__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.rn-memorial__title {
  font-family: 'Noto Serif KR', serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
  margin: 20px 0 28px 0;
  letter-spacing: -0.01em;
  word-break: keep-all;
}
.rn-memorial__highlight { color: var(--gold-400); }
.rn-memorial__lead {
  font-size: 17px;
  line-height: 1.45;
  color: #d6dccf;
  max-width: 540px;
}
.rn-memorial__stats {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(245,226,133,0.25);
  border-bottom: 1px solid rgba(245,226,133,0.25);
}
.rn-memorial__stat {
  padding: 24px 14px;
  text-align: left;
  border-right: 1px solid rgba(245,226,133,0.18);
}
.rn-memorial__stat:last-child { border-right: none; }
.rn-memorial__stat-num {
  font-family: 'Noto Serif KR', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}
.rn-memorial__stat-num span {
  font-size: 18px;
  font-weight: 500;
}
.rn-memorial__stat-label {
  font-size: 13px;
  color: #b8c0ad;
  margin-top: 10px;
  letter-spacing: 0.05em;
}
.rn-memorial__cta-row {
  display: flex;
  gap: 14px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.rn-memorial__cta-primary {
  padding: 17px 32px;
  background: var(--gold-500);
  color: #1f2e1d;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: background 0.2s;
}
.rn-memorial__cta-primary:hover { background: var(--gold-600); }
.rn-memorial__cta-ghost {
  padding: 17px 28px;
  background: transparent;
  color: #fff;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.4);
  transition: background 0.2s;
}
.rn-memorial__cta-ghost:hover { background: rgba(255,255,255,0.08); }

/* Phone mockup */
.rn-memorial__phone-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.rn-memorial__phone {
  position: relative;
  width: 320px;
  height: 660px;
  border-radius: 46px;
  background: #0a0a0a;
  padding: 12px;
  box-shadow: 0 50px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05) inset;
}
.rn-memorial__notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 26px;
  border-radius: 14px;
  background: #000;
  z-index: 5;
}
.rn-memorial__screen {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(180deg, #2a3d27 0%, #1f2e1d 100%);
  position: relative;
  color: #fff;
  font-family: Pretendard, sans-serif;
}
.rn-memorial__screen-capture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.rn-memorial__status-bar {
  position: relative;
  z-index: 2;
  padding: 14px 22px 0;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}
.rn-memorial__app-header {
  position: relative;
  z-index: 2;
  padding: 40px 22px 12px;
  text-align: center;
}
.rn-memorial__app-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold-400);
  font-weight: 700;
}
.rn-memorial__app-title {
  font-family: 'Noto Serif KR', serif;
  font-size: 22px;
  font-weight: 600;
  margin-top: 8px;
  line-height: 1.4;
}
.rn-memorial__portrait {
  margin: 24px auto 0;
  width: 110px;
  height: 140px;
  border-radius: 4px;
  overflow: hidden;
  border: 4px solid rgba(245,226,133,0.6);
  background: #000;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.rn-memorial__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.2) contrast(1.05);
}
.rn-memorial__name {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 14px;
  font-family: 'Noto Serif KR', serif;
  font-size: 18px;
  font-weight: 700;
}
.rn-memorial__dates {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 4px;
  font-size: 11px;
  opacity: 0.75;
  letter-spacing: 0.1em;
}
.rn-memorial__flower-row {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #dcb978;
}
.rn-memorial__flower-count {
  display: flex;
  align-items: center;
  gap: 5px;
}
.rn-memorial__msg-card {
  position: relative;
  z-index: 2;
  margin: 18px 16px 0;
  padding: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245,226,133,0.2);
  border-radius: 10px;
  backdrop-filter: blur(6px);
}
.rn-memorial__msg-item {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 11px;
}
.rn-memorial__msg-item:last-child { margin-bottom: 0; }
.rn-memorial__avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a25a, #b08a3e);
  flex: 0 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
}
.rn-memorial__msg-name {
  color: var(--gold-400);
  font-weight: 700;
  font-size: 10px;
}
.rn-memorial__msg-text {
  line-height: 1.5;
  opacity: 0.9;
}
.rn-memorial__tab-bar {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 3;
  height: 56px;
  border-radius: 28px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245,226,133,0.18);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 8px;
}
.rn-memorial__tab-item {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #dcb978;
  font-size: 16px;
}
.rn-memorial__tab-item.is-active {
  background: var(--gold-500);
  color: #1f2e1d;
}

/* Floating cards */
.rn-memorial__float-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245,226,133,0.25);
  border-radius: 12px;
  padding: 14px 18px;
  backdrop-filter: blur(10px);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
.rn-memorial__float-card--top {
  top: 30px;
  right: -10px;
  width: 200px;
}
.rn-memorial__float-card--bottom {
  bottom: 80px;
  left: -30px;
  width: 220px;
}
.rn-memorial__float-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold-400);
  font-weight: 700;
}
.rn-memorial__float-title {
  font-size: 13px;
  font-weight: 600;
  margin-top: 6px;
  line-height: 1.4;
}
.rn-memorial__float-num {
  font-family: 'Noto Serif KR', serif;
  font-size: 24px;
  color: var(--gold-400);
  font-weight: 700;
  margin-top: 4px;
}
.rn-memorial__float-sub {
  font-size: 11px;
  color: #b8c0ad;
  margin-top: 4px;
}
.rn-memorial__float-coord {
  font-size: 11px;
  font-family: monospace;
  color: #dcb978;
  margin-top: 6px;
}


/* ========================================
   GRAVE DOCTOR
   ======================================== */
.rn-doctor {
  background: var(--cream-100);
  padding: 130px 0 140px;
  position: relative;
  overflow: hidden;
}
.rn-doctor__ornament {
  position: absolute;
  top: 0;
  right: 0;
  width: 380px;
  height: 380px;
  background-image: radial-gradient(circle, rgba(201,168,46,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.rn-doctor__top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-end;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.rn-doctor__title {
  font-family: 'Noto Serif KR', serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--green-900);
  margin: 20px 0 0 0;
  letter-spacing: -0.01em;
  text-wrap: pretty;
  word-break: keep-all;
}
.rn-doctor__highlight { color: var(--gold-600); }
.rn-doctor__body {
  font-size: 16px;
  line-height: 1.45;
  color: var(--ink-700);
  max-width: 460px;
}

/* Hero visual */
.rn-doctor__hero-visual {
  margin-top: 56px;
  position: relative;
  aspect-ratio: 21/10;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #0a1209;
  box-shadow: 0 30px 60px rgba(31,46,29,0.18);
}
.rn-doctor__hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
}
.rn-doctor__hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,30,18,0.85) 0%, rgba(20,30,18,0.4) 50%, rgba(20,30,18,0.7) 100%);
}
.rn-doctor__hero-content {
  position: absolute;
  inset: 0;
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}
.rn-doctor__hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(245,226,133,0.18);
  border: 1px solid rgba(245,226,133,0.4);
  border-radius: 999px;
  color: var(--gold-400);
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 700;
  width: fit-content;
}
.rn-doctor__hero-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-400);
}
.rn-doctor__hero-quote {
  font-family: 'Noto Serif KR', serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.5;
  /* max-width: 720px; */
  text-wrap: pretty;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.rn-doctor__hero-quote-high { color: var(--gold-400); }
.rn-doctor__hero-stats {
  display: flex;
  gap: 50px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
  width: fit-content;
}
.rn-doctor__hero-stat-num {
  font-family: 'Noto Serif KR', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}
.rn-doctor__hero-stat-num span { font-size: 16px; font-weight: 500; }
.rn-doctor__hero-stat-label {
  font-size: 12px;
  color: #cdd2c8;
  margin-top: 8px;
  letter-spacing: 0.05em;
}

/* Service cards */
.rn-doctor__services-title {
  margin-top: 90px;
  font-family: 'Noto Serif KR', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--green-900);
  text-align: center;
  letter-spacing: -0.01em;
}
.rn-doctor__services-sub {
  font-size: 14px;
  color: var(--ink-500);
  text-align: center;
  margin-top: 12px;
}
.rn-doctor__services-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rn-doctor__svc-card {
  background: var(--card-bg,#fff);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px 28px 30px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
  cursor: pointer;
}
.rn-doctor__svc-card:hover {
  border-color: var(--green-700);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(31,46,29,0.08);
}
.rn-doctor__svc-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream-200);
  border: 1px solid rgba(201,168,46,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-800);
  margin-bottom: 24px;
}
.rn-doctor__svc-name {
  font-family: 'Noto Serif KR', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 12px;
}
.rn-doctor__svc-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-700);
  flex: 1;
}
.rn-doctor__svc-footer {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rn-doctor__svc-price {
  font-family: 'Noto Serif KR', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--green-900);
}
.rn-doctor__svc-price-unit {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-500);
  margin-left: 4px;
}
.rn-doctor__svc-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream-200);
  color: var(--green-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Process */
.rn-doctor__process {
  margin-top: 90px;
  padding: 50px 56px;
  background: var(--card-bg,#fff);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.rn-doctor__process-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.rn-doctor__process-title {
  font-family: 'Noto Serif KR', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--green-900);
  margin-top: 14px;
}
.rn-doctor__process-cta {
  padding: 14px 26px;
  background: var(--green-800);
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
}
.rn-doctor__process-cta:hover { background: var(--green-700); }
.rn-doctor__process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.rn-doctor__p-step {
  padding: 10px 22px;
  position: relative;
}
.rn-doctor__p-step-num {
  font-family: 'Noto Serif KR', serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  font-weight: 700;
  color: var(--gold-600);
  margin-bottom: 14px;
}
.rn-doctor__p-step-name {
  font-family: 'Noto Serif KR', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 8px;
}
.rn-doctor__p-step-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-700);
}
.rn-doctor__p-step-arrow {
  position: absolute;
  top: 8px;
  right: -6px;
  color: var(--gold-500);
  font-size: 14px;
  font-weight: 700;
}


/* ========================================
   BRANCH OWNER
   ======================================== */
.rn-owner {
  position: relative;
  background: var(--surface-deep,var(--green-900));
  color: #fff;
  padding: 140px 0 150px;
  overflow: hidden;
}
.rn-owner__bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1473773508845-188df298d2d1?auto=format&fit=crop&w=2400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.rn-owner__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,46,29,0.95) 0%, rgba(20,30,18,0.98) 100%);
}
.rn-owner__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.rn-owner__title {
  font-family: 'Noto Serif KR', serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.3;
  margin: 24px auto 22px;
  letter-spacing: -0.01em;
  max-width: 900px;
}
.rn-owner__highlight { color: var(--gold-400); }
.rn-owner__lead {
  font-size: 17px;
  line-height: 1.45;
  color: #cdd2c8;
  max-width: 640px;
  margin: 0 auto;
}

/* Revenue flow */
.rn-owner__flow {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.rn-owner__flow-card {
  padding: 36px 22px 30px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,226,133,0.2);
  text-align: center;
  position: relative;
}
.rn-owner__flow-card:first-child { border-radius: 8px 0 0 8px; }
.rn-owner__flow-card:last-child { border-radius: 0 8px 8px 0; }
.rn-owner__flow-card:not(:last-child) { border-right: none; }
.rn-owner__flow-num {
  font-family: 'Noto Serif KR', serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-400);
  letter-spacing: 0.25em;
  margin-bottom: 14px;
}
.rn-owner__flow-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(245,226,133,0.12);
  border: 1px solid rgba(245,226,133,0.3);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.rn-owner__flow-name {
  font-family: 'Noto Serif KR', serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.rn-owner__flow-amt {
  font-family: 'Noto Serif KR', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-400);
}
.rn-owner__flow-amt-unit {
  font-size: 12px;
  font-weight: 500;
  margin-left: 4px;
  color: #cdd2c8;
}
.rn-owner__flow-desc {
  font-size: 12px;
  color: #a4ab98;
  margin-top: 6px;
  line-height: 1.5;
}
.rn-owner__flow-arrow {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  color: var(--gold-400);
  font-size: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-deep,var(--green-900));
}

/* Sum bar */
.rn-owner__sum-bar {
  margin-top: 30px;
  padding: 32px 40px;
  background: linear-gradient(135deg, rgba(245,226,133,0.18) 0%, rgba(201,168,46,0.08) 100%);
  border: 1px solid rgba(245,226,133,0.4);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
  align-items: center;
}
.rn-owner__sum-col { text-align: left; }
.rn-owner__sum-col--center { text-align: center; }
.rn-owner__sum-col--right { text-align: right; }
.rn-owner__sum-label {
  font-size: 12px;
  color: #cdd2c8;
  letter-spacing: 0.15em;
  font-weight: 600;
}
.rn-owner__sum-value {
  font-family: 'Noto Serif KR', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--gold-400);
  margin-top: 6px;
}
.rn-owner__sum-value span { font-size: 18px; font-weight: 500; }
.rn-owner__sum-sub {
  font-size: 13px;
  color: #cdd2c8;
  margin-top: 4px;
}
.rn-owner__sum-desc {
  font-size: 14px;
  color: #dcd8cc;
  margin-top: 8px;
  line-height: 1.6;
}

/* CTA block */
.rn-owner__cta-block {
  margin-top: 80px;
  padding: 60px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(245,226,133,0.35);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
  position: relative;
}
.rn-owner__cta-title {
  font-family: 'Noto Serif KR', serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  word-break: keep-all;
}
.rn-owner__cta-list {
  margin: 24px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rn-owner__cta-li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #dcd8cc;
}
.rn-owner__cta-check {
  color: var(--gold-400);
  font-weight: 700;
}
.rn-owner__price-card {
  padding: 34px 30px;
  background: var(--gold-500);
  color: #1f2e1d;
  border-radius: 8px;
  box-shadow: 0 24px 50px rgba(245,226,133,0.25);
  position: relative;
}
.rn-owner__price-ribbon {
  position: absolute;
  top: -14px;
  right: 24px;
  padding: 6px 14px;
  background: var(--surface-deep,var(--green-900));
  color: var(--gold-400);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  border-radius: 999px;
}
.rn-owner__price-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--green-800);
}
.rn-owner__price-cross {
  font-size: 16px;
  color: var(--green-800);
  text-decoration: line-through;
  opacity: 0.5;
  margin-top: 10px;
}
.rn-owner__price-main {
  font-family: 'Noto Serif KR', serif;
  font-size: 56px;
  font-weight: 700;
  color: #1f2e1d;
  line-height: 1;
  margin-top: 6px;
}
.rn-owner__price-main span {
  font-size: 22px;
  font-weight: 600;
  margin-left: 4px;
}
.rn-owner__price-small {
  font-size: 13px;
  color: var(--green-900);
  font-weight: 600;
  margin-top: 12px;
  line-height: 1.5;
}
.rn-owner__price-cta {
  margin-top: 22px;
  width: 100%;
  padding: 18px;
  background: var(--surface-deep,var(--green-900));
  color: #fff;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s;
}
.rn-owner__price-cta:hover { background: var(--green-800); }


/* ========================================
   FOOTER
   ======================================== */
.rn-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 70px 0 36px;
  font-size: 13px;
}
.rn-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--footer-divider);
}
.rn-footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.rn-footer__logo-img {
  height: 36px;
  width: auto;
}
.rn-footer__desc {
  line-height: 1.85;
  max-width: 360px;
}
.rn-footer__info {
  margin-top: 22px;
  font-size: 12px;
  color: var(--footer-text-soft);
  line-height: 1.8;
}
.rn-footer__col-title {
  font-family: 'Noto Serif KR', serif;
  color: var(--footer-title);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 18px;
}
.rn-footer__col-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rn-footer__col-item { color: var(--footer-text-strong); font-size: 13px; }
.rn-footer__col-item a { color: inherit; }
.rn-footer__col-item a:hover { color: var(--footer-link-hover); }
.rn-footer__bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--footer-text-soft);
  flex-wrap: wrap;
  gap: 16px;
}
.rn-footer__legal {
  display: flex;
  gap: 18px;
}
.rn-footer__legal a { color: var(--footer-text); }
.rn-footer__legal a:hover { color: var(--footer-link-hover); }


/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .rn-lineup__inner { grid-template-columns: 1fr; gap: 40px; }
  .rn-lineup__left {padding-right: 0;width: 100%;}
  .rn-memorial__inner { grid-template-columns: 1fr; gap: 60px; }
  .rn-photo__inner { grid-template-columns: 1fr; gap: 50px; }
  .rn-doctor__top-row { grid-template-columns: 1fr; gap: 24px; }
  .rn-owner__flow { grid-template-columns: repeat(2, 1fr); }
  .rn-owner__flow-card:first-child { border-radius: 8px 0 0 0; }
  .rn-owner__flow-card:nth-child(2) { border-radius: 0 8px 0 0; border-right: 1px solid rgba(245,226,133,0.2); }
  .rn-owner__flow-card:nth-child(3) { border-radius: 0 0 0 8px; }
  .rn-owner__flow-card:last-child { border-radius: 0 0 8px 0; }
  .rn-owner__cta-block { grid-template-columns: 1fr; gap: 40px; }
  .rn-owner__sum-bar { grid-template-columns: 1fr; text-align: center; }
  .rn-owner__sum-col,
  .rn-owner__sum-col--center,
  .rn-owner__sum-col--right { text-align: center; }
  .rn-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .rn-hero__content,
  .rn-container { padding: 0 16px; }
  .rn-hero__cta-primary,
  .rn-hero__cta-ghost,
  .rn-photo__cta,
  .rn-hero__cta-primary, .rn-hero__cta-ghost, .rn-memorial__cta-primary, .rn-memorial__cta-ghost{
    font-size: 14px;
  }

  /* Hero — mobile backgrounds (smaller files, mobile-optimized crop) */
  .rn-hero__bg--1 { background-image: url("/images/m_banner_01.jpg"); }
  /* .rn-hero__bg--2 { background-image: url("/images/m_banner_02.jpg"); } */
  /* .rn-hero__bg--3 { background-image: url("/images/m_banner_03.jpg"); } */

  .rn-header__top { display: none; }

  /* Hamburger visible */
  .rn-header__burger { display: flex; }

  /* Mobile nav drawer */
  .rn-header__nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--surface-deep,var(--green-900));
    padding: 80px 28px 40px;
    gap: 0;
    color: #fff;
    transition: right 0.35s ease;
    overflow-y: auto;
    z-index: 55;
    box-shadow: -4px 0 20px rgba(0,0,0,0.25);
  }
  .rn-header__nav.is-open {
    right: 0;
  }
  .rn-header__nav-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .rn-header__nav-link {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    opacity: 1;
    color: #fff;
  }
  .rn-header__dropdown {
    display: none !important;
  }
  .rn-header__nav-arrow {
    display: none;
  }

  /* Mobile user menu */
  .rn-header__mobile-user {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.15); */
  }
  .rn-header__mobile-link {
    display: block;
    padding: 12px 0;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  /* Mobile contact numbers */
  .rn-header__mobile-contact {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .rn-header__mobile-contact-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .rn-header__mobile-phone {
    display: block;
    padding: 8px 0;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.02em;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .rn-header__mobile-phone:last-child { border-bottom: none; }
  .rn-header__mobile-phone:hover { color: #fff; }

  /* CTA in mobile nav */
  .rn-header__nav .rn-header__cta {
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }

  /* Overlay behind drawer */
  .rn-header__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 52;
  }
  .rn-header__overlay.is-open {
    display: block;
  }
  .rn-hero__title { font-size: 30px; }
  .rn-hero__sub { font-size: 15px; word-break: keep-all;}
  .rn-hero__loc-chip { display: none; }
  .rn-lineup,
  .rn-photo,
  .rn-memorial,
  .rn-doctor,
  .rn-owner{
    padding:80px 0;
  }
  .rn-lineup__title { font-size: 32px; }
  .rn-lineup__tabs .swiper-wrapper {
    flex-direction: row;
  }
  .rn-lineup__tab {
    border-left: none;
    border-top: 2px solid rgba(255,255,255,0.12);
    flex-direction: column;
    padding: 14px 10px;
    gap: 6px;
    flex-shrink: 0;
  }
  .rn-lineup__tab.is-active { border-left: none; border-top-color: var(--gold-400); }
  .rn-lineup__stage { max-width: 100%; }
  .rn-photo__title { font-size: 30px; }
  .rn-photo__price-num { font-size: 40px; }
  .rn-memorial__title { font-size: 32px; }
  .rn-memorial__phone { width: 260px; height: 540px; border-radius: 38px; }
  .rn-memorial__float-card { display: none; }
  .rn-doctor__title { font-size: 30px; }
  .rn-doctor__hero-content {padding: 30px;}
  .rn-doctor__hero-quote { font-size: 20px; }
  .rn-doctor__services-grid { grid-template-columns: 1fr; }
  .rn-doctor__process-grid { grid-template-columns: repeat(2, 1fr); }
  .rn-doctor__process-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .rn-owner__title { font-size: 32px; }
  .rn-owner__flow { grid-template-columns: 1fr; }
  .rn-owner__flow-card { border-radius: 8px !important; border-right: 1px solid rgba(245,226,133,0.2) !important; margin-bottom: -1px; }
  .rn-owner__flow-arrow { display: none; }
  .rn-owner__cta-block { padding: 30px; }
  .rn-owner__cta-title { font-size: 24px; }
  .rn-owner__price-main { font-size: 40px; }
  .rn-footer__top { grid-template-columns: 1fr; }
  .rn-footer__bottom { flex-direction: column; align-items: flex-start; }


  .rn-hero__cta-row{
    gap: 10px;
    flex-wrap: unset;
  }
  .rn-hero__cta-primary,
  .rn-hero__cta-ghost,
  .rn-memorial__cta-primary,
  .rn-memorial__cta-ghost{
    padding:10px;
    width: calc(50% - 5px);
    height: 45px;
  }

  .rn-memorial__cta-row{
    flex-wrap: unset;
  }

  .rn-lineup__tabs{
    overflow: visible !important
  }
  .rn-lineup__tab{
    width: 140px !important;
  }
  .rn-lineup__inner{
    display: flex;
    flex-direction: column;
  }
  .rn-lineup__stage{
    aspect-ratio: unset;
    height: 330px;
  }
  .rn-lineup__panel{
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }

  .rn-doctor__hero-visual{
    aspect-ratio: 2 / 1.5;
  }
  .rn-doctor__hero-stats{
    display: none;
  }
  .rn-doctor__services-title{
    margin-top: 45px;
    font-size: 22px;
    word-break: keep-all;
  }

  .rn-owner__title{
    word-break: keep-all;
    font-size: 28px;
  }
}
