:root {
  --ink: #1f1b16;
  --ink-soft: #3a342b;
  --white: #fffdf8;
  --paper: #f4efe6;
  --paper-2: #eae3d5;
  --gold: #a97d3c;
  --gold-light: #d7b47d;
  --navy: #17384a;
  --navy-deep: #102c3a;
  --sage: #7f8f6c;
  --line: rgba(31, 27, 22, 0.14);
  --line-light: rgba(255, 253, 248, 0.16);
  --muted: #6f675a;
  --serif: "Noto Serif SC", "Songti SC", "STSong", serif;
  --sans: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", sans-serif;
  --latin: "EB Garamond", "Noto Serif SC", Georgia, serif;
  --shadow: 0 24px 60px rgba(31, 27, 22, 0.1);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

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

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -70px;
  z-index: 300;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  border-radius: 6px;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 249, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 28px rgba(33, 27, 20, 0.08);
}

.utility-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 28px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
}

.utility-bar span {
  color: rgba(255, 253, 249, 0.82);
}

.utility-bar a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
  font-weight: 500;
}

.utility-bar svg {
  width: 13px;
  height: 13px;
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 12px 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.header-left {
  display: flex;
  align-items: center;
}

.menu-trigger {
  width: 44px;
  height: 44px;
}

.brand-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-align: center;
  justify-self: center;
}

.brand-center img {
  height: 26px;
  width: auto;
}

.brand-date {
  font-family: var(--latin);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
}

.header-right {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.desktop-nav a {
  position: relative;
  padding: 6px 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.desktop-nav a:hover {
  color: var(--ink);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn svg {
  width: 16px;
  height: 16px;
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn-primary:hover {
  background: var(--gold);
}

.btn-ghost {
  border-color: rgba(255, 253, 249, 0.72);
  color: var(--white);
  background: rgba(255, 253, 249, 0.05);
}

.btn-ghost:hover {
  background: rgba(255, 253, 249, 0.16);
}

.btn-small {
  padding: 11px 16px;
  font-size: 13px;
}

.btn-large {
  padding: 16px 24px;
  font-size: 15px;
}

.btn-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy-deep);
}

.btn-light:hover {
  background: rgba(255, 253, 248, 0.86);
  border-color: rgba(255, 253, 248, 0.86);
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(24, 18, 10, 0.52);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.icon-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 150;
  width: min(380px, 90vw);
  background: var(--white);
  box-shadow: 18px 0 60px rgba(33, 27, 20, 0.24);
  transform: translateX(-105%);
  transition: transform 0.32s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.icon-drawer.is-open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.drawer-head img {
  height: 40px;
  width: auto;
}

.drawer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 18px 16px;
}

.drawer-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.drawer-nav a svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.drawer-nav a:hover,
.drawer-nav a.is-active {
  border-color: var(--gold);
  background: var(--paper);
}

.home-hero {
  position: relative;
  height: min(92vh, 900px);
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 12, 8, 0.72) 0%, rgba(16, 12, 8, 0.34) 52%, rgba(16, 12, 8, 0.04) 100%),
    linear-gradient(0deg, rgba(16, 12, 8, 0.52) 0%, rgba(16, 12, 8, 0) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 960px;
  margin: 0;
  padding: 90px 28px 112px;
  text-align: left;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold-light);
  font-family: var(--latin);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content h1 {
  margin-bottom: 18px;
  font-size: 60px;
  font-weight: 500;
  line-height: 1.14;
}

.hero-subtitle {
  max-width: 620px;
  margin: 0 0 34px;
  color: rgba(255, 253, 249, 0.86);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
}

.hero-content > * {
  animation: heroRise 0.8s var(--ease) both;
}

.hero-content > :nth-child(2) {
  animation-delay: 0.12s;
}

.hero-content > :nth-child(3) {
  animation-delay: 0.22s;
}

.hero-content > :nth-child(4) {
  animation-delay: 0.32s;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  left: 64px;
  bottom: 24px;
  transform: translateX(0);
  color: rgba(255, 253, 249, 0.9);
  animation: cue 1.8s ease-in-out infinite;
}

.scroll-cue svg {
  width: 30px;
  height: 30px;
}

@keyframes cue {
  0%, 100% { transform: translateY(0); opacity: 0.9; }
  50% { transform: translateY(9px); opacity: 0.4; }
}

html.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

html.js .reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.brand-story-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 112px 28px 72px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 76px;
  align-items: center;
}

.brand-story-media {
  position: relative;
  isolation: isolate;
}

