:root {
  --bg: #f4f1eb;
  --ink: #1f211f;
  --muted: #6b6b66;
  --line: rgba(31, 33, 31, 0.14);
  --dark: #333333;
  --dark-soft: #252525;
  --white: #ffffff;
  --accent: #a6855a;
}

* {
  box-sizing: border-box;
}

img {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
}

html {
  scroll-behavior: smooth;
}

html.snap-page {
  scroll-snap-type: y mandatory;
}

html.snap-page body {
  scroll-snap-type: y mandatory;
}

html.snap-page .page-hero,
html.snap-page .hero,
html.snap-page .section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

html.no-scroll-page,
html.no-scroll-page body {
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  font-family: "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
}

body.login-body {
  overflow-y: scroll;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.28) 72%, rgba(0, 0, 0, 0));
  transition: transform 0.36s ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-130%);
}

.logo,
.site-nav,
.menu-toggle {
  transform: translateY(30px);
}

.logo img {
  width: auto;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 0.35));
}

.site-nav {
  display: flex;
  gap: 24.96px;
  align-items: center;
}

.site-nav a {
  color: var(--white);
  font-size: 18.72px;
  letter-spacing: 0.1em;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-current {
  color: var(--accent);
}

.mobile-external-links {
  display: none;
}

.mobile-break {
  display: none;
}

.nav-group {
  position: relative;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  display: none;
  min-width: 150px;
  padding: 12px 0;
  background: rgba(13, 15, 13, 0.94);
  transform: translateX(-50%);
}

.nav-dropdown a {
  display: block;
  padding: 8px 18px;
  white-space: nowrap;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  display: block;
}

.nav-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
}

.nav-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(1.45) contrast(1.35) drop-shadow(0 0 2px rgba(255, 255, 255, 0.45));
  transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.nav-icon:hover img,
.nav-icon:focus-visible img {
  opacity: 0.82;
  filter: brightness(1.9) contrast(1.55) drop-shadow(0 0 4px rgba(255, 255, 255, 0.75));
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.24);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background: var(--white);
}

.hero,
.page-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px 6vw 92px;
  color: var(--white);
  background: var(--dark);
}

.page-hero {
  min-height: 100vh;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28)), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero-projects {
  align-items: start;
  background-color: var(--dark);
}

.hero-about {
  align-items: start;
  background-color: var(--dark);
  background-image: var(--about-hero-image, url("about/about-02.jpg"));
  background-size: cover;
  background-position: center;
}

.hero-about::before {
  content: "";
  position: absolute;
  inset: -10%;
  background-image: var(--about-hero-image, url("about/about-02.jpg"));
  background-size: cover;
  background-position: center;
  animation: aboutHeroZoomIn 6s ease-out both;
}

@keyframes aboutHeroZoomIn {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-projects::before {
  content: "";
  position: absolute;
  inset: -13%;
  background-image: var(--news-hero-image, url("press/03.jpg"));
  background-size: cover;
  background-position: center calc(50% - 50px);
  animation: projectsHeroZoomIn 6s ease-out both;
}

.renewal-hero::before {
  filter: brightness(2);
}

@keyframes projectsHeroZoomIn {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(0.8);
  }
}

.new-projects-hero::before {
  animation-name: newProjectsHeroZoomIn;
}

@keyframes newProjectsHeroZoomIn {
  from {
    transform: scale(1.2);
  }

  to {
    transform: scale(0.96);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.26));
}

html.snap-page main > .hero .hero__overlay::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  transform: translateX(-50%) rotate(45deg);
  animation: scrollCueBounce 1.8s ease-in-out infinite;
}

@keyframes scrollCueBounce {
  0%,
  100% {
    transform: translate(-50%, -5px) rotate(45deg);
    opacity: 0.55;
  }

  50% {
    transform: translate(-50%, 5px) rotate(45deg);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.snap-page main > .hero .hero__overlay::after {
    animation: none;
  }
}

.progress-hero .hero__overlay,
.new-projects-hero .hero__overlay,
.classic-hero .hero__overlay,
.lifestyle-hero .hero__overlay,
.renewal-hero .hero__overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.04));
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.page-hero-small {
  min-height: 100vh;
}

