/* DEAR GONGJINDAN — independent service story */
.gongjindan-page {
  overflow-x: clip;
  background: var(--bg-base);
  color: var(--text-secondary);
}

.gongjindan-page main {
  overflow: clip;
}

.gongjindan-page .nav:not(.is-scrolled) .nav__logo,
.gongjindan-page .nav:not(.is-scrolled) .nav__link,
.gongjindan-page .nav:not(.is-scrolled) .nav__language-current {
  color: #fff;
}

.gongjindan-page .nav:not(.is-scrolled) .nav__toggle span {
  background: #fff;
}

.gjd-scroll-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.gjd-scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--teal-soft);
}

.gjd-eyebrow {
  margin: 0;
  color: var(--teal-soft);
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.gjd-hero {
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(440px, 0.82fr) minmax(560px, 1.18fr);
  padding: 0;
  background: #173f37;
  color: #fff;
}

.gjd-hero__copy {
  display: flex;
  position: relative;
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  padding: 9.5rem clamp(3rem, 6vw, 7.5rem) 6rem max(var(--gap), calc((100vw - 1440px) / 2 + 3rem));
}

.gjd-hero__copy::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 33%;
  background: rgba(255, 255, 255, 0.18);
  content: "";
}

.gjd-hero h1 {
  max-width: 680px;
  margin: 1.5rem 0 0;
  font-size: clamp(2.8rem, 3.65vw, 4.65rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.06em;
  word-break: keep-all;
}

.gjd-hero h1 em,
.gjd-manifesto h2 em {
  color: #9cc8bd;
  font-style: normal;
}

.gjd-hero__body {
  margin: 2.3rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.96rem, 1.15vw, 1.08rem);
  line-height: 1.95;
}

.gjd-hero__link {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 180ms ease, gap 180ms ease;
}

.gjd-hero__link:hover,
.gjd-hero__link:focus-visible {
  gap: 2rem;
  outline: 0;
  border-color: #fff;
}

.gjd-film {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #dcdedc;
}

.gjd-film__frame {
  visibility: hidden;
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 900ms ease, transform 5.4s ease, visibility 900ms;
}

.gjd-film__frame.is-active {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.gjd-film__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.gjd-film__frame:nth-child(1) img,
.gjd-film__frame:nth-child(2) img {
  object-position: center 42%;
}

.gjd-film__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 47, 40, 0.03) 35%, rgba(14, 38, 32, 0.56) 100%);
  pointer-events: none;
}

.gjd-film__meta {
  display: flex;
  position: absolute;
  z-index: 2;
  right: clamp(2rem, 4vw, 4rem);
  bottom: clamp(2.2rem, 5vw, 4.6rem);
  left: clamp(2rem, 4vw, 4rem);
  align-items: flex-end;
  justify-content: space-between;
  color: #fff;
}

.gjd-film__meta > p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  font-family: var(--font-en);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.gjd-film__meta i {
  display: block;
  position: relative;
  width: clamp(60px, 8vw, 120px);
  height: 1px;
  background: rgba(255, 255, 255, 0.56);
}

.gjd-film__meta i b {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.12);
  transform: translate(-50%, -50%);
}

.gjd-film__meta i b.is-running {
  animation: gjd-film-progress 4.4s linear forwards;
}

.gjd-film__meta i b.is-paused {
  animation-play-state: paused;
}

@keyframes gjd-film-progress {
  from { left: 0; }
  to { left: 100%; }
}

.gjd-film__controls {
  display: flex;
  gap: 0.55rem;
}

.gjd-film__controls button {
  min-height: 42px;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  background: rgba(17, 55, 46, 0.36);
  color: #fff;
  font: inherit;
  font-size: 0.72rem;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
  backdrop-filter: blur(12px);
}

.gjd-film__controls button:hover,
.gjd-film__controls button:focus-visible {
  outline: 0;
  background: #fff;
  color: var(--green-deep);
}

.gjd-film__word {
  position: absolute;
  z-index: 1;
  top: 10rem;
  right: clamp(1.5rem, 3vw, 3rem);
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--font-en);
  font-size: clamp(3rem, 7vw, 7.2rem);
  font-weight: 700;
  line-height: 0.78;
  text-align: right;
  letter-spacing: -0.08em;
  mix-blend-mode: overlay;
}

