*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

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

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

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

body {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  color: #1a1c1e;
  background-color: #0d0d0d;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.focus-reveal {
  opacity: 0;
  filter: blur(20px);
  transform: scale(0.9) translateY(32px);
  transform-origin: center center;
  will-change: transform, filter, opacity;
}

.focus-reveal.is-visible {
  animation: focus-reveal-in 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes focus-reveal-in {
  from {
    opacity: 0;
    filter: blur(20px);
    transform: scale(0.9) translateY(32px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1) translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .focus-reveal {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background-color: rgba(13, 13, 13, 0.82);
  backdrop-filter: blur(8px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: 0 64px;
}

.header__logo {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.8px;
  color: #fff;
  opacity: 0;
  transform: translateY(18px);
  animation: header-intro-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 3.2s;
}

.header__nav {
  display: none;
}
@media screen and (min-width: 1200px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 40px;
  }
}

.header__nav-link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.98px;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  transform: translateY(18px);
  animation: header-intro-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transition: color 0.2s ease;
}
.header__nav-link:nth-child(1) {
  animation-delay: 3.3s;
}
.header__nav-link:nth-child(2) {
  animation-delay: 3.4s;
}
.header__nav-link:nth-child(3) {
  animation-delay: 3.5s;
}
.header__nav-link:nth-child(4) {
  animation-delay: 3.6s;
}
.header__nav-link:nth-child(5) {
  animation-delay: 3.7s;
}
.header__nav-link:nth-child(6) {
  animation-delay: 3.8s;
}
.header__nav-link:nth-child(7) {
  animation-delay: 3.9s;
}
.header__nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.header__cta {
  display: none;
  opacity: 0;
  transform: translateY(18px);
  animation: header-intro-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 4s;
}
@media screen and (min-width: 1200px) {
  .header__cta {
    display: inline-flex;
  }
}

@keyframes header-intro-rise {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .header__logo,
  .header__nav-link,
  .header__cta {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
.footer {
  background-color: #f7f5f2;
}

.footer__reveal {
  opacity: 0;
  transform: translateX(-64px) translateY(40px);
  will-change: transform, opacity;
}

.footer.is-visible .footer__reveal {
  animation: footer-reveal-in 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.footer.is-visible .footer__brand {
  animation-delay: 0.3s;
}

.footer.is-visible .footer__nav {
  animation-delay: 0.42s;
}

.footer.is-visible .footer__connect {
  animation-delay: 0.54s;
}

.footer.is-visible .footer__bottom {
  animation-delay: 0.66s;
}

@keyframes footer-reveal-in {
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .footer__reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
.footer__inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 80px 64px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  padding-bottom: 57px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.footer__brand-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2.8px;
  color: #1a1c1e;
}

.footer__brand-tagline {
  max-width: 220px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.75px;
  color: #6c7278;
}

.footer__brand-role {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #8a8a8a;
}

.footer__mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #6c7278;
  transition: opacity 0.2s ease;
}
.footer__mail:hover {
  opacity: 0.75;
}

.footer__mail-icon {
  display: block;
  width: 13px;
  height: 12px;
}

.footer__heading {
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 400;
  line-height: 16.5px;
  letter-spacing: 1.98px;
  color: #8a8a8a;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav-link {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #6c7278;
  transition: opacity 0.2s ease;
}
.footer__nav-link:hover {
  opacity: 0.75;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #8a8a8a;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 4px;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.btn:hover {
  opacity: 0.85;
}

.btn--primary {
  background-color: #c4a145;
  color: #0d0d0d;
}

.btn--primary-sm {
  height: 32.5px;
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.32px;
}

.btn--primary-md {
  height: 40.5px;
  padding: 12px 24px;
  font-size: 11px;
  letter-spacing: 0;
}

.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn__icon--arrow {
  width: 10px;
  height: 10px;
}

.hero {
  position: relative;
  height: 1024px;
  min-height: 1024px;
  background-color: #0d0d0d;
  overflow: hidden;
}

.hero__bg-text {
  position: absolute;
  top: 270px;
  left: 50%;
  z-index: 0;
  font-size: 403.2px;
  font-weight: 900;
  line-height: 403.2px;
  letter-spacing: -16.128px;
  color: #fff;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  transform: translateX(-50%) scale(0.97);
  animation: hero-bg-intro 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__bg-text::after {
  position: absolute;
  inset: 0;
  content: attr(data-text);
  color: transparent;
  -webkit-text-stroke: 0.012em rgba(255, 220, 140, 0.95);
  paint-order: stroke fill;
  opacity: 0;
  filter: drop-shadow(0 0 24px rgba(255, 196, 69, 0.95)) drop-shadow(0 0 56px rgba(196, 161, 69, 0.7));
  animation: hero-bg-glow 2s ease-out forwards;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 122.88px 48px 0;
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1067.531px;
  margin: 0 auto;
  font-size: 96px;
  font-weight: 800;
  line-height: 153.6px;
  letter-spacing: 1.44px;
  text-align: center;
  color: #fff;
  opacity: 0;
  transform: translateY(28px);
  animation: hero-intro-fade-up 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.85s forwards;
}

.hero__title-line {
  display: block;
}

.hero__carousel {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero__cards {
  position: absolute;
  top: 468px;
  left: 0;
  width: 100%;
  height: 360px;
  pointer-events: none;
  overflow: visible;
  opacity: 0;
  transform: translateY(24px);
  animation: hero-intro-fade-up 1.5s cubic-bezier(0.22, 1, 0.36, 1) 1.7s forwards;
}

.hero__cards-track {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-card-position {
  position: absolute;
  top: 0;
  left: 50%;
  width: 250.8px;
  height: 330px;
  overflow: visible;
  pointer-events: auto;
  transform-origin: center center;
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  will-change: transform, opacity;
}

.hero-card-float {
  position: absolute;
  inset: 0;
  animation-name: hero-card-float;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  will-change: transform;
}

.hero__card-anchor {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.hero-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  background-color: transparent;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
  transition: box-shadow 0.45s ease, filter 0.45s ease;
}

.hero-card-inner::before,
.hero-card-inner::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-card-inner::before {
  border: 2px solid rgba(196, 161, 69, 0);
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(196, 161, 69, 0);
}

.hero-card-inner::after {
  inset: -8px;
  border-radius: 14px;
  border: 1px solid rgba(196, 161, 69, 0);
  filter: blur(8px);
  transform: scale(0.98);
}

.hero-card-position:nth-child(1) .hero-card-float {
  animation-duration: 4.6s;
  animation-delay: -0.4s;
}

.hero-card-position:nth-child(2) .hero-card-float {
  animation-duration: 3.9s;
  animation-delay: -0.9s;
}

.hero-card-position:nth-child(3) .hero-card-float {
  animation-duration: 4.2s;
  animation-delay: -1.3s;
}

.hero-card-position:nth-child(4) .hero-card-float {
  animation-duration: 3.6s;
  animation-delay: -0.6s;
}

.hero-card-position:nth-child(5) .hero-card-float {
  animation-duration: 4s;
  animation-delay: -1.5s;
}

.hero__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.hero__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.hero__card-info {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 14px;
}

.hero__card-title {
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.hero__card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  font-size: 9px;
  color: #c4a145;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hero-card-position:hover .hero-card-inner,
.hero-card-position:focus-within .hero-card-inner {
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(196, 161, 69, 0.46), 0 0 34px rgba(196, 161, 69, 0.34), 0 0 72px rgba(196, 161, 69, 0.22);
  filter: brightness(1.06);
}

.hero-card-position:hover .hero-card-inner::before,
.hero-card-position:hover .hero-card-inner::after,
.hero-card-position:focus-within .hero-card-inner::before,
.hero-card-position:focus-within .hero-card-inner::after {
  opacity: 1;
}

.hero-card-position:hover .hero-card-inner::before,
.hero-card-position:focus-within .hero-card-inner::before {
  border-color: rgb(196, 161, 69);
  box-shadow: inset 0 0 0 1px rgba(255, 219, 120, 0.92), 0 0 28px rgba(196, 161, 69, 0.5), 0 0 56px rgba(196, 161, 69, 0.28), 0 0 96px rgba(196, 161, 69, 0.16);
}

.hero-card-position:hover .hero-card-inner::after,
.hero-card-position:focus-within .hero-card-inner::after {
  transform: scale(1);
  border-color: rgba(255, 196, 64, 0.88);
}

.hero-card-position:hover .hero__card-image,
.hero-card-position:focus-within .hero__card-image {
  transform: scale(1.08);
}

.hero-card-position:hover .hero__card-overlay,
.hero-card-position:focus-within .hero__card-overlay {
  opacity: 0.8;
}

.hero-card-position:hover .hero__card-link,
.hero-card-position:focus-within .hero__card-link {
  opacity: 1;
}

.hero__card--center .hero__card-link {
  opacity: 1;
}

.hero__card--inner .hero__card-info {
  opacity: 0.4;
}

.hero__card--outer .hero__card-info {
  opacity: 0.2;
}

.hero__card--center {
  z-index: 5;
}

.hero__card--inner {
  z-index: 3;
}

.hero__card--outer {
  z-index: 1;
}

.hero__footer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  animation: hero-intro-fade 1.5s cubic-bezier(0.22, 1, 0.36, 1) 1.7s forwards;
}

.hero__cta {
  position: absolute;
  top: 830px;
  left: 50%;
  pointer-events: auto;
  transform: translateX(-50%);
}

.hero__pagination {
  position: absolute;
  top: 878px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 24px;
  width: 198.67px;
  height: 48px;
  pointer-events: auto;
  transform: translateX(-50%);
}

.hero__pagination-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.5);
}

.hero__pagination-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.hero__pagination-icon {
  width: 10px;
  height: 10px;
}

.hero__pagination-number {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 1.68px;
}

.hero__pagination-current {
  color: rgba(255, 255, 255, 0.25);
}

.hero__pagination-separator,
.hero__pagination-total {
  color: rgba(255, 255, 255, 0.1);
}

@keyframes hero-card-float {
  0% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(6px);
  }
}
@keyframes hero-bg-intro {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0.97);
  }
  45% {
    opacity: 0.14;
  }
  100% {
    opacity: 0.05;
    transform: translateX(-50%) scale(1);
  }
}
@keyframes hero-bg-glow {
  0%, 100% {
    opacity: 0;
  }
  30%, 55% {
    opacity: 1;
  }
  80% {
    opacity: 0.2;
  }
}
@keyframes hero-intro-fade-up {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hero-intro-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__bg-text {
    animation: none;
    opacity: 0.05;
    transform: translateX(-50%) scale(1);
  }
  .hero__bg-text::after {
    animation: none;
    opacity: 0;
  }
  .hero__title,
  .hero__cards {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .hero__footer {
    animation: none;
    opacity: 1;
  }
}
@media (max-width: 1199px) {
  .hero__bg-text {
    font-size: 280px;
    line-height: 280px;
    top: 200px;
  }
  .hero__inner {
    padding-top: 100px;
  }
  .hero__title {
    font-size: clamp(40px, 8vw, 72px);
    line-height: 1.4;
  }
  .hero__cards {
    top: 50%;
    height: 308px;
    transform: translateY(-20%);
  }
  .hero-card-position {
    width: 200px;
    height: 264px;
  }
  .hero__cta {
    top: auto;
    bottom: 72px;
  }
  .hero__pagination {
    top: auto;
    bottom: 19px;
  }
}
.purpose {
  background-color: #f7f5f2;
  padding: 128px 0;
}

.purpose__inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 64px;
}

.purpose__eyebrow {
  margin-bottom: 64px;
  font-size: 11px;
  font-weight: 500;
  line-height: 16.5px;
  letter-spacing: 2.42px;
  color: #c4a145;
}

.purpose__lead {
  margin-bottom: 80px;
}

.purpose__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 1.12px;
  color: #1a1c1e;
}

.purpose__reveal {
  opacity: 0;
  will-change: transform, opacity;
}
.purpose__reveal--from-top {
  transform: translateY(-56px);
}
.purpose__reveal--from-left {
  transform: translateX(-56px);
}
.purpose__reveal--from-bottom {
  transform: translateY(56px);
}
.purpose__reveal--from-right {
  transform: translateX(56px);
}

.purpose.is-visible .purpose__reveal {
  animation: purpose-reveal-in 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.purpose.is-visible .purpose__reveal--from-top {
  animation-delay: 0.35s;
}
.purpose.is-visible .purpose__reveal--from-left {
  animation-delay: 0.49s;
}
.purpose.is-visible .purpose__reveal--from-bottom {
  animation-delay: 0.63s;
}
.purpose.is-visible .purpose__reveal--from-right {
  animation-delay: 0.77s;
}

@keyframes purpose-reveal-in {
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .purpose__reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
.purpose__description {
  max-width: 768px;
  margin-top: 12px;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.6px;
  color: #6c7278;
}

.purpose__grid {
  display: grid;
  grid-template-columns: repeat(3, 304px);
  gap: 56px;
}

.purpose__card {
  display: flex;
  flex-direction: column;
}

.purpose__card-line {
  display: block;
  width: 40px;
  height: 1px;
  margin-bottom: 20px;
  background-color: rgba(196, 161, 69, 0.4);
}

.purpose__card-label {
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 1.6px;
  color: #b0b0b0;
}

.purpose__card-title {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.8px;
  color: #1a1c1e;
}

.purpose__card-text {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 26.6px;
  letter-spacing: 0.42px;
  color: #6c7278;
}

.service {
  background-color: #0d0d0d;
  padding: 128px 0;
}

.service__inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 64px;
}

.service__eyebrow {
  margin-bottom: 64px;
  font-size: 11px;
  font-weight: 500;
  line-height: 16.5px;
  letter-spacing: 2.42px;
  color: #c4a145;
}

.service__reveal {
  opacity: 0;
  transform: translateX(-64px) translateY(40px);
  will-change: transform, opacity;
}

.service.is-visible .service__reveal {
  animation: service-reveal-in 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.service.is-visible .service__eyebrow {
  animation-delay: 0.3s;
}

.service.is-visible .service__title {
  animation-delay: 0.42s;
}

.service.is-visible .service__lead .service__description:nth-child(2) {
  animation-delay: 0.54s;
}

.service.is-visible .service__lead .service__description:nth-child(3) {
  animation-delay: 0.66s;
}

.service.is-visible .service__card:nth-child(4) {
  animation-delay: 0.78s;
}

.service.is-visible .service__card:nth-child(5) {
  animation-delay: 0.9s;
}

.service.is-visible .service__card:nth-child(6) {
  animation-delay: 1.02s;
}

.service.is-visible .service__card:nth-child(1) {
  animation-delay: 1.14s;
}

.service.is-visible .service__card:nth-child(2) {
  animation-delay: 1.26s;
}

.service.is-visible .service__card:nth-child(3) {
  animation-delay: 1.38s;
}

@keyframes service-reveal-in {
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .service__reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
.service__lead {
  margin-bottom: 80px;
}

.service__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 1.12px;
  color: #fff;
}

.service__description {
  font-size: 15px;
  font-weight: 400;
  line-height: 28.5px;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.4);
}
.service__description + .service__description {
  margin-top: 0;
}

.service__description:first-of-type {
  margin-top: 12px;
}

.service__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background-color: rgba(255, 255, 255, 0.06);
}

.service__card {
  display: flex;
  flex-direction: column;
  min-height: 277px;
  padding: 40px 41px 41px 40px;
  background-color: #0d0d0d;
}

.service__card:nth-child(n+4) {
  min-height: 304px;
}

.service__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
}

