:root {
  --bg: #f7f5ef;
  --surface: #fffdfa;
  --ink: #151412;
  --muted: #6e6961;
  --line: rgba(21, 20, 18, 0.12);
  --line-strong: rgba(21, 20, 18, 0.22);
  --accent: #526b8a;
  --accent-dark: #3d536f;
  --accent-wash: rgba(82, 107, 138, 0.08);
  --bronze: #6b624d;
  --jade: #7d9685;
  --graphite: #1f201d;
  --shadow: 0 24px 70px rgba(32, 28, 20, 0.11);
  --radius: 8px;
  --page-gutter: clamp(18px, 4vw, 54px);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.82), rgba(247, 245, 239, 0.96)),
    radial-gradient(circle at 15% 5%, var(--accent-wash), transparent 30%),
    var(--bg);
  color: var(--ink);
  font-family:
    "Inter", "Pretendard", "Noto Sans KR", "Noto Sans SC", "PingFang SC",
    "Microsoft YaHei", Arial, sans-serif;
  letter-spacing: 0;
  min-width: 320px;
  overflow-x: hidden;
}

body::selection {
  background: rgba(82, 107, 138, 0.18);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  align-items: center;
  backdrop-filter: blur(22px);
  background: rgba(247, 245, 239, 0.84);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  height: 76px;
  justify-content: space-between;
  left: 0;
  padding: 0 var(--page-gutter);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 50;
}

.site-header::after {
  display: none;
}

.brand {
  align-items: center;
  display: flex;
  flex: 0 1 auto;
  gap: 14px;
  max-width: min(38vw, 560px);
  min-width: 0;
}

.brand img {
  height: 39px;
  width: 39px;
}

.brand span {
  display: grid;
  gap: 3px;
  max-width: 100%;
  min-width: 0;
}

.brand strong {
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 680;
  line-height: 1.18;
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
}

.brand small {
  color: var(--muted);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 1.6vw, 28px);
  margin-left: auto;
}

.desktop-nav a,
.footer-links a {
  color: rgba(21, 20, 18, 0.72);
  font-size: 13.5px;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--accent);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 9px;
}

.language-switch,
.mobile-language-switch {
  align-items: center;
  background: rgba(255, 253, 250, 0.94);
  border: 1px solid var(--line);
  display: flex;
  height: 34px;
  overflow: visible;
  padding: 0;
  position: relative;
  width: 94px;
  z-index: 90;
}

.lang-options {
  display: none;
}

.language-switch::after,
.mobile-language-switch::after {
  background: url("assets/language.png") center / contain no-repeat;
  content: "";
  height: 15px;
  opacity: 0.7;
  pointer-events: none;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
}

.lang-current,
.lang-btn,
.ghost-btn,
.menu-btn,
.primary-btn,
.secondary-btn,
.verify-form button,
.contact-form button,
.login-form button {
  border: 0;
  cursor: pointer;
}

.lang-current {
  align-items: center;
  background: transparent;
  color: var(--ink);
  display: flex;
  font-size: 13px;
  font-weight: 520;
  height: 100%;
  justify-content: flex-start;
  line-height: 1;
  min-width: 0;
  overflow: hidden;
  padding: 0 31px 0 12px;
  position: relative;
  text-align: left;
  white-space: nowrap;
  width: 100%;
  z-index: 1;
}

.lang-btn {
  align-items: center;
  background: transparent;
  color: rgba(21, 20, 18, 0.72);
  display: flex;
  font-size: 13px;
  font-weight: 500;
  height: 40px;
  justify-content: flex-start;
  line-height: 1;
  min-width: 0;
  padding: 0 14px;
  text-align: left;
  width: 100%;
}

.lang-btn.is-active {
  color: var(--ink);
}

.language-switch > .lang-btn,
.mobile-language-switch > .lang-btn {
  display: none;
}

.language-switch.is-open,
.mobile-language-switch.is-open {
  box-shadow: none;
  height: 34px;
}

.language-switch.is-open::after,
.mobile-language-switch.is-open::after {
  opacity: 0.7;
}

.language-switch.is-open .lang-options,
.mobile-language-switch.is-open .lang-options {
  background: #fffdfa;
  border: 1px solid rgba(21, 20, 18, 0.22);
  box-shadow: 0 22px 46px rgba(21, 20, 18, 0.12);
  display: grid;
  right: 0;
  min-width: 138px;
  position: absolute;
  top: calc(100% + 8px);
  width: max-content;
  z-index: 120;
}

.language-switch.is-open .lang-btn,
.mobile-language-switch.is-open .lang-btn {
  border-bottom: 1px solid rgba(21, 20, 18, 0.08);
}

.language-switch.is-open .lang-btn:last-child,
.mobile-language-switch.is-open .lang-btn:last-child {
  border-bottom: 0;
}

.language-switch.is-open .lang-btn.is-active,
.mobile-language-switch.is-open .lang-btn.is-active {
  border-left: 3px solid var(--accent);
  color: var(--ink);
  padding-left: 13px;
}

