@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@500;600&display=swap");

:root {
  --gju-forest: #1f3a32;
  --gju-forest-soft: #36574b;
  --gju-clay: #a65e3b;
  --gju-clay-light: #d3a18a;
  --gju-paper: #f2efe8;
  --gju-paper-deep: #e7e0d4;
  --gju-ink: #171a18;
  --gju-muted: #66706b;
  --gju-line: #d9ddd7;
  --gju-white: #ffffff;
  --gju-focus: #dd7b4c;
  --gju-header-h: 76px;
  --gju-max: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--gju-header-h) + 24px);
}

body {
  margin: 0;
  color: var(--gju-ink);
  background: var(--gju-white);
  font-family: "Pretendard", "Apple SD Gothic Neo", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

body.gju-menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

button {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  stroke-width: 1.8;
}

:focus-visible {
  outline: 3px solid var(--gju-focus);
  outline-offset: 3px;
}

.gju-skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--gju-ink);
  color: var(--gju-white);
}

.gju-skip-link:focus {
  transform: translateY(0);
}

.gju-wrap {
  width: min(var(--gju-max), calc(100% - 64px));
  margin-inline: auto;
}

.gju-narrow {
  width: min(860px, calc(100% - 64px));
  margin-inline: auto;
}

.gju-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gju-clay);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.gju-eyebrow::before {
  width: 24px;
  height: 1px;
  background: currentColor;
  content: "";
}

.gju-section {
  padding-block: 120px;
}

.gju-section-paper {
  background: var(--gju-paper);
}

.gju-section-dark {
  background: var(--gju-ink);
  color: var(--gju-white);
}

.gju-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}

.gju-section-head h2,
.gju-copy h2 {
  margin: 14px 0 0;
  font-size: 42px;
  line-height: 1.35;
  letter-spacing: 0;
}

.gju-section-head > p,
.gju-copy > p {
  margin: 0;
  color: var(--gju-muted);
  font-size: 17px;
  line-height: 1.85;
}

.gju-section-dark .gju-section-head > p {
  color: #afb8b4;
}

.gju-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid var(--gju-forest);
  border-radius: 2px;
  background: transparent;
  color: var(--gju-forest);
  font-size: 15px;
  font-weight: 750;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.gju-btn:hover {
  background: #edf1ef;
}

.gju-btn-primary {
  background: var(--gju-forest);
  color: var(--gju-white);
}

.gju-btn-primary:hover {
  background: var(--gju-forest-soft);
}

.gju-btn-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--gju-white);
}

.gju-btn-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.gju-btn > svg,
.gju-icon-btn > svg,
.gju-mobile-action > svg {
  display: block;
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 auto;
}

.gju-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--gju-header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(217, 221, 215, 0.8);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease;
}

.gju-site-header.gju-scrolled {
  box-shadow: 0 8px 22px rgba(23, 26, 24, 0.07);
}

.gju-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.gju-logo {
  min-width: 180px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 21px;
  font-weight: 850;
  line-height: 1;
}

.gju-logo-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 34px;
  background: var(--gju-forest);
  color: var(--gju-white);
  font-family: "Noto Serif KR", serif;
  font-size: 17px;
  line-height: 1;
}

.gju-desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 650;
}

.gju-desktop-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.gju-desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--gju-clay);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.gju-desktop-nav a:hover::after,
.gju-desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.gju-header-cta {
  min-height: 44px;
}

.gju-icon-btn {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--gju-line);
  border-radius: 2px;
  background: var(--gju-white);
  line-height: 0;
  cursor: pointer;
}

.gju-mobile-menu {
  position: fixed;
  inset: var(--gju-header-h) 0 0;
  z-index: 49;
  display: none;
  background: var(--gju-white);
}

.gju-mobile-menu.gju-open {
  display: block;
}

.gju-mobile-menu nav {
  display: grid;
  padding: 24px 32px;
}

.gju-mobile-menu nav a {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--gju-line);
  font-size: 20px;
  font-weight: 700;
}

.gju-mobile-menu .gju-menu-contact {
  padding: 26px 32px;
  background: var(--gju-paper);
}

.gju-hero {
  min-height: min(780px, calc(100svh - 116px));
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  overflow: hidden;
}

.gju-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 72px 76px clamp(32px, 6vw, 88px);
}