.service__card-icon-image {
  display: block;
  width: 25px;
  height: 24px;
}

.service__card-title {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.42px;
  color: #fff;
}

.service__card-label {
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 400;
  line-height: 16.5px;
  letter-spacing: 1.54px;
  color: rgba(196, 161, 69, 0.5);
}

.service__card-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 26.6px;
  letter-spacing: 0.42px;
  color: rgba(255, 255, 255, 0.35);
}

.works {
  background-color: #f7f5f2;
  padding: 128px 0;
}

.works__inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 64px;
}

.works__eyebrow {
  margin-bottom: 64px;
  font-size: 11px;
  font-weight: 500;
  line-height: 16.5px;
  letter-spacing: 2.42px;
  color: #c4a145;
}

.works__reveal {
  opacity: 0;
  transform: translateX(-64px) translateY(40px);
  will-change: transform, opacity;
}

.works.is-visible .works__reveal {
  animation: works-reveal-in 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.works.is-visible .works__eyebrow {
  animation-delay: 0.3s;
}

.works.is-visible .works__title {
  animation-delay: 0.42s;
}

.works.is-visible .works__description {
  animation-delay: 0.54s;
}

.works.is-visible .works__card:nth-child(1) {
  animation-delay: 0.66s;
}

.works.is-visible .works__card:nth-child(2) {
  animation-delay: 0.78s;
}

.works.is-visible .works__card:nth-child(3) {
  animation-delay: 0.9s;
}

.works.is-visible .works__footer {
  animation-delay: 1.02s;
}

@keyframes works-reveal-in {
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .works__reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
.works__lead {
  margin-bottom: 80px;
}

.works__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 1.12px;
  color: #1a1c1e;
}

.works__description {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 400;
  line-height: 28.5px;
  letter-spacing: 0.6px;
  color: #6c7278;
}

.works__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.works__card-media {
  display: block;
  margin-bottom: 20px;
}

.works__card-image-wrap {
  position: relative;
  width: 100%;
  max-width: 299px;
  height: 393px;
  overflow: hidden;
  border-radius: 8px;
  background-color: transparent;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  transform-origin: center center;
  transition: box-shadow 0.45s ease, filter 0.45s ease, transform 0.6s ease;
}

.works__card-image-wrap::before,
.works__card-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.works__card-image-wrap::before {
  z-index: 2;
  border: 2px solid rgba(196, 161, 69, 0);
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(196, 161, 69, 0);
}

.works__card-image-wrap::after {
  inset: -8px;
  border: 1px solid rgba(196, 161, 69, 0);
  border-radius: 14px;
  filter: blur(8px);
  transform: scale(0.98);
}

.works__card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.7s ease, filter 0.6s ease;
}