.page-hero-small .hero__content {
  margin-top: 34vh;
}

.page-hero-small h1 {
  margin-bottom: 0;
  font-size: clamp(23px, 4.2vw, 47px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28));
}

.hero-media,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide-controls {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3vw;
  pointer-events: none;
}

.hero-slide-control {
  position: relative;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
}

.hero-slide-control::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(255, 255, 255, 0.45);
  border-bottom: 2px solid rgba(255, 255, 255, 0.45);
}

.hero-slide-control[data-slide-direction="previous"]::after {
  transform: translate(-35%, -50%) rotate(135deg);
}

.hero-slide-control[data-slide-direction="next"]::after {
  transform: translate(-65%, -50%) rotate(-45deg);
}

.hero-slide-control:focus-visible {
  outline: 1px solid var(--white);
  outline-offset: 4px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.eyebrow {
  margin: 8px 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.eyebrow span {
  display: block;
  color: var(--accent);
}

.eyebrow .eyebrow-en {
  margin-top: 4px;
  font-size: 70%;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.12;
  letter-spacing: 0.04em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(24px, 3.4vw, 42px);
  line-height: 1.2;
  letter-spacing: 0.04em;
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
  letter-spacing: 0.04em;
}

.hero-content p:last-of-type {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  padding: 12px 20px;
  border: 1px solid var(--white);
  letter-spacing: 0.08em;
}

.button-primary {
  background: var(--white);
  color: var(--ink);
}

.button-secondary {
  color: var(--white);
}

.section {
  min-height: 100vh;
  display: grid;
  align-content: center;
  padding: 96px 6vw;
}

.snap-section {
  position: relative;
  padding-bottom: 100px;
}

.section-light {
  background: var(--bg);
  color: var(--ink);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 48px;
}

.section-heading p,
.section-light .prose p,
.section-light .text-card p,
.section-light .info-grid p,
.section-light .news-card h3 {
  color: var(--muted);
}

.section-dark .section-heading p,
.section-dark .prose p,
.section-dark .info-grid p,
.section-dark .news-card h3,
.contact-layout p {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading .eyebrow,
.section-heading .eyebrow span,
.section-dark .section-heading .eyebrow,
.section-dark .section-heading .eyebrow span {
  color: var(--accent);
}

.page-copy,
.contact-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: 56px;
  align-items: start;
  align-content: center;
}

.page-copy > div:last-child {
  margin-left: -100px;
  transform: translateY(8px);
}

.hero__content > h1 + .eyebrow,
.page-copy > div:first-child > h1 + .eyebrow,
.page-copy > div:first-child > h2 + .eyebrow {
  margin: 8px 0 0;
}

.page-copy > div:first-child > h1,
.page-copy > div:first-child > h2 {
  margin-bottom: 0;
}

.page-copy h3 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.65;
}

.page-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.about-profile-section {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
}

.about-profile-section .page-copy > div:last-child p {
  text-align: justify;
  text-align-last: left;
  text-justify: inter-ideograph;
}

.about-profile-section::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 30px;
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  transform: translateX(-50%) rotate(45deg);
  animation: scrollCueBounce 1.8s ease-in-out infinite;
}

#about-us::after {
  border-color: rgba(42, 48, 42, 0.72);
}

.brand-belief-cover::after {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .about-profile-section::after {
    animation: none;
  }
}

.about-us-cover {
  color: var(--white);
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.32)), url("about/about-02.jpg");
  background-size: cover;
  background-position: center;
}

.about-us-cover .page-copy h2,
.about-us-cover .page-copy h3,
.about-us-cover .page-copy p {
  color: var(--white);
}

.about-us-cover .page-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.brand-story-cover {
  color: var(--white);
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.32)), var(--brand-story-image, url("about/Back-03.jpg"));
  background-size: cover;
  background-position: center;
}