.language-switch.is-open .lang-btn:hover,
.mobile-language-switch.is-open .lang-btn:hover {
  background: rgba(82, 107, 138, 0.07);
  color: var(--ink);
}

.ghost-btn {
  background: transparent;
  border: 1px solid transparent;
  color: rgba(21, 20, 18, 0.68);
  height: 34px;
  padding: 0 10px;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease;
}

.ghost-btn:hover {
  background: rgba(21, 20, 18, 0.025);
  border-color: var(--line);
  color: var(--ink);
}

.menu-btn {
  background: transparent;
  display: none;
  height: 38px;
  padding: 0;
  position: relative;
  width: 38px;
}

.menu-btn span {
  background: var(--ink);
  height: 1px;
  left: 9px;
  position: absolute;
  right: 9px;
}

.menu-btn span:first-child {
  top: 14px;
}

.menu-btn span:last-child {
  top: 23px;
}

.mobile-panel {
  background: rgba(247, 245, 239, 0.98);
  border-bottom: 1px solid var(--line);
  display: none;
  padding: 16px 18px 22px;
  position: sticky;
  top: 76px;
  z-index: 40;
}

.mobile-language-switch {
  display: none;
  margin-bottom: 8px;
  width: 132px;
}

.mobile-panel a,
.mobile-panel button {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  display: block;
  padding: 15px 0;
  text-align: left;
  width: 100%;
}

.mobile-panel .mobile-language-switch button {
  border-bottom: 0;
  padding: 0;
  text-align: left;
  width: 100%;
}

.mobile-panel .mobile-language-switch .lang-current {
  display: flex;
  justify-content: flex-start;
  padding: 0 31px 0 12px;
}

.mobile-panel .mobile-language-switch.is-open .lang-options {
  left: 0;
  min-width: 160px;
  top: calc(100% + 8px);
}

.mobile-panel .mobile-language-switch .lang-options .lang-btn {
  display: flex;
  justify-content: flex-start;
  padding: 0 14px;
  text-align: left;
}

.hero {
  display: grid;
  gap: clamp(36px, 6vw, 88px);
  grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1.2fr);
  min-height: calc(88vh - 76px);
  overflow: hidden;
  padding: clamp(46px, 5.4vw, 74px) var(--page-gutter) 44px;
}

.hero-copy {
  align-self: center;
  max-width: 560px;
  min-width: 0;
  padding-bottom: 2vh;
}