.works__card-link {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 27px;
  padding: 6px 12px;
  border-radius: 4px;
  background-color: #c4a145;
  font-size: 10px;
  font-weight: 600;
  line-height: 15px;
  color: #0d0d0d;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.works__card-media:hover .works__card-image-wrap,
.works__card-media:focus-within .works__card-image-wrap {
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(196, 161, 69, 0.46), 0 0 34px rgba(196, 161, 69, 0.34), 0 0 72px rgba(196, 161, 69, 0.22);
  filter: brightness(1.06);
  transform: rotate(-2.5deg) scale(1.02);
}

.works__card-media:hover .works__card-image-wrap::before,
.works__card-media:hover .works__card-image-wrap::after,
.works__card-media:focus-within .works__card-image-wrap::before,
.works__card-media:focus-within .works__card-image-wrap::after {
  opacity: 1;
}

.works__card-media:hover .works__card-image-wrap::before,
.works__card-media:focus-within .works__card-image-wrap::before {
  border-color: rgb(196, 161, 69);
  box-shadow: inset 0 0 0 1px rgba(255, 219, 120, 0.92), 0 0 28px rgba(196, 161, 69, 0.5), 0 0 56px rgba(196, 161, 69, 0.28), 0 0 96px rgba(196, 161, 69, 0.16);
}

.works__card-media:hover .works__card-image-wrap::after,
.works__card-media:focus-within .works__card-image-wrap::after {
  transform: scale(1);
  border-color: rgba(255, 196, 64, 0.88);
}

.works__card-media:hover .works__card-image,
.works__card-media:focus-within .works__card-image {
  transform: scale(1.08);
  filter: grayscale(0%);
}

.works__card-media:hover .works__card-link,
.works__card-media:focus-within .works__card-link {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .works__card-image-wrap,
  .works__card-image {
    transition: none;
  }
  .works__card-image {
    filter: grayscale(0%);
  }
  .works__card-media:hover .works__card-image-wrap,
  .works__card-media:focus-within .works__card-image-wrap,
  .works__card-media:hover .works__card-image,
  .works__card-media:focus-within .works__card-image {
    transform: none;
    filter: grayscale(0%);
  }
}
.works__card-link-icon {
  width: 10px;
  height: 10px;
}

.works__card-category {
  font-size: 9px;
  font-weight: 400;
  line-height: 13.5px;
  letter-spacing: 1.44px;
  color: rgba(196, 161, 69, 0.6);
}

.works__card-title {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  color: #1a1c1e;
}

.works__card-text {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 25.2px;
  letter-spacing: 0.42px;
  color: #6c7278;
}

.works__footer {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.flow {
  background-color: #0d0d0d;
  padding: 128px 0;
}

.flow__inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 64px;
}

.flow__eyebrow {
  margin-bottom: 64px;
  font-size: 11px;
  font-weight: 500;
  line-height: 16.5px;
  letter-spacing: 2.42px;
  color: #c4a145;
}

.flow__reveal {
  opacity: 0;
  transform: translateY(36px);
  will-change: transform, opacity;
}

.flow__reveal.is-visible {
  animation: flow-reveal-in 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes flow-reveal-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .flow__reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
.flow__lead {
  margin-bottom: 80px;
}

.flow__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 1.12px;
  color: #fff;
}

.flow__description {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 400;
  line-height: 28.5px;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.4);
}