.gjd-chapters {
  display: grid;
  position: sticky;
  z-index: 45;
  top: 68px;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 var(--gap);
  border-bottom: 1px solid rgba(36, 120, 96, 0.14);
  background: rgba(248, 248, 246, 0.93);
  backdrop-filter: blur(14px);
}

.gjd-chapters a {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-left: 1px solid rgba(36, 120, 96, 0.12);
  color: var(--text-secondary);
  font-size: 0.78rem;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.gjd-chapters a:last-child {
  border-right: 1px solid rgba(36, 120, 96, 0.12);
}

.gjd-chapters a span {
  color: var(--teal-soft);
  font-family: var(--font-en);
  font-size: 0.62rem;
}

.gjd-chapters a:hover,
.gjd-chapters a:focus-visible,
.gjd-chapters a.is-current {
  outline: 0;
  background: var(--green-deep);
  color: #fff;
}

.gjd-chapters a:hover span,
.gjd-chapters a:focus-visible span,
.gjd-chapters a.is-current span {
  color: rgba(255, 255, 255, 0.62);
}

.gjd-manifesto {
  display: grid;
  position: relative;
  min-height: 880px;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  padding: clamp(7rem, 11vw, 12rem) max(var(--gap), calc((100vw - 1360px) / 2 + 2rem));
  background: #f2f1ed;
}

.gjd-manifesto__inner {
  position: relative;
  z-index: 2;
}

.gjd-manifesto h2 {
  max-width: 640px;
  margin: 1.6rem 0 0;
  color: #23473e;
  font-size: clamp(2.05rem, 2.55vw, 3.1rem);
  font-weight: 500;
  line-height: 1.27;
  letter-spacing: -0.045em;
  word-break: keep-all;
}

.gjd-manifesto h2 span,
.gjd-manifesto h2 em {
  display: block;
  white-space: nowrap;
}

.gjd-manifesto__statement {
  display: grid;
  max-width: 780px;
  grid-template-columns: 150px 1fr;
  gap: 2rem;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  padding-top: 1.6rem;
  border-top: 1px solid rgba(36, 120, 96, 0.28);
}

.gjd-manifesto__statement span {
  color: var(--teal-soft);
  font-family: var(--font-en);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.gjd-manifesto__statement p {
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.13rem);
  line-height: 1.95;
}

.gjd-orbit {
  position: relative;
  width: min(38vw, 520px);
  aspect-ratio: 1;
  justify-self: end;
  margin-right: clamp(4.5rem, 8vw, 7.5rem);
}

.gjd-orbit::before {
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 30px 70px rgba(37, 70, 61, 0.12);
  content: "";
}

.gjd-orbit img {
  position: absolute;
  z-index: 2;
  inset: 24%;
  width: 52%;
  height: 52%;
  border-radius: 50%;
  object-fit: cover;
}

.gjd-orbit__line {
  --orbit-duration: 52s;
  --orbit-delay: -5s;
  position: absolute;
  inset: 0;
  border: 1px solid rgba(36, 120, 96, 0.26);
  border-radius: 50%;
  animation: gjd-orbit-spin var(--orbit-duration) linear var(--orbit-delay) infinite;
}

.gjd-orbit__line--two {
  --orbit-duration: 44s;
  --orbit-delay: -17s;
  inset: 6%;
  border-style: dashed;
}

.gjd-orbit__line--three {
  --orbit-duration: 35s;
  --orbit-delay: -9s;
  inset: 12%;
  border-color: rgba(90, 150, 162, 0.3);
}

.gjd-orbit__line--four {
  --orbit-duration: 28s;
  --orbit-delay: -13s;
  inset: 18%;
  border-style: dashed;
  border-color: rgba(36, 120, 96, 0.2);
}

.gjd-orbit__line i {
  position: absolute;
  top: -0.8rem;
  left: 50%;
  min-width: 3.5rem;
  padding: 0.38rem 0.55rem;
  border: 1px solid rgba(36, 120, 96, 0.16);
  border-radius: 999px;
  background: rgba(248, 248, 246, 0.94);
  box-shadow: 0 8px 20px rgba(35, 70, 62, 0.08);
  color: var(--green-deep);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transform: translateX(-50%);
  animation: gjd-orbit-counter var(--orbit-duration) linear var(--orbit-delay) infinite;
}

.gjd-orbit b {
  position: absolute;
  z-index: 3;
  right: auto;
  bottom: -1rem;
  left: 50%;
  padding: 0.5rem 0.65rem;
  background: rgba(242, 241, 237, 0.96);
  color: var(--green-deep);
  font-family: var(--font-en);
  font-size: clamp(0.8rem, 1.1vw, 1rem);
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
  transform: translateX(-50%);
}

@keyframes gjd-orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes gjd-orbit-counter {
  to { transform: translateX(-50%) rotate(-360deg); }
}

.gjd-process {
  padding: clamp(7rem, 10vw, 11rem) max(var(--gap), calc((100vw - 1360px) / 2 + 2rem));
  background: #183f37;
  color: #fff;
}

.gjd-process__heading {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "eyebrow note" "title note";
  align-items: end;
  gap: 1rem 4rem;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.gjd-process__heading .gjd-eyebrow {
  grid-area: eyebrow;
}

.gjd-process__heading h2 {
  grid-area: title;
  margin: 0.6rem 0 0;
  font-size: clamp(2.45rem, 4.3vw, 4.8rem);
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: -0.06em;
}

.gjd-process__heading > p:last-child {
  grid-area: note;
  max-width: 320px;
  margin: 0 0 0.4rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  line-height: 1.7;
}

.gjd-process__stage {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(520px, 1.1fr);
  min-height: 650px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.gjd-process__visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.gjd-process__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(10, 32, 27, 0.66));
  content: "";
}

.gjd-process__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 240ms ease, transform 700ms ease;
}

