/* ===== Button ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: var(--tracking-button);
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--dur-hover) var(--ease-out), color var(--dur-hover) var(--ease-out), border-color var(--dur-hover) var(--ease-out);
}
.btn--sm {
  padding: 12px 26px;
  font-size: 16px;
}
.btn--md {
  padding: 16px 36px;
  font-size: 16px;
}
.btn--lg {
  padding: 18px 42px;
  font-size: 17px;
}
.btn--xl {
  padding: 20px 46px;
  font-size: 18px;
}
.btn--primary {
  background: var(--action-primary);
  color: #fff;
  box-shadow: var(--shadow-cta);
}
.btn--primary:hover {
  background: var(--action-primary-hover);
}
.btn--dark {
  background: var(--action-dark);
  color: #fff;
}
.btn--dark:hover {
  background: #000;
}
.btn--outline {
  background: transparent;
  color: var(--ink-900);
  border-color: var(--ink-900);
}
.btn--outline:hover {
  background: var(--ink-900);
  color: #fff;
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .6);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, .15);
}
.btn--white {
  background: #fff;
  color: var(--ink-900);
}
.btn--white:hover {
  background: var(--blue-025);
}
.btn--nocard {
  box-shadow: none;
}
/* ===== Badge (annotation) ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: .06em;
  padding: 5px 13px;
}
.badge--latin {
  font-family: var(--font-latin);
  font-size: 14px;
  letter-spacing: .1em;
  padding: 6px 16px;
}
.badge--blue {
  background: var(--blue-600);
  color: #fff;
}
.badge--blueSoft {
  background: var(--blue-050);
  color: var(--blue-600);
}
.badge--white {
  background: #fff;
  color: var(--blue-600);
}
.badge--navy {
  background: rgba(20, 24, 43, .82);
  color: #fff;
  backdrop-filter: blur(4px);
}
.badge--glass {
  background: rgba(255, 255, 255, .20);
  color: var(--blue-200);
  backdrop-filter: blur(6px);
}
.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-400);
}
/* ===== Eyebrow (annotation) ===== */
.eyebrow {
  font-family: var(--font-latin);
  font-size: var(--size-eyebrow);
  letter-spacing: var(--tracking-eyebrow);
  color: var(--blue-600);
  margin: 0 0 12px;
}
.eyebrow--on-dark {
  color: var(--blue-200);
}
/* ===== Section heading ===== */
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.section-heading__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--size-h2);
  line-height: 1.25;
  margin: 0;
  color: var(--text-heading);
}
.section-heading--on-dark .section-heading__title {
  color: #fff;
}
.section-heading__lead {
  max-width: 28em;
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-body);
}
.section-heading--on-dark .section-heading__lead {
  color: var(--on-dark-3);
}
.section-heading__action {
  font-weight: 700;
  font-size: 16px;
  color: var(--blue-600);
  text-decoration: none;
  white-space: nowrap;
}
/* ===== Wave divider ===== */
.wave-divider {
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--wave-h);
  display: block;
  pointer-events: none;
}
.wave-divider--back {
  top: -128px;
}
.wave-divider--front {
  top: -112px;
}
/* ===== Stat card (facility spec) ===== */
.card-stat {
  background: var(--surface-card);
  border: 1px solid var(--border-sand);
  border-radius: var(--radius-card-sm);
  padding: 30px 26px;
}
.card-stat__row {
  margin: 0 0 8px;
  display: flex;
  align-items: baseline;
  gap: 9px;
  flex-wrap: wrap;
}
.card-stat__num {
  font-family: var(--font-latin);
  font-weight: 700;
  font-size: 25px;
  color: var(--blue-600);
  line-height: 1;
}
.card-stat__label {
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-900);
}
.card-stat__desc {
  margin: 0;
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
}
/* ===== Support card ===== */
.card-support {
  display: block;
  text-decoration: none;
  height: 100%;
  padding: 38px 32px;
  border-radius: var(--radius-card-lg);
  background: var(--surface-card);
  border: 1px solid var(--border-sand);
  transition: all var(--dur-hover) var(--ease-out);
}
.card-support:hover {
  background: #fff;
  border-color: var(--blue-600);
  box-shadow: 0 22px 44px -26px rgba(20, 22, 28, .3);
  color: inherit;
}
.card-support__no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue-600);
  color: #fff;
  font-family: var(--font-latin);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 22px;
}
.card-support__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 14px;
  color: var(--ink-900);
}
.card-support__desc {
  margin: 0 0 24px;
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.8;
}
.card-support__link {
  font-weight: 700;
  font-size: 16px;
  color: var(--blue-600);
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
/* ===== Project card ===== */
.card-project {
  display: block;
  text-decoration: none;
  padding: 32px 30px;
  border-radius: var(--radius-card);
  background: var(--surface-card);
  border: 1px solid var(--border-sand);
  transition: all var(--dur-hover) var(--ease-out);
}
.card-project:hover {
  background: #fff;
  box-shadow: 0 22px 44px -30px rgba(20, 22, 28, .4);
  color: inherit;
}
.card-project__tag {
  display: inline-block;
  font-family: var(--font-latin);
  font-size: 14px;
  color: var(--blue-600);
  font-weight: 700;
  letter-spacing: .05em;
  background: var(--blue-050);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.card-project__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 10px;
  color: var(--ink-900);
}
.card-project__desc {
  margin: 0;
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.75;
}
.card-project--with-media {
  padding: 0;
  background: #fff;
  border: 1px solid var(--border-sand);
}
.card-project--with-media:hover {
  background: #fff;
}
.card-project__media {
  aspect-ratio: 16 / 10;
  background: #eceae4;
}
.card-project__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-project__body {
  padding: 24px 26px 26px;
}
.card-project__action {
  margin: 16px 0 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-600);
}
.card-project--future {
  border-style: dashed;
  background: var(--surface-card);
}
.card-project--future:hover {
  background: var(--surface-card);
}
.card-project--future .card-project__tag {
  color: var(--text-meta);
  background: #efece4;
}
.card-project--future .card-project__title {
  color: var(--text-meta);
}
.card-project--future .card-project__desc {
  color: var(--text-meta);
}
/* ===== Interview card ===== */
.card-interview {
  display: block;
  text-decoration: none;
  background: #fff;
  height: 100%;
  border-radius: var(--radius-arch);
  overflow: hidden;
  box-shadow: 0 20px 12px -30px rgba(20,22,28,.5);
  transition: all var(--dur-hover) var(--ease-out);
}
.card-interview:hover {
  box-shadow: var(--shadow-card-hover);
  transform: var(--lift-hover);
  color: inherit;
}
.card-interview__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: #eceae4;
	border-radius: var(--radius-arch) var(--radius-arch) 0 0;
}
.card-interview__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.card-interview__no {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 18px;
  background: rgba(20, 24, 43, .82);
  backdrop-filter: blur(4px);
  color: #fff;
  font-family: var(--font-latin);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.card-interview__body {
  padding: 24px 26px 30px;
}
.card-interview__tag {
  margin: 0 0 9px;
  font-size: 14px;
  color: var(--blue-600);
  font-weight: 700;
  letter-spacing: .04em;
}
.card-interview__title {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-900);
}
.card-interview__lead {
  margin: 14px 0 18px;
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.85;
}
.card-interview__action {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-600);
}
.card-interview__badge {
  position: absolute;
  left: 0;
  top: 18px;
  background: var(--ink-900);
  color: #fff;
  font-family: var(--font-latin);
  font-size: 13px;
  letter-spacing: .14em;
  padding: 5px 14px;
	z-index: 1;
}
.card-interview--featured .card-interview__title {
  font-size: 22px;
}
/* ===== News row ===== */
.news-row {
  display: flex;
  gap: 22px;
  align-items: center;
  text-decoration: none;
  padding: 18px 30px;
  background: #fff;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-row);
  transition: all var(--dur-hover) var(--ease-out);
}
.news-row:hover {
  box-shadow: var(--shadow-card-hover);
  transform: var(--lift-hover);
  color: inherit;
}
.news-row__date {
  font-family: var(--font-latin);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-meta);
  white-space: nowrap;
}
.news-row__title {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-900);
  flex: 1;
}
.news-row__label {
  font-size: 14px;
  color: var(--text-meta);
  white-space: nowrap;
  border: 1px solid var(--border-warm);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
/* ===== Data stat (city panel) ===== */
.data-stat {
  display: flex;
  gap: 18px;
  align-items: center;
}
.data-stat__chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  width: 120px;
  padding: 14px 6px;
  border-radius: var(--radius-chip);
  background: var(--blue-600);
  color: #fff;
  white-space: nowrap;
}
.data-stat__num {
  font-family: var(--font-latin);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}
