/* 하내바디크 — 로고, 히어로, 헤더·푸터 */

/* SVG <text> 한글은 서버·모바일에서 ???? 로 깨질 수 있어 이름은 HTML로 표시 */
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  max-width: min(14rem, 52vw);
}

.brand-lockup__mark {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
}

.brand-lockup__text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}

.brand-lockup__name {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.2;
  color: #14213d;
  white-space: nowrap;
}

.brand-lockup__tag {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #40916c;
  white-space: nowrap;
}

.brand-lockup--light .brand-lockup__name {
  color: #fff;
}

.brand-lockup--light .brand-lockup__tag {
  color: #b7e4c7;
}

.brand__asset {
  height: 3rem;
  width: auto;
  max-width: min(12.5rem, 42vw);
}

.top-bar {
  display: grid;
  grid-template-columns: minmax(5.5rem, 10rem) minmax(0, 1fr) auto;
  align-items: center;
  column-gap: clamp(0.5rem, 1.5vw, 1rem);
}

.top-bar .brand {
  margin-left: 0;
  justify-self: end;
}

.top-bar__start {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.top-bar__title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--color--c1, #14213d);
  white-space: nowrap;
}

.top-bar__sub {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #40916c;
  white-space: nowrap;
}

.top-bar__ticker {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  padding: 0.35rem 0.5rem 0.35rem 0.4rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(27, 67, 50, 0.1);
  overflow: hidden;
}

.top-bar__pulse {
  position: relative;
  flex: 0 0 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
}

.top-bar__pulse-core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #40916c;
}

.top-bar__pulse-ring {
  position: absolute;
  inset: -0.2rem;
  border-radius: 50%;
  border: 1px solid rgba(64, 145, 108, 0.55);
  animation: top-bar-pulse 1.8s ease-out infinite;
}

@keyframes top-bar-pulse {
  0% {
    transform: scale(0.65);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.65);
    opacity: 0;
  }
}

.top-bar__ticker-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.top-bar__ticker-track {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  width: max-content;
  animation: top-bar-ticker 32s linear infinite;
}

.top-bar__ticker-track:hover {
  animation-play-state: paused;
}

@keyframes top-bar-ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.top-bar__ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: rgba(20, 33, 61, 0.82);
  text-decoration: none;
  white-space: nowrap;
  border-radius: 1rem;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.top-bar__ticker-item:hover {
  color: #1b4332;
  background: rgba(255, 255, 255, 0.75);
}

.top-bar__ticker-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.2rem;
  border-radius: 0.35rem;
  font-size: 0.625rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #40916c 0%, #2d6a4f 100%);
}

.top-bar__ticker-dot {
  flex: 0 0 0.25rem;
  width: 0.25rem;
  height: 0.25rem;
  margin: 0 0.15rem;
  border-radius: 50%;
  background: rgba(64, 145, 108, 0.35);
}

.top-bar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-decoration: none;
  color: #1a1a1a;
  background: #fee500;
  border: 1px solid rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(254, 229, 0, 0.35);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.top-bar__cta:hover {
  background: #f5d900;
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .top-bar__ticker-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    max-width: 100%;
  }

  .top-bar__pulse-ring {
    animation: none;
  }
}

.top-bar__label {
  display: none;
}

.home-hero__content--visual {
  justify-content: flex-end;
}

.home-hero__content--visual .main-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
}

.home-hero__content--visual .main-hero__media.absolute-img,
.home-hero__content--visual img.main-hero__media {
  object-fit: cover;
  object-position: center 42%;
}

.home-hero__content--visual .main-hero__media.bg-video {
  height: 100%;
}

.home-hero__content--visual .main-hero__media > video {
  position: absolute;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 42%;
  z-index: 0;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.home-hero__content--visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(20, 33, 61, 0.08) 0%,
    rgba(20, 33, 61, 0.02) 35%,
    rgba(20, 33, 61, 0.55) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.home-hero__content--visual .ghost-item {
  display: none;
}

.main-hero__bar {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
}

.main-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  justify-content: flex-end;
}

.main-hero__cta--primary {
  min-width: 13.5rem;
  height: 4.35rem;
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.main-hero__cta--phone {
  min-width: 11.25rem;
  height: 3.9rem;
  background: #fff !important;
  color: #1b4332 !important;
  border: 2px solid rgba(255, 255, 255, 0.9) !important;
  font-weight: 600;
}

.main-hero__cta--phone:hover {
  background: #e8f5e9 !important;
  color: #1b4332 !important;
}

.main-hero__cta--guide {
  min-width: 9.5rem;
  height: 3.5rem;
}

.main-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.main-hero__chip {
  padding: 0.45rem 0.9rem;
  border-radius: 4rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color--c3);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}

.main-hero__chip--accent {
  background: #1b4332;
  color: #d8f3dc;
}

.main-hero__title {
  font-family: var(--font-display);
  color: var(--color--c2);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.04em;
  max-width: 16ch;
  margin: 0;
}

.main-hero__title em {
  font-style: normal;
  font-weight: 700;
  color: #e8f5e9;
}

.heading-huge,
.heading-large,
.heading-xlarge {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.main-hero__actions .button,
.main-hero__bar .button {
  background-color: #1b4332;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.main-hero__actions .button:hover,
.main-hero__bar .button:hover {
  background-color: #2d6a4f;
}

/* 히어로·사진 위 — 잔디 밝은 구역에서도 CTA 선명 */
.home-hero__content--visual .main-hero__cta--primary {
  min-width: clamp(11.5rem, 28vw, 14.5rem);
  height: clamp(3.75rem, 9vw, 4.5rem);
}

.home-hero__content--visual .main-hero__cta--guide {
  background: rgba(255, 255, 255, 0.96);
  color: #1b4332;
  border: 2px solid #1b4332;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 24px rgba(20, 33, 61, 0.18);
}

.home-hero__content--visual .main-hero__cta--guide:hover {
  background: #fff;
  border-color: #2d6a4f;
  color: #2d6a4f;
}

@media screen and (max-width: 767px) {
  .main-hero__bar {
    flex-direction: column;
    align-items: stretch;
  }

  .main-hero__ctas {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .main-hero__ctas .button,
  .main-hero__ctas .button-outlined {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }
}

.about-cta__actions > .button-outlined:not(.about-cta__secondary) {
  background: #fff;
  color: #1b4332;
  border: 2px solid #fff;
  font-weight: 600;
}

.about-cta__actions > .button-outlined:not(.about-cta__secondary):hover {
  background: #e8f5e9;
  border-color: #e8f5e9;
  color: #1b4332;
}

.work-poster__actions > .button-outlined:not(.work-poster__btn-alt) {
  background: #1b4332;
  color: #e8f5e9;
  border: 2px solid #1b4332;
  font-weight: 600;
}

.work-poster__actions > .button-outlined:not(.work-poster__btn-alt):hover {
  background: #2d6a4f;
  border-color: #2d6a4f;
  color: #fff;
}

.work-poster__actions > .button-outlined:not(.work-poster__btn-alt) .text-large {
  color: inherit;
}

/* Kakao channel CTAs */
.button.kakao-btn,
.nav-head__button.kakao-btn {
  background-color: #fee500;
  color: #191919;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.button.kakao-btn:hover,
.nav-head__button.kakao-btn:hover {
  background-color: #f5dc00;
  color: #191919;
}

.button-outlined.kakao-btn {
  background-color: #fee500;
  border-color: rgba(0, 0, 0, 0.08);
  color: #191919;
}

.button-outlined.kakao-btn:hover {
  background-color: #f5dc00;
}

.topic-links__link.kakao-btn.is-current,
.topic-links__link.kakao-btn:hover {
  background-color: #fee500;
  color: #191919;
  border-color: #fee500;
}

.kakao-btn-panel {
  padding: var(--padding--pd-06);
  border-radius: 2rem;
  background-color: var(--color--c1-04);
}

/* Home — editorial poster section (replaces text-only statement) */
.promo-board__frame {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  min-height: 28rem;
  background-color: #3d5a47;
}

.promo-board__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(1.06) brightness(1.04);
}

.promo-board__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(36, 58, 46, 0.82) 0%,
    rgba(42, 68, 54, 0.58) 36%,
    rgba(48, 72, 58, 0.32) 62%,
    rgba(52, 78, 62, 0.12) 100%
  );
  pointer-events: none;
}

.promo-board__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 2rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  align-items: end;
}

.promo-board__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #95d5b2;
}

.promo-board__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #fff;
}

/* 면책·장문 안내 문단 — 사용 안 함 */
.promo-board__lead:empty {
  display: none;
}