.brand-story-media::after {
  content: "";
  position: absolute;
  inset: 26px -26px -26px 26px;
  z-index: -1;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.brand-story-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
}

.brand-story-stamp {
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: 112px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: var(--latin);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0;
  box-shadow: 0 14px 34px rgba(31, 27, 22, 0.22);
}

.brand-story-copy {
  align-self: end;
}

.brand-story-copy h2 {
  margin-bottom: 22px;
  font-size: 48px;
  line-height: 1.16;
}

.brand-story-copy h2 em {
  display: block;
  color: var(--navy);
  font-style: normal;
}

.brand-story-copy > p {
  max-width: 600px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.brand-story-facts {
  display: flex;
  gap: 44px;
  margin: 38px 0 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.brand-story-facts div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-story-facts strong {
  color: var(--navy);
  font-family: var(--latin);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.brand-story-facts span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.services-section {
  padding: 96px 28px;
  background: var(--paper);
}

.services-section .section-heading {
  margin-bottom: 48px;
}

.services-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 38px 36px 42px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  overflow: hidden;
  transition: background 0.35s ease, transform 0.35s var(--ease);
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease);
}

.service-card:hover {
  background: var(--white);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card > svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.service-index {
  position: absolute;
  top: 38px;
  right: 36px;
  color: var(--muted);
  font-family: var(--latin);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.service-card h3 {
  margin-bottom: 0;
  font-size: 24px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
}

.service-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}

.service-card:hover .service-cta svg {
  transform: translateX(4px);
}

.brand-banner {
  padding: 96px 28px;
  background: linear-gradient(118deg, var(--navy-deep) 0%, var(--navy) 56%, #24566d 100%);
  color: var(--white);
}

.brand-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: end;
}

.brand-banner .eyebrow {
  color: var(--gold-light);
}

.brand-banner h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 42px;
  line-height: 1.2;
}

.brand-banner p {
  margin-bottom: 26px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 16px;
}

.brand-banner .btn-light {
  justify-self: start;
}

.collection-section,
.embroidery-section,
.campus-section,
.custom-section,
.partners-section,
.gallery-section {
  padding: 96px 28px;
}

.collection-section.alt,
.gallery-section.alt {
  background: var(--paper);
}

.section-heading {
  max-width: 1400px;
  margin: 0 auto 44px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading h2 {
  margin-bottom: 10px;
  font-size: 44px;
}

.section-heading p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--gold);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.text-link svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.scrollable {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.scroll-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(31, 27, 22, 0.08);
}

.scroll-track::-webkit-scrollbar {
  height: 7px;
  background: transparent;
}

.scroll-track::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 999px;
}

.scroll-track::-webkit-scrollbar-track {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.scroll-btn,
.carousel-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}

.scroll-btn:hover,
.carousel-btn:hover {
  background: var(--ink);
  color: var(--white);
}

.scroll-btn:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.scroll-btn svg,
.carousel-btn svg {
  width: 20px;
  height: 20px;
}

.collection-card {
  position: relative;
  flex: 0 0 318px;
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 6px;
  background: var(--white);
  border: 1px solid rgba(31, 27, 22, 0.08);
  text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(31, 27, 22, 0.13);
}

.collection-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}

.collection-card:hover img {
  transform: scale(1.035);
}

.card-img-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.collection-card:hover .card-img-hover {
  opacity: 1;
}

.collection-card strong {
  display: block;
  padding: 16px 18px 18px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.collection-card:hover strong {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.collection-card > span:not(.card-tag) {
  display: block;
  padding: 0 18px 20px;
  color: var(--muted);
  font-size: 13px;
}

.card-tag {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.92);
  color: var(--ink);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  backdrop-filter: blur(6px);
}

.embroidery-section {
  padding: 96px 0 0;
  background: var(--white);
}

.embroidery-section .section-heading {
  padding: 0 28px;
  margin-bottom: 32px;
}

.embroidery-section .section-heading h2 {
  font-size: 26px;
}

.embroidery-carousel {
  position: relative;
  max-width: none;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0;
}

.embroidery-carousel-wrap {
  position: relative;
}

.embroidery-carousel .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.embroidery-carousel [data-embroidery-prev] {
  left: 24px;
}

.embroidery-carousel [data-embroidery-next] {
  right: 24px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper-2);
  border: 1px solid var(--line);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.gallery-grid figcaption {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
}

.embroidery-track {
  display: flex;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.55s ease;
  flex: 1 1 0%;
  min-width: 0;
  width: 100%;
}

.embroidery-track figure {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
  position: relative;
  background: var(--paper-2);
  transition: transform 0.55s ease;
}

.embroidery-track img {
  width: 100%;
  height: min(82vh, 820px);
  min-height: 520px;
  aspect-ratio: auto;
  object-fit: cover;
}

.embroidery-track figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
  width: 100%;
  padding: 34px 20px 14px;
  background: linear-gradient(180deg, transparent, rgba(24, 18, 10, 0.7));
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
}