.data-stat__unit {
  font-size: 14px;
  font-weight: 700;
}
.data-stat__label {
  margin: 0 0 3px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.data-stat__desc {
  margin: 0;
  font-size: 14px;
  color: var(--on-dark-3);
  line-height: 1.6;
}
/* ===== Brand mark ===== */
.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.brand-mark--on-dark {
  color: #fff;
}
.brand-mark__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-600);
}
.brand-mark__glyph {
  display: block;
  width: 20px;
  height: auto;
}
.brand-mark__text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.brand-mark__title {
  display: block;
}
.brand-mark--on-dark .brand-mark__title {
  transform: translateY(3px);
}
.brand-mark__sub {
  font-size: 14px;
  letter-spacing: .1em;
  color: currentColor;
  opacity: .72;
}
/* ===== Site header / nav ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: var(--scrim-header);
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 16px;
  font-weight: 500;
}
.site-nav__link {
  padding: 10px 13px;
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.site-nav__cta {
  margin-left: 12px;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown__toggle {
  padding: 10px 13px;
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-dropdown__caret {
  font-size: 18px;
  opacity: .8;
}
.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: var(--radius-menu);
  box-shadow: var(--shadow-menu);
  min-width: 210px;
  padding: 12px;
  display: none;
  flex-direction: column;
  color: var(--ink-900);
}
.nav-dropdown:hover .nav-dropdown__menu {
  display: flex;
}
.nav-dropdown__item {
  padding: 10px 16px;
  font-size: 16px;
  color: var(--ink-900);
  text-decoration: none;
  border-radius: var(--radius-menu-item);
  background: transparent;
}
.nav-dropdown__item:hover {
  background: var(--blue-025);
  color: var(--ink-900);
}
/* ===== Carousel nav / round button ===== */
.carousel-nav {
  display: flex;
  gap: 12px;
}
.round-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 17px;
  transition: all var(--dur-hover) var(--ease-out);
}
.round-btn--outline {
  border: 1px solid var(--border-warm);
  background: #fff;
  color: var(--ink-900);
}
.round-btn--outline:hover {
  border-color: var(--blue-600);
  background: var(--blue-025);
}
.round-btn--solid {
  border: none;
  background: var(--blue-600);
  color: #fff;
}
.round-btn--solid:hover {
  background: var(--blue-700);
}
/* ===== Site footer ===== */
.site-footer {
  background: var(--surface-night);
  color: var(--footer-body);
  position: relative;
  z-index: 16;
  padding: 130px 0 40px;
}
.site-footer__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border-navy);
}
.site-footer__lead-col p {
  margin: 0 0 6px;
  font-size: 14px;
  color: var(--on-dark-4);
}
.site-footer__lead-col p.site-footer__tel {
  margin: 0;
  font-family: var(--font-latin);
  font-size: 16px;
  color: #fff;
  letter-spacing: .04em;
}
.site-footer__col-title {
  font-family: var(--font-latin);
  font-size: 14px;
  letter-spacing: .15em;
  color: var(--on-dark-5);
  margin: 0 0 18px;
}
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
}
.site-footer__links a {
  color: inherit;
  text-decoration: none;
}
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  margin-top: 26px;
  font-size: 14px;
  color: var(--on-dark-5);
}
.site-footer__legal {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.site-footer__legal a {
  color: inherit;
  text-decoration: none;
}
.site-footer__copy {
  margin: 0;
  font-family: var(--font-latin);
  letter-spacing: .06em;
}
/* ===== Hero ===== */
.hero {
  position: relative;
  height: calc(100vh - 44px);
  min-height: 600px;
  overflow: hidden;
  background: var(--surface-night);
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity var(--dur-crossfade) ease, transform var(--dur-kenburns) ease;
}
.hero__slide--active {
  opacity: 1;
  transform: scale(1.05);
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: var(--scrim-hero);
}
.hero__glow {
  position: absolute;
  top: -140px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--glow-blue);
  animation: floaty 9s ease-in-out infinite;
  pointer-events: none;
}
.hero__foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter) 150px;
  color: #fff;
}
.hero__kicker {
  margin-bottom: 22px;
  animation: fadeup .7s both;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--size-hero);
  line-height: var(--leading-hero);
  letter-spacing: .01em;
  margin: 0;
  text-shadow: var(--text-shadow-hero);
  animation: fadeup .8s .05s both;
}
.hero__title-accent {
  color: var(--blue-400);
    -webkit-text-stroke: 1px var(--surface-white);
  text-stroke: 1px var(--surface-white);
}
.hero__lead {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--size-lead);
  letter-spacing: var(--tracking-lead);
  color: #eceef4;
  margin: 28px 0 0;
  animation: fadeup .8s .12s both;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
  animation: fadeup .8s .2s both;
}
.hero__dots {
  position: absolute;
  right: 44px;
  bottom: 168px;
  display: flex;
  gap: 9px;
  z-index: 3;
}
.hero__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .55);
  transition: all .4s ease;
}
.hero__dot--active {
  width: 30px;
  background: var(--blue-600);
}
/* ===== Pill banner (DX) ===== */
.pill-banner {
  position: relative;
  z-index: 40;
}
.pill-banner__outer {
  max-width: var(--container-pill);
  margin: -42px auto 0;
  padding: 0 var(--gutter);
}
.pill-banner__pill {
  background: var(--blue-600);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 18px 20px 18px 34px;
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: var(--shadow-pill);
}
.pill-banner__left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.pill-banner__tag {
  font-family: var(--font-latin);
  font-size: 14px;
  letter-spacing: .16em;
  color: var(--blue-600);
  background: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}