.brand-story-cover .page-copy h2,
.brand-story-cover .page-copy h3,
.brand-story-cover .page-copy p {
  color: var(--white);
}

.brand-story-cover .page-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.brand-story-cover .page-copy h3 {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.85;
}

.brand-belief-cover {
  position: relative;
  color: var(--white);
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.32)), var(--brand-belief-image, url("about/Paris.jpg"));
  background-size: cover;
  background-position: center;
}

.brand-belief-cover .page-copy h2,
.brand-belief-cover .page-copy h3,
.brand-belief-cover .page-copy p {
  color: var(--white);
}

.brand-belief-cover .page-copy p {
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 10px;
  line-height: 1.68;
}

.brand-belief-cover .page-copy h3 {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.68;
}

.about-panel {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-content: center;
  padding: 150px 6vw 96px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.about-cover {
  color: var(--white);
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28)), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.about-light {
  color: var(--ink);
  background: var(--bg);
}

.about-dark {
  color: var(--white);
  background: var(--dark);
}

.about-copy {
  display: grid;
  width: min(960px, 100%);
  grid-template-columns: max-content minmax(0, 560px);
  column-gap: 100px;
  align-items: start;
  justify-self: center;
  transform: none;
}

.about-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

.about-copy .eyebrow {
  grid-column: 1;
  grid-row: 1 / span 8;
  font-size: 21.6px;
}

.about-copy h1,
.about-copy h2,
.about-copy p:not(.eyebrow) {
  width: min(560px, 100%);
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  grid-column: 2;
  margin-left: 0;
  margin-right: 0;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-ideograph;
}

.about-copy .eyebrow + h1,
.about-copy .eyebrow + h2,
.about-copy .eyebrow + p {
  margin-top: 31px;
}

.about-copy .hero-actions {
  grid-column: 2;
}

.about-copy strong {
  font-weight: 400;
}

.about-light .about-copy h1,
.about-light .about-copy h2,
.about-light .about-copy p:not(.eyebrow) {
  color: var(--ink);
}

.news-panel,
.progress-panel,
.subpage-panel {
  gap: 40px;
  padding-bottom: 112px;
}

.news-panel .media-grid,
.progress-panel .progress-grid,
.subpage-panel .media-grid,
.subpage-panel .project-grid,
.subpage-panel .info-grid,
.pending-note {
  width: min(1080px, calc(100% - 50px));
  transform: translateX(50px);
}

.pending-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  letter-spacing: 0.12em;
}

.project-detail-panel {
  gap: 40px;
  padding-bottom: 112px;
}

.project-detail {
  display: grid;
  width: min(960px, calc(100% - 50px));
  grid-template-columns: minmax(240px, 0.82fr) minmax(260px, 1fr);
  gap: 42px;
  align-items: center;
  transform: translateX(50px);
}

.project-detail img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(0.92);
}

.project-detail-copy h1 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.project-detail-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

.project-detail-copy .progress-status {
  margin-top: 12px;
  color: #8fcf74;
}

.project-detail-copy .progress-date {
  margin-top: 10px;
  color: var(--accent);
  font-size: 13px;
}

.project-detail-copy .button {
  margin-top: 28px;
}

.legacy-progress-body {
  background: var(--dark);
}

.legacy-progress {
  min-height: calc(100vh - 56px);
  padding: 170px 24px 48px;
  background: var(--dark);
}

.legacy-progress-wrap {
  width: min(1024px, 100%);
  margin: 0 auto;
}

.legacy-progress-table {
  width: 100%;
  border: 0;
  color: #cccccc;
  background: #333333;
  border-collapse: collapse;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}

