/* ── Fonts ── */
@font-face {
  font-family: 'Archivo Black';
  font-weight: 400;
  font-display: swap;
  src: url('fonts/archivo-black-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0300-0301, U+0303-0304, U+0309, U+0323, U+0329,
    U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Archivo Black';
  font-weight: 400;
  font-display: swap;
  src: url('fonts/archivo-black-400-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F,
    U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: 'Space Grotesk';
  font-weight: 600;
  font-display: swap;
  src: url('fonts/space-grotesk-600-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0300-0301, U+0303-0304, U+0309, U+0323, U+0329,
    U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Space Grotesk';
  font-weight: 600;
  font-display: swap;
  src: url('fonts/space-grotesk-600-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02AF;
}
@font-face {
  font-family: 'Space Grotesk';
  font-weight: 600;
  font-display: swap;
  src: url('fonts/space-grotesk-600-vietnamese.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169,
    U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0309, U+0323,
    U+0329, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: 'Space Grotesk';
  font-weight: 700;
  font-display: swap;
  src: url('fonts/space-grotesk-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0300-0301, U+0303-0304, U+0309, U+0323, U+0329,
    U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Space Grotesk';
  font-weight: 700;
  font-display: swap;
  src: url('fonts/space-grotesk-700-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02AF;
}
@font-face {
  font-family: 'Space Grotesk';
  font-weight: 700;
  font-display: swap;
  src: url('fonts/space-grotesk-700-vietnamese.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169,
    U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0309, U+0323,
    U+0329, U+1EA0-1EF9, U+20AB;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #000;
  background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 4rem;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.nav--dark {
  color: #fff;
}
.nav--dark.nav--scrolled {
  background: #fff;
  color: #000;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav--light {
  background: #fff;
  color: #000;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav__logo {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav__links a {
  position: relative;
  padding-bottom: 2px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.25s;
}
.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}
.nav__links .dropdown {
  position: relative;
}
.nav__links .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  padding: 0.75rem 0;
  min-width: 10rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  margin-top: 0.75rem;
  list-style: none;
}
.nav--light .nav__links .dropdown-menu,
.nav--dark.nav--scrolled .nav__links .dropdown-menu {
  background: #000;
  color: #fff;
}
.nav__links .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}
.nav__links .dropdown-menu a {
  display: block;
  padding: 0.5rem 1.5rem;
  font-size: 0.8rem;
  white-space: nowrap;
}
.nav__links .dropdown-menu a:hover {
  background: rgba(255,255,255,0.1);
}
.nav__links .dropdown-menu a::after { display: none; }

/* Hamburger (mobile) */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 0;
}
.nav__hamburger span {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #000;
  color: #fff;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu a {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mobile-menu__sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.mobile-menu__sub a {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

/* ── Typography ── */
.heading {
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.heading--hero {
  font-size: clamp(4rem, 12vw, 14rem);
}
.heading--page {
  font-size: clamp(3rem, 9vw, 9rem);
}
.heading--section {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
}
.heading--sub {
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  letter-spacing: 0.12em;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.4;
}

/* ── Hero sections ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero--dark {
  background: #000;
  color: #fff;
}
.hero--image {
  background-size: cover;
  background-position: center;
  color: #fff;
}
.hero--image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}
.hero__subtitle {
  margin-bottom: 1.5rem;
}

/* ── CSS Ticker ── */
.ticker {
  overflow: hidden;
  width: 100%;
  pointer-events: none;
  user-select: none;
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-scroll var(--ticker-speed, 25s) linear infinite;
}
.ticker--reverse .ticker__track {
  animation-direction: reverse;
}
.ticker__text {
  flex-shrink: 0;
  white-space: nowrap;
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 1;
  padding-right: 0.5em;
  opacity: 0.06;
}
.ticker--bold .ticker__text {
  opacity: 0.1;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Content sections ── */
.section {
  padding: 6rem 2.5rem;
}
.section--black {
  background: #000;
  color: #fff;
}
.section--flush {
  padding-left: 0;
  padding-right: 0;
}
.section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Homepage preview cards ── */
.preview {
  position: relative;
  padding: 5rem 2.5rem;
  overflow: hidden;
}
.preview__ticker {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  z-index: 0;
}
.preview__body {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.preview__body--reverse {
  direction: rtl;
}
.preview__body--reverse > * {
  direction: ltr;
}
.preview__image {
  overflow: hidden;
}
.preview__image img {
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.preview__image:hover img {
  transform: scale(1.03);
}
.preview__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.preview__text p {
  font-size: 1.125rem;
  line-height: 1.7;
}
.preview__link {
  display: inline-block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 2px solid currentColor;
  padding-bottom: 4px;
  transition: opacity 0.2s;
}
.preview__link:hover {
  opacity: 0.6;
}

/* ── Gallery ── */
.gallery {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2.5rem;
}
.gallery__item {
  margin-bottom: 5rem;
}
.gallery__item:last-child {
  margin-bottom: 0;
}
.gallery__image {
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.gallery__image img {
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery__item:hover .gallery__image img {
  transform: scale(1.02);
}
.gallery__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.gallery__title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.gallery__detail {
  font-size: 0.875rem;
  opacity: 0.6;
}

/* ── Soft sculpture triptych ── */
.triptych {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
  align-items: center;
}
.triptych__panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.triptych__panel h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  text-transform: uppercase;
  line-height: 0.95;
}
.triptych__panel p {
  font-size: 1rem;
  line-height: 1.7;
}
.triptych__center img {
  width: 100%;
}
.triptych__caption {
  margin-top: 1rem;
  font-size: 0.8rem;
  opacity: 0.6;
  line-height: 1.5;
}

/* ── Masonry-style grid ── */
.masonry {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  columns: 3;
  column-gap: 1.5rem;
}
.masonry__item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.masonry__item img {
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.masonry__item:hover img {
  transform: scale(1.03);
}

/* ── Blockquote ── */
.pullquote {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
  text-align: center;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.6;
  font-style: italic;
}

/* ── About page ── */
.about__statement {
  max-width: 800px;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.7;
}
.about__portrait {
  width: 100%;
  max-width: 900px;
  margin: 3rem 0;
}

/* ── Contact form ── */
.form {
  max-width: 600px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.form__field--full {
  grid-column: 1 / -1;
}
.form label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.form input,
.form textarea {
  font: inherit;
  font-size: 1rem;
  padding: 0.75rem 0;
  border: none;
  border-bottom: 2px solid #000;
  background: transparent;
  outline: none;
  transition: border-color 0.2s;
}
.form input:focus,
.form textarea:focus {
  border-bottom-color: #666;
}
.form textarea {
  resize: vertical;
  min-height: 8rem;
}
.form__submit {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: #000;
  color: #fff;
  padding: 1rem 3rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.form__submit:hover {
  opacity: 0.8;
}

/* ── Footer ── */
.footer {
  background: #000;
  color: #fff;
  padding: 5rem 2.5rem 2rem;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer__subscribe {
  text-align: center;
  margin-bottom: 4rem;
}
.footer__subscribe h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer__subscribe p {
  font-size: 0.95rem;
  opacity: 0.7;
  margin-bottom: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.footer__email-row {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 400px;
  margin: 0 auto;
}
.footer__email-row input {
  flex: 1;
  font: inherit;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  outline: none;
}
.footer__email-row input::placeholder {
  color: rgba(255,255,255,0.5);
}
.footer__email-row button {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: #fff;
  color: #000;
  padding: 0.75rem 1.5rem;
  border: 2px solid #fff;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.footer__email-row button:hover {
  opacity: 0.85;
}
.footer__nav {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  list-style: none;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer__nav a:hover {
  opacity: 0.6;
}
.footer__brand {
  text-align: center;
  padding-top: 3rem;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(3rem, 10vw, 10rem);
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -0.02em;
  opacity: 0.3;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .preview__body,
  .preview__body--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .triptych {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .triptych__center { order: -1; }
  .triptych__center img {
    max-width: 70%;
    margin: 0 auto;
  }
  .masonry {
    columns: 2;
  }
  .gallery {
    padding: 2rem 1.5rem;
  }
  .gallery__item {
    margin-bottom: 3rem;
  }
  .section {
    padding: 4rem 1.5rem;
  }
  .form__row {
    grid-template-columns: 1fr;
  }
  .footer__nav {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}
@media (max-width: 600px) {
  .nav {
    padding: 0 1.25rem;
  }
  .heading--hero {
    font-size: clamp(3rem, 15vw, 5rem);
  }
  .preview {
    padding: 3rem 1.25rem;
  }
  .masonry {
    columns: 1;
    padding: 2rem 1.25rem;
  }
  .triptych {
    padding: 3rem 1.25rem;
  }
  .triptych__center img {
    max-width: 90%;
  }
  .section {
    padding: 3rem 1.25rem;
  }
  .pullquote {
    padding: 3rem 1.25rem;
  }
  .footer {
    padding: 3rem 1.25rem 1.5rem;
  }
  .ticker__text {
    font-size: clamp(2rem, 12vw, 4rem);
  }
}