.gju-hero h1 {
  margin: 22px 0 24px;
  font-size: 58px;
  line-height: 1.2;
  letter-spacing: 0;
}

.gju-hero-copy > p {
  max-width: 520px;
  margin: 0;
  color: var(--gju-muted);
  font-size: 18px;
  line-height: 1.85;
}

.gju-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.gju-hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--gju-muted);
  font-size: 13px;
}

.gju-hero-note svg {
  width: 16px;
  height: 16px;
  color: var(--gju-clay);
}

.gju-hero-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #25342e;
}

.gju-hero-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gju-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(31, 58, 50, 0.12), transparent 52%);
  content: "";
}

.gju-year-rail {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.gju-year-item {
  min-height: 96px;
  padding: 17px 20px;
  border-right: 1px solid var(--gju-line);
}

.gju-year-item:last-child {
  border-right: 0;
}

.gju-year-item strong {
  display: block;
  color: var(--gju-clay);
  font-family: "Noto Serif KR", serif;
  font-size: 24px;
  line-height: 1.25;
}

.gju-year-item span {
  color: #5f6864;
  font-size: 12px;
}

.gju-succession {
  background: var(--gju-forest);
  color: var(--gju-white);
}

.gju-succession-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.gju-succession article {
  min-height: 240px;
  padding: 42px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.gju-succession article:last-child {
  border-right: 0;
}

.gju-succession strong {
  color: var(--gju-clay-light);
  font-family: "Noto Serif KR", serif;
  font-size: 42px;
  line-height: 1.2;
}

.gju-succession h2 {
  margin: 18px 0 8px;
  font-size: 19px;
}

.gju-succession p {
  margin: 0;
  color: #bdc9c4;
  font-size: 14px;
  line-height: 1.75;
}

.gju-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--gju-line);
  border-bottom: 1px solid var(--gju-line);
}

.gju-principle {
  min-height: 248px;
  padding: 32px;
  border-right: 1px solid var(--gju-line);
}

.gju-principle:last-child {
  border-right: 0;
}

.gju-principle > span {
  color: var(--gju-clay);
  font-size: 13px;
  font-weight: 800;
}

.gju-principle h3 {
  margin: 44px 0 10px;
  font-size: 21px;
}

.gju-principle p {
  margin: 0;
  color: var(--gju-muted);
  font-size: 15px;
}

.gju-process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 78px;
  align-items: stretch;
}

.gju-process-media {
  position: relative;
  min-height: 660px;
  overflow: hidden;
}

.gju-process-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gju-process-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 14px 16px;
  background: rgba(23, 26, 24, 0.8);
  color: #e8ecea;
  font-size: 12px;
  backdrop-filter: blur(8px);
}

.gju-process-panel {
  align-self: center;
}

.gju-process-panel h2 {
  margin: 15px 0 32px;
  font-size: 42px;
  line-height: 1.35;
}

.gju-demo-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 28px;
  border-top: 1px solid #c8cec8;
  border-bottom: 1px solid #c8cec8;
}

.gju-demo-metric {
  padding: 18px 14px;
  border-right: 1px solid #c8cec8;
}

.gju-demo-metric:last-child {
  border-right: 0;
}

.gju-demo-metric strong {
  display: block;
  color: var(--gju-clay);
  font-family: "Noto Serif KR", serif;
  font-size: 26px;
  line-height: 1.25;
}

.gju-demo-metric span {
  color: var(--gju-muted);
  font-size: 12px;
}

.gju-process-list {
  border-top: 1px solid #c8cec8;
}

.gju-process-step {
  width: 100%;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 0;
  padding: 21px 0;
  border: 0;
  border-bottom: 1px solid #c8cec8;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.gju-process-step > span:first-child {
  color: var(--gju-clay);
  font-size: 13px;
  font-weight: 800;
}

.gju-process-step strong {
  font-size: 18px;
}

.gju-process-step > svg {
  width: 19px;
  height: 19px;
  transition: transform 180ms ease;
}

.gju-process-step[aria-expanded="true"] > svg {
  transform: rotate(45deg);
}

.gju-process-answer {
  display: none;
  padding: 0 28px 20px 56px;
  border-bottom: 1px solid #c8cec8;
  color: var(--gju-muted);
  font-size: 14px;
}

.gju-process-answer.gju-open {
  display: block;
}

.gju-fields-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 28px;
}

.gju-fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--gju-line);
  border-left: 1px solid var(--gju-line);
}