.eyebrow,
.section-kicker {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
  font-size: clamp(30px, 2.75vw, 38px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.15;
  margin: 20px 0 22px;
  max-width: 500px;
  max-inline-size: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  width: 100%;
  word-break: normal;
}

.hero h1 span {
  display: block;
}

.hero-lede {
  color: rgba(21, 20, 18, 0.72);
  font-size: clamp(15px, 1.08vw, 16px);
  line-height: 1.78;
  margin: 0;
  max-width: 540px;
  min-width: 0;
  overflow-wrap: anywhere;
}

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

.primary-btn,
.secondary-btn {
  align-items: center;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  padding: 0 22px;
}

.primary-btn {
  background: var(--ink);
  color: #fffdfa;
}

.secondary-btn {
  border: 1px solid var(--line-strong);
  color: var(--ink);
}

.hero-visual {
  align-self: stretch;
  margin: 0;
  min-height: 500px;
  overflow: hidden;
  position: relative;
}

.hero-visual::after {
  background: linear-gradient(180deg, transparent 54%, rgba(0, 0, 0, 0.48));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-visual img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-visual figcaption {
  bottom: 26px;
  color: #fffdfa;
  display: grid;
  gap: 6px;
  left: 26px;
  position: absolute;
  right: 26px;
  z-index: 1;
}

.hero-visual figcaption span {
  font-size: 17px;
  font-weight: 650;
}

.hero-visual figcaption small {
  color: rgba(255, 253, 250, 0.72);
  font-size: 13px;
}

.intro-band {
  border-block: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 var(--page-gutter);
}

.intro-band div {
  min-height: 112px;
  padding: 24px;
}

.intro-band div + div {
  border-left: 1px solid var(--line);
}

.intro-band span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.intro-band strong {
  display: block;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(16px, 1.55vw, 20px);
  font-weight: 500;
  line-height: 1.35;
}

.section {
  padding: clamp(64px, 8vw, 112px) var(--page-gutter);
}

.mission-grid {
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(32px, 7vw, 110px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
  margin-top: 22px;
  padding-top: 34px;
}

.mission-grid h2,
.section-heading h2,
.verify-panel h2,
.contact-copy h2 {
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0;
}

.mission-grid h2 {
  font-size: clamp(23px, 2.25vw, 30px);
  max-width: 980px;
}

.mission-text {
  color: rgba(21, 20, 18, 0.72);
  font-size: 15px;
  line-height: 1.95;
}

.section-heading {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 34px;
  padding-bottom: 24px;
}

.section-heading > div {
  max-width: 100%;
  min-width: 0;
  width: 100%;
}

.section-heading h2,
.verify-panel h2,
.contact-copy h2 {
  font-size: clamp(23px, 2.25vw, 30px);
  margin-top: 14px;
  max-inline-size: 100%;
  overflow-wrap: anywhere;
  width: 100%;
}

.section-heading a {
  border-bottom: 1px solid currentColor;
  color: var(--accent-dark);
  font-size: 14px;
  margin-bottom: 8px;
  white-space: nowrap;
}

.featured-collection {
  background: var(--surface);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  margin-bottom: 22px;
}

.featured-collection img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  width: 100%;
}

.featured-collection > div {
  align-content: end;
  display: grid;
  padding: clamp(28px, 4vw, 52px);
}

.featured-collection h3 {
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.28;
  margin: 22px 0 18px;
}

.featured-collection p:last-child {
  color: var(--muted);
  line-height: 1.85;
  margin: 0;
}

.artifact-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
}

.artifact-card {
  background: rgba(255, 253, 250, 0.72);
  border: 1px solid var(--line);
  min-height: 232px;
  padding: 25px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.artifact-card:hover {
  background: #fffdfa;
  border-color: rgba(82, 107, 138, 0.34);
  transform: translateY(-3px);
}

.artifact-card span {
  color: var(--bronze);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.artifact-card h3 {
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0;
  margin: 52px 0 12px;
}

.artifact-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
  margin: 0;
}

.verify-section {
  background: var(--graphite);
  color: #fffdfa;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  margin-top: 30px;
  min-height: 660px;
}

.verify-art {
  min-height: 460px;
  overflow: hidden;
}

.verify-art img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.verify-panel {
  align-self: center;
  padding: clamp(34px, 5vw, 72px);
}

.verify-panel .section-kicker {
  color: #d9b9a4;
}

.verify-panel p {
  color: rgba(255, 253, 250, 0.68);
  line-height: 1.85;
  margin: 20px 0 32px;
}

.verify-form label {
  color: rgba(255, 253, 250, 0.72);
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
}

.verify-form div {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.verify-form input {
  background: rgba(255, 253, 250, 0.08);
  border: 1px solid rgba(255, 253, 250, 0.18);
  color: #fffdfa;
  height: 50px;
  min-width: 0;
  padding: 0 16px;
}

.verify-form button {
  background: #fffdfa;
  color: var(--ink);
  height: 50px;
  padding: 0 22px;
}

.result-card {
  align-items: center;
  background: rgba(255, 253, 250, 0.08);
  border: 1px solid rgba(255, 253, 250, 0.16);
  display: flex;
  gap: 14px;
  margin-top: 16px;
  padding: 16px;
}

.status-dot {
  background: #9dc7ad;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(157, 199, 173, 0.14);
  height: 10px;
  width: 10px;
}

.result-card strong,
.result-card small {
  display: block;
}

.result-card small {
  color: rgba(255, 253, 250, 0.62);
  margin-top: 5px;
}

.media-section {
  background: #fffdfa;
}

.media-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.media-card {
  background: #f4f0e8;
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  min-height: 300px;
  padding: 28px;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.media-card:hover {
  background: var(--ink);
  color: #fffdfa;
}

.media-card span {
  color: var(--accent);
  font-size: 13px;
}

.media-card h3 {
  align-self: end;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  letter-spacing: 0;
  margin: auto 0 14px;
}

.media-card p {
  color: currentColor;
  line-height: 1.75;
  margin: 0;
  opacity: 0.68;
}

.contact-section {
  display: grid;
  gap: clamp(28px, 6vw, 90px);
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.65fr);
  padding: clamp(76px, 9vw, 132px) clamp(18px, 4vw, 54px);
}

.contact-copy p {
  color: var(--muted);
  line-height: 1.85;
  max-width: 560px;
}

.contact-form,
.login-form {
  display: grid;
  gap: 12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.login-form input {
  background: #fffdfa;
  border: 1px solid var(--line);
  color: var(--ink);
  min-width: 0;
  outline: none;
  padding: 0 15px;
  width: 100%;
}

.contact-form input,
.contact-form select,
.login-form input {
  height: 50px;
}

.contact-form textarea {
  min-height: 136px;
  padding-top: 14px;
  resize: vertical;
}

.contact-form button,
.login-form button {
  background: var(--accent);
  color: #fffdfa;
  height: 52px;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: #fffdfa;
  display: flex;
  justify-content: space-between;
  padding: 34px clamp(18px, 4vw, 54px);
}

.footer-brand {
  align-items: center;
  display: flex;
  gap: 13px;
}

.footer-brand img {
  background: #fffdfa;
  height: 34px;
  width: 34px;
}

.footer-brand span,
.footer-links a {
  color: rgba(255, 253, 250, 0.62);
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand span {
  font-size: 12px;
  margin-top: 5px;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.login-form label span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
}

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

  .hero,
  .mission-grid,
  .featured-collection,
  .verify-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-visual {
    min-height: 440px;
  }

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

  .media-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --page-gutter: 16px;
  }

  .site-header {
    height: 68px;
    padding-inline: var(--page-gutter);
    width: 100%;
    max-width: 100vw;
  }

  .brand small,
  .desktop-nav,
  .ghost-btn {
    display: none;
  }

  .brand strong {
    font-size: 12.5px;
    line-height: 1.16;
    max-width: 100%;
  }

  .brand {
    gap: 10px;
    max-width: min(68vw, 320px);
  }

  .brand img {
    height: 33px;
    width: 33px;
  }

  .header-actions {
    display: flex !important;
    gap: 8px;
    margin-left: auto;
    min-width: 34px;
    position: relative;
  }

  .menu-btn {
    -webkit-appearance: none;
    appearance: none;
    background: var(--ink);
    border: 1px solid var(--ink);
    display: block !important;
    flex: 0 0 34px;
    height: 34px;
    min-width: 34px;
    opacity: 1;
    position: relative;
    width: 34px;
    z-index: 70;
  }

  .menu-btn span {
    background: #fffdfa;
    height: 1.5px;
  }

  .mobile-panel.is-open {
    display: block;
    top: 68px;
  }

  .header-actions > .language-switch {
    display: none;
  }

  .mobile-language-switch {
    display: flex;
  }

  .hero {
    gap: 22px;
    padding: 40px var(--page-gutter) 28px;
  }

  .refined-hero {
    min-height: auto;
  }

  .hero-copy,
  .hero h1,
  .hero-lede {
    inline-size: 100%;
    max-inline-size: calc(100vw - 32px);
  }

  .hero h1 {
    font-size: clamp(24px, 6.4vw, 27px);
    line-height: 1.22;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .hero-lede {
    font-size: 14px;
    inline-size: min(100%, 332px);
    line-height: 1.75;
    line-break: anywhere;
    max-inline-size: 332px;
    word-break: break-all;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .intro-band {
    grid-template-columns: 1fr;
    margin-inline: var(--page-gutter);
  }

  .intro-band div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section,
  .contact-section {
    padding-inline: var(--page-gutter);
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .featured-collection img {
    min-height: 300px;
  }

  .artifact-grid {
    grid-template-columns: 1fr;
  }

  .verify-form div {
    grid-template-columns: 1fr;
  }

  .verify-panel {
    padding: 32px 16px 44px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }
}

@media (max-width: 430px) {
  .hero-actions,
  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 280px;
  }

  .intro-band div,
  .artifact-card,
  .media-card {
    padding: 18px 0;
  }

  .intro-band.refined-stats div {
    min-height: auto;
    padding: 18px 0;
  }

  .intro-band.refined-stats {
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
    margin-inline: var(--page-gutter);
  }

  .editorial-grid article,
  .page-preview,
  .process-grid article,
  .partnership-grid article {
    padding-top: 18px;
  }

  .service-thumb {
    margin-bottom: 18px;
  }
}

@media (max-width: 370px) {
  .menu-btn {
    left: auto;
  }
}

@media (max-width: 340px) {
  .menu-btn {
    left: auto;
  }

  .site-header::after {
    content: none;
    display: none;
  }
}

/* Refined multi-page system */
.desktop-nav a.is-active,
.ghost-btn.is-active {
  color: var(--accent);
}

.ghost-btn,
.primary-btn,
.secondary-btn {
  align-items: center;
  display: inline-flex;
  justify-content: center;
}

.refined-hero {
  min-height: calc(86vh - 76px);
}

.refined-section,
.preview-section,
.page-section {
  padding: clamp(46px, 5.6vw, 76px) var(--page-gutter);
}

.compact-heading h2,
.mission-grid h2,
.section-heading h2,
.verify-panel h2,
.contact-copy h2 {
  font-size: clamp(23px, 2.15vw, 30px);
  line-height: 1.22;
  max-width: 760px;
  max-inline-size: 100%;
  overflow-wrap: anywhere;
}

.featured-collection h3 {
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.28;
}

.intro-band.refined-stats div {
  min-height: 96px;
  padding: 20px 24px;
}

.intro-band.refined-stats span {
  font-size: 11px;
  margin-bottom: 10px;
}

.intro-band.refined-stats strong {
  font-family:
    "Inter", "Pretendard", "Noto Sans KR", "Noto Sans SC", "PingFang SC",
    "Microsoft YaHei", Arial, sans-serif;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 540;
  line-height: 1.45;
}

.artifact-card h3,
.media-card h3 {
  font-size: clamp(19px, 1.7vw, 23px);
}

.editorial-grid,
.page-preview-grid,
.process-grid,
.partnership-grid {
  display: grid;
  gap: clamp(22px, 3vw, 42px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.editorial-grid article,
.page-preview,
.process-grid article,
.partnership-grid article {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  min-height: 0;
  padding: 22px 0 0;
}

.service-thumb {
  aspect-ratio: 4 / 3;
  margin: 0 0 22px;
  overflow: hidden;
}

.service-thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.editorial-grid span,
.page-preview span,
.process-grid span,
.partnership-grid span,
.object-card span,
.certificate-summary span,
.video-feature span,
.media-list span,
.contact-details span {
  color: var(--accent);
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.editorial-grid h3,
.page-preview h3,
.process-grid h2,
.partnership-grid h2,
.object-card h2,
.contact-details h2,
.media-list h2 {
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.28;
  margin: 0 0 12px;
}

.editorial-grid p,
.page-preview p,
.process-grid p,
.partnership-grid p,
.object-card p,
.contact-details p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
  margin: 0;
}

.page-preview {
  color: var(--ink);
  min-height: 168px;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.page-preview:hover {
  border-color: rgba(82, 107, 138, 0.38);
  transform: translateY(-3px);
}

.page-preview.dark {
  background: transparent;
  color: var(--ink);
}

.page-preview.dark p {
  color: var(--muted);
}

.visual-archive-section {
  padding-top: clamp(56px, 7vw, 92px);
}

.visual-archive-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) minmax(0, 0.85fr);
}

.visual-tile {
  background: var(--ink);
  color: #fffdfa;
  display: grid;
  min-height: 290px;
  overflow: hidden;
  position: relative;
}

.visual-tile-large {
  grid-row: span 2;
  min-height: 596px;
}

.visual-tile img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform 360ms ease;
  width: 100%;
}

.visual-tile::after {
  background: linear-gradient(180deg, rgba(21, 20, 18, 0.02), rgba(21, 20, 18, 0.72));
  content: "";
  inset: 0;
  position: absolute;
}

.visual-tile:hover img {
  transform: scale(1.025);
}

.visual-tile > div {
  align-self: end;
  padding: 26px;
  position: relative;
  z-index: 1;
}

.visual-tile span {
  color: rgba(255, 253, 250, 0.62);
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.visual-tile h3 {
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.22;
  margin: 0;
}

.visual-tile p {
  color: rgba(255, 253, 250, 0.72);
  font-size: 14px;
  line-height: 1.75;
  margin: 12px 0 0;
  max-width: 420px;
}

.page-hero {
  display: grid;
  gap: clamp(26px, 5vw, 64px);
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  padding: clamp(32px, 3.8vw, 52px) var(--page-gutter) clamp(36px, 4.2vw, 58px);
}

.page-hero > div {
  align-self: center;
  max-width: 620px;
}

.page-hero h1,
.login-intro h1 {
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(27px, 2.45vw, 34px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.16;
  margin: 14px 0;
}

.page-hero p:not(.eyebrow),
.login-intro p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
  margin: 0;
}

.page-hero img {
  height: clamp(320px, 24vw, 360px);
  object-fit: cover;
  width: 100%;
}

.page-hero + .page-section {
  padding-top: clamp(30px, 3.8vw, 52px);
}

.about-page {
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.84), rgba(247, 245, 239, 0.98));
  overflow-x: hidden;
}

.about-page * {
  min-width: 0;
}

.about-hero {
  display: grid;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
  grid-template-columns: minmax(0, 0.64fr) minmax(360px, 0.46fr);
  margin: 0 auto;
  max-width: 1320px;
  min-height: auto;
  padding: clamp(34px, 3.6vw, 54px) var(--page-gutter) clamp(38px, 3.8vw, 58px);
}

.about-hero-copy {
  align-self: center;
  max-width: 600px;
}

.about-hero h1,
.about-profile h2,
.chairman-copy h2,
.about-roadmap h2,
.about-cta h2 {
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.about-hero h1 {
  font-size: clamp(28px, 2.45vw, 36px);
  line-height: 1.18;
  margin: 16px 0 18px;
  max-width: 560px;
  overflow-wrap: anywhere;
  word-break: normal;
}

.about-hero-copy > p:not(.eyebrow) {
  color: rgba(21, 20, 18, 0.72);
  font-size: clamp(15px, 1.02vw, 16px);
  line-height: 1.82;
  margin: 0;
  max-width: 580px;
}

.about-hero-meta {
  border-block: 1px solid var(--line);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(24px, 2.8vw, 36px);
  max-width: 430px;
}

.about-hero-meta span {
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 14px 14px 14px 0;
  text-transform: uppercase;
}

.about-hero-meta span + span {
  border-left: 1px solid var(--line);
  padding-left: 14px;
}

.about-hero-visual {
  align-self: center;
  aspect-ratio: 16 / 9;
  height: clamp(250px, 25vw, 340px);
  margin: 0;
  min-height: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.about-hero-visual::after {
  background: linear-gradient(180deg, rgba(21, 20, 18, 0.02), rgba(21, 20, 18, 0.58));
  content: "";
  inset: 0;
  position: absolute;
}

.about-hero-visual img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.about-hero-visual figcaption {
  bottom: 20px;
  color: #fffdfa;
  display: grid;
  gap: 6px;
  left: 22px;
  position: absolute;
  right: 22px;
  z-index: 1;
}

.about-hero-visual figcaption strong {
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 500;
}

.about-hero-visual figcaption span {
  color: rgba(255, 253, 250, 0.68);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-profile {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(32px, 6vw, 88px);
  grid-template-columns: minmax(0, 0.84fr) minmax(340px, 0.5fr);
  margin-inline: auto;
  max-width: 1480px;
}

.about-profile h2,
.chairman-copy h2,
.about-roadmap h2,
.about-cta h2 {
  font-size: clamp(26px, 2.7vw, 40px);
  line-height: 1.16;
  margin: 14px 0 22px;
}

.about-profile-copy p:not(.section-kicker),
.chairman-copy > p,
.roadmap-list p,
.about-cta p:not(.section-kicker) {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.9;
  margin: 0;
}

.about-profile-copy p + p {
  margin-top: 16px;
}

.about-profile-stats {
  border-top: 1px solid var(--line);
}

.about-profile-stats div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 10px;
  padding: 24px 0;
}

.about-profile-stats strong {
  color: var(--accent);
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
}

.about-profile-stats span {
  color: var(--ink);
  font-size: 15px;
  font-weight: 560;
}

.about-chairman {
  align-items: stretch;
  background: var(--graphite);
  color: #fffdfa;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  margin-inline: auto;
  max-width: 1280px;
  padding-bottom: clamp(34px, 4.2vw, 54px);
  padding-top: clamp(34px, 4.2vw, 54px);
}

.chairman-portrait {
  aspect-ratio: 3 / 4;
  background: #11100e;
  margin: 0;
  min-height: 0;
  max-height: 430px;
  overflow: hidden;
  position: relative;
}

.chairman-portrait::after {
  background: linear-gradient(180deg, transparent 52%, rgba(21, 20, 18, 0.72));
  content: "";
  inset: 0;
  position: absolute;
}

.chairman-portrait img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.chairman-portrait figcaption {
  bottom: 24px;
  color: #fffdfa;
  display: grid;
  gap: 5px;
  left: 24px;
  position: absolute;
  right: 24px;
  z-index: 1;
}

.chairman-portrait figcaption strong {
  font-size: 20px;
}

.chairman-portrait figcaption span {
  color: rgba(255, 253, 250, 0.62);
  font-size: 12px;
}

.reserved-image {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 253, 250, 0.08), rgba(255, 253, 250, 0.02)),
    repeating-linear-gradient(135deg, rgba(255, 253, 250, 0.1) 0 1px, transparent 1px 12px);
  border: 1px solid rgba(255, 253, 250, 0.2);
  color: rgba(255, 253, 250, 0.62);
  display: flex;
  justify-content: center;
  min-height: 260px;
  overflow: hidden;
  position: relative;
}

.reserved-image::before {
  border: 1px solid rgba(255, 253, 250, 0.18);
  content: "";
  inset: 20px;
  position: absolute;
}

.reserved-image span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.chairman-copy {
  align-self: center;
  padding: clamp(24px, 4vw, 52px);
}

.chairman-copy .section-kicker,
.about-chairman .section-kicker {
  color: rgba(255, 253, 250, 0.62);
}

.chairman-copy > p {
  color: rgba(255, 253, 250, 0.68);
  max-width: 650px;
}

.chairman-copy blockquote {
  border-left: 2px solid var(--accent);
  color: #fffdfa;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(18px, 1.3vw, 22px);
  font-weight: 500;
  line-height: 1.52;
  margin: clamp(22px, 3vw, 36px) 0 0;
  max-width: 680px;
  padding: 0 0 0 20px;
}

.chairman-signature {
  border-top: 1px solid rgba(255, 253, 250, 0.16);
  display: grid;
  gap: 6px;
  margin-top: clamp(22px, 2.5vw, 34px);
  max-width: 360px;
  padding-top: 20px;
}

.chairman-signature strong {
  font-size: 18px;
}

.chairman-signature span {
  color: rgba(255, 253, 250, 0.58);
  font-size: 13px;
}

.value-grid {
  display: grid;
  gap: clamp(22px, 3vw, 42px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-grid article {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.value-grid span,
.roadmap-list span {
  color: var(--accent);
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.value-grid h3,
.roadmap-list h3 {
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(19px, 1.6vw, 24px);
  font-weight: 500;
  line-height: 1.28;
  margin: 0 0 14px;
}

.value-grid p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.82;
  margin: 0;
}

.about-values {
  margin-inline: auto;
  max-width: 1480px;
}

.about-roadmap {
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(32px, 6vw, 88px);
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
  margin-inline: auto;
  max-width: 1480px;
}

.roadmap-list {
  border-top: 1px solid var(--line);
  counter-reset: roadmap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.roadmap-list li {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: 100px minmax(0, 0.42fr) minmax(0, 0.58fr);
  padding: 26px 0;
}

.roadmap-list h3,
.roadmap-list p {
  margin: 0;
}

.about-gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
}

.about-gallery-grid figure {
  background: var(--ink);
  color: #fffdfa;
  aspect-ratio: 4 / 3;
  margin: 0;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.about-gallery-grid img {
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  width: 100%;
}

.about-gallery-grid figcaption {
  background: linear-gradient(180deg, transparent, rgba(21, 20, 18, 0.62));
  bottom: 0;
  color: #fffdfa;
  font-size: 15px;
  font-weight: 560;
  left: 0;
  padding: 80px 22px 22px;
  position: absolute;
  right: 0;
}

.about-cta {
  margin: clamp(24px, 4vw, 52px) var(--page-gutter) clamp(54px, 7vw, 92px);
  border-top: 1px solid var(--line);
  margin-inline: auto;
  max-width: min(1480px, calc(100% - (var(--page-gutter) * 2)));
  padding: clamp(36px, 5vw, 68px) 0 0;
}

.about-cta h2 {
  max-width: 820px;
}

.about-cta p:not(.section-kicker) {
  max-width: 720px;
}

.dark-hero {
  background: var(--graphite);
  color: #fffdfa;
}

.dark-hero p:not(.eyebrow) {
  color: rgba(255, 253, 250, 0.68);
}

.filter-row {
  border-block: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  padding: 14px 0;
}

.filter-row button {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  height: 36px;
  padding: 0 14px;
}

.filter-row button.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fffdfa;
}

.object-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.object-card {
  background: transparent;
  border: 0;
  display: grid;
}

.object-card img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.object-card div {
  border-top: 1px solid var(--line);
  padding: 18px 0 0;
}

.object-card small {
  color: var(--bronze);
  display: block;
  font-size: 12px;
  margin-top: 18px;
}

.object-feature {
  align-items: end;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 0.5fr);
}

.object-feature h2,
.video-feature h2,
.certificate-summary h2 {
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(23px, 2.15vw, 30px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0;
}

.object-feature p {
  color: var(--muted);
  line-height: 1.85;
  margin: 0;
}

.verify-page-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.45fr);
}

.verify-panel.standalone {
  background: var(--graphite);
  color: #fffdfa;
}

.certificate-summary {
  background: #fffdfa;
  border: 1px solid var(--line);
  padding: 30px;
}

.certificate-summary dl,
.certificate-summary div {
  display: grid;
  gap: 4px;
}

.certificate-summary dl {
  gap: 18px;
  margin: 28px 0 0;
}

.certificate-summary dt {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.certificate-summary dd {
  margin: 0;
}

.media-feature {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.7fr);
}

.video-feature {
  background:
    linear-gradient(180deg, rgba(21, 20, 18, 0.08), rgba(21, 20, 18, 0.74)),
    url("assets/hero-art.png") center / cover;
  color: #fffdfa;
  min-height: 470px;
  padding: 34px;
  display: grid;
  align-content: end;
}

.video-feature p {
  color: rgba(255, 253, 250, 0.7);
  margin: 14px 0 0;
}

.media-list {
  display: grid;
  gap: 12px;
}

.media-list a {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  padding: 22px 0;
}

.social-strip {
  border-block: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: 0;
  padding-top: 0;
}

.social-strip div {
  padding: 28px;
}

.social-strip div + div {
  border-left: 1px solid var(--line);
}

.social-strip span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.social-strip strong {
  font-size: 16px;
  font-weight: 540;
  line-height: 1.45;
}

.contact-page-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.62fr);
}

.contact-details {
  display: grid;
  gap: 12px;
}

.contact-details article {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.elevated-form {
  background: rgba(255, 253, 250, 0.72);
  border: 1px solid rgba(21, 20, 18, 0.1);
  padding: 24px;
}

.login-page {
  align-items: center;
  display: grid;
  gap: clamp(28px, 7vw, 96px);
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.55fr);
  min-height: calc(78vh - 76px);
  padding: clamp(56px, 6vw, 82px) var(--page-gutter);
}

.login-intro {
  max-width: 620px;
}

.login-card {
  background: #fffdfa;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 30px;
}

.login-card a {
  color: var(--accent-dark);
  font-size: 13px;
  text-align: center;
}

.refined-footer {
  display: block;
  padding: 0;
}

.footer-main {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(260px, 1.3fr) repeat(4, minmax(150px, 0.75fr));
  padding: 44px var(--page-gutter);
}

.refined-footer .footer-brand {
  align-items: flex-start;
}

.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-column h2 {
  color: #fffdfa;
  font-size: 12px;
  letter-spacing: 0.14em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.footer-column a,
.footer-office p,
.footer-bottom {
  color: rgba(255, 253, 250, 0.62);
  font-size: 13px;
  line-height: 1.65;
}

.footer-column a:hover {
  color: #fffdfa;
}

.footer-office p {
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 253, 250, 0.12);
  display: flex;
  justify-content: space-between;
  padding: 18px var(--page-gutter);
}

@media (max-width: 1080px) {
  .brand small,
  .desktop-nav,
  .ghost-btn {
    display: none;
  }

  .brand {
    max-width: min(72vw, 520px);
  }

  .header-actions {
    display: flex !important;
    gap: 8px;
    margin-left: auto;
    min-width: 38px;
    position: relative;
  }

  .header-actions > .language-switch {
    display: none;
  }

  .menu-btn {
    -webkit-appearance: none;
    appearance: none;
    background: var(--ink);
    border: 1px solid var(--ink);
    display: block !important;
    flex: 0 0 38px;
    height: 38px;
    min-width: 38px;
    opacity: 1;
    position: relative;
    width: 38px;
    z-index: 70;
  }

  .menu-btn span {
    background: #fffdfa;
    height: 1.5px;
  }

  .mobile-panel.is-open {
    display: block;
    top: 76px;
  }

  .mobile-language-switch {
    display: flex;
  }

  .about-hero,
  .about-profile,
  .about-chairman,
  .about-roadmap,
  .page-hero,
  .object-feature,
  .verify-page-grid,
  .media-feature,
  .contact-page-grid,
  .login-page {
    grid-template-columns: 1fr;
  }

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

  .about-hero {
    min-height: auto;
  }

  .about-hero-visual {
    height: clamp(240px, 38vw, 320px);
    min-height: 0;
  }

  .chairman-portrait {
    min-height: 0;
    max-height: 360px;
  }

  .value-grid,
  .about-gallery-grid {
    grid-template-columns: 1fr;
  }

  .roadmap-list li {
    grid-template-columns: 88px minmax(0, 0.44fr) minmax(0, 0.56fr);
  }

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

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

  .visual-tile-large {
    grid-column: 1 / -1;
    min-height: 440px;
  }
}

@media (max-width: 760px) {
  .site-header .ghost-btn {
    display: none;
  }

  .refined-hero {
    min-height: auto;
  }

  .refined-section,
  .preview-section,
  .page-section {
    padding: 46px var(--page-gutter);
  }

  .about-hero {
    gap: 28px;
    padding: 34px var(--page-gutter) 40px;
  }

  .about-hero-copy,
  .about-profile-copy,
  .chairman-copy,
  .about-hero h1,
  .about-hero-copy > p:not(.eyebrow) {
    max-inline-size: calc(100vw - (var(--page-gutter) * 2));
    max-width: calc(100vw - (var(--page-gutter) * 2));
    width: 100%;
  }

  .about-page h1,
  .about-page h2,
  .about-page h3,
  .about-page p,
  .about-page blockquote {
    line-break: anywhere;
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal;
    word-break: break-all;
  }

  .about-hero h1 {
    font-size: clamp(25px, 6.6vw, 30px);
    line-height: 1.22;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .about-hero-copy > p:not(.eyebrow),
  .about-profile-copy p:not(.section-kicker),
  .chairman-copy > p,
  .roadmap-list p,
  .about-cta p:not(.section-kicker) {
    font-size: 15px;
    line-height: 1.78;
  }

  .about-hero-meta {
    grid-template-columns: 1fr;
  }

  .about-hero-meta span + span {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }

  .about-hero-visual,
  .chairman-portrait {
    min-height: 0;
  }

  .about-hero-visual {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .chairman-portrait {
    aspect-ratio: 4 / 5;
  }

  .about-profile h2,
  .chairman-copy h2,
  .about-roadmap h2,
  .about-cta h2 {
    font-size: 25px;
    line-height: 1.25;
  }

  .chairman-copy {
    padding: 30px 0 0;
  }

  .chairman-copy blockquote {
    font-size: 20px;
    line-height: 1.55;
    padding-left: 18px;
  }

  .roadmap-list li {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr;
    padding: 24px 0;
  }

  .about-gallery-grid figure {
    min-height: 260px;
  }

  .about-cta {
    margin-inline: var(--page-gutter);
  }

  .compact-heading h2,
  .section-heading h2 {
    font-size: 20px;
    inline-size: min(100%, 320px);
    line-height: 1.34;
    line-break: anywhere;
    max-inline-size: 320px;
    white-space: normal;
    word-break: break-all;
  }

  .section-heading {
    gap: 12px;
    margin-bottom: 26px;
    padding-bottom: 18px;
  }

  .editorial-grid p,
  .page-preview p,
  .process-grid p,
  .partnership-grid p,
  .object-card p,
  .contact-details p,
  .page-hero p:not(.eyebrow),
  .login-intro p {
    line-break: anywhere;
    overflow-wrap: anywhere;
  }

  .editorial-grid,
  .page-preview-grid,
  .process-grid,
  .partnership-grid,
  .object-grid,
  .visual-archive-grid,
  .social-strip {
    grid-template-columns: 1fr;
  }

  .visual-tile,
  .visual-tile-large {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .page-hero,
  .login-page {
    padding: 42px var(--page-gutter);
  }

  .page-hero h1,
  .login-intro h1 {
    font-size: 25px;
    line-height: 1.24;
  }

  .page-hero img {
    height: 260px;
  }

  .social-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

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