.legacy-progress-card {
  overflow: hidden;
  color: #cccccc;
  background: #333333;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}

.legacy-progress-image {
  margin: 0;
  aspect-ratio: 16 / 9;
  background: #333333;
  overflow: hidden;
}

.legacy-progress-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.legacy-progress-image-natural {
  aspect-ratio: auto;
}

.legacy-progress-image-natural img {
  height: auto;
  object-fit: contain;
}

.legacy-progress-detail {
  display: grid;
  grid-template-columns: minmax(260px, 38%) minmax(0, 1fr);
}

.legacy-info-block,
.legacy-copy-block {
  background: #333333;
}

.legacy-info-block {
  padding: 20px 28px 28px 60px;
  border-right: 1px solid #c0c0c0;
}

.legacy-info-block-offset {
  position: relative;
  border-right: 0;
}

.legacy-info-block-offset::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 0;
  bottom: 28px;
  width: 1px;
  background: #c0c0c0;
}

.legacy-copy-block {
  padding: 20px 50px 28px;
}

.legacy-hero-cell img {
  width: 100%;
  height: auto;
}

.legacy-info-cell,
.legacy-copy-cell {
  vertical-align: top;
  background: #333333;
}

.legacy-info-cell {
  width: 38%;
  padding: 20px 28px 28px 60px;
  border-right: 1px solid #c0c0c0;
}

.legacy-info-cell-offset {
  position: relative;
  border-right: 0;
}

.legacy-info-cell-offset::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 0;
  bottom: 28px;
  width: 1px;
  background: #c0c0c0;
}

.legacy-copy-cell {
  width: 62%;
  padding: 20px 50px 28px;
}

.legacy-info-cell p,
.legacy-copy-cell p,
.legacy-info-block p,
.legacy-copy-block p {
  margin: 10px 0 0;
  color: #cccccc;
  font-size: 16px;
  line-height: 2;
}

.legacy-title {
  color: #ff9900;
  font-size: 18px;
  font-weight: 700;
}

.legacy-title span {
  color: #99cc00;
  font-size: 16px;
  font-weight: 400;
}

.legacy-green {
  color: #99cc00;
}

.legacy-side-image {
  width: 100%;
  height: auto;
}

.legacy-back {
  margin-top: 42px;
}

.legacy-back a {
  color: #99cc00;
}

.prose p {
  margin-bottom: 20px;
  font-size: 17px;
  text-align: justify;
  text-justify: inter-ideograph;
}

.service-grid,
.info-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.text-card,
.info-grid article,
.news-card {
  min-height: 230px;
  padding: 34px;
  background: var(--bg);
}

.section-dark .info-grid,
.section-dark .news-grid {
  background: rgba(255, 255, 255, 0.12);
}

.section-dark .info-grid article,
.section-dark .news-card {
  background: var(--dark);
}

.text-card {
  transition: color 0.2s ease, background 0.2s ease;
}

.text-card:hover {
  color: var(--white);
  background: var(--dark);
}

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

.project-card {
  background: transparent;
}

.project-card img,
.news-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(0.92);
}

.project-card div {
  padding: 14px 0 9px;
}

.project-card span,
.info-grid span,
.news-card time {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.project-card h3 {
  color: var(--white);
  font-size: 16px;
}

.news-projects-page {
  background: var(--dark);
}

.news-projects-page .section-light {
  background: var(--dark);
}

.news-list-section {
  min-height: 100vh;
  padding-top: 96px;
  padding-bottom: 96px;
}

.projects-list-screen {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.project-list-heading {
  margin-bottom: 30px;
  color: var(--white);
}

.project-list-heading h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 40px);
}

.project-list-heading p {
  margin: 8px 0 0;
  color: var(--accent);
  font-size: 14.4px;
  letter-spacing: 0.18em;
}

.project-category-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: 72px;
  align-items: start;
}

.project-category-layout > .project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-left: -100px;
  transform: translateY(8px);
}

.projects-list-screen.has-next-screen::after,
.service-contact-section.has-next-screen::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 30px;
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  transform: translateX(-50%) rotate(45deg);
  animation: scrollCueBounce 1.8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .projects-list-screen.has-next-screen::after,
  .service-contact-section.has-next-screen::after {
    animation: none;
  }
}

.projects-list-screen .news-list-section {
  min-height: 0;
  flex: 1;
}