.gjd-process__visual img.is-changing {
  opacity: 0.18;
  transform: scale(1.025);
}

.gjd-process__visual > p {
  display: flex;
  position: absolute;
  z-index: 2;
  right: 2rem;
  bottom: 1.8rem;
  left: 2rem;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0;
}

.gjd-process__visual span {
  font-family: var(--font-en);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 700;
  line-height: 0.8;
  opacity: 0.75;
}

.gjd-process__visual strong {
  font-family: var(--font-en);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.gjd-process__content {
  display: grid;
  grid-template-columns: 210px 1fr;
}

.gjd-process__tabs {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.gjd-process__tabs button {
  display: grid;
  width: 100%;
  min-height: 25%;
  grid-template-columns: 38px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  gap: 0.3rem 0.65rem;
  padding: 1.25rem 1.1rem;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.gjd-process__tabs button:last-child {
  border-bottom: 0;
}

.gjd-process__tabs button > span {
  grid-row: 1 / span 2;
  align-self: center;
  font-family: var(--font-en);
  font-size: 0.64rem;
}

.gjd-process__tabs strong {
  font-size: 0.88rem;
}

.gjd-process__tabs small {
  font-family: var(--font-en);
  font-size: 0.54rem;
  letter-spacing: 0.1em;
  opacity: 0.65;
}

.gjd-process__tabs button:hover,
.gjd-process__tabs button:focus-visible,
.gjd-process__tabs button[aria-selected="true"] {
  outline: 0;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.gjd-process__panels {
  display: flex;
  align-items: center;
  padding: clamp(2.2rem, 5vw, 5rem);
}

.gjd-process__panels article {
  max-width: 530px;
}

.gjd-process__kicker {
  margin: 0 0 1.5rem;
  color: #9cc8bd;
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.gjd-process__panels h3 {
  margin: 0;
  font-size: clamp(2rem, 3.3vw, 3.7rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.055em;
  word-break: keep-all;
}

.gjd-process__panels article > p:last-child {
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  line-height: 1.9;
}

.gjd-gallery {
  padding: clamp(7rem, 10vw, 11rem) max(var(--gap), calc((100vw - 1360px) / 2 + 2rem));
  background: var(--bg-base);
}

.gjd-gallery__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.gjd-gallery__heading h2 {
  margin: 0;
  color: var(--green-deep);
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.06em;
  text-align: right;
}

.gjd-gallery__grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  grid-template-rows: repeat(2, minmax(280px, 420px));
  gap: clamp(1rem, 2vw, 2rem);
}

.gjd-gallery__item {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--warm-gray);
}

.gjd-gallery__item--tall {
  grid-row: 1 / span 2;
}

.gjd-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gjd-gallery__item--tall img {
  object-position: center 44%;
}

.gjd-gallery__item:hover img {
  transform: scale(1.025);
}

.gjd-gallery__item figcaption {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  padding: 0.85rem 1rem;
  background: rgba(248, 248, 246, 0.86);
  color: var(--green-deep);
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  font-size: 0.64rem;
  backdrop-filter: blur(12px);
}

.gjd-gallery__number {
  color: var(--teal-soft);
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.gjd-gallery__item figcaption strong {
  color: var(--green-deep);
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.gjd-gallery__item figcaption em {
  margin-left: auto;
  color: var(--text-secondary);
  font-family: "Pretendard", sans-serif;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.gjd-clinical {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(580px, 1.22fr);
  gap: clamp(4rem, 9vw, 9rem);
  padding: clamp(7rem, 10vw, 11rem) max(var(--gap), calc((100vw - 1280px) / 2 + 2rem));
  background: #ece9e5;
}

.gjd-clinical__lead {
  align-self: start;
  position: sticky;
  top: 160px;
}

.gjd-clinical__lead h2 {
  margin: 1.2rem 0 0;
  color: #23473e;
  font-size: clamp(2.6rem, 4.3vw, 4.8rem);
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: -0.06em;
}

.gjd-clinical__lead > p:last-child {
  margin: 2rem 0 0;
  font-size: 1rem;
  line-height: 1.9;
}

.gjd-clinical__list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(36, 120, 96, 0.24);
  list-style: none;
}

.gjd-clinical__list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  min-height: 230px;
  padding: 2.7rem 0;
  border-bottom: 1px solid rgba(36, 120, 96, 0.24);
}

.gjd-clinical__list > li > span {
  color: rgba(36, 120, 96, 0.34);
  font-family: var(--font-en);
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  font-weight: 700;
}

.gjd-clinical__list small {
  color: var(--teal-soft);
  font-family: var(--font-en);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.gjd-clinical__list h3 {
  margin: 0.7rem 0 0;
  color: var(--green-deep);
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  font-weight: 600;
}

.gjd-clinical__list p {
  max-width: 520px;
  margin: 1rem 0 0;
  line-height: 1.85;
}

.gjd-letter {
  display: grid;
  min-height: 860px;
  grid-template-columns: minmax(440px, 0.9fr) minmax(520px, 1.1fr);
  background: #fff;
}

.gjd-letter__image {
  position: relative;
  min-height: 860px;
  overflow: hidden;
}

.gjd-letter__image .gongjindan-map {
  position: absolute;
  inset: 0;
  min-height: 0;
  border: 0;
  box-shadow: none;
}

.gjd-letter__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.gjd-letter__copy {
  align-self: center;
  max-width: 780px;
  padding: clamp(5rem, 9vw, 10rem) clamp(2.5rem, 5vw, 5.5rem);
}

.gjd-letter__copy h2 {
  margin: 1.2rem 0 0;
  color: var(--green-deep);
  font-size: clamp(2.7rem, 4vw, 4.5rem);
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: -0.06em;
}

.gjd-letter__copy h2 span {
  display: block;
  white-space: nowrap;
}

.gjd-letter__body {
  margin-top: 3rem;
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.95;
}

.gjd-letter__body p + p {
  margin-top: 1.35rem;
}

.gjd-letter__signature {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  margin: 3.2rem 0 0;
  color: #222;
}

.gjd-letter__signature span {
  font-family: "Nanum Pen Script", cursive;
  font-size: 2.8rem;
}

.gjd-faq {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(600px, 1.3fr);
  gap: clamp(4rem, 9vw, 9rem);
  padding: clamp(7rem, 10vw, 10rem) max(var(--gap), calc((100vw - 1280px) / 2 + 2rem));
  background: var(--bg-base);
}

.gjd-faq__heading h2 {
  margin: 1.2rem 0 0;
  color: var(--green-deep);
  font-size: clamp(2.3rem, 3.7vw, 4rem);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.06em;
}

.gjd-faq__list {
  border-top: 1px solid rgba(36, 120, 96, 0.28);
}

.gjd-faq details {
  border-bottom: 1px solid rgba(36, 120, 96, 0.28);
}

.gjd-faq summary {
  display: grid;
  min-height: 92px;
  grid-template-columns: 42px 1fr 28px;
  align-items: center;
  gap: 1rem;
  color: #294a42;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.gjd-faq summary::-webkit-details-marker {
  display: none;
}

.gjd-faq summary span {
  color: var(--teal-soft);
  font-family: var(--font-en);
  font-size: 0.62rem;
}

.gjd-faq summary b {
  color: var(--green-deep);
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
  transition: transform 180ms ease;
}

.gjd-faq details[open] summary b {
  transform: rotate(45deg);
}

.gjd-faq details > p {
  margin: -0.4rem 2.5rem 0 58px;
  padding: 0 0 2.2rem;
  color: rgba(85, 85, 80, 0.82);
  line-height: 1.85;
}

.gjd-cta {
  display: grid;
  position: relative;
  min-height: 720px;
  place-items: center;
  overflow: hidden;
  padding: 7rem var(--gap);
  background: #173f37;
  color: #fff;
}

.gjd-cta__media {
  position: absolute;
  inset: 0;
  opacity: 0.22;
}

.gjd-cta__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 50, 41, 0.92), rgba(13, 50, 41, 0.58));
  content: "";
}

.gjd-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.gjd-cta__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1120px);
}

.gjd-cta h2 {
  margin: 1.4rem 0 0;
  font-size: clamp(2.5rem, 5vw, 5.6rem);
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: -0.06em;
}

.gjd-cta__inner > p:not(.gjd-eyebrow) {
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.85;
}

.gjd-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 3rem;
}

