/* ==========================================================================
   CHEN DENIM — Premium Jeanswear
   Brand palette derived from official tags: deep brown + gold/mustard
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&family=Cormorant:ital,wght@0,400;1,400&display=swap');

:root {
  /* Brand colors — pulled directly from the official tags */
  --brown-deep: #2a1c12;
  --brown-dark: #3d2818;
  --brown-mid:  #5c3a1f;
  --brown-warm: #7a4a25;
  --brown-tag:  #6b4423;
  --gold:       #d4a13d;
  --gold-bright:#e6b84a;
  --gold-deep:  #b8861f;
  --mustard:    #c9962d;

  /* Neutrals */
  --cream:      #f4ede1;
  --paper:      #ebe2d1;
  --ink:        #1a120a;
  --denim-dark: #1c2937;
  --denim-mid:  #2c3e54;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-stencil: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  /* Layout */
  --max-width: 1400px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color .25s ease; }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26, 18, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 161, 61, 0.15);
  transition: background .3s ease;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.9rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}

.nav-brand {
  display: flex; align-items: center; gap: .75rem;
  color: var(--gold);
}
.nav-brand img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
}
.nav-brand-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: .14em;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-links {
  display: flex; gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 400;
  position: relative;
  padding: .25rem 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: var(--gold);
  transition: width .35s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 32px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 100%; height: 1.5px;
  background: var(--gold);
  transition: transform .3s ease, opacity .3s ease;
}

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 73px; left: 0; right: 0;
    background: var(--brown-deep);
    flex-direction: column;
    padding: 2rem var(--gutter);
    gap: 1.5rem;
    transform: translateY(-120%);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    border-bottom: 1px solid rgba(212, 161, 61, 0.2);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-brand-text { font-size: 1.1rem; }
  .nav-brand img { height: 40px; }
}

/* ==========================================================================
   HERO (Home)
   ========================================================================== */

.hero {
  min-height: 100vh;
  padding: 8rem var(--gutter) 4rem;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(212, 161, 61, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--brown-deep) 0%, var(--ink) 100%);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(212, 161, 61, 0.02) 0 2px, transparent 2px 12px);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .85rem;
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  opacity: 0; animation: fadeUp .8s .1s forwards;
}
.hero-eyebrow::before {
  content: ''; width: 40px; height: 1px; background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 500;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
  opacity: 0; animation: fadeUp .9s .25s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(244, 237, 225, 0.75);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  opacity: 0; animation: fadeUp .9s .4s forwards;
}

.hero-cta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .9s .55s forwards;
}

.btn {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: 1.05rem 2.25rem;
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all .35s ease;
  position: relative;
}
.btn-primary {
  background: var(--gold);
  color: var(--brown-deep);
}
.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 161, 61, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(244, 237, 225, 0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn .arrow {
  display: inline-block;
  transition: transform .3s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

.hero-visual {
  position: relative;
  height: 75vh;
  min-height: 500px;
  opacity: 0; animation: fadeUp 1s .3s forwards;
}
.hero-visual::before {
  content: ''; position: absolute;
  inset: 5% 0 5% 5%;
  background: linear-gradient(135deg, rgba(212, 161, 61, 0.08), transparent);
  border: 1px solid rgba(212, 161, 61, 0.15);
}
.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.6));
  z-index: 2;
}

.hero-badge {
  position: absolute;
  bottom: 5%; left: -5%;
  background: var(--brown-deep);
  border: 1px solid var(--gold);
  padding: 1.25rem 1.75rem;
  display: flex; align-items: center; gap: 1rem;
  z-index: 3;
  opacity: 0; animation: fadeUp .8s .9s forwards;
}
.hero-badge-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.hero-badge-text {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream);
  max-width: 100px;
}

.hero-marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  border-top: 1px solid rgba(212, 161, 61, 0.2);
  border-bottom: 1px solid rgba(212, 161, 61, 0.2);
  overflow: hidden;
  padding: 1rem 0;
}
.marquee-track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 4rem; }
.marquee-track span::after { content: '◆'; color: rgba(212, 161, 61, 0.5); font-size: .7rem; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { height: 50vh; min-height: 380px; order: -1; }
  .hero-badge { left: 0; bottom: 0; }
}

/* ==========================================================================
   SECTION PRIMITIVES
   ========================================================================== */

