/* ============================================================
   株式会社トラスト — corporate site
   Implemented from the TRUST design system (claude.ai/design)
   ============================================================ */

/* webfonts are loaded via <link> in index.html (parallel, non-blocking) */

/* ---------- tokens ---------- */
:root {
  /* base — ink (warm near-black) */
  --ink-950: #111110;
  --ink-900: #161511;
  --ink-800: #1e1c18;
  --ink-700: #2a2722;
  /* base — paper (warm ecru whites) */
  --paper-50: #f4f1ea;
  --paper-100: #ede9e0;
  --paper-200: #e2ddd1;
  /* base — trust red (vermilion) */
  --red-500: #e0261a;
  --red-600: #c41e12;
  --red-700: #a3190f;
  /* base — warm grays */
  --gray-400: #9b968a;
  --gray-500: #7a756a;
  --gray-600: #5c574e;

  /* semantic */
  --surface-page: var(--paper-50);
  --surface-raised: #faf8f3;
  --surface-dark: var(--ink-900);
  --surface-dark-raised: var(--ink-800);
  --accent: var(--red-500);
  --accent-strong: var(--red-600);
  --text-primary: #1a1916;
  --text-secondary: var(--gray-600);
  --text-tertiary: var(--gray-500);
  --text-on-dark: #f1ede4;
  --text-on-dark-muted: rgba(241, 237, 228, 0.62);
  --text-on-accent: #fdfbf7;
  --line: rgba(26, 25, 22, 0.16);
  --line-strong: rgba(26, 25, 22, 0.45);
  --line-on-dark: rgba(241, 237, 228, 0.22);
  --giant-type-on-paper: rgba(26, 25, 22, 0.08);
  --giant-type-on-dark: rgba(241, 237, 228, 0.14);
  --scrim-dark: linear-gradient(90deg, rgba(17, 17, 16, 0.92) 0%, rgba(17, 17, 16, 0.55) 45%, rgba(17, 17, 16, 0.15) 100%);

  /* typography */
  --font-serif-jp: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-serif-en: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", Helvetica, Arial, sans-serif;
  --text-display-xl: clamp(52px, 6vw, 88px);
  --text-display: clamp(38px, 4.2vw, 60px);
  --text-h2: clamp(30px, 3vw, 42px);
  --text-h3: 26px;
  --text-h4: 20px;
  --text-body-lg: 16px;
  --text-body: 14.5px;
  --text-caption: 12.5px;
  --text-micro: 11px;
  --giant-type: clamp(120px, 17vw, 250px);
  --leading-display: 1.5;
  --leading-heading: 1.35;
  --leading-body: 2.15;
  --leading-tight: 1.1;
  --tracking-display: 0.06em;
  --tracking-heading: 0.1em;
  --tracking-body: 0.08em;
  --tracking-label: 0.24em;
  --tracking-latin: 0.16em;

  /* spacing / layout */
  --section-pad-y: clamp(88px, 9vw, 150px);
  --container-max: 1200px;
  --container-max-wide: 1360px;
  --container-pad: clamp(24px, 5vw, 60px);
  --header-h: 76px;

  /* effects */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 0.25s;
  --dur-slow: 0.7s;
  --shadow-card: 0 24px 60px rgba(17, 17, 16, 0.12);
  --shadow-photo: 0 30px 80px rgba(17, 17, 16, 0.28);
  --radius: 0px; /* the brand is strictly square-cornered */
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
html, body { overflow-x: clip; }
body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: var(--text-body);
  letter-spacing: var(--tracking-body);
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out); }
a:hover { color: var(--accent); }
::selection { background: var(--accent); color: var(--text-on-accent); }
img { display: block; max-width: 100%; }
h1, h2, h3, p, dl, dd { margin: 0; }

/* ---------- layout primitives ---------- */
.container,
.container-wide {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  position: relative;
}
.container-wide { max-width: var(--container-max-wide); }

.ribbon {
  position: absolute;
  pointer-events: none;
}