.flow__timeline {
  position: relative;
}

.flow__list {
  position: relative;
  list-style: none;
}
.flow__list::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  content: "";
}

.flow__step {
  position: relative;
  padding-bottom: 56px;
  padding-left: 64px;
}
.flow__step:last-child {
  padding-bottom: 0;
}
.flow__step:hover .flow__step-number, .flow__step:focus-within .flow__step-number {
  border-color: rgba(196, 161, 69, 0.75);
  color: #c4a145;
  box-shadow: 0 0 0 1px rgba(196, 161, 69, 0.35), 0 0 16px rgba(196, 161, 69, 0.55), 0 0 32px rgba(196, 161, 69, 0.25);
}

.flow__step-number {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background-color: #0d0d0d;
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.flow__step-label {
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 1.6px;
  color: rgba(196, 161, 69, 0.5);
}

.flow__step-title {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.72px;
  color: #fff;
}

.flow__step-text {
  max-width: 512px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 26.6px;
  letter-spacing: 0.42px;
  color: rgba(255, 255, 255, 0.3);
}

.about {
  background-color: #0d0d0d;
  padding: 128px 0;
  perspective: 1200px;
}

.about__inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 64px;
}

.about__eyebrow {
  font-size: 11px;
  font-weight: 500;
  line-height: 16.5px;
  letter-spacing: 2.42px;
  color: #c4a145;
}

.about__body {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  margin-top: 56px;
}

.about__visual {
  flex-shrink: 0;
  width: 420px;
}

.about__image-wrap {
  position: relative;
  width: 420px;
  height: 525px;
  overflow: hidden;
  border-radius: 8px;
}

.about__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.about__image-wrap::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  pointer-events: none;
  content: "";
}

.about__content {
  flex: 1;
  min-width: 0;
}

.about__name {
  font-size: 42px;
  font-weight: 800;
  line-height: 40px;
  letter-spacing: -0.84px;
  color: #fff;
}

.about__role {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 1.8px;
  color: rgba(196, 161, 69, 0.6);
}

.about__intro {
  margin-top: 24px;
}

.about__text {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.64px;
  color: rgba(255, 255, 255, 0.75);
}
.about__text:last-child {
  margin-bottom: 0;
}

.about__quote {
  margin-top: 28px;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 1.44px;
  color: #c4a145;
}

.about__message {
  margin-top: 28px;
}