.embroidery-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.embroidery-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(33, 27, 20, 0.25);
  transition: background 0.2s ease, transform 0.2s ease;
}

.embroidery-dots button.is-active {
  background: var(--gold);
  transform: scale(1.25);
}

.expandable-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--gold);
  font-size: 15px;
  font-weight: 600;
}

.expandable-trigger svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.expandable.is-open .expandable-trigger svg {
  transform: rotate(45deg);
}

.expandable-content p {
  margin: 10px 0 0;
  color: var(--muted);
}

.hand-push-section {
  position: relative;
  background: var(--white);
}

.hand-push-heading {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 28px 26px;
  color: var(--ink);
}

.hand-push-heading .eyebrow {
  margin-bottom: 12px;
  color: var(--gold);
}

.hand-push-heading h2 {
  margin-bottom: 0;
  font-size: 44px;
  line-height: 1.12;
}

.hand-push-stage {
  position: relative;
  min-height: 76vh;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--ink);
}

.hand-push-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--ink);
}

.hand-push-panel {
  position: relative;
  z-index: 2;
  width: min(520px, 42%);
  display: flex;
  align-items: flex-end;
  background: linear-gradient(90deg, rgba(33, 27, 20, 0.1), rgba(33, 27, 20, 0.62));
  padding: 64px;
}

.hand-push-panel-inner {
  width: 100%;
  color: var(--white);
}

.hand-push-panel-inner h2 {
  margin-bottom: 16px;
  font-size: 44px;
}

.hand-push-panel-inner p:not(.eyebrow) {
  margin-bottom: 30px;
  color: rgba(255, 253, 249, 0.84);
}

.hand-push-controls {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.video-control {
  border-color: rgba(255, 253, 249, 0.4);
  background: rgba(24, 18, 10, 0.55);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.campus-section {
  padding: 96px 0 0;
  background: var(--ink);
  color: var(--white);
}

.campus-section .section-heading {
  padding: 0 28px;
}

.campus-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 253, 249, 0.72);
}

.campus-section .section-heading h2 {
  font-size: 26px;
}

.campus-section .eyebrow {
  color: var(--gold-light);
}

.campus-carousel-wrap {
  position: relative;
}

.campus-carousel-wrap .carousel {
  max-width: none;
  margin: 0;
}

.embroidery-carousel-wrap .hand-push-panel,
.campus-carousel-wrap .hand-push-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
}

.hand-push-panel .expandable-trigger {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 253, 249, 0.7);
  border-radius: 4px;
  padding: 13px 20px;
  background: rgba(255, 253, 249, 0.05);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

.hand-push-panel .expandable-trigger svg {
  width: 16px;
  height: 16px;
}

.hand-push-panel .expandable-content p {
  margin-top: 14px;
  color: rgba(255, 253, 249, 0.82);
}

.carousel {
  position: relative;
  max-width: none;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0;
}

.carousel .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.carousel [data-carousel-prev] {
  left: 24px;
}

.carousel [data-carousel-next] {
  right: 24px;
}

.carousel-track {
  display: flex;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.55s ease;
  flex: 1 1 0%;
  min-width: 0;
  width: 100%;
}

.carousel-track figure {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
  position: relative;
  transition: transform 0.55s ease;
}

.carousel-track img {
  width: 100%;
  height: min(78vh, 760px);
  min-height: 480px;
  aspect-ratio: auto;
  object-fit: cover;
}

.carousel-track figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
  padding: 40px 24px 18px;
  width: 100%;
  background: linear-gradient(180deg, transparent, rgba(24, 18, 10, 0.72));
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.35);
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dots button.is-active {
  background: var(--gold-light);
  transform: scale(1.25);
}

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

.custom-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.custom-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 22px;
}

.custom-grid svg {
  width: 24px;
  height: 24px;
  margin-bottom: 14px;
  color: var(--gold);
}

.custom-grid h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.custom-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.custom-hero {
  position: relative;
  height: min(78vh, 720px);
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.custom-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 18, 10, 0.45), rgba(24, 18, 10, 0.72));
}

.custom-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
}

.custom-hero-content h1 {
  margin-bottom: 16px;
  font-size: 64px;
}