.section {
  padding: clamp(4rem, 10vw, 8rem) var(--gutter);
  position: relative;
}
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .72rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--brown-warm);
  font-weight: 500;
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--brown-warm);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1.5rem;
  letter-spacing: -.015em;
}
.section-title em {
  font-style: italic;
  color: var(--gold-deep);
}
.section-lead {
  font-size: 1.05rem;
  color: rgba(26, 18, 10, 0.7);
  max-width: 640px;
  line-height: 1.75;
}

.section-dark {
  background: var(--brown-deep);
  color: var(--cream);
}
.section-dark .section-title { color: var(--cream); }
.section-dark .section-lead { color: rgba(244, 237, 225, 0.7); }
.section-dark .section-eyebrow { color: var(--gold); }
.section-dark .section-eyebrow::before { background: var(--gold); }

/* ==========================================================================
   COLLECTIONS GRID (Home)
   ========================================================================== */

.collections {
  background: var(--paper);
}
.collections-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: 4rem;
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.collection-card {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  aspect-ratio: 3/4;
  border: 1px solid rgba(107, 68, 35, 0.08);
}
.collection-card:hover { transform: translateY(-6px); }
.collection-card-img {
  width: 100%; height: 78%;
  background: linear-gradient(180deg, #ece3d3 0%, #d9cdb6 100%);
  overflow: hidden;
  position: relative;
}
.collection-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .8s cubic-bezier(.4,0,.2,1);
}
.collection-card:hover .collection-card-img img { transform: scale(1.05); }
.collection-card-body {
  padding: 1.25rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.collection-card-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.01em;
}
.collection-card-meta {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brown-warm);
}
.collection-card-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--brown-deep);
  color: var(--gold);
  padding: .35rem .75rem;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  z-index: 2;
}

@media (max-width: 880px) {
  .collections-grid { grid-template-columns: 1fr; }
  .collections-head { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FEATURE STRIP — values
   ========================================================================== */

.features {
  background: var(--brown-deep);
  color: var(--cream);
  padding: 5rem var(--gutter);
  position: relative;
}
.features::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(212, 161, 61, 0.08), transparent 50%);
}
.features-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.feature {
  padding: 1.5rem 2rem;
  border-right: 1px solid rgba(212, 161, 61, 0.2);
  text-align: center;
}
.feature:last-child { border-right: none; }
.feature-icon {
  width: 48px; height: 48px;
  margin: 0 auto 1.25rem;
  color: var(--gold);
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.feature-desc {
  font-size: .85rem;
  color: rgba(244, 237, 225, 0.7);
  line-height: 1.6;
}

@media (max-width: 880px) {
  .features-inner { grid-template-columns: repeat(2, 1fr); }
  .feature { border-right: none; border-bottom: 1px solid rgba(212, 161, 61, 0.2); padding: 2rem 1rem; }
  .feature:nth-child(odd) { border-right: 1px solid rgba(212, 161, 61, 0.2); }
}

/* ==========================================================================
   STORY SECTION (Home — about teaser)
   ========================================================================== */

.story {
  background: var(--cream);
  padding: clamp(4rem, 10vw, 8rem) var(--gutter);
}
.story-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.story-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--brown-deep);
  overflow: hidden;
}
.story-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.story-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(26, 18, 10, 0.3));
}
.story-quote {
  position: absolute; bottom: 2rem; left: 2rem; right: 2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--cream);
  z-index: 2;
  line-height: 1.4;
}
.story-content h2 { margin-bottom: 2rem; }
.story-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(26, 18, 10, 0.75);
  margin-bottom: 1.5rem;
}
.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(107, 68, 35, 0.2);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--gold-deep);
  line-height: 1;
  margin-bottom: .25rem;
}
.stat-label {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brown-warm);
}