.about__divider {
  display: block;
  width: 64px;
  height: 1px;
  margin-top: 40px;
  background-color: rgba(196, 161, 69, 0.25);
}

.about__likes {
  margin-top: 32px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.64px;
  color: rgba(255, 255, 255, 0.75);
}

.about__social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.about__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  transition: opacity 0.2s ease;
}
.about__social-link:hover {
  opacity: 0.75;
}

.about__social-icon {
  display: block;
  width: 21px;
  height: 20px;
}

.about__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  margin-top: 40px;
  padding: 12px 24px;
  border-radius: 4px;
  background-color: #c4a145;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  color: #0d0d0d;
  transition: opacity 0.2s ease;
}
.about__cta:hover {
  opacity: 0.85;
}

.about__cta-icon {
  width: 10px;
  height: 10px;
}

.journal {
  background-color: #f7f5f2;
  padding: 128px 0;
}

.journal__inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 64px;
}

.journal__eyebrow {
  margin-bottom: 64px;
  font-size: 11px;
  font-weight: 500;
  line-height: 16.5px;
  letter-spacing: 2.42px;
  color: #c4a145;
}

.journal__reveal {
  opacity: 0;
  transform: translateX(-64px) translateY(40px);
  will-change: transform, opacity;
}

.journal.is-visible .journal__reveal {
  animation: journal-reveal-in 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.journal.is-visible .journal__eyebrow {
  animation-delay: 0.3s;
}

.journal.is-visible .journal__title {
  animation-delay: 0.42s;
}

.journal.is-visible .journal__description {
  animation-delay: 0.54s;
}

.journal.is-visible .journal__card:nth-child(1) {
  animation-delay: 0.66s;
}

.journal.is-visible .journal__card:nth-child(2) {
  animation-delay: 0.78s;
}

.journal.is-visible .journal__card:nth-child(3) {
  animation-delay: 0.9s;
}

.journal.is-visible .journal__footer {
  animation-delay: 1.02s;
}

@keyframes journal-reveal-in {
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .journal__reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
.journal__lead {
  margin-bottom: 80px;
}

.journal__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 1.12px;
  color: #1a1c1e;
}

.journal__description {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 400;
  line-height: 28.5px;
  letter-spacing: 0.6px;
  color: #6c7278;
}

.journal__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.journal__card {
  display: block;
  color: inherit;
  transition: opacity 0.2s ease;
}
.journal__card:hover {
  opacity: 0.85;
}

.journal__card-date {
  display: block;
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 1.6px;
  color: #b0b0b0;
}

.journal__card-title {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 25.6px;
  letter-spacing: 0.64px;
  color: #1a1c1e;
}

.journal__card-subtitle {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.36px;
  color: #b0b0b0;
}

.journal__card-text {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 26.6px;
  letter-spacing: 0.42px;
  color: #6c7278;
}

.journal__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 500;
  line-height: 16.5px;
  color: #c4a145;
}

.journal__card-link-icon {
  width: 10px;
  height: 10px;
}

.journal__footer {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.journal__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 12px 24px;
  border-radius: 4px;
  background-color: #c4a145;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  color: #0d0d0d;
  transition: opacity 0.2s ease;
}
.journal__more:hover {
  opacity: 0.85;
}

.journal__more-icon {
  width: 10px;
  height: 10px;
}

.contact {
  background-color: #0d0d0d;
  padding: 144px 0;
  perspective: 1200px;
}

.contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 896px;
  margin: 0 auto;
  padding: 0 64px;
  text-align: center;
}

.contact__line {
  display: block;
  width: 48px;
  height: 1px;
  background-color: rgba(196, 161, 69, 0.3);
}

.contact__line--top {
  margin-bottom: 56px;
}

.contact__line--bottom {
  margin-top: 56px;
}

.contact__title {
  font-size: 40px;
  font-weight: 800;
  line-height: 36px;
  letter-spacing: 1.6px;
  color: #fff;
}

.contact__title-line {
  display: block;
}

.contact__description {
  max-width: 512px;
  margin-top: 24px;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.35);
}

.contact__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 47.5px;
  margin-top: 48px;
  padding: 14px 32px;
  border-radius: 4px;
  background-color: #c4a145;
  font-size: 13px;
  font-weight: 600;
  line-height: 19.5px;
  color: #0d0d0d;
  transition: opacity 0.2s ease;
}
.contact__cta:hover {
  opacity: 0.85;
}

.contact__cta-icon {
  width: 10px;
  height: 10px;
}

.contact--subpage .contact__inner {
  max-width: 576px;
}
.contact--subpage .contact__line {
  display: none;
}
.contact--subpage .contact__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 1.12px;
}
.contact--subpage .contact__description {
  max-width: 448px;
  margin-top: 40px;
  line-height: 33px;
  letter-spacing: 0.45px;
  color: rgba(255, 255, 255, 0.4);
}
.contact--subpage .contact__cta {
  height: 43.5px;
  margin-top: 48px;
  padding: 12px 28px;
}

.contact--detail {
  padding-top: 96px;
  padding-bottom: 96px;
}
.contact--detail::before {
  content: "";
  display: block;
  max-width: 952px;
  height: 1px;
  margin: 0 auto 64px;
  background-color: rgba(255, 255, 255, 0.06);
}
.contact--detail .contact__inner {
  max-width: 896px;
}
.contact--detail .contact__line {
  display: block;
  width: 48px;
  margin: 0 auto;
  background-color: rgba(196, 161, 69, 0.3);
}
.contact--detail .contact__line--top {
  margin-bottom: 48px;
}
.contact--detail .contact__line--bottom {
  margin-top: 48px;
}
.contact--detail .contact__title {
  font-size: 40px;
  font-weight: 800;
  line-height: 36px;
  letter-spacing: 1.6px;
}
.contact--detail .contact__description {
  max-width: 512px;
  margin-top: 20px;
  line-height: 30px;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.35);
}
.contact--detail .contact__cta {
  margin-top: 40px;
}

.page-works .header__logo,
.page-works .header__nav-link,
.page-works .header__cta {
  animation: none;
  opacity: 1;
  transform: none;
}