.gju-field {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border: 0;
  border-right: 1px solid var(--gju-line);
  border-bottom: 1px solid var(--gju-line);
  background: var(--gju-white);
  text-align: left;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.gju-field:hover {
  background: #f5f7f6;
}

.gju-field[aria-selected="true"] {
  background: var(--gju-forest);
  color: var(--gju-white);
}

.gju-field-top {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.gju-field-num {
  color: var(--gju-clay);
  font-size: 11px;
  font-weight: 800;
}

.gju-field[aria-selected="true"] .gju-field-num {
  color: var(--gju-clay-light);
}

.gju-field-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  border: 1px solid var(--gju-line);
  line-height: 0;
}

.gju-field[aria-selected="true"] .gju-field-icon {
  border-color: rgba(255, 255, 255, 0.35);
}

.gju-field-icon > i,
.gju-field-icon > svg {
  display: block;
  width: 17px;
  height: 17px;
  margin: 0;
}

.gju-field h3 {
  margin: auto 0 0;
  font-size: 19px;
}

.gju-field-detail {
  min-height: 532px;
  display: flex;
  flex-direction: column;
  padding: 36px;
  background: var(--gju-paper);
}

.gju-field-detail small {
  color: var(--gju-clay);
  font-size: 12px;
  font-weight: 800;
}

.gju-field-detail h3 {
  margin: 14px 0 20px;
  font-size: 31px;
}

.gju-field-detail p {
  margin: 0;
  color: var(--gju-muted);
  font-size: 15px;
}

.gju-field-detail ul {
  display: grid;
  gap: 10px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.gju-field-detail li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
}

.gju-field-detail li::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gju-clay);
  content: "";
}

.gju-field-detail .gju-btn {
  margin-top: auto;
}

.gju-legacy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 78px;
  align-items: center;
}

.gju-record-stack {
  min-height: 580px;
  position: relative;
}

.gju-record {
  position: absolute;
  overflow: hidden;
  border: 10px solid var(--gju-white);
  box-shadow: 0 18px 40px rgba(23, 26, 24, 0.12);
}

.gju-record:first-child {
  top: 0;
  left: 0;
  width: 68%;
  height: 76%;
}

.gju-record:last-child {
  right: 0;
  bottom: 0;
  width: 56%;
  height: 58%;
}

.gju-record img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gju-record-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 12px 14px;
  background: rgba(23, 26, 24, 0.78);
  color: var(--gju-white);
  font-size: 12px;
}

.gju-legacy-copy h2 {
  margin: 15px 0 24px;
  font-size: 42px;
  line-height: 1.35;
}

.gju-legacy-copy > p {
  color: var(--gju-muted);
}

.gju-timeline {
  margin-top: 30px;
  border-top: 1px solid var(--gju-line);
}

.gju-time-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gju-line);
}

.gju-time-row strong {
  color: var(--gju-clay);
  font-family: "Noto Serif KR", serif;
  font-size: 20px;
}

.gju-time-row span {
  color: var(--gju-muted);
  font-size: 14px;
}

.gju-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.gju-proof-item {
  min-height: 198px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.gju-proof-item svg {
  width: 24px;
  height: 24px;
  color: var(--gju-clay-light);
}

.gju-proof-item h3 {
  margin: 35px 0 8px;
  font-size: 18px;
}

.gju-proof-item p {
  margin: 0;
  color: #aeb7b3;
  font-size: 13px;
}

.gju-faq {
  border-top: 1px solid var(--gju-line);
}

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

.gju-faq-question {
  width: 100%;
  min-height: 82px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 32px;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.gju-faq-question > span:first-child {
  color: var(--gju-clay);
  font-size: 13px;
  font-weight: 800;
}

.gju-faq-question strong {
  font-size: 18px;
}

.gju-faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform 180ms ease;
}

.gju-faq-question[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.gju-faq-answer {
  display: none;
  padding: 0 58px 24px;
  color: var(--gju-muted);
  font-size: 15px;
}

.gju-faq-answer.gju-open {
  display: block;
}

.gju-guide-band {
  background: var(--gju-paper);
}

.gju-guide-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  border: 1px solid #bdc5c0;
}

.gju-hours {
  padding: 48px;
}

.gju-hours h2 {
  margin: 14px 0 28px;
  font-size: 38px;
}

.gju-confirm-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border: 1px solid #d0a08a;
  background: #f7e9e1;
  color: #8d482b;
  font-size: 12px;
  font-weight: 750;
}