@media (max-width: 880px) {
  .story-inner { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 5rem var(--gutter) 2rem;
  border-top: 1px solid rgba(212, 161, 61, 0.15);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand img {
  height: 64px;
  margin-bottom: 1.25rem;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-desc {
  font-size: .9rem;
  color: rgba(244, 237, 225, 0.6);
  line-height: 1.7;
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
  display: flex; flex-direction: column; gap: .85rem;
}
.footer-col a {
  font-size: .9rem;
  color: rgba(244, 237, 225, 0.7);
  transition: color .25s ease;
}
.footer-col a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex; gap: .75rem;
  font-size: .88rem;
  color: rgba(244, 237, 225, 0.7);
  margin-bottom: 1rem;
}
.footer-contact-item svg {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px;
  color: var(--gold);
}
.footer-bar {
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 161, 61, 0.15);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: .8rem;
  color: rgba(244, 237, 225, 0.5);
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.4,0,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

.page-hero {
  padding: 10rem var(--gutter) 5rem;
  background:
    linear-gradient(180deg, var(--brown-deep) 0%, var(--brown-dark) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(ellipse at 80% 20%, rgba(212, 161, 61, 0.12), transparent 50%);
}
.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 1rem;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.page-hero-sub {
  font-size: 1.1rem;
  color: rgba(244, 237, 225, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.timeline {
  background: var(--cream);
  position: relative;
}
.timeline-list {
  max-width: 900px;
  margin: 4rem auto 0;
  position: relative;
}
.timeline-list::before {
  content: ''; position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px; background: rgba(107, 68, 35, 0.2);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}
.timeline-item:nth-child(even) .timeline-content {
  grid-column: 3;
  text-align: left;
}
.timeline-item:nth-child(even) .timeline-spacer {
  grid-column: 1;
}
.timeline-content {
  text-align: right;
}
.timeline-item:nth-child(odd) .timeline-content { grid-column: 1; }
.timeline-item:nth-child(odd) .timeline-spacer { grid-column: 3; }
.timeline-year {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: .25rem;
}
.timeline-text {
  font-size: .95rem;
  color: rgba(26, 18, 10, 0.75);
  line-height: 1.6;
}
.timeline-dot {
  width: 14px; height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 1px var(--gold);
  z-index: 2;
}

@media (max-width: 700px) {
  .timeline-list::before { left: 8px; }
  .timeline-item { grid-template-columns: auto 1fr; gap: 1rem; }
  .timeline-content,
  .timeline-item:nth-child(even) .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content {
    grid-column: 2;
    text-align: left;
  }
  .timeline-spacer { display: none; }
  .timeline-dot { grid-column: 1; }
}

.manufacturing {
  background: var(--brown-deep);
  color: var(--cream);
}
.manufacturing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 4rem;
}
.mfg-card {
  background: var(--brown-dark);
  padding: 0;
  border: 1px solid rgba(212, 161, 61, 0.1);
  overflow: hidden;
  transition: transform .4s ease, border-color .4s ease;
}
.mfg-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 161, 61, 0.4);
}
.mfg-card-visual {
  height: 240px;
  background: linear-gradient(135deg, var(--brown-warm), var(--brown-deep));
  position: relative;
  overflow: hidden;
}
.mfg-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .8s cubic-bezier(.4,0,.2,1);
}
.mfg-card:hover .mfg-card-visual img {
  transform: scale(1.04);
}
.mfg-card-visual svg {
  width: 80px; height: 80px;
  color: rgba(212, 161, 61, 0.4);
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.mfg-card-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26, 18, 10, 0.4));
  pointer-events: none;
}
.mfg-card-body {
  padding: 1.75rem;
}
.mfg-card-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: .5rem;
}
.mfg-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .75rem;
  letter-spacing: -.01em;
}
.mfg-card-desc {
  font-size: .9rem;
  color: rgba(244, 237, 225, 0.65);
  line-height: 1.65;
}

@media (max-width: 880px) {
  .manufacturing-grid { grid-template-columns: 1fr; }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.value-card {
  padding: 2.5rem 2rem;
  background: var(--paper);
  border-left: 3px solid var(--gold);
}
.value-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--brown-warm);
  margin-bottom: .75rem;
}
.value-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}
.value-desc {
  font-size: .95rem;
  color: rgba(26, 18, 10, 0.7);
  line-height: 1.7;
}

@media (max-width: 880px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PRODUCTS PAGE
   ========================================================================== */

.products-intro {
  background: var(--cream);
  text-align: center;
  padding: 3rem var(--gutter);
}

.product-filters {
  display: flex; justify-content: center; gap: 1rem;
  margin: 2rem 0 4rem;
  flex-wrap: wrap;
}
.filter-btn {
  background: transparent;
  border: 1px solid rgba(107, 68, 35, 0.3);
  padding: .75rem 1.5rem;
  font-family: var(--font-body);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brown-deep);
  cursor: pointer;
  transition: all .3s ease;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--brown-deep);
  color: var(--gold);
  border-color: var(--brown-deep);
}

.products-grid {
  background: var(--cream);
  padding: 0 var(--gutter) 6rem;
}
.products-grid-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.product-card {
  background: var(--paper);
  overflow: hidden;
  position: relative;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.product-card:hover { transform: translateY(-6px); }
.product-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, #ebe2d1, #d9cdb6);
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.4,0,.2,1);
}
.product-card:hover .product-card-img img { transform: scale(1.04); }

/* Portrait-style product image — for tall multi-view product photos and catalogs;
   shows the entire image instead of cropping like the default landscape card */