.works-hero {
  position: relative;
  overflow: hidden;
  background-color: #0d0d0d;
  padding: 176px 64px 80px;
}

.works-hero__bg-text {
  position: absolute;
  top: 0;
  left: 50%;
  font-size: clamp(180px, 31vw, 446px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  opacity: 0.07;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.works-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}

.works-hero__eyebrow {
  font-size: 11px;
  font-weight: 400;
  line-height: 16.5px;
  letter-spacing: 3.08px;
  color: #c4a145;
}

.works-hero__title {
  margin-top: 32px;
  font-size: clamp(72px, 10vw, 140px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}

.works-hero__description {
  max-width: 512px;
  margin: 32px auto 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.35);
}

.works-page {
  background-color: #f7f5f2;
  padding: 128px 0 160px;
}

.works-page__reveal {
  opacity: 0;
  transform: translateX(-64px) translateY(40px);
  will-change: transform, opacity;
}

.works-page.is-visible .works-page__reveal {
  animation: works-page-reveal-in 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.works-page.is-visible .works-page__card:nth-child(1) {
  animation-delay: 0.3s;
}

.works-page.is-visible .works-page__card:nth-child(2) {
  animation-delay: 0.42s;
}

.works-page.is-visible .works-page__card:nth-child(3) {
  animation-delay: 0.54s;
}

.works-page.is-visible .works-page__card:nth-child(4) {
  animation-delay: 0.66s;
}

.works-page.is-visible .works-page__card:nth-child(5) {
  animation-delay: 0.78s;
}

.works-page.is-visible .works-page__card:nth-child(6) {
  animation-delay: 0.9s;
}

@keyframes works-page-reveal-in {
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .works-page__reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
.works-page__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}

.works-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 336px);
  gap: 56px;
  justify-content: center;
}

.works-page__card {
  display: block;
  color: inherit;
}

.works-page__card-media {
  position: relative;
  height: 210px;
  overflow: hidden;
  border-radius: 6px;
  background-color: transparent;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  transform-origin: center center;
  transition: box-shadow 0.45s ease, filter 0.45s ease, transform 0.6s ease;
}
.works-page__card-media--tall {
  height: 252px;
}

.works-page__card-media::before,
.works-page__card-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.works-page__card-media::before {
  z-index: 2;
  border: 2px solid rgba(196, 161, 69, 0);
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(196, 161, 69, 0);
}

.works-page__card-media::after {
  inset: -8px;
  border: 1px solid rgba(196, 161, 69, 0);
  border-radius: 14px;
  filter: blur(8px);
  transform: scale(0.98);
}

.works-page__card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.7s ease, filter 0.6s ease;
}

.works-page__card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background-color: rgba(13, 13, 13, 0.4);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.works-page__card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  line-height: 16.5px;
  letter-spacing: 1.65px;
  color: #fff;
}

.works-page__card-link-icon {
  width: 11px;
  height: 11px;
}

.works-page__card-body {
  padding-top: 24px;
}

.works-page__card-category {
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 1.8px;
  color: #b8a060;
}

.works-page__card-title {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24.75px;
  letter-spacing: -0.18px;
  color: #1a1c1e;
}

.works-page__card:hover .works-page__card-media,
.works-page__card:focus-within .works-page__card-media {
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(196, 161, 69, 0.46), 0 0 34px rgba(196, 161, 69, 0.34), 0 0 72px rgba(196, 161, 69, 0.22);
  filter: brightness(1.06);
  transform: rotate(-2.5deg) scale(1.02);
}

.works-page__card:hover .works-page__card-media::before,
.works-page__card:hover .works-page__card-media::after,
.works-page__card:focus-within .works-page__card-media::before,
.works-page__card:focus-within .works-page__card-media::after {
  opacity: 1;
}

.works-page__card:hover .works-page__card-media::before,
.works-page__card:focus-within .works-page__card-media::before {
  border-color: rgb(196, 161, 69);
  box-shadow: inset 0 0 0 1px rgba(255, 219, 120, 0.92), 0 0 28px rgba(196, 161, 69, 0.5), 0 0 56px rgba(196, 161, 69, 0.28), 0 0 96px rgba(196, 161, 69, 0.16);
}

.works-page__card:hover .works-page__card-media::after,
.works-page__card:focus-within .works-page__card-media::after {
  transform: scale(1);
  border-color: rgba(255, 196, 64, 0.88);
}

.works-page__card:hover .works-page__card-image,
.works-page__card:focus-within .works-page__card-image {
  transform: scale(1.08);
  filter: grayscale(0%);
}

.works-page__card:hover .works-page__card-overlay,
.works-page__card:focus-within .works-page__card-overlay {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .works-page__card-media,
  .works-page__card-image {
    transition: none;
  }
  .works-page__card-image {
    filter: grayscale(0%);
  }
  .works-page__card:hover .works-page__card-media,
  .works-page__card:focus-within .works-page__card-media,
  .works-page__card:hover .works-page__card-image,
  .works-page__card:focus-within .works-page__card-image {
    transform: none;
  }
}
.page-work-detail .header__logo,
.page-work-detail .header__nav-link,
.page-work-detail .header__cta {
  animation: none;
  opacity: 1;
  transform: none;
}

.work-hero {
  position: relative;
  overflow: hidden;
  min-height: 1024px;
  background-color: #0d0d0d;
  padding: 112px 64px 48px;
}

.work-hero__title-wrap {
  position: relative;
  margin-top: 32px;
}

.work-hero__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: clamp(160px, 26vw, 374px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.97);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  animation: hero-bg-intro 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.work-hero__bg-text::after {
  position: absolute;
  inset: 0;
  content: attr(data-text);
  color: transparent;
  -webkit-text-stroke: 0.012em rgba(255, 220, 140, 0.95);
  paint-order: stroke fill;
  opacity: 0;
  filter: drop-shadow(0 0 24px rgba(255, 196, 69, 0.95)) drop-shadow(0 0 56px rgba(196, 161, 69, 0.7));
  animation: hero-bg-glow 2s ease-out forwards;
}

