@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@500;600;700&family=Noto+Sans+TC:wght@400;500&family=JetBrains+Mono:wght@400;500&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
img, svg {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

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

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

body {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #131419;
  background: #f7f4ec;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid #c1432e;
  outline-offset: 3px;
  border-radius: 2px;
}

h1, h2, h3 {
  font-family: "Noto Serif TC", "Source Han Serif TC", "Songti TC", serif;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #131419;
}

h1 {
  font-size: clamp(48px, 9vw, 128px);
  font-weight: 600;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
}

h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
}

p {
  max-width: 60ch;
}

.mono {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5a5d66;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

section {
  padding-block: 96px;
}

@media (min-width: 960px) {
  section {
    padding-block: 128px;
  }
}
hr.rule {
  border: 0;
  border-top: 1px solid #ddd6c5;
  margin: 0;
}

.section-num {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #5a5d66;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 236, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, background 200ms ease;
}
.masthead.is-scrolled {
  border-bottom-color: #ddd6c5;
}
.masthead__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-block: 12px;
}
.masthead__wordmark {
  font-family: "Noto Serif TC", "Source Han Serif TC", "Songti TC", serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: #131419;
  margin-right: 24px;
}
.masthead__nav {
  display: none;
  align-items: center;
  gap: 24px;
  flex: 1 1 auto;
}
.masthead__nav a {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
  font-size: 14px;
  color: #5a5d66;
  padding: 8px 0;
  transition: color 150ms ease;
  position: relative;
}
.masthead__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: #c1432e;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 200ms ease;
}
.masthead__nav a:hover, .masthead__nav a:focus-visible {
  color: #131419;
}
.masthead__nav a:hover::after, .masthead__nav a:focus-visible::after {
  transform: scaleX(1);
}
@media (min-width: 960px) {
  .masthead__nav {
    display: flex;
  }
}
.masthead__cta {
  margin-left: auto;
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #131419;
  padding: 8px 16px;
  border: 1px solid #131419;
  border-radius: 2px;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}
.masthead__cta:hover, .masthead__cta:focus-visible {
  background: #131419;
  color: #f7f4ec;
  border-color: #131419;
}

.hero {
  padding-top: 96px;
  padding-bottom: 128px;
  position: relative;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 960px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 96px;
  }
}
.hero__text {
  display: grid;
  gap: 12px;
}
.hero__avail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5a5d66;
  margin-bottom: 16px;
}
.hero__avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c1432e;
  flex: 0 0 auto;
  position: relative;
}
.hero__avail-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #c1432e;
  opacity: 0.25;
  animation: hero-pulse 2.4s ease-in-out infinite;
}
@keyframes hero-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.25;
  }
  50% {
    transform: scale(1.4);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__avail-dot::after {
    animation: none;
  }
}
.hero__name {
  line-height: 1;
  margin-bottom: 0;
}
.hero__latin {
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #5a5d66;
  margin-top: -4px;
}
.hero__subtitle {
  font-family: "Noto Serif TC", "Source Han Serif TC", "Songti TC", serif;
  font-weight: 500;
  font-size: clamp(18px, 2.2vw, 24px);
  color: #131419;
  letter-spacing: 0.02em;
  margin-top: 12px;
}
.hero__locale {
  color: #5a5d66;
  margin-top: 16px;
  border-top: 1px solid #ddd6c5;
  padding-top: 16px;
}
.hero__portrait {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  justify-self: end;
  box-shadow: 0 1px 0 rgba(19, 20, 25, 0.04), 0 24px 48px -24px rgba(19, 20, 25, 0.18);
}
.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
@media (min-width: 960px) {
  .hero__portrait {
    max-width: 100%;
  }
}

.creds {
  border-block: 1px solid #ddd6c5;
  padding-block: 32px;
  background: #f7f4ec;
}
.creds__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .creds__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .creds__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}
.creds__item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 4px;
  align-items: baseline;
}
.creds__num {
  grid-row: 1/span 2;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #c1432e;
  padding-top: 4px;
}
.creds__label {
  font-family: "Noto Serif TC", "Source Han Serif TC", "Songti TC", serif;
  font-weight: 600;
  font-size: 14px;
  color: #131419;
}
.creds__detail {
  font-size: 13px;
  color: #5a5d66;
  line-height: 1.5;
}

.about {
  background: #f7f4ec;
}
.about__paragraph {
  font-family: "Noto Serif TC", "Source Han Serif TC", "Songti TC", serif;
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.55;
  color: #131419;
  max-width: 38ch;
  margin-bottom: 48px;
}
.about__meta {
  display: grid;
  gap: 12px;
  border-top: 1px solid #ddd6c5;
  padding-top: 24px;
  max-width: 640px;
}
.about__meta-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: baseline;
}
.about__meta-row dt {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5a5d66;
}
.about__meta-row dd {
  font-size: 15px;
  color: #131419;
}
.about__meta-row dd a {
  border-bottom: 1px solid #ddd6c5;
  transition: border-color 150ms ease, color 150ms ease;
}
.about__meta-row dd a:hover, .about__meta-row dd a:focus-visible {
  color: #c1432e;
  border-bottom-color: #c1432e;
}