.pill-banner__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}
.pill-banner__note {
  margin: 3px 0 0;
  font-size: 16px;
  color: rgba(255, 255, 255, .9);
}
.pill-banner__action {
  white-space: nowrap;
  background: var(--surface-navy);
  color: #fff;
  padding: 14px 30px;
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background var(--dur-hover) var(--ease-out);
}
.pill-banner__action:hover {
  background: #000;
  color: #fff;
}
/* ===== CTA banner ===== */
.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-banner);
  color: #fff;
}
.cta-banner--plain {
  background: var(--surface-night);
}
.cta-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-banner__scrim {
  position: absolute;
  inset: 0;
  background: var(--scrim-cta);
}
.cta-banner__body {
  position: relative;
  padding: 80px 70px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}
.cta-banner__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--size-h2);
  line-height: 1.25;
  margin: 0;
}
.cta-banner__lead {
  margin: 18px 0 0;
  color: var(--on-dark-2);
  font-size: 16px;
  line-height: 1.8;
  max-width: 32em;
}
.cta-banner__meta {
  margin: 16px 0 0;
  color: var(--on-dark-3);
  font-size: 16px;
}
.cta-banner__meta strong {
  font-family: var(--font-latin);
  color: #fff;
}
.cta-banner--qr .cta-banner__body > div:first-child {
  flex: 1 1 320px; /* テキスト側の最低幅を確保し、詰まりすぎを防ぐ */
}
.cta-banner--qr .media-placeholder {
  flex-shrink: 0; /* QR画像が潰れないように */
}
/* ===== Tenant feature ===== */
.tenant-feature {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  background: #fff;
  border-radius: var(--radius-feature);
  overflow: hidden;
  box-shadow: var(--shadow-feature);
}
.tenant-feature__media {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.tenant-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tenant-feature__tag {
  position: absolute;
  left: 26px;
  top: 24px;
}
.tenant-feature__body {
  padding: 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tenant-feature__meta {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--text-meta);
  letter-spacing: .06em;
}
.tenant-feature__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  margin: 0 0 16px;
}
.tenant-feature__desc {
  margin: 0;
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.9;
}
.tenant-feature__action {
  margin-top: 24px;
  align-self: flex-start;
  padding: 14px 30px;
}
/* ===== Photo grid ===== */
.photo-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 16px;
}
.photo-grid__tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-image);
}
.photo-grid__tile--rows {
  grid-row: span 2;
}
.photo-grid__tile--cols {
  grid-column: 2 / 4;
}
.photo-grid__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-zoom) ease;
}
.photo-grid__tile:hover img {
  transform: var(--zoom-hover);
}
.photo-grid__caption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-shadow: var(--text-shadow-caption);
}
.js-gallery-item {
  cursor: pointer;
}
/* ===== Lightbox (click-to-enlarge gallery, prev/next) ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10, 11, 16, .94);
  padding: 60px;
}
.lightbox.is-open {
  display: flex;
}
.lightbox__figure {
  margin: 0;
  max-width: min(1200px, 88vw);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-image);
}
.lightbox__caption {
  margin-top: 16px;
  color: #fff;
  font-size: 16px;
  text-align: center;
}
.lightbox__close {
  position: fixed;
  top: 28px;
  right: 28px;
  background: rgba(255, 255, 255, .92);
}
.lightbox__prev, .lightbox__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .92);
}
.lightbox__prev {
  left: 28px;
}
.lightbox__next {
  right: 28px;
}
/* ===== Site header — sticky (non-hero subpages) ===== */
/* Solid state — applied via JS once the hero has scrolled past, on any header */
.site-header {
  transition: background var(--dur-hover) var(--ease-out), border-color var(--dur-hover) var(--ease-out);
}
.site-header--solid {
  backdrop-filter: blur(14px);
}
.site-header--solid .site-header__inner {
  color: #fff;
  transition: color var(--dur-hover) var(--ease-out);
}
/* ===== Article header (bright patterned band, interview/project/news detail) ===== */
.article-header {
    padding-top: 50px;
  position: relative;
  overflow: hidden;
  color: var(--ink-900);
  background:
    radial-gradient(circle at 1px 1px, rgba(0, 123, 199, .16) 1.5px, transparent 1.6px) 0 0/28px 28px, linear-gradient(135deg, var(--blue-025) 0%, var(--blue-100) 55%, var(--blue-050) 100%);
}
.article-header__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--header-h) + 40px) var(--gutter) 140px;
}
.article-header__crumb {
  font-family: var(--font-latin);
  font-size: 14px;
  letter-spacing: .2em;
  color: var(--blue-600);
  margin: 0 0 26px;
}
.article-header__crumb a {
  color: var(--blue-600);
}
.article-header__type {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--border-warm);
  font-size: 14px;
  letter-spacing: .04em;
  padding: 5px 13px;
  margin: 0 0 20px;
}
.article-header__date {
  font-family: var(--font-latin);
  font-size: 14px;
  color: var(--text-meta);
  margin: 0 0 16px;
}
.article-header__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.45;
  margin: 0;
}
/* ===== Article prev/next nav ===== */
.article-nav {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.article-nav__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.article-nav__link {
  display: block;
  border: 1px solid var(--border-sand);
  padding: 22px 26px;
  text-decoration: none;
  color: inherit;
}
.article-nav__link--next {
  text-align: right;
}
.article-nav__empty {
  border: 1px dashed var(--border-warm);
  background: var(--surface-card);
  padding: 22px 26px;
  text-align: right;
  color: var(--text-meta);
  font-size: 14px;
}
.article-nav__label {
  margin: 0 0 6px;
  font-family: var(--font-latin);
  font-size: 14px;
  letter-spacing: .16em;
  color: var(--text-meta);
}
.article-nav__title {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
}
.article-nav__back {
  text-align: center;
  margin: 32px 0 0;
}
/* ===== Nav active state ===== */
.site-nav__link--active, .nav-dropdown__toggle--active {
  font-weight: 700;
  color: var(--blue-600);
  box-shadow: inset 0 -2px 0 0 var(--blue-600);
}
/* ===== Page hero (subpage, static photo) ===== */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--surface-night);
  color: #fff;
}
.page-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero__scrim {
  position: absolute;
  inset: 0;
  background: var(--scrim-page-hero);
}
.page-hero__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 150px var(--gutter) 200px;
}
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1.18;
  margin: 0;
  text-shadow: var(--text-shadow-hero);
}
.page-hero__lead {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(16px, 1.7vw, 22px);
  letter-spacing: var(--tracking-lead);
  color: #eceef4;
  margin: 22px 0 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .5);
}
.page-hero__body {
  max-width: 38em;
  color: #fff;
  font-size: 16px;
  line-height: 1.9;
  margin: 20px 0 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .5);
}
.page-hero__body + .page-hero__body {
  margin-top: 12px;
}
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}
/* ===== Concept grid (2-up plain cards) ===== */
.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.concept-card {
  position: relative;
  background: #fff;
  padding: 38px 36px;
  border: 1px solid var(--border-sand);
  box-shadow: 0 22px 44px -30px rgba(20, 22, 28, .16);
}
.concept-card__no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-600);
  color: #fff;
  font-family: var(--font-latin);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 18px;
}
.concept-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  margin: 0 0 16px;
}
.concept-card__desc {
  margin: 0 0 14px;
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.9;
}
.concept-card__desc:last-child {
  margin-bottom: 0;
}
/* ===== Tenant grid (featured tenant + placeholder slots) ===== */
.tenant-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 18px;
}
.placeholder-card {
  border: 1px dashed var(--border-warm);
  background: var(--surface-card);
  border-radius: var(--radius-feature);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-meta);
  font-size: 14px;
  min-height: 220px;
  padding: 20px;
}
/* ===== Pricing / two-up grid (tables, table+map) ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.pricing-grid--split {
  grid-template-columns: 1fr 1.1fr;
}
.pricing-col__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  margin: 0 0 6px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink-900);
}
.pricing-col__sub {
  font-size: 14px;
  color: var(--text-meta);
  margin: 8px 0 8px;
}
/* ===== Info table ===== */
.info-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 16px;
}
.info-table th, .info-table td {
  border: 1px solid var(--border-sand);
  padding: 13px 16px;
  text-align: left;
}
.info-table th {
  font-weight: 500;
  background: var(--blue-050);
  width: 26%;
  white-space: nowrap;
}
.info-table td {
  background: #fff;
  color: var(--ink-900);
}
.info-table th.is-unconfirmed, .info-table td.is-unconfirmed {
  background: var(--surface-sand);
  color: var(--text-meta);
}
/* ===== Amenity grid (5-up icon-less feature strip) ===== */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border-sand);
  border: 1px solid var(--border-sand);
}
.amenity-item {
  background: #fff;
  padding: 26px 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.amenity-item strong {
  display: block;
  font-family: var(--font-latin);
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-600);
}
/* ===== Two-up plain info card ===== */
.info-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.info-card {
  background: #fff;
  border: 1px solid var(--border-sand);
  border-radius: var(--radius-card-sm);
  padding: 28px 30px;
}
.info-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 10px;
}
.info-card__desc {
  margin: 0;
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.75;
}
.info-card__desc + .info-card__desc {
  margin-top: 6px;
}
/* ===== Map placeholder ===== */
.map-placeholder {
  border: 1px solid var(--border-sand);
  background: var(--surface-card);
  border-radius: var(--radius-card-sm);
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  color: var(--text-meta);
  font-size: 14px;
  min-height: 300px;
}
/* ===== Step flow (STEP1-5) ===== */
.step-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.step-flow__item {
  background: #fff;
  border: 1px solid var(--border-sand);
  border-radius: var(--radius-card-sm);
  display: flex;
  flex-direction: column;
}
.step-flow__head {
  border-bottom: 1px solid var(--border-sand);
  padding: 18px 18px 16px;
}
.step-flow__no {
  font-family: var(--font-latin);
  font-size: 14px;
  letter-spacing: .12em;
  color: var(--blue-600);
  margin: 0 0 6px;
  font-weight: 700;
}
.step-flow__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}
.step-flow__body {
  padding: 16px 18px;
  flex: 1;
}
.step-flow__desc {
  margin: 0;
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.8;
}
.step-flow__foot {
  border-top: 1px dashed var(--border-warm);
  background: var(--surface-card);
  padding: 14px 18px;
}
.step-flow__note {
  margin: 0;
  font-size: 14px;
  color: var(--ink-900);
  line-height: 1.75;
}
.step-flow__note a {
  font-weight: 700;
  color: var(--blue-600);
}
/* ===== Dummy / preparing note callout ===== */
.note-callout {
  border: 1px dashed var(--border-warm);
  background: var(--surface-card);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.75;
  padding: 24px 26px;
  border-radius: var(--radius-card-sm);
}
.note-callout__label {
  display: block;
  font-family: var(--font-latin);
  font-size: 14px;
  letter-spacing: .14em;
  color: var(--text-meta);
  margin: 0 0 8px;
}
/* ===== Media placeholder (photo not yet supplied) ===== */
.media-placeholder {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-image);
/*  background: repeating-linear-gradient(45deg, var(--surface-card) 0 14px, var(--blue-050) 14px 28px);*/
  border: 1px solid var(--border-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-meta);
  font-size: 14px;
  line-height: 1.6;
  padding: 12px;
}
.media-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
}
.media-placeholder__tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(20, 22, 28, .72);
  color: #fff;
  font-size: 14px;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.photo-credit {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--text-meta);
  text-align: right;
}
.photo-credit02 {
  position: absolute;
  bottom: 20px;
  right: 70px;
  margin: 0;
  font-size: 14px;
  color: #fff;
  text-align: right;
}