.promo-board__lead {
  margin: 0 0 1.25rem;
  max-width: 22rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.promo-board__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.promo-board__tags li {
  padding: 0.4rem 0.85rem;
  border-radius: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  font-weight: 500;
  color: #e8f5e9;
  backdrop-filter: blur(6px);
}

.site-area-list {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  max-width: 24rem;
}

.site-area-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.site-area-list strong {
  color: #d8f3dc;
  font-weight: 600;
}

.promo-board__photo {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  min-height: 14rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.promo-board__photo img {
  width: 100%;
  height: 100%;
  min-height: 14rem;
  object-fit: cover;
  display: block;
}

.promo-board__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}

.promo-board__tile {
  position: relative;
  margin: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  min-height: 9rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.promo-board__tile--a {
  grid-column: 1 / -1;
  min-height: 11rem;
}

.promo-board__tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.promo-board__tile:hover img {
  transform: scale(1.04);
}

.promo-board__tile figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
  color: #fff;
}

.promo-board__num {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  opacity: 0.75;
}

.promo-board__tile strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.promo-board__tile em {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.75rem;
  font-style: normal;
  opacity: 0.88;
}

/* Home — 운영 방식 visual row */
.ops-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  grid-column: 1 / -1;
  margin-bottom: 1rem;
}

/* 분야별 전문가 연계 — 그리드 2칸 전체 너비 (ID 변경 후에도 유지) */
.ops-panel__content > .ops-panel__stats,
#overview-stats-grid {
  grid-column: 1 / -1;
  width: 100%;
}

body.hbc-site .ops-panel__stats {
  min-height: clamp(20rem, 38vw, 43rem);
}

body.hbc-site .ops-panel__stats > .absolute-img {
  object-position: center 40%;
}

@media screen and (max-width: 991px) {
  .ops-panel {
    grid-template-columns: 1fr;
  }
}

.ops-panel__photo {
  border-radius: 2rem;
  overflow: hidden;
  min-height: 22rem;
}

.ops-panel__photo img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  display: block;
}

.ops-panel__board {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ops-panel__board-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ops-panel__board::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(48, 72, 58, 0.55) 0%,
    rgba(36, 58, 46, 0.78) 100%
  );
  pointer-events: none;
}

.ops-panel__board-inner {
  position: relative;
  z-index: 1;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ops-panel__eyebrow {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b7e4c7;
}

.ops-panel__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
}

.ops-panel__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.ops-tile {
  position: relative;
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  min-height: 7.5rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.ops-tile img {
  width: 100%;
  height: 100%;
  min-height: 7.5rem;
  object-fit: cover;
  display: block;
}

.ops-tile figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.65rem 0.75rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.75));
  color: #fff;
}

.ops-tile figcaption span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  opacity: 0.8;
}

.ops-tile figcaption strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.25;
}

.ops-tile figcaption em {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.65rem;
  font-style: normal;
  opacity: 0.85;
}

.ops-panel__board-inner .button.kakao-btn {
  align-self: flex-start;
  margin-top: 0.25rem;
}

@media screen and (max-width: 991px) {
  .ops-panel__tiles {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 991px) {
  .promo-board__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .promo-board__frame {
    min-height: auto;
  }

  .promo-board__tile--a {
    min-height: 10rem;
  }
}

@media screen and (max-width: 479px) {
  .promo-board__tiles {
    grid-template-columns: 1fr;
  }

  .promo-board__tile--a {
    grid-column: auto;
  }
}

/* About — image-first layout (no text-only blocks) */
.about-hero__frame,
.about-story__main,
.about-bento__cell,
.about-tile,
.about-field,
.about-cta__frame,
.about-layout-contact__frame {
  position: relative;
  margin: 0;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid rgba(27, 67, 50, 0.08);
  box-shadow: 0 16px 40px rgba(20, 42, 31, 0.12);
}

.about-hero__frame {
  min-height: clamp(18rem, 52vh, 28rem);
  background: #2d6a4f;
}

.about-hero__img,
.about-story__main img,
.about-bento__cell img,
.about-tile img,
.about-field img,
.about-cta__frame img,
.about-layout-contact__frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-hero__frame::after,
.about-story__main::after,
.about-bento__cell::after,
.about-cta__frame::after,
.about-layout-contact__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 33, 61, 0.12) 0%,
    rgba(20, 42, 31, 0.35) 55%,
    rgba(20, 42, 31, 0.78) 100%
  );
  pointer-events: none;
}

.about-hero__bar {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.about-hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b7e4c7;
}

.about-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #fff;
}

.about-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-hero__chips li {
  padding: 0.45rem 0.9rem;
  border-radius: 4rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.75rem;
  font-weight: 600;
  color: #e8f5e9;
  backdrop-filter: blur(8px);
}

.about-story__head {
  max-width: 42rem;
}

.about-story__head .heading-large {
  margin: 0 0 0.65rem;
  letter-spacing: -0.03em;
}

.about-story__head .text-xlarge {
  margin: 0;
  line-height: 1.65;
}

.about-story__head strong {
  color: #1b4332;
  font-weight: 700;
}

.about-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 0.85rem;
  align-items: stretch;
}

.about-story__main {
  min-height: 24rem;
}

a.about-tile-link,
a.about-story__main {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

a.about-tile-link:hover,
a.about-story__main:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(20, 42, 31, 0.18);
}

a.about-tile-link:focus-visible,
a.about-story__main:focus-visible {
  outline: 2px solid #40916c;
  outline-offset: 3px;
}

a.ops-tile.about-tile-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.about-story__side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0.85rem;
}

.about-tile {
  min-height: 11rem;
}

.about-story__main figcaption,
.about-bento__cell figcaption,
.about-tile figcaption {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 1rem 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
  color: #fff;
}

.about-story__main figcaption span,
.about-bento__cell figcaption span,
.about-tile figcaption span {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  opacity: 0.8;
}

.about-story__main figcaption strong,
.about-bento__cell figcaption strong,
.about-tile figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.about-story__main figcaption em,
.about-bento__cell figcaption em,
.about-tile figcaption em {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.75rem;
  font-style: normal;
  opacity: 0.88;
}

.about-story__main:hover img,
.about-bento__cell:hover img,
.about-tile:hover img,
.about-field:hover img {
  transform: scale(1.03);
}

.about-bento__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 0.85rem;
}

.about-bento__cell {
  min-height: 11rem;
}

.about-bento__cell--wide {
  grid-column: span 2;
  min-height: 14rem;
}

.about-bento__cell--tall {
  grid-row: span 2;
  min-height: 22.5rem;
}

.about-process .ops-panel__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.85rem;
}

.about-fields__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.about-field {
  display: block;
  min-height: 16rem;
  text-decoration: none;
}

.about-field__label {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  display: block;
  padding: 1rem 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
  color: #fff;
}

.about-field__label strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.about-field__label em {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.75rem;
  font-style: normal;
  opacity: 0.88;
}

.about-cta__frame {
  min-height: 16rem;
}

.about-cta__frame figcaption {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.about-cta__eyebrow {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b7e4c7;
}

.about-cta__frame figcaption strong {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.03em;
}

.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.about-cta__secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.about-cta__secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.about-layout-contact__frame {
  min-height: 14rem;
}

.about-layout-contact__bar {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(20, 42, 31, 0.82);
  backdrop-filter: blur(8px);
  color: rgba(232, 245, 233, 0.92);
  font-size: 0.8125rem;
  line-height: 1.45;
}

.about-layout-contact__bar a {
  color: #fff;
  text-decoration: none;
}

.about-layout-contact__bar a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 991px) {
  .about-story__grid,
  .about-process .ops-panel__content {
    grid-template-columns: 1fr;
  }

  .about-bento__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-bento__cell--wide {
    grid-column: span 2;
  }

  .about-bento__cell--tall {
    grid-row: auto;
    min-height: 12rem;
  }

  .about-fields__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 479px) {
  .about-bento__grid,
  .about-fields__grid {
    grid-template-columns: 1fr;
  }

  .about-bento__cell--wide {
    grid-column: auto;
  }

  .about-story__side {
    grid-template-rows: auto;
  }
}

/* Work poster — 하내바디크가 하는일 상세 (editorial layout) */
.work-poster {
  font-family: var(--font-poster-serif);
}

.work-poster__back {
  display: inline-block;
  margin-bottom: 1.35rem;
  font-family: var(--font-poster-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: #1b4332;
  text-decoration: none;
}

.work-poster__back:hover {
  color: #40916c;
}

.work-poster__frame {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border-radius: 2rem;
  overflow: hidden;
  background: linear-gradient(145deg, #1b4332 0%, #2d6a4f 42%, #40916c 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 56px rgba(20, 42, 31, 0.22);
}

.work-poster__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(149, 213, 178, 0.25) 0%, transparent 50%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 18px,
      rgba(255, 255, 255, 0.04) 18px,
      rgba(255, 255, 255, 0.04) 19px
    );
  pointer-events: none;
}

.work-poster__stripe {
  position: absolute;
  top: 1.25rem;
  right: -2rem;
  font-family: var(--font-poster-display);
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: rgba(255, 255, 255, 0.07);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  pointer-events: none;
  user-select: none;
}

.work-poster__head {
  position: relative;
  z-index: 2;
  margin-bottom: 1.25rem;
  max-width: 28rem;
}