/* ---------- components: button ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 17px 34px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tracking-label);
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
  background: var(--accent);
  color: var(--text-on-accent);
  border: 1px solid transparent;
}
.btn:hover { background: var(--accent-strong); color: var(--text-on-accent); }
.btn .btn-label { transform: translateY(0.5px); }
.btn svg { flex: none; transition: transform var(--dur-fast) var(--ease-out); }
.btn:hover svg { transform: translateX(5px); }

/* ---------- components: arrow link ---------- */
.arrow-link {
  display: inline-flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  min-width: 200px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--text-primary);
  font-family: var(--font-serif-jp);
  font-size: 13.5px;
  letter-spacing: 0.14em;
  line-height: 1;
  transition: color var(--dur-fast) var(--ease-out);
}
.arrow-link svg { flex: none; margin-bottom: 1px; transition: transform var(--dur-fast) var(--ease-out); }
.arrow-link:hover { color: var(--accent); }
.arrow-link:hover svg { transform: translateX(6px); }
.arrow-link--on-dark { color: var(--text-on-dark); border-bottom-color: var(--line-on-dark); }
.arrow-link--on-accent { color: var(--text-on-accent); border-bottom-color: rgba(253, 251, 247, 0.5); font-size: 12.5px; }

/* ---------- components: section label ---------- */
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--text-micro);
  font-weight: 500;
  letter-spacing: var(--tracking-label);
  line-height: 1;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.section-label--on-dark { color: var(--text-on-dark-muted); }
.section-label--accent { color: var(--accent); }

/* ---------- components: giant type ---------- */
.giant-type {
  font-family: var(--font-serif-en);
  font-weight: 500;
  font-size: var(--giant-type);
  line-height: 0.82;
  letter-spacing: 0.02em;
  color: var(--giant-type-on-paper);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}
.giant-type--on-dark { color: var(--giant-type-on-dark); }

/* ---------- components: info table ---------- */
.info-table > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.info-table dt {
  font-family: var(--font-sans);
  font-size: var(--text-micro);
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--text-secondary);
  line-height: 2;
}
.info-table dd {
  font-family: var(--font-serif-jp);
  font-size: 13.5px;
  letter-spacing: 0.08em;
  line-height: 1.9;
  color: var(--text-primary);
}

/* ---------- components: business item ---------- */
.business-item { max-width: 420px; }
.business-item .bi-head { display: flex; align-items: baseline; gap: 18px; }
.business-item .bi-index {
  font-family: var(--font-serif-en);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-on-dark);
}
.business-item h3 {
  font-family: var(--font-serif-jp);
  font-size: var(--text-h3);
  font-weight: 600;
  letter-spacing: var(--tracking-heading);
  line-height: var(--leading-heading);
  color: var(--text-on-dark);
}
.business-item p {
  margin: 18px 0 26px;
  font-family: var(--font-serif-jp);
  font-size: 13.5px;
  letter-spacing: 0.1em;
  line-height: 2.2;
  color: var(--text-on-dark-muted);
}

