:root {
  --ink: #1a2238;
  --ink-soft: #2a3350;
  --white: #ffffff;
  --paper: #faf8f5;
  --paper-2: #f3efe9;
  --gold: #c4a35a;
  --gold-light: #d9c088;
  --navy: #1a2238;
  --navy-deep: #141b2e;
  --sage: #7f8f6c;
  --line: rgba(26, 34, 56, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --muted: #6b6358;
  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
}

body {
  background: var(--paper);
}

.utility-bar {
  padding: 8px 28px;
}

.lang-switch {
  position: relative;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 0;
  background: transparent;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 500;
}

.lang-trigger svg {
  width: 13px;
  height: 13px;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 120;
  min-width: 220px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(26, 34, 56, 0.14);
}

.lang-menu a,
.lang-menu span {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 13px;
}

.lang-menu a:hover {
  background: var(--paper);
  color: var(--gold);
}

.lang-menu span {
  color: var(--muted);
}

.desktop-nav-right {
  margin-right: 0;
}

.desktop-nav {
  gap: 18px;
}

.desktop-nav a {
  font-size: 13px;
}

.site-header .btn,
.site-header .btn:hover {
  transform: none;
}

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

.series-strip-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  padding-bottom: 16px;
}

.series-strip-card img {
  border-radius: 0;
}

.series-strip-tags {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
}

.season-tag,
.craft-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.season-tag {
  background: rgba(26, 34, 56, 0.9);
  color: #ffffff;
}

.craft-tag {
  background: rgba(196, 163, 90, 0.94);
}

.series-strip-card strong {
  padding: 14px 16px 0;
}

.series-strip-card > span:not(.series-strip-tags) {
  padding: 0 16px;
}