.custom-hero-content p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 253, 249, 0.84);
}

.custom-page-section,
.custom-order-section {
  padding: 96px 28px;
}

.custom-order-section {
  background: var(--paper);
}

.custom-order-steps {
  list-style: none;
  max-width: 1100px;
  margin: 0 auto 40px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.custom-order-steps li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 26px;
}

.custom-order-steps li > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
}

.custom-order-steps strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 20px;
}

.custom-order-steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.custom-cta {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.partners-section {
  background: var(--paper);
}

.partner-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-family: var(--latin);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink-soft);
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.partner-logo:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 56px 28px 26px;
}

.footer-main {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 44px;
}

.footer-brand img {
  height: 44px;
  margin-bottom: 14px;
}

.footer-brand p {
  max-width: 320px;
  margin-bottom: 0;
  color: rgba(255, 253, 249, 0.65);
  font-size: 14px;
}

.footer-title {
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 253, 249, 0.82);
  font-size: 14px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-contact span {
  color: rgba(255, 253, 249, 0.6);
  font-size: 14px;
}

.footer-bottom {
  max-width: 1400px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 253, 249, 0.52);
  font-size: 12px;
}

.footer-bottom p {
  margin-bottom: 0;
}

.gallery-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.gallery-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 18, 10, 0.42), rgba(24, 18, 10, 0.76));
}

.gallery-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 28px 44px;
}

.gallery-hero-content h1 {
  margin-bottom: 10px;
  font-size: 56px;
}

.gallery-hero-content p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 253, 249, 0.8);
}

.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-grid img {
  aspect-ratio: 4 / 3;
}

.gallery-grid.cert-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-grid.cert-grid img {
  aspect-ratio: 3 / 4;
}

.download-list {
  max-width: 1400px;
  margin: 34px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.download-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
}

.download-list svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.new-series-section {
  padding: 96px 28px;
}

.new-series-section .section-heading {
  margin-bottom: 40px;
}

.series-strip {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 18px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(31, 27, 22, 0.08);
}

.series-strip-card {
  flex: 0 0 318px;
  scroll-snap-align: start;
}

.series-strip-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.6s var(--ease);
}

.series-strip-card:hover img {
  transform: scale(1.035);
}

.series-strip-card strong {
  display: block;
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
}

.series-strip-card span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.category-collection {
  padding: 0 28px 112px;
  background: var(--paper);
}

.category-collection .section-heading {
  margin: 0 auto 40px;
}

.category-stage {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  height: 520px;
  gap: 8px;
}

.category-stage-item {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ink);
  transition: flex 0.55s var(--ease);
}

.category-stage-item:hover {
  flex: 3.2;
}

.category-stage-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.category-stage-item:hover img {
  transform: scale(1.04);
}

.category-stage-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 12, 8, 0.08) 0%, rgba(16, 12, 8, 0.7) 100%);
}

.category-stage-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  color: var(--white);
}

.category-stage-content strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

.category-stage-content span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 253, 248, 0.76);
  font-size: 12px;
}

.series-hero {
  padding: 84px 28px 56px;
  background: var(--paper);
}

.series-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.series-hero h1 {
  margin-bottom: 14px;
  font-size: 56px;
}

.series-hero p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.category-tabs {
  position: sticky;
  top: 78px;
  z-index: 20;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px 28px;
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.category-tab {
  flex: 0 0 auto;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.category-tab:hover,
.category-tab.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.series-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 72px 28px;
}

.category-section {
  padding-bottom: 88px;
  scroll-margin-top: 130px;
}

.category-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  margin-bottom: 36px;
}

.category-heading h2 {
  margin-bottom: 8px;
  font-size: 40px;
}

.category-heading p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
}

.category-count {
  color: var(--navy);
  font-family: var(--latin);
  font-size: 15px;
  white-space: nowrap;
}