html.snap-page .projects-list-screen .section {
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

.news-project-grid {
  line-height: 0.85;
}

.news-project-card img {
  transition: filter 0.28s ease, transform 0.28s ease;
}

.news-project-card:hover img {
  filter: brightness(1.18) saturate(0.98);
}

.news-project-card span {
  line-height: 1.4;
}

.news-project-card h3 {
  line-height: 1.55;
}

.news-project-card p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.proposal-hero {
  --news-hero-image: url("contact/proposal.jpg");
  height: 100vh;
  padding: 96px 6vw;
  align-items: stretch;
  align-content: center;
}

.proposal-hero .proposal-hero-content {
  max-width: none;
  width: min(1160px, 100%);
  min-height: 100vh;
  margin-top: 0;
}

.proposal-hero .proposal-hero-content > div:last-child {
  margin-left: -100px;
  transform: translateY(8px);
}

.proposal-hero .proposal-hero-content h1 {
  margin-bottom: 0;
  font-size: clamp(24px, 3.4vw, 42px);
}

.proposal-hero .proposal-hero-content .eyebrow,
.service-login-content .eyebrow,
.service-contact-content .eyebrow {
  margin-top: 8px;
}

.proposal-hero .proposal-hero-content h3 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.85;
}

.proposal-hero .proposal-hero-content p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.85;
}

.proposal-hero .hero-actions {
  margin-top: 22px;
}

.service-section,
.service-login-section,
.service-contact-section {
  min-height: 100vh;
  height: 100vh;
}

.service-login-section {
  min-height: 100vh;
  min-height: 100svh;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  padding-top: 96px;
  padding-bottom: 96px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.service-login-content {
  max-width: none;
  width: min(1160px, 100%);
  min-height: 100vh;
}

.service-contact-content {
  max-width: none;
  width: min(1160px, 100%);
  min-height: 100vh;
}

.service-login-content > div:last-child {
  margin-left: -100px;
  transform: translateY(8px);
}

.service-contact-content > div:last-child {
  margin-left: -100px;
  transform: translateY(8px);
}

.service-login-content h1,
.service-contact-content h1 {
  margin-bottom: 0;
  font-size: clamp(24px, 3.4vw, 42px);
}

.service-contact-content > div:first-child {
  margin-top: 0;
}

.service-contact-content h1 {
  font-size: clamp(24px, 3.4vw, 42px);
}

.service-login-content .login-panel {
  justify-self: end;
}

.login-content-columns {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(280px, 390px);
  gap: 36px;
  align-items: center;
}

.service-login-content .login-notice {
  margin: 0;
  color: var(--white);
  font-size: 17px;
  line-height: 1.85;
}

.pending-project-grid {
  grid-template-columns: minmax(240px, 360px);
}

.pending-project-card {
  min-height: 240px;
  display: grid;
  align-content: end;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

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

.progress-card {
  min-width: 0;
}

.progress-image {
  display: block;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.progress-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform 0.35s ease;
}

a.progress-image:hover img {
  transform: scale(1.04);
}

.progress-card div:not(.progress-image) {
  padding: 16px 0 4px;
}

.progress-card h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
}

.progress-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.progress-card .progress-status {
  margin-top: 8px;
  color: #8fcf74;
}

.progress-card .progress-date {
  margin-top: 10px;
  color: var(--accent);
  font-size: 13px;
}

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

.media-card {
  min-width: 0;
  background: transparent;
}

.media-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(0.92);
}

.media-card div {
  padding: 16px 0 4px;
}

.media-card time {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.media-card h3 {
  margin: 0;
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
}

.media-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.media-card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--white);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.46);
}

.news-card {
  padding: 0;
}

.news-card div {
  padding: 24px;
}

address {
  display: grid;
  gap: 0;
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
}

address span,
address a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-page {
  padding-top: 170px;
}

.contact-full {
  position: relative;
  min-height: 100vh;
  padding-bottom: 92px;
}

.contact-heading {
  max-width: none;
  margin-bottom: 0;
}