.product-card-img.is-portrait {
  aspect-ratio: 3/4;
  background: #f1ece2;
}
.product-card-img.is-portrait img {
  object-fit: contain;
  padding: 0;
}
.product-card-img.is-catalog {
  aspect-ratio: 3/4;
  background: #0e0a06;
}
.product-card-img.is-catalog img {
  object-fit: contain;
  padding: 0;
}
.product-card-body {
  padding: 2rem 2rem 2.5rem;
}
.product-card-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: .75rem;
}
.product-card-cat {
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--brown-warm);
}
.product-card-sizes {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-deep);
  font-style: italic;
}
.product-card-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .5rem;
  letter-spacing: -.015em;
}
.product-card-sub {
  font-size: .95rem;
  color: rgba(26, 18, 10, 0.65);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.product-card-colors {
  display: flex; gap: .5rem;
  margin-top: 1.25rem;
}
.color-swatch {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(107, 68, 35, 0.2);
}

@media (max-width: 700px) {
  .products-grid-inner { grid-template-columns: 1fr; }
}

/* ==========================================================================
   QUALITY/TAGS SECTION
   ========================================================================== */

.quality {
  background: var(--brown-deep);
  color: var(--cream);
  padding: 6rem var(--gutter);
}
.quality-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.quality-img {
  border: 1px solid rgba(212, 161, 61, 0.2);
  padding: 1rem;
  background: rgba(0,0,0,0.2);
}
.quality-content h2 { color: var(--cream); margin-bottom: 1.5rem; }
.quality-content p {
  font-size: 1rem;
  color: rgba(244, 237, 225, 0.75);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.quality-list {
  list-style: none;
  margin-top: 2rem;
}
.quality-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(212, 161, 61, 0.1);
  font-size: .95rem;
  color: rgba(244, 237, 225, 0.85);
}
.quality-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: .7rem;
  margin-top: 6px;
  flex-shrink: 0;
}

@media (max-width: 880px) {
  .quality-inner { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-section {
  background: var(--cream);
  padding: 6rem var(--gutter);
}
.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-info-card {
  background: var(--brown-deep);
  color: var(--cream);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(212, 161, 61, 0.15), transparent 70%);
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 2rem;
  font-weight: 500;
  letter-spacing: -.01em;
  position: relative;
}
.contact-block {
  display: flex; gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(212, 161, 61, 0.15);
  position: relative;
}
.contact-block:last-of-type { border-bottom: none; }
.contact-block-icon {
  width: 44px; height: 44px;
  background: rgba(212, 161, 61, 0.1);
  border: 1px solid rgba(212, 161, 61, 0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-block-icon svg { width: 20px; height: 20px; }
.contact-block-label {
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .35rem;
}
.contact-block-text {
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.5;
}
.contact-block-text a:hover { color: var(--gold); }

.contact-form {
  background: var(--paper);
  padding: 3rem;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ink);
  margin-bottom: .5rem;
  font-weight: 500;
}
.contact-form p {
  color: rgba(26, 18, 10, 0.65);
  margin-bottom: 2rem;
  font-size: .95rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--brown-warm);
  margin-bottom: .5rem;
  font-weight: 500;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: .9rem 1rem;
  background: var(--cream);
  border: 1px solid rgba(107, 68, 35, 0.2);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink);
  transition: border-color .25s ease;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold-deep);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  background: var(--brown-deep);
  color: var(--gold);
  padding: 1.1rem 2.5rem;
  border: none;
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all .3s ease;
  margin-top: 1rem;
}
.form-submit:hover {
  background: var(--gold);
  color: var(--brown-deep);
}

@media (max-width: 880px) {
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form,
  .contact-info-card { padding: 2rem; }
}

/* ==========================================================================
   FAQ / extras
   ========================================================================== */

.faq {
  background: var(--paper);
  padding: 6rem var(--gutter);
}
.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}
.faq-list {
  margin-top: 3rem;
}
.faq-item {
  border-bottom: 1px solid rgba(107, 68, 35, 0.15);
}
.faq-q {
  width: 100%;
  background: none; border: none;
  padding: 1.75rem 0;
  display: flex; justify-content: space-between; align-items: center;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  font-weight: 500;
  transition: color .25s ease;
}
.faq-q:hover { color: var(--gold-deep); }
.faq-q .plus {
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--gold-deep);
  font-weight: 300;
  transition: transform .3s ease;
}
.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  color: rgba(26, 18, 10, 0.7);
  font-size: .95rem;
  line-height: 1.7;
  padding: 0;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 0 1.75rem 0;
}