.gjd-cta__actions a {
  display: flex;
  min-width: 240px;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.gjd-cta__actions a:first-child {
  background: #fff;
  color: var(--green-deep);
}

.gjd-cta__actions a:hover,
.gjd-cta__actions a:focus-visible {
  outline: 0;
  background: var(--teal-soft);
  color: #fff;
}

.gjd-cta__actions a span {
  font-weight: 500;
}

.gjd-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.gjd-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .gjd-hero {
    grid-template-columns: minmax(390px, 0.92fr) minmax(470px, 1.08fr);
  }

  .gjd-hero__copy {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }

  .gjd-manifesto {
    min-height: 760px;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  }

  .gjd-process__stage {
    grid-template-columns: minmax(330px, 0.82fr) minmax(480px, 1.18fr);
  }

  .gjd-process__content {
    grid-template-columns: 180px 1fr;
  }

  .gjd-clinical,
  .gjd-faq {
    grid-template-columns: minmax(300px, 0.78fr) minmax(480px, 1.22fr);
  }
}

@media (max-width: 820px) {
  .gongjindan-page .nav:not(.is-scrolled) .nav__logo {
    color: #fff;
  }

  .gjd-hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .gjd-hero__copy {
    padding: 9rem 28px 5rem;
  }

  .gjd-hero h1 {
    font-size: clamp(2.65rem, 8vw, 4.2rem);
  }

  .gjd-film {
    min-height: calc(100svh - 80px);
    order: -1;
  }

  .gjd-film__frame {
    inset: 0;
  }

  .gjd-chapters {
    top: 64px;
    padding: 0;
  }

  .gjd-chapters a {
    min-height: 58px;
    gap: 0.4rem;
    font-size: 0.7rem;
  }

  .gjd-manifesto {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 5rem;
    padding: 7rem 28px;
  }

  .gjd-manifesto__statement {
    grid-template-columns: 120px 1fr;
  }

  .gjd-orbit {
    width: min(78vw, 520px);
    justify-self: center;
    margin-right: 0;
  }

  .gjd-process {
    padding: 7rem 28px;
  }

  .gjd-process__heading {
    display: block;
  }

  .gjd-process__heading > p:last-child {
    margin-top: 1.5rem;
  }

  .gjd-process__stage {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .gjd-process__visual {
    min-height: 72vw;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .gjd-process__content {
    grid-template-columns: 1fr;
  }

  .gjd-process__tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .gjd-process__tabs button {
    min-height: 112px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 0.35rem;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 0;
    text-align: center;
  }

  .gjd-process__tabs button > span {
    grid-row: auto;
  }

  .gjd-process__panels {
    min-height: 390px;
  }

  .gjd-gallery {
    padding: 7rem 28px;
  }

  .gjd-gallery__heading {
    display: block;
  }

  .gjd-gallery__heading h2 {
    margin-top: 1rem;
    text-align: left;
  }

  .gjd-gallery__grid {
    grid-template-rows: repeat(2, minmax(230px, 340px));
  }

  .gjd-clinical,
  .gjd-faq {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 7rem 28px;
  }

  .gjd-clinical__lead {
    position: static;
  }

  .gjd-letter {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .gjd-letter__image {
    min-height: 72vw;
    max-height: 680px;
  }

  .gjd-letter__copy {
    padding: 7rem 28px;
  }

  .gjd-cta {
    min-height: 680px;
    padding: 7rem 28px;
  }
}

@media (max-width: 520px) {
  .gjd-hero__copy {
    padding: 7rem 22px 6rem;
  }

  .gjd-hero h1 {
    font-size: clamp(2.4rem, 11.8vw, 3.25rem);
    line-height: 1.14;
  }

  .gjd-film {
    min-height: calc(100svh - 80px);
  }

  .gjd-film__frame {
    inset: 0;
  }

  .gjd-film__meta {
    right: 18px;
    bottom: 5.5rem;
    left: 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.2rem;
  }

  .gjd-film__controls button {
    min-height: 40px;
    padding: 0.65rem 0.8rem;
  }

  .gjd-film__word {
    top: 6rem;
    right: 18px;
    font-size: 3.4rem;
  }

  .gjd-chapters {
    overflow-x: auto;
    grid-template-columns: repeat(4, minmax(112px, 1fr));
    scrollbar-width: none;
  }

  .gjd-chapters::-webkit-scrollbar {
    display: none;
  }

  .gjd-chapters a {
    min-height: 54px;
  }

  .gjd-manifesto,
  .gjd-process,
  .gjd-gallery,
  .gjd-clinical,
  .gjd-faq {
    padding-right: 22px;
    padding-left: 22px;
  }

  .gjd-manifesto h2 {
    font-size: clamp(1.9rem, 7.6vw, 2.75rem);
  }

  .gjd-manifesto__statement {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gjd-orbit {
    width: 90vw;
    max-width: 420px;
  }

  .gjd-process__heading h2,
  .gjd-gallery__heading h2,
  .gjd-clinical__lead h2,
  .gjd-faq__heading h2 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .gjd-process__visual {
    min-height: 96vw;
  }

  .gjd-process__visual > p {
    right: 1.1rem;
    bottom: 1.1rem;
    left: 1.1rem;
  }

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

  .gjd-process__tabs button {
    min-height: 104px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .gjd-process__panels {
    min-height: 420px;
    padding: 2.5rem 1.25rem;
  }

  .gjd-process__panels h3 {
    font-size: clamp(1.85rem, 8.7vw, 2.55rem);
  }

  .gjd-gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gjd-gallery__item,
  .gjd-gallery__item--tall {
    grid-row: auto;
    min-height: 110vw;
  }

  .gjd-gallery__item:not(.gjd-gallery__item--tall) {
    min-height: 85vw;
  }

  .gjd-gallery__item figcaption {
    flex-wrap: wrap;
    gap: 0.35rem 0.65rem;
  }

  .gjd-gallery__item figcaption em {
    flex-basis: 100%;
    margin-left: 0;
    padding-left: 2.1rem;
  }

  .gjd-clinical__list li {
    grid-template-columns: 54px 1fr;
    gap: 1rem;
    min-height: 0;
  }

  .gjd-letter__image {
    min-height: 118vw;
  }

  .gjd-letter__copy {
    padding: 7rem 22px;
  }

  .gjd-letter__copy h2 {
    font-size: clamp(2.35rem, 10.5vw, 3.25rem);
  }

  .gjd-faq summary {
    grid-template-columns: 32px 1fr 24px;
    gap: 0.7rem;
  }

  .gjd-faq details > p {
    margin-right: 0;
    margin-left: 40px;
  }

  .gjd-cta {
    min-height: 720px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .gjd-cta h2 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
  }

  .gjd-cta__actions {
    display: grid;
  }

  .gjd-cta__actions a {
    min-width: 0;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gjd-film__frame,
  .gjd-process__visual img,
  .gjd-gallery__item img,
  .gjd-reveal,
  .gjd-film__meta i b,
  .gjd-orbit__line,
  .gjd-orbit__line i {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .gjd-orbit__line i {
    transform: translateX(-50%) !important;
  }
}