.contact-heading h1 {
  margin-bottom: 0;
  color: var(--accent);
  font-size: 21.6px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.contact-heading .eyebrow {
  font-size: 21.6px;
}

/* Page English labels follow the Brand and About treatments. */
.hero__content .eyebrow,
.page-copy .eyebrow,
.about-copy .eyebrow,
.contact-heading .eyebrow,
.section-heading .eyebrow {
  color: var(--accent);
  font-size: 14.4px;
}

.brand-story-cover .page-copy .eyebrow,
.about-us-cover .page-copy .eyebrow,
.brand-belief-cover .page-copy .eyebrow {
  color: var(--accent);
}

.eyebrow span,
.eyebrow .eyebrow-en {
  color: var(--accent);
  font-size: 14.4px;
}

.contact-panel {
  gap: 36px;
  padding-bottom: 112px;
}

.contact-board {
  display: grid;
  width: min(760px, 100%);
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
  gap: 28px;
  align-items: stretch;
  transform: none;
}

.contact-info {
  display: grid;
  align-content: start;
  gap: 28px;
}

.contact-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
}

.contact-actions .button {
  flex: 1 1 0;
  min-width: 0;
}

.login-page {
  position: relative;
  min-height: 112vh;
  align-items: center;
  align-content: center;
  justify-items: center;
  padding-top: 150px;
  padding-bottom: calc(96px + 12vh);
}

.service-login-section.login-page {
  min-height: 100vh;
  min-height: 100svh;
  height: 100vh;
  height: 100svh;
  padding: 96px 6vw;
  align-items: stretch;
  align-content: center;
  justify-items: stretch;
}

.login-copy {
  max-width: none;
}

.login-copy .login-panel {
  grid-column: 2;
  margin-top: 31px;
}