.work-hero__intro-item {
  opacity: 0;
  transform: translateY(28px);
  animation: hero-intro-fade-up 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.work-hero__meta.work-hero__intro-item {
  animation-delay: 0.85s;
}

.work-hero__title.work-hero__intro-item {
  animation-delay: 0.85s;
}

.work-hero__tagline.work-hero__intro-item {
  animation-delay: 1s;
}

@media (prefers-reduced-motion: reduce) {
  .work-hero__bg-text {
    opacity: 0.06;
    transform: translate(-50%, -50%);
    animation: none;
  }
  .work-hero__bg-text::after {
    animation: none;
  }
  .work-hero__intro-item {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
.work-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1117px;
  margin: 0 auto;
  text-align: center;
}

.work-hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 400;
  line-height: 16.5px;
  letter-spacing: 2.42px;
  color: #c4a145;
}

.work-hero__meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
}

.work-hero__meta-year {
  color: rgba(255, 255, 255, 0.25);
}

.work-hero__title {
  position: relative;
  z-index: 1;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
}

.work-hero__tagline {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.84px;
  color: rgba(255, 255, 255, 0.3);
}

.work-hero__visual {
  position: relative;
  max-width: 990px;
  margin: 80px auto 0;
  overflow: hidden;
  border-radius: 8px;
  background-color: #0d0d0d;
}
.work-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.3) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.work-hero__visual-image {
  display: block;
  width: 100%;
  height: auto;
}

.work-hero__visual--wide {
  max-width: 1080px;
}

.work-overview {
  background-color: #0d0d0d;
  padding: 96px 0;
}

.work-overview__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 64px;
}

.work-overview__label {
  margin-bottom: 56px;
  font-size: 11px;
  font-weight: 400;
  line-height: 16.5px;
  letter-spacing: 2.42px;
  color: #c4a145;
}

.work-overview__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
}

.work-overview__text {
  font-size: 15px;
  font-weight: 400;
  line-height: 33px;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.8);
}

.work-overview__side-label {
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 400;
  line-height: 16.5px;
  letter-spacing: 1.76px;
  color: rgba(255, 255, 255, 0.2);
}

.work-overview__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}

.work-overview__tag {
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.06);
  font-size: 11px;
  font-weight: 400;
  line-height: 16.5px;
  color: rgba(255, 255, 255, 0.8);
}

.work-overview__visit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 14px 28px;
  border-radius: 4px;
  background-color: #c4a145;
  font-size: 13px;
  font-weight: 600;
  line-height: 19.5px;
  color: #0d0d0d;
  transition: opacity 0.2s ease;
}
.work-overview__visit:hover {
  opacity: 0.85;
}

.work-overview__visit-icon {
  width: 10px;
  height: 10px;
}

.work-overview__facts {
  margin: 48px 0 0;
  padding-top: 33px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.work-overview__fact {
  display: flex;
  gap: 12px;
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.5);
}
.work-overview__fact + .work-overview__fact {
  margin-top: 16px;
}
.work-overview__fact dd {
  margin: 0;
}

.work-overview__fact-label {
  flex-shrink: 0;
  width: 40px;
  font-size: 11px;
  line-height: 16.5px;
  letter-spacing: 1.32px;
  color: rgba(255, 255, 255, 0.2);
}

.work-gallery {
  background-color: #f7f5f2;
  padding: 96px 0;
}

.work-gallery__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 48px;
}

.work-gallery__label {
  margin-bottom: 56px;
  font-size: 11px;
  font-weight: 400;
  line-height: 16.5px;
  letter-spacing: 2.42px;
  text-align: center;
  color: #c4a145;
}

.work-gallery__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.work-gallery__row {
  display: grid;
  grid-template-columns: 1.67fr 1fr;
  gap: 28px;
  margin-top: 56px;
  padding: 0 12px;
}

.work-gallery__footer {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

.work-gallery__visit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 14px 32px;
  border-radius: 4px;
  background-color: #c4a145;
  font-size: 13px;
  font-weight: 600;
  line-height: 19.5px;
  color: #0d0d0d;
  transition: opacity 0.2s ease;
}
.work-gallery__visit:hover {
  opacity: 0.85;
}

.work-nav {
  background-color: #121214;
  padding: 112px 0;
}

.work-nav__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
}

.work-nav__label {
  margin-bottom: 48px;
  font-size: 11px;
  font-weight: 400;
  line-height: 16.5px;
  letter-spacing: 2.42px;
  text-align: center;
  color: rgba(255, 255, 255, 0.2);
}

.work-nav__preview {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  color: inherit;
}

.work-nav__preview-image {
  display: block;
  width: 100%;
  height: auto;
}

.work-nav__preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 18, 20, 0.85) 0%, rgba(18, 18, 20, 0.15) 100%);
}

.work-nav__preview-content {
  position: absolute;
  right: 32px;
  bottom: 32px;
  left: 32px;
}

.work-nav__preview-category {
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 1.8px;
  color: rgba(255, 255, 255, 0.45);
}

.work-nav__preview-title {
  margin-top: 8px;
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.64px;
  color: #fff;
}

.work-nav__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 56px;
}

.work-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  transition: opacity 0.2s ease;
}
.work-nav__link:hover {
  opacity: 0.75;
}
.work-nav__link--next {
  flex-direction: row-reverse;
  text-align: right;
}

.work-nav__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.04);
}

.work-nav__icon {
  width: 10px;
  height: 10px;
}

.work-nav__link-text {
  display: flex;
  flex-direction: column;
}

.work-nav__link-label {
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 1.4px;
  color: rgba(255, 255, 255, 0.2);
}

.work-nav__link-title {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 400;
  line-height: 16.25px;
  color: rgba(255, 255, 255, 0.5);
}

.work-nav__all {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: inherit;
  transition: opacity 0.2s ease;
}
.work-nav__all:hover {
  opacity: 0.75;
}

.work-nav__all-label {
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 1.4px;
  color: rgba(255, 255, 255, 0.25);
}