/* ---------- header ---------- */
.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: stretch;
  height: var(--header-h);
  padding-left: 40px;
  background: transparent;
  color: var(--text-on-dark);
}
.site-header .logo {
  align-self: center;
  font-family: var(--font-serif-en);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.38em;
  color: var(--text-on-dark);
}
.site-header nav { display: flex; align-items: center; gap: 40px; margin-left: 72px; flex: 1; }
.site-header nav a {
  font-family: var(--font-sans);
  font-size: var(--text-micro);
  font-weight: 500;
  letter-spacing: var(--tracking-label);
  line-height: 1;
  padding-bottom: 6px;
  color: var(--text-on-dark-muted);
  border-bottom: 1px solid transparent;
  transition: color var(--dur-fast) var(--ease-out);
}
.site-header nav a:hover { color: var(--text-on-dark); }
.site-header .btn { align-self: stretch; padding: 0 34px; }
.hamburger {
  width: var(--header-h);
  background: var(--ink-950);
  display: none; /* mobile only — shown in the responsive block */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.hamburger span {
  width: 26px;
  height: 1px;
  background: var(--text-on-dark);
  transition: transform var(--dur-fast) var(--ease-out);
}
.hamburger:hover span:first-child { transform: translateX(-3px); }
.hamburger:hover span:last-child { transform: translateX(3px); }

/* ---------- mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(17, 17, 16, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s;
}
html.menu-open .mobile-menu { opacity: 1; visibility: visible; }
html.menu-open { overflow: hidden; }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.mobile-menu nav a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: var(--tracking-label);
  color: var(--text-on-dark);
  transform: translateY(14px);
  opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out), color var(--dur-fast) var(--ease-out);
}
html.menu-open .mobile-menu nav a { transform: translateY(0); opacity: 1; }
html.menu-open .mobile-menu nav a:nth-child(2) { transition-delay: 0.05s; }
html.menu-open .mobile-menu nav a:nth-child(3) { transition-delay: 0.1s; }
html.menu-open .mobile-menu nav a:nth-child(4) { transition-delay: 0.15s; }
.mobile-menu nav a:hover { color: var(--accent); }
.menu-close {
  position: absolute;
  top: 0;
  right: 0;
  width: var(--header-h);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--text-on-dark);
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease-out);
}
.menu-close:hover { color: var(--accent); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--ink-900);
  color: var(--text-on-dark);
}
.hero-photo-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-scrim { position: absolute; inset: 0; background: var(--scrim-dark); }
.hero-content { position: relative; z-index: 2; }
.hero-inner { padding-top: 110px; padding-bottom: 230px; }
.hero h1 {
  font-family: var(--font-serif-jp);
  font-weight: 600;
  font-size: var(--text-display-xl);
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
}
/* char-split spans (built by js/main.js) */
.hero h1 .ch { display: inline-block; overflow: hidden; vertical-align: top; }
.hero h1 .ch-in { display: inline-block; }
.hero .hero-tagline {
  margin: 36px 0 60px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--tracking-label);
  color: var(--text-on-dark);
}
/* straddles the hero/purpose boundary */
.hero-deco {
  position: absolute;
  left: -2%;
  bottom: -140px;
  width: 106%;
  z-index: 4;
  pointer-events: none;
}
.hero-deco svg { width: 100%; height: auto; display: block; }

/* ---------- loader ---------- */
html.is-loading { overflow: hidden; }
.loader {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--ink-950);
  align-items: center;
  justify-content: center;
}
html.js .loader { display: flex; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: var(--font-serif-en);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.38em;
  color: var(--text-on-dark);
  margin-left: 0.38em; /* optical centering against trailing tracking */
}
.loader-logo .lt-mask { display: inline-block; overflow: hidden; vertical-align: top; }
.loader-logo .lt { display: inline-block; }
.loader-line {
  width: 200px;
  height: 1px;
  margin: 28px auto 0;
  background: var(--line-on-dark);
  overflow: hidden;
}
.loader-line-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
}