.card-inquire {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 6px;
  background: rgba(26, 34, 56, 0.94);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.card-inquire svg {
  width: 15px;
  height: 15px;
}

.series-strip-card:hover .card-inquire {
  opacity: 1;
  transform: translateY(0);
}

.category-stage {
  height: 560px;
}

.category-stage-content strong {
  font-size: 24px;
}

.category-stage-content span {
  max-width: 320px;
  font-size: 13px;
  line-height: 1.5;
}

.partner-entry {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.partner-entry p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

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

.footer-brand p {
  margin: 8px 0 0;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-contact svg {
  width: 14px;
  height: 14px;
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom a {
  color: rgba(255, 253, 248, 0.68);
  margin-left: 18px;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

.inquiry-form,
.partner-form {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(196, 163, 90, 0.4);
  outline-offset: 1px;
  border-color: var(--gold);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  font-size: 13px;
  text-transform: none;
}

.checkbox-grid input {
  width: 16px;
  height: 16px;
}

.form-success {
  grid-column: 1 / -1;
  display: none;
  padding: 14px 16px;
  border: 1px solid rgba(52, 121, 85, 0.35);
  border-radius: 6px;
  background: rgba(52, 121, 85, 0.08);
  color: #215a3f;
  font-size: 14px;
}

.form-success.is-visible {
  display: block;
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #ffffff;
  background: var(--ink);
}

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

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 27, 46, 0.34), rgba(20, 27, 46, 0.82));
}

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

.page-hero h1 {
  margin-bottom: 16px;
  font-size: 56px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
}

.rd-section,
.partner-section,
.legal-section,
.contact-form-section,
.contact-info-section,
.gallery-subsection {
  padding: 88px 28px;
}

.rd-section.alt,
.partner-section.alt,
.contact-info-section {
  background: var(--paper-2);
}

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

.stat-card {
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.stat-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 600;
  line-height: 1;
}

.stat-card span {
  color: var(--muted);
  font-size: 13px;
}

.process-steps {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  padding: 0;
  list-style: none;
}

.process-steps li {
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.process-steps span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
}

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

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

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

.platform-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.platform-card svg {
  width: 26px;
  height: 26px;
  margin-bottom: 16px;
  color: var(--gold);
}

.platform-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

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

.craft-showcase {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.craft-showcase figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.craft-showcase img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.craft-showcase figcaption {
  padding: 14px 16px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.patent-band {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.patent-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 34px 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.patent-card strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 600;
}

.patent-card span {
  color: var(--muted);
  font-size: 14px;
}

.cta-band {
  padding: 72px 28px;
  background: var(--navy);
  color: #ffffff;
  text-align: center;
}

.cta-band-inner {
  max-width: 760px;
  margin: 0 auto;
}

.cta-band h2 {
  margin-bottom: 14px;
  font-size: 36px;
}

.cta-band p {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.76);
}

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

.partner-advantage-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.partner-advantage-card svg {
  width: 26px;
  height: 26px;
  margin-bottom: 16px;
  color: var(--gold);
}

.partner-advantage-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.partner-advantage-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.legal-section {
  max-width: 860px;
  margin: 0 auto;
}

.legal-section h2 {
  margin: 32px 0 12px;
  font-size: 28px;
}

.legal-section p {
  color: var(--muted);
}

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

.purpose-grid article {
  padding: 34px 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.purpose-grid article .eyebrow {
  margin-bottom: 12px;
}

.purpose-grid h3 {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.4;
}

.purpose-values h3 {
  font-size: 18px;
  line-height: 1.6;
}

.purpose-values h3 + h3 {
  margin-top: 14px;
}

.honors-section {
  padding: 88px 28px 104px;
  background: var(--paper);
}

.honors-list {
  max-width: 1400px;
  margin: 0 auto 32px;
  padding: 30px 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.honors-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.custom-flow {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.custom-flow li {
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.custom-flow span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
}

.custom-flow strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.35;
}

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

.quality-assurance-section,
.faq-section,
.trade-show-section {
  padding: 88px 28px;
}

.quality-assurance-section {
  background: var(--paper-2);
}

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

.qa-copy p {
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
}

.faq-section .custom-cta {
  margin-top: 36px;
}

.form-label {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(26, 34, 56, 0.12);
}

.product-card-media {
  position: relative;
  display: block;
  overflow: hidden;
}

.product-card-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-card-tags {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
}

.product-card > strong {
  display: block;
  padding: 14px 16px 0;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
}

.product-card > span:not(.product-card-media):not(.product-card-tags) {
  display: block;
  padding: 4px 16px 0;
  color: var(--muted);
  font-size: 12px;
}

.fabric-info {
  padding-top: 6px !important;
  color: var(--navy) !important;
  font-weight: 600;
}

.custom-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 16px !important;
  color: var(--gold) !important;
}

.custom-icons svg {
  width: 16px;
  height: 16px;
}

.series-sentinel {
  height: 1px;
}

.infinite-hint {
  max-width: 1400px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

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

.trade-show-section .hours-card {
  margin-top: 18px;
}

@media (max-width: 1100px) {
  .purpose-grid,
  .qa-copy,
  .custom-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .custom-flow li:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .purpose-grid,
  .qa-copy {
    grid-template-columns: 1fr;
  }

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

  .custom-flow li:last-child {
    grid-column: auto;
  }
}

.faq-list {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}

.faq-trigger svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--gold);
  transition: transform 0.25s ease;
}

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

.faq-answer {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 14px;
}

.gallery-subsection {
  border-top: 1px solid var(--line);
}

.gallery-copy {
  max-width: 1400px;
  margin: 0 auto 28px;
  color: var(--muted);
}

.gallery-grid .gallery-note {
  font-size: 13px;
}

.trade-show-list {
  max-width: 1400px;
  margin: 0 auto 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0;
  list-style: none;
}

.trade-show-list li {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.trade-show-list strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 20px;
}

.trade-show-list span {
  color: var(--muted);
  font-size: 14px;
}

.map-frame {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  line-height: 0;
}

.map-frame iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

.hours-card {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.hours-card p {
  margin-bottom: 0;
  color: var(--muted);
}

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

  .desktop-nav a {
    font-size: 12px;
  }

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

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

@media (max-width: 760px) {
  .utility-bar {
    padding: 8px 16px;
  }

  .partner-entry,
  .hours-card {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .inquiry-form,
  .partner-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

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

  .stats-grid,
  .platform-grid,
  .trade-show-list {
    grid-template-columns: 1fr;
  }

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

  .craft-showcase,
  .patent-band {
    grid-template-columns: 1fr;
  }

  .craft-showcase img {
    height: 320px;
  }

  .partner-advantage-grid {
    grid-template-columns: 1fr;
  }

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

  .category-stage-item {
    min-height: 300px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom a {
    margin-left: 0;
    margin-right: 16px;
  }
}
