/* ===================================
   PAGE-SPECIFIC STYLES
   =================================== */

/* ─── ABOUT PAGE ─────────────────────── */
.about-hero {
  background: var(--black);
  height: 60vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?q=80&w=2000');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.95) 30%, rgba(10,10,10,0.6) 100%);
}
.about-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}
.about-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.about-hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  line-height: 1.7;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.philosophy-card {
  padding: 40px 32px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--med);
}
.philosophy-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.philosophy-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.philosophy-card h3 span {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  display: flex; align-items: center; justify-content: center;
}
.philosophy-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

.vision-block {
  background: var(--black);
  border-radius: 12px;
  padding: 60px 70px;
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 60px;
  align-items: center;
}
.vision-block::before {
  content: '"';
  position: absolute;
  top: -20px; right: 40px;
  font-size: 200px;
  font-weight: 900;
  color: rgba(214,40,40,0.15);
  font-family: Georgia, serif;
  line-height: 1;
}
.vision-block .vision-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  flex-shrink: 0;
}
.vision-block blockquote {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.6;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.timeline {
  margin-top: 80px;
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 10px; bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--red), rgba(214,40,40,0.1));
}
.timeline-item {
  position: relative;
  padding-bottom: 48px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -44px; top: 8px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(214,40,40,0.15);
}
.timeline-year {
  font-size: 0.75rem; font-weight: 700;
  color: var(--red); text-transform: uppercase;
  letter-spacing: 0.12em; margin-bottom: 8px;
}
.timeline-item h4 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.timeline-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ─── PRODUCTS PAGE ────────────────────── */
.products-hero {
  background: var(--black);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.products-hero::before {
  content: 'PRODUCTS';
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 180px;
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.products-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
}
.products-hero p { color: rgba(255,255,255,0.55); font-size: 1.05rem; margin-top: 16px; max-width: 500px; }

/* ─── CATEGORY & COLLECTION STYLES ───── */
.product-cat-tag {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.product-code-meta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey-400);
  margin-bottom: 12px;
}

/* Category Specific Styles */
.category-hero {
  background: var(--black);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.category-hero::before {
  content: attr(data-watermark);
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 180px;
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  letter-spacing: -0.04em;
  white-space: nowrap;
  pointer-events: none;
  text-transform: uppercase;
}

.category-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin: 12px 0;
}

.category-hero p.lead {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  margin-top: 16px;
  max-width: 650px;
}

.category-eyebrow {
  color: var(--red-light);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
}

.sub-cat-nav {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  overflow-x: auto;
  padding-bottom: 15px;
  scrollbar-width: none;
  position: relative;
  z-index: 2;
}

.sub-cat-nav::-webkit-scrollbar { display: none; }

.sub-cat-btn {
  padding: 10px 24px;
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s;
  cursor: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sub-cat-btn:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}

.sub-cat-btn.active {
  background: var(--red);
  color: white;
  border-color: var(--red);
  box-shadow: 0 10px 20px rgba(214,40,40,0.2);
}

.product-finishes-mini {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.finish-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grey-200);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}
.finish-more {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--grey-500);
}

.product-load-more-wrap {
  text-align: center;
  margin-top: 60px;
}

/* ─── EXHIBITION PAGE ─────────────────── */
.exhibition-hero {
  background: var(--black);
  padding: 150px 0 90px;
  position: relative;
}
.exhibition-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
}
.exhibition-hero p { color: rgba(255,255,255,0.55); margin-top: 16px; font-size: 1.05rem; max-width: 500px; }

.presence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  overflow: hidden;
  border-radius: 12px;
}
.presence-tile {
  background: var(--grey-100);
  padding: 36px 28px;
  text-align: center;
  transition: background var(--fast);
}
.presence-tile:hover { background: var(--red); color: var(--white); }
.presence-tile i { font-size: 2rem; color: var(--red); margin-bottom: 18px; display: block; }
.presence-tile:hover i { color: var(--white); }
.presence-tile h4 { font-size: 0.9rem; font-weight: 800; }

/* ─── FOUNDER PAGE ─────────────────────── */
.founder-hero {
  background: var(--black);
  padding: 140px 0 80px;
}
.founder-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 900;
}
.founder-hero p { color: rgba(255,255,255,0.55); margin-top: 16px; font-size: 1.05rem; }

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.cred-card {
  padding: 32px;
  background: var(--grey-100);
  border-radius: 8px;
  border-left: 3px solid var(--red);
  transition: all var(--med);
}
.cred-card:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.cred-card .num { font-size: 2.5rem; font-weight: 900; color: var(--red); line-height: 1; display: block; }
.cred-card p { font-size: 0.88rem; color: var(--text-muted); margin-top: 8px; line-height: 1.5; }

/* ─── CONTACT PAGE ─────────────────────── */
.contact-hero {
  background: var(--black);
  padding: 140px 0 80px;
}
.contact-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 900;
}
.contact-hero p { color: rgba(255,255,255,0.55); margin-top: 16px; font-size: 1.05rem; }

/* Map embed */
.map-embed {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 60px;
  border: none;
}

/* Success msg */
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}
.form-success i { font-size: 3rem; color: #25D366; margin-bottom: 16px; }
.form-success h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.form-success p { color: var(--text-muted); }

/* ─── INDEX PAGE EXTRA ────────────────── */
.cta-section {
  background: var(--red);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 36px;
}

@media (max-width: 768px) {
  .philosophy-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .vision-block { flex-direction: column; padding: 40px 28px; gap: 20px; }
  .vision-block .vision-label { writing-mode: horizontal-tb; transform: none; }
  .presence-grid { grid-template-columns: repeat(2, 1fr); }
}