.gju-confirm-badge svg {
  width: 14px;
  height: 14px;
}

.gju-hours-table {
  width: 100%;
  margin-top: 24px;
  border-collapse: collapse;
}

.gju-hours-table th,
.gju-hours-table td {
  padding: 14px 0;
  border-bottom: 1px solid #c9d0cb;
  text-align: left;
  font-size: 14px;
}

.gju-hours-table th {
  width: 34%;
}

.gju-hours-table td {
  color: var(--gju-muted);
}

.gju-map-panel {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  background: #d3dbd6;
}

.gju-map-panel::before,
.gju-map-panel::after {
  position: absolute;
  z-index: 0;
  background: rgba(255, 255, 255, 0.75);
  content: "";
}

.gju-map-panel::before {
  top: 46%;
  left: -20%;
  width: 150%;
  height: 74px;
  transform: rotate(-10deg);
}

.gju-map-panel::after {
  top: -20%;
  left: 58%;
  width: 78px;
  height: 150%;
  transform: rotate(18deg);
}

.gju-map-copy {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
}

.gju-map-pin {
  width: 54px;
  height: 54px;
  position: absolute;
  top: 42%;
  left: 52%;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gju-clay);
  color: var(--gju-white);
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(91, 52, 34, 0.22);
}

.gju-map-copy small {
  color: var(--gju-clay);
  font-size: 12px;
  font-weight: 800;
}

.gju-map-copy address {
  margin: 8px 0 18px;
  font-style: normal;
  font-weight: 700;
}

.gju-final-cta {
  padding-block: 74px;
  background: var(--gju-clay);
  color: var(--gju-white);
}

.gju-final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 0.9fr);
  gap: 60px;
  align-items: center;
}

.gju-final-grid h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.4;
}

.gju-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.gju-channel {
  min-height: 94px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: var(--gju-white);
  font-size: 14px;
  cursor: pointer;
}

.gju-channel:last-child {
  border-right: 0;
}

.gju-channel svg {
  width: 20px;
  height: 20px;
}

.gju-site-footer {
  padding: 50px 0 36px;
  background: #15221d;
  color: #b6c0bb;
}

.gju-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 60px;
}

.gju-footer-brand {
  color: var(--gju-white);
  font-size: 20px;
  font-weight: 800;
}

.gju-footer-grid p,
.gju-footer-grid a {
  color: #aeb8b3;
  font-size: 13px;
}

.gju-footer-grid h2 {
  margin: 0 0 14px;
  color: var(--gju-white);
  font-size: 14px;
}

.gju-footer-links {
  display: grid;
  gap: 8px;
}

.gju-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #818e87;
  font-size: 11px;
}

.gju-demo-notice {
  margin: 0;
  padding: 12px clamp(20px, 5vw, 40px);
  background: #0e1713;
  color: #94a199;
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}

.gju-mobile-bar {
  display: none;
}

.gju-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  max-width: 360px;
  padding: 15px 18px;
  border-left: 4px solid var(--gju-clay);
  background: var(--gju-ink);
  color: var(--gju-white);
  box-shadow: 0 14px 36px rgba(23, 26, 24, 0.2);
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gju-toast.gju-show {
  opacity: 1;
  transform: translateY(0);
}

.gju-subhero {
  position: relative;
  overflow: hidden;
  background: var(--gju-paper);
}

.gju-subhero-inner {
  min-height: 440px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
  gap: 72px;
  align-items: center;
}

.gju-subhero h1 {
  margin: 16px 0 22px;
  font-size: 50px;
  line-height: 1.25;
}

.gju-subhero p {
  max-width: 620px;
  margin: 0;
  color: var(--gju-muted);
}

.gju-subhero-aside {
  align-self: stretch;
  position: relative;
  overflow: hidden;
}

.gju-subhero-aside img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gju-breadcrumb {
  display: flex;
  gap: 8px;
  color: var(--gju-muted);
  font-size: 12px;
}