/* ---------- purpose ---------- */
.purpose {
  position: relative;
  background: var(--surface-page);
  padding: var(--section-pad-y) 0 calc(var(--section-pad-y) + 40px);
}
.purpose-grid {
  display: grid;
  grid-template-columns: 1fr 300px 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.purpose h2 {
  margin-top: 36px;
  font-family: var(--font-serif-jp);
  font-weight: 600;
  font-size: clamp(40px, 3.6vw, 54px);
  letter-spacing: 0.14em;
  line-height: 1.7;
  writing-mode: vertical-rl;
  height: 440px;
}
.purpose-photo { width: 100%; height: 520px; object-fit: cover; object-position: center top; }
.purpose-copy { padding-top: 24px; }
.purpose-copy p {
  font-family: var(--font-serif-jp);
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2.3;
}
.purpose-copy p + p { margin-top: 28px; }
.purpose-copy .arrow-link { margin-top: 52px; }
/* the brush sweep that straddles the purpose/business boundary,
   flowing beneath the giant BUSINESS type */
.business-deco {
  position: absolute;
  left: -4%;
  bottom: -110px;
  width: 58%;
  z-index: 4;
  pointer-events: none;
}
.business-deco svg { width: 100%; height: auto; display: block; }

/* ---------- business ---------- */
.business {
  position: relative;
  overflow: hidden;
  background: var(--ink-900);
  padding: 0 0 var(--section-pad-y);
}
.business .giant-heading { font-size: clamp(140px, 15vw, 215px); margin-top: -8px; margin-left: -8px; position: relative; z-index: 5; }
.business-row { display: grid; align-items: center; }
.business-row--1 {
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  margin-top: -40px;
}
.business-row--2 {
  grid-template-columns: 1fr 380px 1fr;
  gap: clamp(40px, 5vw, 80px);
  margin-top: 100px;
}
.business-row--3 {
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  margin-top: 100px;
}
.business-photo { width: 100%; object-fit: cover; object-position: center; box-shadow: var(--shadow-photo); }
.business-row--1 .business-photo { height: 320px; }
.business-row--2 .business-photo { height: 340px; object-position: center top; }
.business-row--3 .business-photo { height: 300px; }
.business-row--2 .giant-number { font-size: clamp(120px, 12vw, 180px); justify-self: end; }
.business-photo-wrap { position: relative; }
.business-photo-wrap .giant-number {
  font-size: clamp(120px, 12vw, 180px);
  position: absolute;
  left: 24px;
  bottom: -24px;
}

/* ---------- company ---------- */
.company {
  position: relative;
  overflow: hidden;
  background: var(--surface-page);
  padding: var(--section-pad-y) 0;
}
.company .giant-bg {
  font-size: clamp(200px, 24vw, 340px);
  position: absolute;
  top: -20px;
  right: -40px;
  z-index: 0;
}
.company-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: clamp(56px, 6vw, 100px);
  align-items: start;
  z-index: 1;
}
.company h2 {
  margin-bottom: 34px;
  font-family: var(--font-serif-jp);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.2em;
}
.company-side { padding-top: 56px; }
.company-office { width: 100%; aspect-ratio: 476 / 228; object-fit: cover; box-shadow: var(--shadow-card); }
.company-map { display: flex; align-items: center; gap: 14px; margin-top: 32px; }
.company-map svg { flex: none; }

/* ---------- cta band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  color: var(--text-on-accent);
  padding: clamp(56px, 6vw, 96px) 0;
}
.cta-band .arrow-sweep {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: min(34vw, 480px);
  opacity: 0.95;
}
.cta-band h2 {
  font-family: var(--font-serif-en);
  font-weight: 500;
  font-size: clamp(48px, 5.5vw, 84px);
  line-height: 1;
  letter-spacing: 0.06em;
}
.cta-band p {
  margin: 20px 0 40px;
  font-family: var(--font-serif-jp);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.18em;
}
.cta-band .arrow-link { min-width: 240px; position: relative; }
.cta-band .arrow-link:hover { color: var(--text-on-accent); opacity: 0.8; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink-950);
  color: var(--text-on-dark);
  padding: 56px 0 40px;
}
.footer-top { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
.site-footer .logo {
  font-family: var(--font-serif-en);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.38em;
  color: var(--text-on-dark);
}
.site-footer nav { display: flex; gap: 32px; flex: 1; flex-wrap: wrap; }
.site-footer nav a {
  font-family: var(--font-sans);
  font-size: var(--text-micro);
  font-weight: 500;
  letter-spacing: var(--tracking-label);
  color: var(--text-on-dark-muted);
  line-height: 1;
}
.site-footer nav a:hover { color: var(--text-on-dark); }
.footer-address {
  font-family: var(--font-sans);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  line-height: 2;
  color: var(--text-on-dark-muted);
  text-align: right;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line-on-dark);
}
.footer-copy { font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.14em; color: var(--text-on-dark-muted); }
.footer-links { display: flex; align-items: center; gap: 40px; }
.footer-privacy { font-family: var(--font-sans); font-size: 10.5px; letter-spacing: 0.14em; color: var(--text-on-dark-muted); }
.footer-privacy:hover { color: var(--text-on-dark); }
.page-top {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text-on-dark);
  font-family: var(--font-sans);
  font-size: var(--text-micro);
  letter-spacing: var(--tracking-label);
  line-height: 1;
}
.page-top:hover { color: var(--text-on-dark); }
.page-top .pt-circ {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-on-dark);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-fast) var(--ease-out);
}
.page-top:hover .pt-circ { background: var(--accent); border-color: var(--accent); }

/* ---------- responsive ---------- */