.work-gallery__reveal {
  opacity: 0;
  transform: translateX(-64px) translateY(40px);
  will-change: transform, opacity;
}

.work-gallery.is-visible .work-gallery__reveal {
  animation: work-gallery-reveal-in 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.work-gallery.is-visible .work-gallery__inner > .work-gallery__image.work-gallery__reveal {
  animation-delay: 0.3s;
}

.work-gallery.is-visible .work-gallery__row .work-gallery__reveal:nth-child(1) {
  animation-delay: 0.42s;
}

.work-gallery.is-visible .work-gallery__row .work-gallery__reveal:nth-child(2) {
  animation-delay: 0.54s;
}

@keyframes work-gallery-reveal-in {
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .work-gallery__reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
.page-contact .header__logo,
.page-contact .header__nav-link,
.page-contact .header__cta {
  animation: none;
  opacity: 1;
  transform: none;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  background-color: #0d0d0d;
  padding: 96px 64px 56px;
}

.contact-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 512px;
  margin: 0 auto;
  text-align: center;
}

.contact-hero__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(132px, 18vw, 220px);
  margin: 0 auto;
}

.contact-hero__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  font-size: clamp(132px, 18vw, 220px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.97);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  animation: contact-hero-bg-intro 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.contact-hero__bg-text::after {
  position: absolute;
  inset: 0;
  content: attr(data-text);
  color: transparent;
  -webkit-text-stroke: 0.012em rgba(255, 220, 140, 0.95);
  paint-order: stroke fill;
  opacity: 0;
  filter: drop-shadow(0 0 24px rgba(255, 196, 69, 0.95)) drop-shadow(0 0 56px rgba(196, 161, 69, 0.7));
  animation: hero-bg-glow 2s ease-out forwards;
}

.contact-hero__title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1.38px;
  color: #fff;
}

.contact-hero__intro-item {
  opacity: 0;
  transform: translateY(28px);
  animation: hero-intro-fade-up 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.contact-hero__title.contact-hero__intro-item {
  animation-delay: 0.85s;
}

.contact-hero__description.contact-hero__intro-item {
  animation-delay: 1s;
}

.contact-hero__description {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 400;
  line-height: 24.375px;
  letter-spacing: 0.45px;
  color: rgba(255, 255, 255, 0.35);
}

.contact-main {
  position: relative;
  z-index: 1;
  background-color: #0d0d0d;
  padding: 64px 64px 112px;
}

.contact-main__inner {
  max-width: 960px;
  margin: 0 auto;
}

.contact-main__panel {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 1px;
  background-color: rgba(255, 255, 255, 0.06);
}

.contact-main__aside {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px;
  background-color: #0d0d0d;
}

.contact-main__heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.48px;
  color: #fff;
}

.contact-main__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.42px;
  color: rgba(255, 255, 255, 0.4);
}

.contact-main__divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.06);
}

.contact-main__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-main__link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}
.contact-main__link:hover {
  color: rgba(255, 255, 255, 0.7);
}

.contact-main__link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.35);
}

.contact-main__note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 22.75px;
  color: rgba(255, 255, 255, 0.3);
}

.contact-form {
  padding: 48px;
  background-color: #111213;
}

.contact-form__fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 1.6px;
  color: rgba(255, 255, 255, 0.25);
}

.contact-form__label-note {
  font-size: 10px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.15);
}

.contact-form__required {
  color: #c4a145;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 14px;
  line-height: 20px;
}
.contact-form__input::placeholder,
.contact-form__select::placeholder,
.contact-form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: rgba(196, 161, 69, 0.4);
}

.contact-form__input,
.contact-form__select {
  height: 44px;
  padding: 0 16px;
}

.contact-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(255,255,255,0.35)' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-form__textarea {
  min-height: 120px;
  padding: 12px 16px;
  resize: vertical;
}

.contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px;
  line-height: 19.5px;
  color: rgba(255, 255, 255, 0.3);
}

.contact-form__checkbox {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #c4a145;
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 47.5px;
  padding: 14px 40px;
  border: none;
  border-radius: 4px;
  background-color: #c4a145;
  font-size: 13px;
  font-weight: 600;
  line-height: 19.5px;
  color: #0d0d0d;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.contact-form__submit:hover {
  opacity: 0.85;
}

.contact-faq {
  background-color: #0d0d0d;
  padding: 0 64px 112px;
}

.contact-faq__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 64px;
  text-align: center;
}

.contact-faq__line {
  display: block;
  width: 48px;
  height: 1px;
  margin: 0 auto 48px;
  background-color: rgba(196, 161, 69, 0.3);
}

.contact-faq__title {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 3.24px;
  color: rgba(255, 255, 255, 0.25);
}

.contact-faq__lead {
  margin-top: 20px;
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 22.75px;
  color: rgba(255, 255, 255, 0.2);
}

.contact-faq__list {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}

.contact-faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  border: none;
  background: none;
  font-size: 15px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
  cursor: pointer;
}

.contact-faq__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.contact-faq__item.is-open .contact-faq__toggle {
  transform: rotate(45deg);
}

.contact-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.contact-faq__item.is-open .contact-faq__answer {
  grid-template-rows: 1fr;
}

.contact-faq__answer-inner {
  overflow: hidden;
}

.contact-faq__answer-text {
  padding-bottom: 20px;
  font-size: 14px;
  line-height: 26.6px;
  color: rgba(255, 255, 255, 0.4);
}

.contact-faq__footer {
  margin-top: 32px;
  font-size: 12px;
  line-height: 19.5px;
  color: rgba(255, 255, 255, 0.15);
}

@keyframes contact-hero-bg-intro {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.97);
  }
  45% {
    opacity: 0.14;
  }
  100% {
    opacity: 0.05;
    transform: translate(-50%, -50%) scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .contact-hero__bg-text {
    opacity: 0.05;
    transform: translate(-50%, -50%);
    animation: none;
  }
  .contact-hero__bg-text::after {
    animation: none;
  }
  .contact-hero__intro-item {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/*# sourceMappingURL=style.css.map */