.login-panel {
  display: grid;
  width: min(390px, 100%);
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(20, 20, 20, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  align-self: center;
}

.login-panel-head {
  display: grid;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.login-panel-head span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.login-panel-head strong {
  color: var(--white);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.login-panel label {
  display: grid;
  gap: 8px;
}

.login-panel label span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.login-panel input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  letter-spacing: 0.04em;
}

.login-panel input:focus {
  outline: 1px solid var(--accent);
  border-color: var(--accent);
}

.login-panel input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.login-hint,
.about-copy .login-panel .login-message,
.login-message {
  width: auto;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 400;
  grid-column: auto;
  line-height: 1.7;
  text-align: left;
  text-align-last: left;
  text-justify: auto;
}

.login-message {
  min-height: 22px;
  color: var(--accent);
}

.login-submit {
  width: 100%;
  margin-top: 2px;
  border-color: var(--white);
  cursor: pointer;
}

.map-panel {
  min-height: 520px;
  background: rgba(255, 255, 255, 0.08);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.contact-full .contact-heading {
  margin-bottom: 40px;
}

.contact-full .map-panel,
.contact-full .map-panel iframe {
  min-height: clamp(320px, 44vh, 460px);
}

.contact-panel .map-panel,
.contact-panel .map-panel iframe {
  min-height: clamp(300px, 38vh, 420px);
}

.contact-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

.snap-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 6vw;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.footer-social a {
  display: inline-flex;
  width: 38px;
  height: 28px;
  align-items: center;
  justify-content: center;
}

.footer-social img {
  width: auto;
  height: 22px;
  object-fit: contain;
  filter: brightness(1.35) contrast(1.2);
  transform: translateY(var(--footer-icon-y, 0));
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-social img[src$="youtube.png"] {
  height: 24px;
  --footer-icon-y: -1px;
}

.footer-social img[src$="icloud.png"] {
  height: 24px;
  --footer-icon-y: -1px;
}

.footer-social img[src$="email_13197345.png"] {
  height: 28px;
  --footer-icon-y: -2px;
}

.footer-social a:hover img,
.footer-social a:focus-visible img {
  opacity: 0.78;
  transform: translateY(calc(var(--footer-icon-y, 0px) - 1px));
}

@media (min-width: 921px) {
  .site-header {
    align-items: center;
    justify-content: space-between;
    padding: 24px 6vw;
  }

  .logo,
  .site-nav,
  .menu-toggle {
    transform: translateY(30px);
  }

  .logo img {
    height: 44.2px;
  }

  .site-nav {
    gap: 24.96px;
    align-items: center;
  }
}

@media (max-width: 920px) {
  .site-header,
  .site-header.is-hidden {
    transform: none;
  }

  .site-header {
    padding: 16.65px 11px;
    background: var(--dark);
  }

  .home-page .site-header {
    background: transparent;
  }

  .logo {
    transform: translateX(15px);
  }

  .menu-toggle {
    transform: translateX(-15px);
  }

  .site-nav {
    transform: none;
  }

  .hero-home .hero-slide[src="home/01.jpg"] {
    object-position: calc(50% - 450px) center;
  }

  .hero-home .hero-slide[src="home/04.jpg"] {
    object-position: calc(50% + 150px) center;
  }

  .hero-home::after {
    background: rgba(0, 0, 0, 0.1);
  }

  .mobile-break {
    display: block;
  }

  html.snap-page,
  html.snap-page body {
    scroll-snap-type: none;
  }

  html.snap-page .page-hero,
  html.snap-page .hero,
  html.snap-page .section,
  .about-panel,
  .projects-list-screen,
  .service-login-section {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  .site-footer {
    display: none;
  }

  html.snap-page main > .hero .hero__overlay::after,
  .about-profile-section::after,
  .projects-list-screen.has-next-screen::after,
  .service-contact-section.has-next-screen::after {
    display: none;
  }

  .logo img {
    height: 33px;
  }

  .menu-toggle {
    display: block;
    width: 33px;
    height: 33px;
  }

  .menu-toggle span {
    width: 15px;
    margin: 4.5px auto;
  }

  .site-nav {
    position: absolute;
    top: 66.3px;
    right: 11px;
    display: none;
    min-width: 220px;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    background: rgba(13, 15, 13, 0.94);
  }

  .nav-group {
    width: 100%;
  }

  .nav-trigger {
    min-height: auto;
  }

  .site-nav .nav-group .nav-dropdown {
    position: static;
    display: none;
    min-width: 0;
    padding: 0;
    background: transparent;
    transform: none;
  }

  .nav-dropdown a {
    padding: 0;
    font-size: 18.72px;
  }

  .site-nav .nav-group:nth-child(2) .nav-trigger {
    display: none;
  }

  .site-nav .nav-group:nth-child(2) .nav-dropdown {
    display: grid;
    gap: 18px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a.is-current {
    color: var(--white);
  }

  .hero-home .hero-actions {
    flex-wrap: nowrap;
  }

  .hero-home .hero-actions .button {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    white-space: nowrap;
  }

  .hero-home {
    min-height: 100svh;
    height: 100svh;
  }

  .hero-home .hero-slide-controls {
    display: none;
  }

  .hero-about,
  .about-profile-section {
    min-height: 100svh;
  }

  .about-profile-section {
    height: auto;
    overflow: visible;
  }

  section.about-profile-section {
    padding-top: 48px;
  }

  .about-profile-section .page-copy {
    gap: 28px;
  }

  .about-profile-section .page-copy > div:last-child h3,
  .about-profile-section .page-copy > div:last-child p:not(.eyebrow) {
    width: 100%;
    text-align: justify;
    text-align-last: left;
    text-justify: inter-character;
    word-break: break-all;
    line-break: strict;
  }

  .service-contact-section {
    min-height: auto;
    height: auto;
    overflow: visible;
  }

  .service-contact-content {
    min-height: auto;
  }

  .hero.proposal-hero {
    min-height: 100svh;
    height: auto;
    overflow: visible;
    padding-top: 48px;
  }

  .proposal-hero::before {
    inset: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    animation: none;
    transform: none;
  }

  .proposal-hero .proposal-hero-content {
    gap: 28px;
  }

  .proposal-hero .proposal-hero-content > div:last-child {
    margin-left: 0;
  }

  .service-login-section.login-page {
    min-height: 100svh;
    height: auto;
    overflow: visible;
    padding-top: 48px;
    padding-bottom: 72px;
  }

  .service-login-content {
    gap: 28px;
  }

  .service-login-content > div:last-child {
    margin-left: 0;
  }

  .brand-belief-cover .page-copy {
    min-height: auto;
  }

  .brand-belief-cover {
    min-height: auto;
  }

  .mobile-external-links {
    display: grid;
    width: 100%;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .mobile-external-links a {
    display: flex;
    align-items: center;
    gap: 0.5em;
  }

  .mobile-external-links a::before {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    vertical-align: middle;
  }

  .mobile-external-links a:nth-child(1)::before {
    content: "";
    background-image: url("assets/home/social_10124361.png");
  }

  .mobile-external-links a:nth-child(2)::before {
    content: "";
    background-image: url("assets/home/youtube.png");
  }

  .mobile-external-links a:nth-child(3)::before {
    content: "";
    background-image: url("assets/home/icloud.png");
  }

  .mobile-external-links a:nth-child(4)::before {
    content: "";
    background-image: url("assets/home/email_13197345.png");
  }

  .hero,
  .page-hero,
  .section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .page-copy,
  .contact-layout,
  .contact-board,
  .login-page,
  .service-grid,
  .info-grid,
  .news-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .page-copy > div:last-child {
    margin-left: 0;
  }

  .login-content-columns {
    grid-template-columns: 1fr;
  }

  .service-login-content .login-panel {
    justify-self: start;
  }

  .service-contact-content > div:first-child {
    margin-top: 0;
  }

  .project-category-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .project-category-layout > .project-grid {
    grid-template-columns: 1fr;
    margin-left: 0;
    transform: none;
  }

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

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

  .about-copy {
    display: block;
    transform: none;
  }

  .about-copy h1,
  .about-copy h2,
  .about-copy p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .about-copy .eyebrow + h1,
  .about-copy .eyebrow + h2,
  .about-copy .eyebrow + p {
    margin-top: 0;
  }

  .login-copy {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .login-panel {
    justify-self: stretch;
  }

  .contact-board {
    width: 100%;
    transform: none;
  }

  .news-panel .media-grid,
  .progress-panel .progress-grid,
  .subpage-panel .media-grid,
  .subpage-panel .project-grid,
  .subpage-panel .info-grid,
  .pending-note,
  .project-detail {
    width: 100%;
    transform: none;
  }

  .legacy-info-cell,
  .legacy-copy-cell {
    display: block;
    width: 100%;
    padding: 24px;
  }

  .legacy-progress-detail {
    grid-template-columns: 1fr;
  }

  .legacy-info-block,
  .legacy-copy-block {
    padding: 24px;
  }

  .legacy-info-block {
    border-right: 0;
    border-bottom: 1px solid #c0c0c0;
  }

  .legacy-info-block-offset::after {
    display: none;
  }

  .legacy-info-cell {
    border-right: 0;
    border-bottom: 1px solid #c0c0c0;
  }

  .legacy-info-cell-offset::after {
    display: none;
  }

  .text-card,
  .info-grid article {
    min-height: auto;
  }

  .site-footer span + span {
    display: block;
    margin-top: 8px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 132px;
    padding-bottom: 72px;
  }

  .page-hero {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 56px;
  }

  .button {
    width: 100%;
  }

  .contact-actions {
    flex-wrap: wrap;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .snap-section {
    padding-bottom: 112px;
  }

  .contact-page {
    padding-top: 132px;
  }

  .contact-heading {
    margin-bottom: 42px;
  }

  .contact-full {
    padding-bottom: 112px;
  }

  .login-page {
    gap: 36px;
    align-content: center;
    padding-top: 126px;
    padding-bottom: 112px;
  }

  .login-panel {
    padding: 24px;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 380px;
  }

  .contact-full .map-panel,
  .contact-full .map-panel iframe {
    min-height: 260px;
  }

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

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