.gju-page-index {
  position: sticky;
  top: var(--gju-header-h);
  z-index: 20;
  border-bottom: 1px solid var(--gju-line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.gju-page-index nav {
  min-height: 60px;
  display: flex;
  gap: 28px;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
}

.gju-page-index nav::-webkit-scrollbar {
  display: none;
}

.gju-treatment-section {
  display: grid;
  grid-template-columns: 110px 0.72fr 1fr;
  gap: 46px;
  padding-block: 54px;
  border-bottom: 1px solid var(--gju-line);
}

.gju-treatment-section > span {
  color: var(--gju-clay);
  font-family: "Noto Serif KR", serif;
  font-size: 24px;
}

.gju-treatment-section h2 {
  margin: 0;
  font-size: 30px;
}

.gju-treatment-section p {
  margin: 0;
  color: var(--gju-muted);
  font-size: 15px;
}

.gju-treatment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.gju-treatment-tags span {
  padding: 6px 9px;
  border: 1px solid var(--gju-line);
  background: var(--gju-white);
  color: #59625e;
  font-size: 12px;
}

.gju-editorial-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.gju-editorial-grid h2 {
  position: sticky;
  top: 164px;
  margin: 0;
  font-size: 40px;
  line-height: 1.35;
}

.gju-editorial-copy {
  display: grid;
  gap: 32px;
}

.gju-editorial-copy article {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gju-line);
}

.gju-editorial-copy h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.gju-editorial-copy p {
  margin: 0;
  color: var(--gju-muted);
}

.gju-info-table {
  width: 100%;
  border-collapse: collapse;
}

.gju-info-table th,
.gju-info-table td {
  padding: 18px 16px;
  border-top: 1px solid var(--gju-line);
  border-bottom: 1px solid var(--gju-line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.gju-info-table th {
  width: 26%;
  background: var(--gju-paper);
}

.gju-info-table td {
  color: var(--gju-muted);
}

.gju-nonpay-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.gju-nonpay-table th,
.gju-nonpay-table td {
  padding: 17px 12px;
  border: 1px solid var(--gju-line);
  text-align: left;
  font-size: 13px;
}

.gju-nonpay-table th {
  background: var(--gju-forest);
  color: var(--gju-white);
}

.gju-nonpay-table td {
  color: var(--gju-muted);
}

.gju-nonpay-table td[colspan] {
  padding: 52px 20px;
  background: var(--gju-paper);
  text-align: center;
}

.gju-notice-band {
  padding: 24px 28px;
  border-left: 4px solid var(--gju-clay);
  background: #f7ece6;
  color: #6f4a39;
  font-size: 14px;
}

@media (max-width: 1040px) {
  .gju-desktop-nav {
    gap: 18px;
  }

  .gju-header-cta {
    display: none;
  }

  .gju-hero-copy {
    padding-right: 44px;
  }

  .gju-hero h1 {
    font-size: 49px;
  }

  .gju-section-head {
    gap: 48px;
  }

  .gju-process-grid,
  .gju-legacy-grid {
    gap: 48px;
  }

  .gju-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gju-final-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --gju-header-h: 66px;
  }

  body {
    padding-bottom: 64px;
    font-size: 16px;
  }

  .gju-wrap,
  .gju-narrow {
    width: min(100% - 36px, var(--gju-max));
  }

  .gju-section {
    padding-block: 82px;
  }

  .gju-desktop-nav,
  .gju-header-cta {
    display: none;
  }

  .gju-logo {
    min-width: 0;
    font-size: 19px;
  }

  .gju-icon-btn {
    display: inline-flex;
  }

  .gju-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .gju-hero-copy {
    min-height: 540px;
    padding: 64px 28px 70px;
  }

  .gju-hero h1 {
    font-size: 43px;
  }

  .gju-hero-media {
    min-height: 520px;
  }

  .gju-year-rail {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .gju-succession-grid {
    grid-template-columns: 1fr;
  }

  .gju-succession article {
    min-height: 0;
    padding: 34px 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .gju-succession article:last-child {
    border-bottom: 0;
  }

  .gju-section-head {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 38px;
  }

  .gju-section-head h2,
  .gju-copy h2,
  .gju-process-panel h2,
  .gju-legacy-copy h2 {
    font-size: 34px;
  }

  .gju-principles {
    grid-template-columns: 1fr;
  }

  .gju-principle {
    min-height: 0;
    padding: 28px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--gju-line);
  }

  .gju-principle:last-child {
    border-bottom: 0;
  }

  .gju-principle h3 {
    margin-top: 28px;
  }

  .gju-process-grid,
  .gju-legacy-grid,
  .gju-guide-grid,
  .gju-editorial-grid {
    grid-template-columns: 1fr;
  }

  .gju-process-media {
    min-height: 510px;
  }

  .gju-fields-layout {
    grid-template-columns: 1fr;
  }

  .gju-field-detail {
    min-height: 350px;
  }

  .gju-record-stack {
    min-height: 500px;
  }

  .gju-hours {
    padding: 36px 26px;
  }

  .gju-map-panel {
    min-height: 500px;
  }

  .gju-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gju-footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .gju-mobile-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    height: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--gju-ink);
    color: var(--gju-white);
  }

  .gju-mobile-action {
    min-width: 0;
    min-height: 64px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 4px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.17);
    background: transparent;
    color: var(--gju-white);
    font-size: 11px;
    line-height: 1.2;
  }

  .gju-mobile-action:last-child {
    border-right: 0;
  }

  .gju-toast {
    right: 16px;
    bottom: 78px;
    left: 16px;
    max-width: none;
  }

  .gju-subhero-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 70px;
  }

  .gju-subhero h1 {
    font-size: 42px;
  }

  .gju-subhero-aside {
    min-height: 380px;
  }

  .gju-page-index {
    top: var(--gju-header-h);
  }

  .gju-treatment-section {
    grid-template-columns: 70px 1fr;
    gap: 24px;
  }

  .gju-treatment-section > div:last-child {
    grid-column: 2;
  }

  .gju-editorial-grid h2 {
    position: static;
  }

  .gju-nonpay-table {
    min-width: 760px;
  }

  .gju-table-scroll {
    overflow-x: auto;
  }
}