/* tablet: tighten the wide grids before they collapse */
@media (max-width: 1180px) {
  .purpose-grid { grid-template-columns: 1fr 260px 1.2fr; }
  .business-row--2 { grid-template-columns: 1fr 320px 1fr; }
  .company-grid { grid-template-columns: 1fr 380px; }
}

@media (max-width: 960px) {
  :root { --header-h: 54px; }
  .site-header { padding-left: 20px; }
  .site-header nav { display: none; }
  .site-header .btn { padding: 0 18px; margin-left: auto; font-size: 10px; }
  .hamburger { display: flex; gap: 6px; }
  .hamburger span { width: 22px; }

  .hero-inner { padding-top: 72px; padding-bottom: 170px; }
  .hero h1 { font-size: clamp(38px, 10.5vw, 52px); }
  .hero-photo { object-position: center top; }
  .hero-deco { width: 150%; left: -12%; bottom: -70px; }
  .business-deco { width: 100%; left: -5%; bottom: -60px; }

  .purpose { padding-bottom: calc(var(--section-pad-y) + 20px); }
  .purpose-grid,
  .company-grid { grid-template-columns: 1fr; }
  .purpose h2 { height: auto; writing-mode: horizontal-tb; margin-top: 28px; }
  .purpose-photo { height: 380px; object-position: center; }
  .purpose-copy { padding-top: 0; }

  .business .giant-heading { font-size: clamp(56px, 17.5vw, 140px); margin-left: -2px; }
  .business-row--1,
  .business-row--2,
  .business-row--3 { grid-template-columns: 1fr; gap: 40px; margin-top: 80px; }
  .business-row--1 { margin-top: 24px; }
  .business-row--2 .business-photo { order: -1; } /* photo first, like rows 1 & 3 */
  .business-row--2 .giant-number { display: none; }
  .business-photo-wrap .giant-number { left: 16px; bottom: -18px; font-size: clamp(96px, 22vw, 140px); }

  .company-side { padding-top: 0; }
  .company .giant-bg { font-size: clamp(140px, 30vw, 220px); top: -12px; right: -20px; }
  .info-table > div { grid-template-columns: 96px 1fr; gap: 16px; }

  /* the sweep arrow overlaps the "TALK." headline */
  .cta-band .arrow-sweep { width: 48vw; right: var(--container-pad); top: auto; bottom: 50%; transform: none; opacity: 0.95; }

  .site-footer { padding: 44px 0 32px; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 30px; }
  .site-footer nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(96px, auto));
    justify-content: start;
    column-gap: 44px;
    row-gap: 22px;
  }
  .footer-address { text-align: left; }
  .footer-bottom { flex-wrap: wrap; row-gap: 18px; margin-top: 36px; }
  /* PAGE TOP sits at the footer's top-right, level with the logo */
  .page-top { position: absolute; top: 4px; right: var(--container-pad); }
}

/* small phones */
@media (max-width: 420px) {
  .site-header .logo { font-size: 18px; }
  .site-header nav { margin-left: 0; }
  .hero h1 { font-size: clamp(34px, 10vw, 44px); }
  .business-item h3 { font-size: 22px; }
  .footer-links { gap: 24px; }
}