.season-block h3 {
  margin: 38px 0 18px;
  font-size: 20px;
  color: var(--navy);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card {
  display: block;
}

.product-card-media {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  background: var(--paper);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.product-card:hover img {
  transform: scale(1.04);
}

.product-card strong {
  display: block;
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
}

.product-card > span:not(.product-card-media) {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.empty-state {
  padding: 48px 0;
  color: var(--muted);
  text-align: center;
}

.product-detail-page {
  padding: 56px 28px 96px;
}

.product-detail {
  max-width: 1400px;
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
}

.back-link svg {
  width: 16px;
  height: 16px;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 56px;
  align-items: start;
}

.product-main-image {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--paper);
}

.product-main-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.detail-thumb {
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.detail-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.detail-thumb.is-active {
  border-color: var(--gold);
}

.product-info h1 {
  margin-bottom: 16px;
  font-size: 48px;
}

.product-info p {
  color: var(--muted);
}

.product-info .btn {
  margin-top: 28px;
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .brand-story-section {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .brand-story-media {
    max-width: 680px;
  }

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

  .brand-banner-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .brand-banner h2 {
    font-size: 36px;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .category-stage {
    height: 440px;
  }

  .custom-grid,
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .header-inner {
    padding: 0 16px;
    min-height: 68px;
    gap: 14px;
  }

  .brand-center img {
    height: 22px;
  }

  .brand-date {
    font-size: 16px;
  }

  .brand-center {
    gap: 2px;
  }

  .utility-bar {
    padding: 7px 16px;
  }

  .btn-small {
    padding: 10px 12px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content {
    padding: 90px 16px 96px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .scroll-cue {
    left: 16px;
  }

  .collection-section,
  .services-section,
  .custom-page-section,
  .custom-order-section,
  .partners-section,
  .gallery-section,
  .brand-story-section,
  .brand-banner {
    padding: 68px 16px;
  }

  .brand-story-section {
    padding: 68px 16px 44px;
  }

  .brand-story-copy h2,
  .brand-banner h2 {
    font-size: 34px;
  }

  .brand-story-facts {
    flex-wrap: wrap;
    gap: 24px;
  }

  .brand-story-stamp {
    right: 16px;
    bottom: 16px;
    width: 88px;
    height: 88px;
    font-size: 24px;
  }

  .brand-story-media::after {
    inset: 16px -16px -16px 16px;
  }

  .service-card {
    padding: 30px 24px 34px;
  }

  .service-index {
    top: 30px;
    right: 24px;
  }

  .new-series-section,
  .series-content,
  .product-detail-page {
    padding: 68px 16px;
  }

  .series-hero {
    padding: 60px 16px 40px;
  }

  .series-hero h1,
  .product-info h1 {
    font-size: 36px;
  }

  .category-collection {
    padding: 0 16px 68px;
  }

  .series-strip-card {
    flex-basis: 260px;
  }

  .category-tabs {
    top: 70px;
    padding: 12px 16px;
  }

  .category-stage {
    flex-direction: column;
    height: auto;
    gap: 10px;
  }

  .category-stage-item {
    height: 240px;
  }

  .category-stage-item:hover {
    flex: none;
  }

  .category-heading {
    grid-template-columns: 1fr;
  }

  .category-section {
    padding-bottom: 64px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-detail-page {
    padding: 40px 16px 68px;
  }

  .detail-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }

  .custom-hero-content {
    padding: 0 16px;
  }

  .custom-order-steps {
    grid-template-columns: 1fr;
  }

  .embroidery-section,
  .campus-section {
    padding: 68px 0 0;
  }

  .embroidery-section .section-heading,
  .campus-section .section-heading {
    padding: 0 16px;
  }

  .embroidery-carousel-wrap .hand-push-panel,
  .campus-carousel-wrap .hand-push-panel {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
  }

  .hand-push-heading {
    padding: 24px 16px 20px;
  }

  .hand-push-heading h2 {
    font-size: 32px;
  }

  .hand-push-stage {
    min-height: 72vh;
  }

  .hand-push-panel {
    width: 100%;
    height: 66vh;
    min-height: 420px;
    align-self: flex-end;
    align-items: flex-end;
    padding: 52px 20px 88px;
    background: linear-gradient(0deg, rgba(24, 18, 10, 0.78), rgba(24, 18, 10, 0.45));
  }

  .hand-push-controls {
    left: 16px;
    bottom: 18px;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .section-heading h2,
  .hand-push-panel-inner h2,
  .gallery-hero-content h1,
  .custom-hero-content h1 {
    font-size: 34px;
  }

  .collection-card {
    flex-basis: 260px;
  }

  .scroll-btn {
    display: none;
  }

  .carousel-track img {
    height: 64vh;
    min-height: 400px;
    aspect-ratio: auto;
  }

  .embroidery-carousel {
    gap: 0;
  }

  .embroidery-track img {
    height: 70vh;
    min-height: 420px;
    aspect-ratio: auto;
  }

  .custom-grid,
  .partner-grid,
  .gallery-grid,
  .gallery-grid.cert-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  html.js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-content > *,
  .scroll-cue,
  .collection-card,
  .service-card,
  .brand-story-stamp {
    animation: none !important;
    transition: none !important;
  }
}