@media (max-width: 560px) {
  .gju-wrap,
  .gju-narrow {
    width: min(100% - 28px, var(--gju-max));
  }

  .gju-hero-copy {
    min-height: 510px;
    padding: 58px 20px 64px;
  }

  .gju-hero h1 {
    font-size: 38px;
  }

  .gju-hero-copy > p {
    font-size: 16px;
  }

  .gju-hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .gju-hero-actions .gju-btn {
    padding-inline: 12px;
  }

  .gju-hero-media {
    min-height: 460px;
  }

  .gju-year-item {
    min-height: 86px;
    padding: 14px 10px;
  }

  .gju-year-item strong {
    font-size: 20px;
  }

  .gju-year-item span {
    font-size: 10px;
  }

  .gju-section-head h2,
  .gju-copy h2,
  .gju-process-panel h2,
  .gju-legacy-copy h2 {
    font-size: 30px;
  }

  .gju-demo-metrics {
    grid-template-columns: 1fr;
  }

  .gju-demo-metric {
    border-right: 0;
    border-bottom: 1px solid #c8cec8;
  }

  .gju-demo-metric:last-child {
    border-bottom: 0;
  }

  .gju-fields {
    grid-template-columns: repeat(2, 1fr);
  }

  .gju-field {
    min-height: 145px;
    padding: 18px;
  }

  .gju-field h3 {
    font-size: 17px;
  }

  .gju-record-stack {
    min-height: 420px;
  }

  .gju-record:first-child {
    width: 76%;
    height: 72%;
  }

  .gju-record:last-child {
    width: 66%;
    height: 54%;
  }

  .gju-proof-grid,
  .gju-footer-grid {
    grid-template-columns: 1fr;
  }

  .gju-footer-grid > div:first-child {
    grid-column: auto;
  }

  .gju-proof-item {
    min-height: 0;
  }

  .gju-faq-question {
    grid-template-columns: 42px minmax(0, 1fr) 26px;
  }

  .gju-faq-question strong {
    font-size: 16px;
  }

  .gju-faq-answer {
    padding-left: 42px;
    padding-right: 20px;
  }

  .gju-final-grid {
    gap: 34px;
  }

  .gju-final-grid h2 {
    font-size: 29px;
  }

  .gju-channel-grid {
    grid-template-columns: 1fr;
  }

  .gju-channel {
    min-height: 64px;
    flex-direction: row;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  }

  .gju-channel:last-child {
    border-bottom: 0;
  }

  .gju-footer-bottom {
    flex-direction: column;
  }

  .gju-subhero h1 {
    font-size: 36px;
  }

  .gju-subhero-aside {
    min-height: 310px;
  }

  .gju-treatment-section {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .gju-treatment-section h2 {
    font-size: 24px;
  }

  .gju-treatment-section > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