.work-poster__num {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 4rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-family: var(--font-poster-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #d8f3dc;
}

.work-poster__eyebrow {
  margin: 0 0 0.25rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(216, 243, 220, 0.9);
}

.work-poster__sub {
  margin: 0.35rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.work-poster__en {
  margin: 0 0 0.35rem;
  font-family: var(--font-poster-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b7e4c7;
}

.work-poster__ko {
  margin: 0;
  font-family: var(--font-poster-display);
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: #fff;
}

.work-poster__collage {
  position: relative;
  z-index: 2;
  min-height: clamp(18rem, 38vw, 26rem);
  margin-bottom: -2.5rem;
}

.work-poster__shot {
  margin: 0;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.work-poster__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-poster__shot--main {
  position: relative;
  width: 62%;
  min-height: clamp(14rem, 28vw, 20rem);
  border-radius: 1.25rem 2.5rem 1.25rem 1.25rem;
  z-index: 2;
}

.work-poster__shot--sub {
  position: absolute;
  width: 38%;
  min-height: 9rem;
  top: 8%;
  right: 0;
  border-radius: 2rem 1rem 2rem 1rem;
  transform: rotate(4deg);
  z-index: 3;
}

.work-poster__shot--accent {
  position: absolute;
  width: 32%;
  min-height: 7.5rem;
  bottom: 0;
  right: 14%;
  border-radius: 50% 1.25rem 1.25rem 1.25rem;
  transform: rotate(-6deg);
  z-index: 4;
}

/* Pattern B — stacked vertical */
.work-poster--b .work-poster__collage {
  min-height: clamp(20rem, 42vw, 28rem);
}

.work-poster--b .work-poster__shot--main {
  width: 100%;
  min-height: clamp(12rem, 24vw, 16rem);
  border-radius: 2rem 2rem 0.5rem 0.5rem;
  transform: none;
}

.work-poster--b .work-poster__shot--sub {
  width: 48%;
  top: auto;
  bottom: 0;
  left: 0;
  right: auto;
  transform: rotate(-5deg);
}

.work-poster--b .work-poster__shot--accent {
  width: 44%;
  bottom: 4%;
  right: 0;
  left: auto;
  border-radius: 1rem 2rem 1rem 2rem;
  transform: rotate(7deg);
}

/* Pattern C — diagonal overlap */
.work-poster--c .work-poster__shot--main {
  width: 70%;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
  border-radius: 0.5rem 2rem 1.5rem 0.5rem;
}

.work-poster--c .work-poster__shot--sub {
  width: 42%;
  top: auto;
  bottom: 6%;
  right: 0;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  transform: rotate(0deg);
}

.work-poster--c .work-poster__shot--accent {
  width: 28%;
  top: 0;
  bottom: auto;
  right: 22%;
  border-radius: 50%;
  aspect-ratio: 1;
}

.work-poster__sheet {
  position: relative;
  z-index: 5;
  margin-top: 0;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: 1.5rem;
  background: #f8f6f0;
  border: 1px solid rgba(27, 67, 50, 0.1);
  box-shadow: 0 20px 48px rgba(20, 42, 31, 0.18);
}

.work-poster__sheet::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #1b4332, #52b788, #95d5b2);
}

.work-poster__lead {
  margin: 0.5rem 0 1.25rem;
  font-family: var(--font-poster-serif);
  font-size: clamp(1.125rem, 2.4vw, 1.375rem);
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: -0.02em;
  color: #1b4332;
}

.work-poster__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.work-poster__tags li {
  padding: 0.5rem 0.95rem;
  border-radius: 0.35rem;
  background: #fff;
  border: 1px solid rgba(27, 67, 50, 0.12);
  font-family: var(--font-poster-display);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  color: #2d6a4f;
  box-shadow: 0 4px 12px rgba(27, 67, 50, 0.06);
}

.work-poster__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.work-poster__btn-alt {
  background: #fff;
  border-color: rgba(27, 67, 50, 0.2);
  color: #1b4332;
  font-family: var(--font-poster-display);
}

.work-poster__btn-alt:hover {
  background: #e8f5e9;
  color: #1b4332;
}

@media screen and (max-width: 767px) {
  .work-poster__collage {
    min-height: 16rem;
    margin-bottom: -1.5rem;
  }

  .work-poster__shot--main {
    width: 88%;
  }

  .work-poster__shot--sub {
    width: 46%;
    top: 4%;
  }

  .work-poster__shot--accent {
    width: 40%;
    right: 4%;
  }

  .work-poster--b .work-poster__shot--main,
  .work-poster--c .work-poster__shot--main {
    width: 100%;
    clip-path: none;
  }

  .work-poster__stripe {
    display: none;
  }
}

/* Scroll reveal */
.on-scroll {
  opacity: 0;
  transform: translateY(2rem);
  transition:
    opacity 0.75s cubic-bezier(0.39, 0.575, 0.565, 1),
    transform 0.75s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 연결안내 — poster + animated steps */
.connect-page {
  font-family: var(--font-poster-serif);
}

.connect-hero {
  position: relative;
  margin-bottom: 1.25rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 2rem;
  overflow: hidden;
  background: linear-gradient(135deg, #142a1f 0%, #1b4332 45%, #2d6a4f 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 56px rgba(20, 42, 31, 0.2);
}

.connect-hero__mesh {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 22px,
      rgba(255, 255, 255, 0.03) 22px,
      rgba(255, 255, 255, 0.03) 23px
    ),
    radial-gradient(circle at 15% 20%, rgba(149, 213, 178, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.connect-hero__collage {
  position: relative;
  min-height: clamp(14rem, 32vw, 20rem);
  margin-bottom: 1.25rem;
}

.connect-hero__img {
  margin: 0;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.connect-hero__img img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

.connect-hero__img--a {
  position: relative;
  width: 58%;
  min-height: 12rem;
  border-radius: 1.25rem 2rem 1rem 1.25rem;
  z-index: 2;
  animation: connect-page-drift-a 7s ease-in-out infinite;
}

.connect-hero__img--b {
  position: absolute;
  width: 36%;
  top: 6%;
  right: 0;
  min-height: 8rem;
  border-radius: 2rem 1rem 1.5rem 1rem;
  transform: rotate(5deg);
  z-index: 3;
  animation: connect-page-drift-b 8s ease-in-out infinite;
}

.connect-hero__img--c {
  position: absolute;
  width: 30%;
  bottom: 0;
  right: 18%;
  min-height: 7rem;
  border-radius: 50% 1.25rem 1.25rem 1.25rem;
  transform: rotate(-4deg);
  z-index: 4;
  animation: connect-page-drift-c 6.5s ease-in-out infinite;
}

@keyframes connect-page-drift-a {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes connect-page-drift-b {
  0%,
  100% {
    transform: rotate(5deg) translateY(0);
  }
  50% {
    transform: rotate(5deg) translateY(-10px);
  }
}

@keyframes connect-page-drift-c {
  0%,
  100% {
    transform: rotate(-4deg) translateY(0);
  }
  50% {
    transform: rotate(-4deg) translateY(6px);
  }
}

.connect-hero__head {
  position: relative;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.connect-hero__eyebrow {
  margin: 0 0 0.4rem;
  font-family: var(--font-poster-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b7e4c7;
}

.connect-hero__title {
  margin: 0;
  font-family: var(--font-poster-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: #fff;
}

.connect-page-intro {
  margin-bottom: 2rem;
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  border-radius: 1.5rem;
  background: #f8f6f0;
  border: 1px solid rgba(27, 67, 50, 0.1);
  box-shadow: 0 16px 40px rgba(20, 42, 31, 0.1);
}

.connect-page-intro::before {
  content: "";
  display: block;
  width: 4rem;
  height: 4px;
  margin-bottom: 1rem;
  border-radius: 2px;
  background: linear-gradient(90deg, #1b4332, #52b788);
}

.connect-page-intro__lead {
  margin: 0;
  font-family: var(--font-poster-serif);
  font-size: clamp(1.125rem, 2.5vw, 1.45rem);
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: -0.02em;
  color: #1b4332;
}

.connect-page-intro__lead strong {
  color: #1b4332;
  font-weight: 700;
}

.connect-page-intro__points {
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.connect-page-intro__points li {
  padding: 0.45rem 0.85rem;
  border-radius: 2rem;
  background: #fff;
  border: 1px solid rgba(27, 67, 50, 0.12);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #2d6a4f;
}

.connect-flow__label {
  margin: 0 0 1.25rem;
  font-family: var(--font-poster-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #40916c;
}

.connect-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.connect-step {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1rem;
  align-items: stretch;
}

.connect-step--flip {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.connect-step--flip .connect-step__shot {
  order: 2;
}

.connect-step--flip .connect-step__card {
  order: 1;
}

.connect-step__shot {
  position: relative;
  margin: 0;
  min-height: 11rem;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(20, 42, 31, 0.15);
}

.connect-step.is-visible .connect-step__shot {
  animation: connect-step-float 5.5s ease-in-out infinite;
  animation-delay: var(--reveal-delay, 0ms);
}

@keyframes connect-step-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1.01);
  }
}

.connect-step__shot img {
  width: 100%;
  height: 100%;
  min-height: 11rem;
  object-fit: cover;
  display: block;
}

.connect-step__shot {
  position: relative;
}

.connect-page-motion {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Step 01 — 카카오 채팅 */
.connect-page-motion--kakao {
  background: linear-gradient(180deg, rgba(254, 229, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.connect-page-motion__bubble {
  position: absolute;
  border-radius: 1rem 1rem 1rem 0.25rem;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  animation: connect-page-bubble 2.8s ease-in-out infinite;
}

.connect-page-motion__bubble--1 {
  width: 3.5rem;
  height: 2rem;
  left: 12%;
  bottom: 28%;
  animation-delay: 0s;
}

.connect-page-motion__bubble--2 {
  width: 4.5rem;
  height: 2.25rem;
  left: 28%;
  bottom: 42%;
  animation-delay: 0.5s;
}

.connect-page-motion__bubble--3 {
  width: 3rem;
  height: 1.75rem;
  right: 18%;
  bottom: 32%;
  border-radius: 1rem 1rem 0.25rem 1rem;
  animation-delay: 1s;
}

.connect-page-motion__kakao-label {
  position: absolute;
  right: 10%;
  top: 12%;
  padding: 0.4rem 0.65rem;
  border-radius: 0.5rem;
  background: #fee500;
  color: #191919;
  font-family: var(--font-poster-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  animation: connect-page-kakao-pulse 2s ease-in-out infinite;
}

@keyframes connect-page-bubble {
  0%,
  100% {
    opacity: 0.55;
    transform: translateY(0) scale(0.95);
  }
  50% {
    opacity: 1;
    transform: translateY(-6px) scale(1);
  }
}

@keyframes connect-page-kakao-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

/* Step 02 — 현장·위치 */
.connect-page-motion--location {
  background: linear-gradient(180deg, rgba(27, 67, 50, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.connect-page-motion__map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image: linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 28px 28px;
}

.connect-page-motion__pin {
  position: absolute;
  left: 50%;
  top: 38%;
  width: 1.25rem;
  height: 1.25rem;
  margin: -0.625rem 0 0 -0.625rem;
  border-radius: 50% 50% 50% 0;
  background: #e63946;
  transform: rotate(-45deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  animation: connect-page-pin-drop 2.4s ease-in-out infinite;
}

.connect-page-motion__pin-ring {
  position: absolute;
  left: 50%;
  top: 38%;
  width: 3rem;
  height: 3rem;
  margin: -1.5rem 0 0 -1.5rem;
  border: 2px solid rgba(230, 57, 70, 0.65);
  border-radius: 50%;
  animation: connect-page-pin-ring 2.4s ease-out infinite;
}

@keyframes connect-page-pin-drop {
  0%,
  100% {
    transform: rotate(-45deg) translateY(0);
  }
  50% {
    transform: rotate(-45deg) translateY(-8px);
  }
}

@keyframes connect-page-pin-ring {
  0% {
    transform: scale(0.4);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Step 03 — 작업 범위 */
.connect-page-motion--scope {
  background: linear-gradient(135deg, rgba(27, 67, 50, 0.2) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.connect-page-motion__clipboard {
  position: absolute;
  left: 14%;
  top: 18%;
  width: 3.5rem;
  height: 4.5rem;
  border-radius: 0.35rem;
  border: 3px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.2);
}

.connect-page-motion__scope-line {
  position: absolute;
  left: 22%;
  top: 32%;
  width: 55%;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  animation: connect-page-scope-scan 2.2s ease-in-out infinite;
}

.connect-page-motion__scope-check {
  position: absolute;
  right: 16%;
  bottom: 22%;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 3px solid #95d5b2;
  background: rgba(27, 67, 50, 0.85);
  animation: connect-page-check-pop 2.2s ease-in-out infinite;
}

@keyframes connect-page-scope-scan {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(3.5rem);
    opacity: 1;
  }
}

@keyframes connect-page-check-pop {
  0%,
  70%,
  100% {
    transform: scale(0.85);
    opacity: 0.6;
  }
  85% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* Step 04 — 매칭 */
.connect-page-motion--match {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.38) 100%);
}

.connect-page-motion__node {
  position: absolute;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: #b7e4c7;
  box-shadow: 0 0 0 4px rgba(183, 228, 199, 0.35);
  animation: connect-page-node-pulse 2s ease-in-out infinite;
}

.connect-page-motion__node--1 {
  left: 20%;
  top: 35%;
}

.connect-page-motion__node--2 {
  left: 50%;
  top: 22%;
  animation-delay: 0.35s;
}

.connect-page-motion__node--3 {
  right: 18%;
  bottom: 30%;
  animation-delay: 0.7s;
}

.connect-page-motion__match-line {
  position: absolute;
  left: 24%;
  top: 28%;
  width: 52%;
  height: 2px;
  background: linear-gradient(90deg, #95d5b2, #52b788, #95d5b2);
  transform-origin: left center;
  animation: connect-page-line-draw 2.5s ease-in-out infinite;
}

@keyframes connect-page-node-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.35);
    opacity: 1;
  }
}

@keyframes connect-page-line-draw {
  0%,
  100% {
    transform: scaleX(0.35);
    opacity: 0.4;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

/* Step 05 — 작업 진행 */
.connect-page-motion--work {
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: connect-page-work-shine 3s linear infinite;
}

.connect-page-motion__work-sweep {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 60%
  );
  animation: connect-page-sweep 2.8s ease-in-out infinite;
}

.connect-page-motion__work-spark {
  position: absolute;
  right: 14%;
  bottom: 20%;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid rgba(149, 213, 178, 0.8);
  animation: connect-page-spark 1.8s ease-out infinite;
}

@keyframes connect-page-work-shine {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@keyframes connect-page-sweep {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes connect-page-spark {
  0% {
    transform: scale(0.6);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.connect-step__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  padding: 0.35rem 0.7rem;
  border-radius: 4rem;
  background: rgba(27, 67, 50, 0.88);
  font-family: var(--font-poster-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #d8f3dc;
}

.connect-step__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: 1.25rem;
  background: linear-gradient(145deg, #fff 0%, #eef7f0 100%);
  border: 1px solid rgba(27, 67, 50, 0.1);
  box-shadow: 0 10px 28px rgba(27, 67, 50, 0.08);
}

.connect-step__hint {
  margin: 0 0 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #52b788;
}

.connect-step__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-poster-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #142a1f;
}

.connect-step__sub {
  margin: 0;
  font-family: var(--font-poster-serif);
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(20, 42, 31, 0.78);
}

.connect-page-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(27, 67, 50, 0.08);
}

.connect-page-cta > .button-outlined:not(.connect-page-cta__alt) {
  background: #1b4332;
  color: #e8f5e9;
  border: 2px solid #1b4332;
  font-weight: 600;
}

.connect-page-cta > .button-outlined:not(.connect-page-cta__alt):hover {
  background: #2d6a4f;
  border-color: #2d6a4f;
  color: #fff;
}

.connect-page-cta > .button-outlined:not(.connect-page-cta__alt) .text-large {
  color: inherit;
}

.connect-page-cta__alt {
  background: #fff;
  border: 2px solid rgba(27, 67, 50, 0.25);
  color: #1b4332;
  font-weight: 600;
}

.connect-page-cta__alt:hover {
  background: #e8f5e9;
  border-color: #2d6a4f;
  color: #1b4332;
}

.connect-page-cta__link {
  width: 100%;
  margin-top: 0.25rem;
  font-family: var(--font-poster-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2d6a4f;
  text-decoration: none;
}

.connect-page-cta__link:hover {
  color: #1b4332;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .connect-step,
  .connect-step--flip {
    grid-template-columns: 1fr;
  }

  .connect-step--flip .connect-step__shot,
  .connect-step--flip .connect-step__card {
    order: unset;
  }

  .connect-hero__img--a {
    width: 85%;
  }

  .connect-hero__head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 연결현장 — 유형별 포스터 갤러리 */
.site-gallery {
  font-family: var(--font-poster-serif);
}

.site-gallery-hero {
  position: relative;
  margin-bottom: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 2rem;
  overflow: hidden;
  background: linear-gradient(145deg, #1b4332 0%, #2d6a4f 50%, #40916c 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 56px rgba(20, 42, 31, 0.2);
}

.site-gallery-hero__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 45%);
  pointer-events: none;
}

.site-gallery-hero__collage {
  position: relative;
  min-height: clamp(13rem, 28vw, 18rem);
  margin-bottom: 1rem;
}

.site-gallery-hero__img {
  margin: 0;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.site-gallery-hero__img img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

.site-gallery-hero__img--a {
  position: relative;
  width: 55%;
  min-height: 11rem;
  border-radius: 1.25rem 2rem 1rem 1.25rem;
  z-index: 2;
  animation: site-gallery-hero-float 7s ease-in-out infinite;
}

.site-gallery-hero__img--b {
  position: absolute;
  width: 38%;
  top: 5%;
  right: 0;
  min-height: 8rem;
  border-radius: 2rem 1rem 1.5rem 1rem;
  transform: rotate(4deg);
  z-index: 3;
  animation: site-gallery-hero-float 8s ease-in-out infinite 0.5s;
}

.site-gallery-hero__img--c {
  position: absolute;
  width: 32%;
  bottom: 0;
  right: 20%;
  min-height: 6.5rem;
  border-radius: 50% 1.25rem 1.25rem 1.25rem;
  transform: rotate(-5deg);
  z-index: 4;
  animation: site-gallery-hero-float 6s ease-in-out infinite 1s;
}

@keyframes site-gallery-hero-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

.site-gallery-hero__img--b {
  animation-name: site-gallery-hero-float-b;
}

@keyframes site-gallery-hero-float-b {
  0%,
  100% {
    transform: rotate(4deg) translateY(0);
  }
  50% {
    transform: rotate(4deg) translateY(-8px);
  }
}

.site-gallery-hero__head {
  position: relative;
  z-index: 5;
}

.site-gallery-hero__eyebrow {
  margin: 0 0 0.4rem;
  font-family: var(--font-poster-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b7e4c7;
}

.site-gallery-hero__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-poster-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1.08;
}

.site-gallery-hero__sub {
  margin: 0;
  max-width: 28rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(232, 245, 233, 0.88);
}

.site-gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.site-gallery-filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.site-gallery-filter {
  flex: 0 0 auto;
  padding: 0.45rem 0.95rem;
  border: 1px solid rgba(27, 67, 50, 0.15);
  border-radius: 4rem;
  background: rgba(255, 255, 255, 0.65);
  font-family: var(--font-poster-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1b4332;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.site-gallery-filter:hover {
  background: #e8f5e9;
}

.site-gallery-filter.is-active {
  background: #1b4332;
  color: #fff;
  border-color: #1b4332;
}

.site-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.site-gallery-card {
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.site-gallery-card.is-hidden {
  display: none;
}

.site-gallery-card--wide {
  grid-column: span 2;
}

.site-gallery-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.site-gallery-card__shot {
  position: relative;
  margin: 0;
  min-height: 14rem;
  border-radius: 1.35rem;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 36px rgba(20, 42, 31, 0.14);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.site-gallery-card__link:hover .site-gallery-card__shot {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 22px 48px rgba(20, 42, 31, 0.22);
}

.site-gallery-card__shot img {
  width: 100%;
  height: 100%;
  min-height: 14rem;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.site-gallery-card__link:hover .site-gallery-card__shot img {
  transform: scale(1.06);
}

.site-gallery-card__cap {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 1rem 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
  color: #fff;
}

.site-gallery-card__num {
  display: block;
  font-family: var(--font-poster-display);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  opacity: 0.8;
  margin-bottom: 0.2rem;
}

.site-gallery-card__cap strong {
  display: block;
  font-family: var(--font-poster-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-gallery-card__cap em {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.8125rem;
  font-style: normal;
  opacity: 0.92;
}

.site-gallery-card__action {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.3rem 0.65rem;
  border-radius: 4rem;
  background: rgba(254, 229, 0, 0.92);
  color: #191919;
  font-family: var(--font-poster-display);
  font-size: 0.6875rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.site-gallery-card__link:hover .site-gallery-card__action {
  opacity: 1;
  transform: translateY(0);
}

/* —— 연결현장: 현장 기록형 (포트폴리오 X) —— */
.site-gallery--field .site-gallery-card--field .site-gallery-card__shot {
  min-height: 12rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(27, 67, 50, 0.14);
  box-shadow: 0 6px 18px rgba(20, 42, 31, 0.08);
}

.site-gallery--field .site-gallery-card__link:hover .site-gallery-card__shot,
.site-gallery--field .site-gallery-card__static:hover .site-gallery-card__shot {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(20, 42, 31, 0.12);
}

.site-gallery--field .site-gallery-card__link:hover .site-gallery-card__shot img {
  transform: none;
}

.site-gallery--field .site-gallery-card--raw .site-gallery-card__shot img,
.site-gallery--field .site-gallery-card--phone .site-gallery-card__shot img {
  filter: none;
  image-rendering: auto;
}

.site-gallery--field .site-gallery-card--phone .site-gallery-card__shot img {
  object-position: center 42%;
}

.site-gallery--field .site-gallery-field-hero__shots img,
.site-gallery--field .site-gallery-ba__item img {
  filter: none;
}

.site-gallery--field .site-gallery-card--field .site-gallery-card__link:hover .site-gallery-card__shot img,
.site-gallery--field .site-gallery-card--field .site-gallery-card__static:hover .site-gallery-card__shot img {
  transform: none;
  filter: none;
}

.site-gallery-card__tag {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 3;
  padding: 0.2rem 0.5rem;
  border-radius: 0.35rem;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  background: rgba(30, 40, 35, 0.72);
  backdrop-filter: blur(4px);
}

.site-gallery-card__cap--field {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
  padding: 0.75rem 0.85rem;
}

.site-gallery-card__cap--field strong {
  font-size: 0.9375rem;
}

.site-gallery-card__cap--field em {
  font-size: 0.75rem;
  opacity: 0.9;
}

.site-gallery-card__static {
  display: block;
  cursor: default;
}

.site-gallery-honest {
  margin: 0 0 1.25rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.65rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(20, 33, 61, 0.62);
  background: rgba(255, 255, 255, 0.55);
  border: 1px dashed rgba(27, 67, 50, 0.18);
}

.site-gallery-field-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 1.75rem);
  align-items: center;
  margin-bottom: 1rem;
}

.site-gallery-field-hero__shots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
}

.site-gallery-field-hero__shots figure {
  position: relative;
  margin: 0;
  border-radius: 0.65rem;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid rgba(27, 67, 50, 0.12);
}

.site-gallery-field-hero__shots img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
}

.site-gallery-field-hero__shots span {
  position: absolute;
  left: 0.35rem;
  bottom: 0.35rem;
  padding: 0.15rem 0.4rem;
  border-radius: 0.25rem;
  font-size: 0.5625rem;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
}

.site-gallery-field-hero__copy .site-sub-hero__title {
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
}

.site-gallery-ba__note {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  line-height: 1.55;
  color: rgba(20, 33, 61, 0.68);
}

.site-gallery-ba__note strong {
  color: #1b4332;
}

.site-gallery-ba__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.site-gallery-ba {
  margin-bottom: 1.25rem;
}

.site-gallery-ba__item {
  margin: 0;
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid rgba(27, 67, 50, 0.12);
  background: rgba(255, 255, 255, 0.5);
}

.site-gallery-ba__item img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  filter: saturate(0.9);
}

.site-gallery-ba__item figcaption {
  padding: 0.55rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(20, 33, 61, 0.78);
}

.site-gallery-ba__label {
  display: inline-block;
  min-width: 1.25rem;
  margin-right: 0.35rem;
  padding: 0.1rem 0.35rem;
  border-radius: 0.25rem;
  font-size: 0.625rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
}

.site-gallery-ba__label--before {
  background: #6c757d;
}

.site-gallery-ba__label--after {
  background: #40916c;
}

.site-gallery-grid--field {
  gap: 0.65rem;
}

@media screen and (max-width: 767px) {
  .site-gallery-field-hero {
    grid-template-columns: 1fr;
  }

  .site-gallery-ba__pair {
    grid-template-columns: 1fr;
  }
}

.site-gallery-motion {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.site-gallery-motion--town .l1,
.site-gallery-motion--town .l2 {
  position: absolute;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  animation: site-gal-pulse 2.5s ease-in-out infinite;
}

.site-gallery-motion--town .l1 {
  width: 40%;
  height: 3px;
  left: 15%;
  bottom: 35%;
}

.site-gallery-motion--town .l2 {
  width: 28%;
  height: 3px;
  right: 20%;
  bottom: 42%;
  animation-delay: 0.4s;
}

.site-gallery-motion--home .site-gallery-motion__sun {
  position: absolute;
  top: 15%;
  right: 12%;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(254, 229, 0, 0.55);
  animation: site-gal-pulse 3s ease-in-out infinite;
}

.site-gallery-motion--apt .site-gallery-motion__block {
  position: absolute;
  bottom: 25%;
  width: 1.5rem;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  animation: site-gal-rise 2.8s ease-in-out infinite;
}

.site-gallery-motion--apt .b1 {
  left: 20%;
  height: 2.5rem;
}

.site-gallery-motion--apt .b2 {
  left: 38%;
  height: 3.5rem;
  animation-delay: 0.3s;
}

.site-gallery-motion--apt .b3 {
  left: 56%;
  height: 2rem;
  animation-delay: 0.6s;
}

.site-gallery-motion--hanok .site-gallery-motion__curve {
  position: absolute;
  top: 18%;
  left: 50%;
  width: 4rem;
  height: 1.5rem;
  margin-left: -2rem;
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-bottom: none;
  border-radius: 50% 50% 0 0;
  animation: site-gal-pulse 2.6s ease-in-out infinite;
}

.site-gallery-motion--yard .site-gallery-motion__leaf {
  position: absolute;
  width: 1.25rem;
  height: 1.75rem;
  background: rgba(149, 213, 178, 0.75);
  border-radius: 0 80% 0 80%;
  animation: site-gal-leaf 3s ease-in-out infinite;
}

.site-gallery-motion--yard .site-gallery-motion__leaf:first-child {
  left: 18%;
  bottom: 28%;
}

.site-gallery-motion--yard .site-gallery-motion__leaf.l2 {
  right: 22%;
  bottom: 30%;
  animation-delay: 0.8s;
}

.site-gallery-motion--deck .site-gallery-motion__plank {
  position: absolute;
  left: 10%;
  bottom: 32%;
  width: 70%;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  animation: site-gal-sweep 2.4s linear infinite;
}

.site-gallery-motion--lawn .site-gallery-motion__stripe {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 12px,
    rgba(255, 255, 255, 0.08) 12px,
    rgba(255, 255, 255, 0.08) 14px
  );
  animation: site-gal-sweep 4s linear infinite;
}

.site-gallery-motion--tree .site-gallery-motion__canopy {
  position: absolute;
  top: 12%;
  left: 50%;
  width: 3.5rem;
  height: 3.5rem;
  margin-left: -1.75rem;
  border-radius: 50%;
  background: rgba(82, 183, 136, 0.45);
  animation: site-gal-pulse 2.8s ease-in-out infinite;
}

.site-gallery-motion--cafe .site-gallery-motion__cup {
  position: absolute;
  right: 14%;
  bottom: 28%;
  width: 2rem;
  height: 2.25rem;
  border: 3px solid rgba(255, 255, 255, 0.55);
  border-radius: 0 0 0.5rem 0.5rem;
  animation: site-gal-pulse 2.2s ease-in-out infinite;
}

.site-gallery-motion--lobby .site-gallery-motion__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 45%, rgba(255, 255, 255, 0.25) 50%, transparent 55%);
  animation: site-gal-sweep 3s ease-in-out infinite;
}

.site-gallery-motion--shop .site-gallery-motion__sign {
  position: absolute;
  top: 20%;
  left: 18%;
  padding: 0.35rem 0.6rem;
  background: rgba(27, 67, 50, 0.75);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  border-radius: 0.25rem;
  animation: site-gal-pulse 2.5s ease-in-out infinite;
}

.site-gallery-motion--shop .site-gallery-motion__sign::after {
  content: "OPEN";
}

.site-gallery-motion--roof .site-gallery-motion__skyline {
  position: absolute;
  bottom: 22%;
  left: 8%;
  width: 84%;
  height: 2.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent);
  clip-path: polygon(0 100%, 8% 40%, 18% 70%, 28% 30%, 40% 80%, 52% 20%, 64% 65%, 78% 35%, 90% 75%, 100% 45%, 100% 100%);
  animation: site-gal-pulse 3.2s ease-in-out infinite;
}

.site-gallery-motion--care .site-gallery-motion__cycle {
  position: absolute;
  right: 12%;
  bottom: 26%;
  width: 2.25rem;
  height: 2.25rem;
  border: 3px solid rgba(183, 228, 199, 0.8);
  border-top-color: transparent;
  border-radius: 50%;
  animation: site-gal-spin 2s linear infinite;
}

@keyframes site-gal-pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes site-gal-rise {
  0%,
  100% {
    transform: scaleY(0.85);
  }
  50% {
    transform: scaleY(1.1);
  }
}

@keyframes site-gal-sweep {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes site-gal-leaf {
  0%,
  100% {
    transform: rotate(-8deg);
  }
  50% {
    transform: rotate(12deg);
  }
}

@keyframes site-gal-spin {
  to {
    transform: rotate(360deg);
  }
}

.site-gallery-cta__frame {
  position: relative;
  margin: 0;
  min-height: 12rem;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(27, 67, 50, 0.1);
}

.site-gallery-cta__frame img {
  width: 100%;
  min-height: 12rem;
  object-fit: cover;
  display: block;
}

.site-gallery-cta__frame figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent 20%, rgba(20, 42, 31, 0.82) 100%);
}

.site-gallery-cta__frame strong {
  font-family: var(--font-poster-display);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.site-gallery-cta__alt {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

@media screen and (max-width: 991px) {
  .site-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-gallery-card--wide {
    grid-column: span 2;
  }
}

@media screen and (max-width: 599px) {
  .site-gallery-grid {
    grid-template-columns: 1fr;
  }

  .site-gallery-card--wide {
    grid-column: auto;
  }

  .site-gallery-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
}

/* 안내형 레이아웃 — 사진 1장 + 글 (상세·서비스·상담 공통) */
.page-intro__back {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #2d6a4f;
  text-decoration: none;
}

.page-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid rgba(27, 67, 50, 0.12);
  box-shadow: 0 8px 28px rgba(20, 42, 31, 0.08);
}

.page-intro__photo {
  margin: 0;
  border-radius: 0.75rem;
  overflow: hidden;
}

.page-intro__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.page-intro__cat {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #40916c;
}

.page-intro__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #1b4332;
  line-height: 1.2;
}

.page-intro__sub {
  margin: 0 0 0.75rem;
  color: #52796f;
  font-size: 0.9375rem;
}

.page-intro__lead {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #14213d;
}

.page-intro__list {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  color: #343a40;
  line-height: 1.6;
}

.page-intro__note {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  color: #52796f;
}

.page-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-sub-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2rem;
  padding: 1.25rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid rgba(27, 67, 50, 0.1);
}

.site-sub-hero__photo {
  margin: 0;
  border-radius: 0.75rem;
  overflow: hidden;
}

.site-sub-hero__photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.site-sub-hero__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #40916c;
}

.site-sub-hero__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #1b4332;
  letter-spacing: -0.03em;
}

.site-sub-hero__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #495057;
}

.site-steps-list {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  line-height: 1.65;
  color: #fff;
}

.site-steps-list li {
  margin-bottom: 0.35rem;
}

.about-layout-guide {
  padding: 0.5rem 0 1rem;
}

.site-text-links {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.site-text-links a {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 1px solid rgba(27, 67, 50, 0.12);
  color: #1b4332;
  text-decoration: none;
  font-weight: 600;
}

.site-text-links a:hover {
  border-color: #40916c;
  background: #f1faee;
}

.connect-step--plain {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(27, 67, 50, 0.1);
}

.connect-step--plain .connect-step__shot {
  margin: 0;
  border-radius: 0.65rem;
  overflow: hidden;
}

.connect-step--plain .connect-step__shot img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.connect-step--plain .connect-step__badge,
.connect-page-motion {
  display: none !important;
}

.connect-step__shot--kakao,
.page-intro__photo--kakao {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  overflow: visible;
}

.kakao-card {
  width: 100%;
  min-height: 12rem;
  aspect-ratio: 4 / 3;
  background: #fee500;
  border-radius: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

.kakao-card--intro {
  min-height: 14rem;
}

.kakao-card__card {
  width: 100%;
  max-width: 18rem;
  margin: 0 auto;
  padding: 1.75rem 1.25rem 1.5rem;
  border-radius: 1rem;
  background: #fff;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.kakao-card__icon {
  display: block;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #fee500;
  box-shadow: 0 0 0 6px #fff;
  position: relative;
}

.kakao-card__icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2.75rem;
  height: 2.5rem;
  transform: translate(-50%, -52%);
  background: #3b1e1e;
  border-radius: 1.25rem 1.25rem 1.25rem 0.35rem;
}

.kakao-card__icon::after {
  content: "";
  position: absolute;
  left: 42%;
  top: 46%;
  width: 0.45rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 1.1rem 0 0 #fff;
}

.kakao-card__title {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: #191919;
  letter-spacing: -0.03em;
}

.kakao-card__sub {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #555;
}

.kakao-card__name {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  font-style: normal;
  color: #888;
}

.ops-tile figcaption span:first-child {
  display: none;
}

@media screen and (max-width: 767px) {
  .page-intro__grid,
  .site-sub-hero,
  .connect-step--plain {
    grid-template-columns: 1fr;
  }

  .promo-board__layout {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .connect-hero__img--a,
  .connect-hero__img--b,
  .connect-hero__img--c,
  .connect-step.is-visible .connect-step__shot,
  .connect-page-motion__bubble,
  .connect-page-motion__kakao-label,
  .connect-page-motion__pin,
  .connect-page-motion__pin-ring,
  .connect-page-motion__scope-line,
  .connect-page-motion__scope-check,
  .connect-page-motion__node,
  .connect-page-motion__match-line,
  .connect-page-motion--work,
  .connect-page-motion__work-sweep,
  .connect-page-motion__work-spark,
  .site-gallery-hero__img--a,
  .site-gallery-hero__img--b,
  .site-gallery-hero__img--c,
  .site-gallery-motion,
  .site-gallery-motion__cycle {
    animation: none;
  }

  .home-hero__content--visual .main-hero__media > video {
    display: none;
  }

  .home-hero__content--visual .main-hero__media.bg-video {
    background: url("../images/content/u-index-hero-poster.png") center 42% / cover no-repeat;
  }
}

@media screen and (max-width: 767px) {
  .brand__asset {
    height: 2.35rem;
  }

  .main-hero__title {
    font-size: 1.75rem;
    max-width: 100%;
  }
}

@media screen and (min-width: 992px) {
  .brand__asset {
    height: 3.1rem;
  }
}

/* Service / inquiry posters (연결 보기) */
.svc-poster__note {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.svc-poster--residential .work-poster__frame {
  background: linear-gradient(145deg, #1b4332 0%, #2d6a4f 48%, #52b788 100%);
}

.svc-poster--yard .work-poster__frame {
  background: linear-gradient(145deg, #1d3557 0%, #2a6f4f 45%, #40916c 100%);
}

.svc-poster--commercial .work-poster__frame {
  background: linear-gradient(145deg, #2d1b69 0%, #1b4332 50%, #40916c 100%);
}

.svc-poster--maintenance .work-poster__frame {
  background: linear-gradient(145deg, #3d405b 0%, #2d6a4f 50%, #74c69d 100%);
}

.svc-poster--lawn .work-poster__frame {
  background: linear-gradient(145deg, #386641 0%, #2d6a4f 42%, #95d5b2 100%);
}

.svc-poster--tree .work-poster__frame {
  background: linear-gradient(145deg, #1b3a2a 0%, #2d6a4f 45%, #52b788 100%);
}

.site-inquiry-poster .work-poster__frame {
  background: linear-gradient(145deg, #3d3d00 0%, #1b4332 42%, #40916c 100%);
}

.site-inquiry-poster .work-poster__frame {
  border-color: rgba(254, 229, 0, 0.25);
}

/* —— Page-specific motion (index / about / work / service / inquiry) —— */
@keyframes site-index-poster-glow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(34, 92, 58, 0);
  }
  50% {
    box-shadow: 0 0 48px rgba(34, 92, 58, 0.12);
  }
}

.section-motion--poster .promo-board__frame {
  animation: site-index-poster-glow 9s ease-in-out infinite;
}

.section-motion--poster .promo-board__tile--a {
  animation: connect-page-drift-a 8s ease-in-out infinite;
}

.section-motion--poster .promo-board__tile--b {
  animation: connect-page-drift-b 9.5s ease-in-out infinite 0.4s;
}

.section-motion--poster .promo-board__tile--c {
  animation: connect-page-drift-c 7.5s ease-in-out infinite 0.8s;
}

.section-motion--ops .ops-tile:first-child {
  animation: site-gallery-hero-float 6.5s ease-in-out infinite;
}

.section-motion--ops .ops-tile:last-child {
  animation: site-gallery-hero-float-b 7.2s ease-in-out infinite 0.6s;
}

@keyframes about-hero-shimmer {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.04);
  }
}

.about-layout-motion--hero .about-hero__img {
  animation: about-hero-shimmer 10s ease-in-out infinite;
}

.about-bento .about-bento__cell:nth-child(2) {
  animation: connect-page-drift-a 8s ease-in-out infinite;
}

.about-bento .about-bento__cell:nth-child(3) {
  animation: connect-page-drift-b 9s ease-in-out infinite 0.3s;
}

.about-bento .about-bento__cell:nth-child(4) {
  animation: connect-page-drift-c 7s ease-in-out infinite 0.6s;
}

@keyframes site-work-mesh-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes site-work-mesh-slide {
  50% {
    transform: translateX(12px);
  }
}

@keyframes site-work-mesh-pulse {
  50% {
    opacity: 0.55;
    transform: scale(1.08);
  }
}

.work-poster__mesh--orbit {
  animation: site-work-mesh-spin 28s linear infinite;
}

.work-poster__mesh--slide {
  animation: site-work-mesh-slide 6s ease-in-out infinite;
}

.work-poster__mesh--tilt,
.work-poster__mesh--zoom,
.work-poster__mesh--wave {
  animation: site-work-mesh-pulse 5s ease-in-out infinite;
}

.work-motion--orbit .work-poster__shot--main {
  animation: connect-page-drift-a 7s ease-in-out infinite;
}

.work-motion--slide .work-poster__shot--sub {
  animation: connect-page-drift-b 8s ease-in-out infinite;
}

.work-motion--tilt .work-poster__shot--accent {
  animation: connect-page-drift-c 6s ease-in-out infinite;
}

.site-svc-visual {
  overflow: hidden;
  border-radius: 12px;
}

.site-svc-visual img {
  transition: transform 0.6s ease;
}

.site-svc-visual--pan:hover img {
  transform: scale(1.04) translateX(2%);
}

.site-svc-visual--lift:hover img {
  transform: translateY(-6px) scale(1.02);
}

.site-svc-visual--glow {
  box-shadow: 0 0 0 transparent;
  animation: site-index-poster-glow 8s ease-in-out infinite;
}

.site-svc-visual--cycle:hover img {
  transform: rotate(-0.6deg) scale(1.03);
}

.site-svc-visual--stripe:hover img {
  transform: scale(1.05);
  filter: saturate(1.08);
}

.site-svc-visual--canopy:hover img {
  transform: scale(1.03) translateY(-4px);
}

@keyframes site-inquiry-ring {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(254, 229, 0, 0.35);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(254, 229, 0, 0);
  }
}

.site-inquiry-motion--intro .intro__careers-img {
  border-radius: 12px;
  animation: site-inquiry-ring 3.5s ease-out infinite;
}

.connect-step__shot--kakao.is-visible {
  animation-duration: 5s;
}

.connect-step__shot--location.is-visible {
  animation-duration: 6.2s;
}

.connect-step__shot--scope.is-visible {
  animation-duration: 4.8s;
}

.connect-step__shot--match.is-visible {
  animation-duration: 5.8s;
}

.connect-step__shot--work.is-visible {
  animation-duration: 4.2s;
}

/* 영문 장식 라벨 숨김 */
.work-poster__stripe,
.work-poster__en {
  display: none !important;
}

.promo-board__eyebrow,
.ops-panel__eyebrow,
.connect-hero__eyebrow,
.site-gallery-hero__eyebrow,
.about-hero__eyebrow,
.about-cta__eyebrow {
  text-transform: none;
  letter-spacing: 0.02em;
}

@media (prefers-reduced-motion: reduce) {
  .section-motion--poster .promo-board__frame,
  .section-motion--poster .promo-board__tile--a,
  .section-motion--poster .promo-board__tile--b,
  .section-motion--poster .promo-board__tile--c,
  .section-motion--ops .ops-tile,
  .about-layout-motion--hero .about-hero__img,
  .about-bento .about-bento__cell,
  .work-poster__mesh,
  .work-motion--orbit .work-poster__shot--main,
  .work-motion--slide .work-poster__shot--sub,
  .work-motion--tilt .work-poster__shot--accent,
  .site-svc-visual--glow,
  .site-inquiry-motion--intro .intro__careers-img {
    animation: none;
  }
}

.garden-gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.garden-gallery-filter {
  border: 1px solid currentColor;
  background: transparent;
  padding: 8px 14px;
  cursor: pointer;
  font: inherit;
}

.garden-gallery-filter.is-active {
  background: #1a1a1a;
  color: #fff;
}

.garden-gallery-card.is-hidden {
  display: none;
}

.accordion__item .accordion__panel {
  display: none;
  padding: 0 0 12px;
}

.accordion__item.is-open .accordion__panel {
  display: block;
}

.accordion__trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding: 14px 0;
  font: inherit;
  cursor: pointer;
}

.site-nav.is-open .site-nav__panel {
  opacity: 1;
  pointer-events: auto;
}

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

/* —— 이용 안내 (생활형 guide pages) —— */
.site-guide__back {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #40916c;
  text-decoration: none;
}

.site-guide__head {
  max-width: 40rem;
  margin-bottom: 1.25rem;
}

.site-guide__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #40916c;
}

.site-guide__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #1b4332;
}

.site-guide__lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(20, 33, 61, 0.78);
}

.site-guide__hero-shot {
  margin: 0 0 1.5rem;
  border-radius: 1rem;
  overflow: hidden;
  max-height: 14rem;
}

.site-guide__hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-guide__layout {
  display: grid;
  grid-template-columns: minmax(10rem, 12.5rem) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

.site-guide__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(27, 67, 50, 0.1);
  position: sticky;
  top: 5.5rem;
}

.site-guide__nav-link {
  display: block;
  padding: 0.45rem 0.55rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(20, 33, 61, 0.82);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-guide__nav-link:hover {
  background: rgba(64, 145, 108, 0.1);
  color: #1b4332;
}

.site-guide__nav-link.is-current {
  background: linear-gradient(135deg, #40916c 0%, #2d6a4f 100%);
  color: #fff;
}

.site-guide__main {
  min-width: 0;
}

.site-guide__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(27, 67, 50, 0.1);
}

.site-guide__foot-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #40916c;
  text-decoration: none;
}

.site-guide__disclaimer,
.site-guide__note {
  margin: 1.25rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(20, 33, 61, 0.62);
}

.site-guide__note strong {
  color: #1b4332;
}

.guide-block-hub {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.guide-block-hub__card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(27, 67, 50, 0.1);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.guide-block-hub__card:hover {
  transform: translateY(-2px);
  border-color: rgba(64, 145, 108, 0.35);
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.08);
}

.guide-block-hub__card strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1b4332;
}

.guide-block-hub__card span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #40916c;
}

.guide-block-case {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
}

.guide-block-case:last-child {
  border-bottom: none;
}

.guide-block-case__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(20, 33, 61, 0.55);
}

.guide-block-case__meta time {
  color: #40916c;
}

.guide-block-case__status {
  padding: 0.15rem 0.5rem;
  border-radius: 1rem;
  background: rgba(64, 145, 108, 0.12);
  color: #2d6a4f;
}

.guide-block-case__type {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: #14213d;
}

.guide-block-case__memo {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(20, 33, 61, 0.75);
}

.guide-block-block {
  margin-bottom: 1.5rem;
}

.guide-block-block__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1b4332;
}

.guide-block-list {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(20, 33, 61, 0.78);
}

.guide-block-list li + li {
  margin-top: 0.35rem;
}

.guide-block-month {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
  gap: 0.75rem;
}

.guide-block-month__card {
  padding: 1rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(27, 67, 50, 0.08);
}

.guide-block-month__card h2 {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #2d6a4f;
}

.guide-block-table-wrap {
  overflow-x: auto;
  border-radius: 0.85rem;
  border: 1px solid rgba(27, 67, 50, 0.1);
  background: rgba(255, 255, 255, 0.65);
}

.guide-block-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.guide-block-table th,
.guide-block-table td {
  padding: 0.65rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid rgba(27, 67, 50, 0.06);
}

.guide-block-table thead th {
  font-weight: 700;
  color: #1b4332;
  background: rgba(64, 145, 108, 0.08);
}

.guide-block-table tbody th {
  font-weight: 600;
  color: #14213d;
}

.guide-block-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.guide-block-checklist li {
  display: flex;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(27, 67, 50, 0.08);
}

.guide-block-checklist li > span {
  flex: 0 0 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.45rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #40916c, #2d6a4f);
}

.guide-block-checklist strong {
  display: block;
  font-size: 0.875rem;
  color: #1b4332;
}

.guide-block-checklist p {
  margin: 0.15rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(20, 33, 61, 0.72);
}

.guide-block-faqs {
  display: grid;
  gap: 0.5rem;
}

.guide-block-faq {
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(27, 67, 50, 0.08);
  overflow: hidden;
}

.guide-block-faq__q {
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #14213d;
  cursor: pointer;
  list-style: none;
}

.guide-block-faq__q::-webkit-details-marker {
  display: none;
}

.guide-block-faq__a {
  padding: 0 1rem 0.85rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(20, 33, 61, 0.78);
}

.guide-block-faq__a p {
  margin: 0;
}

.guide-block-faq__a a {
  color: #40916c;
  font-weight: 600;
}

.guide-block-areas {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.guide-block-areas li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(27, 67, 50, 0.08);
}

.guide-block-areas strong {
  min-width: 4.5rem;
  font-size: 0.875rem;
  color: #1b4332;
}

.guide-block-areas span {
  font-size: 0.8125rem;
  color: rgba(20, 33, 61, 0.75);
}

/* —— 연결현장: 작업일지형 (포트폴리오 갤러리 X) —— */
.page-field-journal .top-bar__ticker {
  display: none;
}

.page-field-journal .top-bar__start {
  flex: 1;
}

.field-journal {
  padding: 1.25rem 0 2rem;
}

.field-journal__intro {
  margin-bottom: 1.35rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(27, 67, 50, 0.14);
}

.field-journal__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-poster-display, inherit);
  font-size: clamp(1.25rem, 3.2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1b4332;
  line-height: 1.25;
}

.field-journal__lead {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(20, 33, 61, 0.72);
  max-width: 36rem;
}

.field-journal__feed {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.field-entry {
  padding: 1rem 0 1.15rem;
  border-bottom: 1px solid rgba(27, 67, 50, 0.1);
}

.field-entry:first-child {
  padding-top: 0.35rem;
}

.field-entry__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
  margin-bottom: 0.35rem;
  font-size: 0.6875rem;
  line-height: 1.4;
  color: rgba(20, 33, 61, 0.55);
}

.field-entry__date {
  font-weight: 700;
  color: rgba(20, 33, 61, 0.7);
}

.field-entry__region::before {
  content: "·";
  margin-right: 0.35rem;
  opacity: 0.5;
}

.field-entry__kind {
  margin-left: auto;
  padding: 0.1rem 0.4rem;
  border-radius: 0.2rem;
  font-size: 0.625rem;
  font-weight: 600;
  color: rgba(27, 67, 50, 0.85);
  background: rgba(27, 67, 50, 0.07);
}

.field-entry__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #14213d;
  line-height: 1.35;
}

.field-entry__memo {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(20, 33, 61, 0.78);
}

.field-entry__photos {
  width: 100%;
  display: grid;
  gap: 0.35rem;
  grid-template-columns: 1fr;
}

.field-entry__photos--pair-offset {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: minmax(12rem, min(56vh, 28rem));
  gap: 0.35rem;
  align-items: stretch;
}

.field-entry__photos--pair-offset .field-photo {
  height: 100%;
  min-height: 0;
}

.field-entry__photos--pair-offset .field-photo img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: none;
  aspect-ratio: unset;
}

.field-entry__photos--stack {
  grid-template-columns: 1fr;
  gap: 0.35rem;
}

@media screen and (min-width: 520px) {
  .field-entry__photos--stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(12rem, min(56vh, 28rem));
    align-items: stretch;
    gap: 0.35rem;
  }

  .field-entry__photos--stack .field-photo {
    height: 100%;
    min-height: 0;
  }

  .field-entry__photos--stack .field-photo img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: none;
    aspect-ratio: unset;
  }
}

.field-entry__photos--single-right {
  grid-template-columns: 1fr;
}

.field-photo {
  margin: 0;
  width: 100%;
  min-width: 0;
  padding: 0;
  border: none;
  border-radius: 0.15rem;
  overflow: hidden;
  background: #e8ebe6;
  line-height: 0;
}

.field-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 11rem;
  max-height: min(52vh, 26rem);
  object-fit: cover;
  object-position: center center;
}

.field-photo--wide img {
  aspect-ratio: 16 / 10;
  min-height: 12rem;
  max-height: min(58vh, 30rem);
}

.field-photo--narrow img {
  aspect-ratio: 4 / 5;
  min-height: 12rem;
  max-height: min(58vh, 30rem);
}

.field-photo--land img {
  aspect-ratio: 4 / 3;
  min-height: 12rem;
  max-height: min(56vh, 28rem);
}

.field-photo--mid img {
  aspect-ratio: 4 / 3;
  min-height: 11rem;
  max-height: min(52vh, 26rem);
}

.field-photo--tall img {
  aspect-ratio: 3 / 4;
  min-height: 14rem;
  max-height: min(62vh, 32rem);
  object-position: center 38%;
}

.field-photo--small img {
  aspect-ratio: 16 / 10;
  min-height: 9rem;
  max-height: min(40vh, 18rem);
}

.field-photo--soft img {
  filter: saturate(0.92) contrast(0.98) brightness(1.03);
}

.field-photo--blur img {
  filter: saturate(0.85) contrast(0.95) brightness(1.02) blur(0.4px);
}

.field-photo--kakao {
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.field-photo--kakao img {
  aspect-ratio: 4 / 3;
  min-height: 10rem;
  max-height: min(48vh, 24rem);
  filter: saturate(0.88) contrast(1.02);
}

.field-journal__foot {
  margin: 1rem 0 0.75rem;
  font-size: 0.6875rem;
  line-height: 1.5;
  color: rgba(20, 33, 61, 0.5);
}

.field-journal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.field-journal__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1b4332;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.field-journal__link:hover {
  color: #40916c;
}

@media screen and (max-width: 767px) {
  .field-entry__photos--pair-offset {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .field-entry__photos--pair-offset .field-photo img {
    height: auto;
    min-height: 11rem;
  }

  .field-entry__photos--stack {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .field-entry__photos--stack .field-photo img {
    height: auto;
    min-height: 11rem;
  }

  .field-photo img {
    max-height: min(65vh, 22rem);
  }

  .field-entry__kind {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .site-guide__layout {
    grid-template-columns: 1fr;
  }

  .site-guide__nav {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .site-guide__nav-link {
    font-size: 0.75rem;
  }
}

.biz-notice {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(20, 33, 61, 0.82);
}

.biz-notice__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  padding: 0.5rem 0.8rem;
  border-radius: 0.5rem;
  background: rgba(27, 67, 50, 0.05);
  border: 1px solid rgba(27, 67, 50, 0.12);
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  transition: background-color 0.15s ease;
}

.biz-notice__summary::-webkit-details-marker {
  display: none;
}

.biz-notice__summary::after {
  content: "더보기";
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 600;
  color: #2d6a4f;
}

.biz-notice[open] .biz-notice__summary::after {
  content: "접기";
}

.biz-notice__summary:hover {
  background: rgba(27, 67, 50, 0.08);
}

.biz-notice__tag {
  padding: 0.15rem 0.45rem;
  border-radius: 0.25rem;
  background: rgba(27, 67, 50, 0.1);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1b4332;
}

.biz-notice__body {
  margin: 0.5rem 0 0;
  padding: 0.65rem 0.85rem 0.75rem;
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.8125rem;
  line-height: 1.55;
}

.biz-notice__body strong {
  font-weight: 600;
}
.top-bar__note {
  flex: 1;
  margin: 0;
  padding: 0 0.75rem;
  font-size: 0.8rem;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top-bar__note-muted { opacity: 0.75; }
@media (max-width: 767px) {
  .top-bar__note { display: none; }
}