.sectors {
  background: #f7f4ec;
}
.sectors__heading {
  margin-bottom: 24px;
}
.sectors__lede {
  color: #5a5d66;
  max-width: 50ch;
  margin-bottom: 32px;
}
.sectors__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  border-top: 1px solid #ddd6c5;
  padding-top: 24px;
}
.sectors__item {
  font-family: "Noto Serif TC", "Source Han Serif TC", "Songti TC", serif;
  font-weight: 500;
  font-size: clamp(18px, 2.2vw, 24px);
  color: #131419;
  line-height: 1.2;
  position: relative;
  padding-right: 24px;
}
.sectors__item:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: 6px;
  top: 0;
  color: #ddd6c5;
}

.reels {
  background: #f7f4ec;
}
.reels__heading {
  margin-bottom: 32px;
}
.reels__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 960px) {
  .reels__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.reel {
  background: #f7f4ec;
  border: 1px solid #ddd6c5;
  padding: 24px;
  display: grid;
  gap: 12px;
  border-radius: 2px;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
  box-shadow: 0 1px 0 rgba(19, 20, 25, 0.02);
}
.reel:hover {
  box-shadow: 0 1px 0 rgba(19, 20, 25, 0.04), 0 12px 24px -16px rgba(19, 20, 25, 0.18);
  transform: translateY(-1px);
}
.reel.is-active {
  border-color: #c1432e;
  box-shadow: 0 1px 0 rgba(19, 20, 25, 0.04), 0 12px 24px -16px rgba(193, 67, 46, 0.35);
}
.reel__head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.reel__play {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #131419;
  color: #f7f4ec;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms ease;
}
.reel__play svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.reel.is-active .reel__play {
  background: #c1432e;
}
.reel__play:hover, .reel__play:focus-visible {
  background: #c1432e;
}
.reel__wave {
  flex: 1 1 auto;
  height: 44px;
  display: block;
  overflow: hidden;
}
.reel__wave-bars {
  width: 100%;
  height: 100%;
}
.reel__wave-bars rect {
  fill: #5a5d66;
  transition: fill 60ms linear;
}
.reel__wave-bars rect.is-played {
  fill: #c1432e;
}
.reel__time {
  flex: 0 0 auto;
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  font-size: 12px;
  color: #5a5d66;
  letter-spacing: 0.05em;
  min-width: 64px;
  text-align: right;
}
.reel__title {
  font-family: "Noto Serif TC", "Source Han Serif TC", "Songti TC", serif;
  font-weight: 600;
  font-size: 18px;
  color: #131419;
}
.reel__category {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5a5d66;
}
.reel__excerpt {
  font-size: 14px;
  color: #5a5d66;
  line-height: 1.6;
  max-width: 50ch;
}

@media (prefers-reduced-motion: reduce) {
  .reel:hover {
    transform: none;
  }
}
.services {
  background: #ece8db;
}
.services__heading {
  margin-bottom: 12px;
}
.services__lede {
  color: #5a5d66;
  max-width: 60ch;
  margin-bottom: 48px;
}
.services__list {
  list-style: none;
}

.svc-group + .svc-group {
  margin-top: 32px;
}
.svc-group__head {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.svc-group__num {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #c1432e;
  border: 1px solid #c1432e;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.svc-group__title {
  font-family: "Noto Serif TC", "Source Han Serif TC", "Songti TC", serif;
  font-weight: 600;
  font-size: 15px;
  color: #131419;
  letter-spacing: 0.02em;
}
.svc-group__rule {
  display: block;
  height: 1px;
  background: #ddd6c5;
  align-self: center;
}

.service {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr) 28px;
  gap: 16px;
  align-items: baseline;
  padding-block: 16px;
  border-bottom: 1px solid #ddd6c5;
  min-height: 56px;
  cursor: default;
}
@media (max-width: 639px) {
  .service {
    grid-template-columns: 1fr 28px;
    grid-template-rows: auto auto;
  }
  .service__desc {
    grid-column: 1/-1;
    grid-row: 2;
  }
  .service__arrow {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
  }
}
.service__name {
  font-family: "Noto Serif TC", "Source Han Serif TC", "Songti TC", serif;
  font-weight: 600;
  font-size: clamp(18px, 2vw, 22px);
  color: #131419;
  transition: color 150ms ease;
}
.service__desc {
  font-size: 14px;
  color: #5a5d66;
  line-height: 1.6;
  max-width: 50ch;
}
.service__arrow {
  color: #ddd6c5;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  transition: color 150ms ease, transform 200ms ease;
}
.service__arrow svg {
  width: 20px;
  height: 20px;
}
.service:hover .service__arrow {
  color: #c1432e;
  transform: translateX(6px);
}
.service:hover .service__name {
  color: #c1432e;
}

@media (prefers-reduced-motion: reduce) {
  .service:hover .service__arrow {
    transform: none;
  }
}
.contact {
  background: #f7f4ec;
}
.contact__heading {
  margin-bottom: 12px;
}
.contact__intro {
  color: #5a5d66;
  max-width: 50ch;
  margin-bottom: 16px;
}
.contact__assurances {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #ddd6c5;
}
.contact__assurances li {
  font-size: 13px;
  color: #5a5d66;
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.contact__assurances li .mono {
  color: #c1432e;
}
@media (min-width: 960px) {
  .contact__assurances {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.contact__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 720px;
}
@media (min-width: 960px) {
  .contact__form {
    grid-template-columns: 1fr 1fr;
    gap: 24px 24px;
  }
  .contact .field--full {
    grid-column: 1/-1;
  }
}
.contact__actions {
  grid-column: 1/-1;
  display: grid;
  gap: 12px;
  margin-top: 12px;
}
@media (min-width: 960px) {
  .contact__actions {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 24px;
  }
}
.contact__submit {
  justify-self: start;
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f7f4ec;
  background: #131419;
  padding: 16px 32px;
  border-radius: 2px;
  min-height: 48px;
  transition: background 150ms ease, opacity 150ms ease;
}
.contact__submit:hover, .contact__submit:focus-visible {
  background: #c1432e;
}
.contact__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #131419;
}
.contact__note {
  color: #5a5d66;
  font-size: 11px;
  line-height: 1.5;
}
.contact__thanks {
  grid-column: 1/-1;
  padding: 24px;
  border: 1px solid #c1432e;
  background: rgba(193, 67, 46, 0.04);
  color: #131419;
  display: grid;
  gap: 8px;
  border-radius: 2px;
}
.contact__thanks-line {
  font-size: 15px;
}
.contact__serial {
  color: #c1432e;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.field {
  display: grid;
  gap: 8px;
}
.field label {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5a5d66;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.field .req {
  color: #c1432e;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
  font-size: 14px;
  line-height: 0;
}
.field input, .field select, .field textarea {
  background: #f7f4ec;
  border: 1px solid #ddd6c5;
  padding: 12px 12px;
  border-radius: 2px;
  min-height: 44px;
  transition: border-color 150ms ease, background 150ms ease;
  color: #131419;
}
.field input::placeholder, .field select::placeholder, .field textarea::placeholder {
  color: rgba(90, 93, 102, 0.55);
}
.field input:focus, .field input:focus-visible, .field select:focus, .field select:focus-visible, .field textarea:focus, .field textarea:focus-visible {
  border-color: #c1432e;
  outline: none;
}
.field input.is-invalid, .field select.is-invalid, .field textarea.is-invalid {
  border-color: #c1432e;
  background: rgba(193, 67, 46, 0.03);
}
.field textarea {
  resize: vertical;
  min-height: 96px;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
}
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #5a5d66 50%), linear-gradient(135deg, #5a5d66 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 48px;
}
.field__hint {
  font-size: 11px;
  color: #5a5d66;
  line-height: 1.5;
}
.field__error {
  font-size: 11px;
  color: #c1432e;
  line-height: 1.5;
  min-height: 0;
}
.field__error:empty {
  display: none;
}

.colophon {
  background: #131419;
  color: #f7f4ec;
  padding-block: 48px;
}
.colophon__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media (min-width: 960px) {
  .colophon__inner {
    grid-template-columns: 1fr auto auto;
    gap: 48px;
  }
}
.colophon__credit {
  display: grid;
  gap: 4px;
}
.colophon__name {
  font-family: "Noto Serif TC", "Source Han Serif TC", "Songti TC", serif;
  font-weight: 600;
  font-size: 18px;
  color: #f7f4ec;
}
.colophon__city {
  color: rgba(247, 244, 236, 0.7);
}
.colophon__email {
  color: rgba(247, 244, 236, 0.85);
  font-size: 14px;
  border-bottom: 1px solid rgba(247, 244, 236, 0.3);
  align-self: start;
  justify-self: start;
  transition: color 150ms ease, border-color 150ms ease;
}
.colophon__email:hover, .colophon__email:focus-visible {
  color: #c1432e;
  border-bottom-color: #c1432e;
}
.colophon__social {
  display: flex;
  gap: 16px;
}
.colophon__social a {
  color: rgba(247, 244, 236, 0.85);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 244, 236, 0.18);
  border-radius: 2px;
  transition: color 150ms ease, border-color 150ms ease;
}
.colophon__social a:hover, .colophon__social a:focus-visible {
  color: #c1432e;
  border-color: #c1432e;
}
.colophon__copy {
  color: rgba(247, 244, 236, 0.55);
  font-size: 11px;
}