.iframe-wrapper {
  position: absolute;
  inset: 0; 
}

.iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== Hairline single-column list (pain points, etc.) ===== */
.hairline-list {
  display: grid;
  gap: 1px;
  background: var(--border-sand);
  border: 1px solid var(--border-sand);
}
.hairline-list__item {
  background: #fff;
  padding: 22px 26px;
  font-size: 16px;
  color: var(--ink-900);
}
/* ===== Required field badge (annotation) ===== */
.required-badge {
  font-size: 14px;
  border: 1px solid #d32f2f;
  /*	border: 1px solid var(--ink-900);*/
  padding: 1px 7px;
  margin-left: 8px;
  font-weight: 400;
  border-radius: 4px;
  vertical-align: middle;
  color: #d32f2f;
}
/* ===== Form ===== */
.form-panel {
  background: #fff;
  border: 1px solid var(--border-sand);
  border-radius: var(--radius-card-sm);
  padding: 34px 36px;
}
.form-steps {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.form-steps__item {
  flex: 1;
  border-top: 3px solid var(--border-sand);
  padding-top: 10px;
}
.form-steps__item--active {
  border-top-color: var(--blue-600);
}
.form-steps__num {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-meta);
}
.form-steps__item--active .form-steps__num {
  color: var(--blue-600);
}
.form-section-label {
  font-family: var(--font-latin);
  font-size: 14px;
  letter-spacing: .16em;
  color: var(--text-meta);
  margin: 32px 0 16px;
  padding-top: 26px;
  border-top: 1px solid var(--border-sand);
}
.form-section-label:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.form-field {
  margin-bottom: 30px;
}
.form-field__label {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  border: 1px solid var(--border-warm);
  background: #fff;
  border-radius: var(--radius-chip);
  padding: 0 14px;
  height: 46px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink-900);
}
.form-textarea {
  height: 110px;
  padding: 12px 14px;
  resize: vertical;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.address-block {
  border: 1px solid var(--border-sand);
  background: var(--surface-card);
  padding: 18px 20px;
  border-radius: var(--radius-card-sm);
}
.form-help {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--text-meta);
  line-height: 1.75;
}
.form-agree {
  margin: 26px 0 18px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-note {
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--text-meta);
}
/* Time pills (radio-styled) */
.time-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.time-pill input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.time-pill span {
  display: inline-block;
  border: 1px solid var(--border-warm);
  background: #fff;
  padding: 9px 18px;
  font-size: 16px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--dur-hover) var(--ease-out);
}
.time-pill input:checked + span {
  background: var(--blue-600);
  color: #fff;
  border-color: var(--blue-600);
}
.time-pill--past span {
  background: var(--surface-sand);
  color: var(--text-meta);
  text-decoration: line-through;
  cursor: not-allowed;
}
/* ===== Schedule ===== */
.schedule-banner {
  background: var(--surface-navy);
  color: #fff;
  padding: 30px 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius-card-sm);
  margin-bottom: 24px;
}
.schedule-banner__label {
  font-family: var(--font-latin);
  font-size: 14px;
  letter-spacing: .2em;
  color: var(--on-dark-3);
  margin: 0 0 6px;
}
.schedule-banner__date {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 30px;
  margin: 0;
}
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border-sand);
  border: 1px solid var(--border-sand);
}
.schedule-slot {
  background: #fff;
  padding: 16px 12px;
  text-align: center;
}
.schedule-slot__no {
  font-family: var(--font-latin);
  font-size: 14px;
  color: var(--text-meta);
  margin: 0 0 4px;
}
.schedule-slot__date {
  margin: 0;
  font-size: 16px;
}
.schedule-slot--past {
  background: var(--surface-sand);
}
.schedule-slot--past .schedule-slot__date, .schedule-slot--past .schedule-slot__no {
  color: var(--text-meta);
}
.schedule-slot--past .schedule-slot__date {
  text-decoration: line-through;
}
.schedule-slot--next {
  background: var(--blue-050);
}
.schedule-slot--next .schedule-slot__date {
  font-weight: 700;
  color: var(--blue-600);
}
/* ===== FAQ ===== */
.faq-list {
  border-top: 1px solid var(--border-sand);
}
.faq-item {
  border-bottom: 1px solid var(--border-sand);
  padding: 24px 4px;
}
.faq-item__q {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  gap: 12px;
}
.faq-item__a {
  margin: 0;
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.85;
  display: flex;
  gap: 12px;
}
.faq-item__mark {
  font-family: var(--font-latin);
  color: var(--blue-600);
  font-weight: 700;
  flex: 0 0 auto;
}
.sp-only{display: block;}