/* ============================================================
   ULISS — Page-specific styles
============================================================ */

/* ==========================================================
   HOMEPAGE — HERO
========================================================== */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 7rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background: var(--cream);
}
.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -80px;
  width: 300px;
  height: 300px;
  background: var(--ultramarine);
  border-radius: 50%;
  opacity: 0.08;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -80px;
  width: 220px;
  height: 220px;
  background: var(--scarlet);
  border-radius: 50%;
  opacity: 0.08;
  z-index: 0;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero-content { max-width: 680px; }
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--scarlet);
  margin-bottom: 2rem;
}
.hero-label::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--scarlet);
}
.hero h1 {
  margin-bottom: 2rem;
  line-height: 1.05;
}
.hero h1 .highlight-blue { color: var(--ultramarine); font-style: italic; font-weight: 400; }
.hero h1 .highlight-red { color: var(--scarlet); font-weight: 800; }
.hero h1 .highlight-gold {
  color: var(--ink);
  background: linear-gradient(180deg, transparent 58%, var(--gold) 58%, var(--gold) 92%, transparent 92%);
  padding: 0 0.2em;
}
.hero-sub {
  font-size: 1.22rem;
  color: #333;
  margin-bottom: 2.75rem;
  max-width: 560px;
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 540px;
  margin-left: auto;
}
.hero-frame-1,
.hero-frame-2 {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}
.hero-frame-1 {
  top: 0; left: 10%; right: 0; bottom: 15%;
  z-index: 2;
}
.hero-frame-1 img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-frame-2 {
  bottom: 0; left: 0; width: 55%; aspect-ratio: 4/5;
  z-index: 1;
  border: 6px solid var(--gold);
}
.hero-frame-2 img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-sticker {
  position: absolute;
  top: -20px; right: -20px;
  background: var(--scarlet);
  color: var(--white);
  padding: 1.1rem 1.3rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 600;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(230, 50, 38, 0.35);
  transform: rotate(6deg);
}
.hero-dot {
  position: absolute;
  width: 80px; height: 80px;
  background: var(--ultramarine);
  border-radius: 50%;
  bottom: 20%; right: 8%;
  z-index: 3;
}

.hero-stats {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 2px solid var(--ink);
}
.stat-item .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  display: block;
  color: var(--ultramarine);
  line-height: 1;
}
.stat-item:nth-child(2) .stat-num { color: var(--scarlet); }
.stat-item:nth-child(3) .stat-num { color: var(--gold-deep); }
.stat-item:nth-child(4) .stat-num { color: var(--ink); }
.stat-item .stat-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
  display: block;
}

/* ==========================================================
   HOMEPAGE — INTRO STRIP (teaser links to inner pages)
========================================================== */
.intro-strip {
  padding: 5rem 0;
  background: var(--ink);
  color: var(--white);
}
.intro-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.intro-tile {
  padding: 2.75rem 2.25rem;
  position: relative;
  transition: background .4s var(--ease);
  border-right: 1px solid rgba(255,255,255,0.15);
}
.intro-tile:last-child { border-right: none; }
.intro-tile:hover { background: rgba(255, 255, 255, 0.04); }
.intro-tile .tile-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.intro-tile h3 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.intro-tile p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}
.intro-tile a {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap .25s;
}
.intro-tile a:hover { gap: 0.9rem; color: var(--white); }

/* ==========================================================
   HOMEPAGE — FEATURED STRIP
========================================================== */
.featured-strip {
  padding: 6rem 0;
  background: var(--cream);
}
.featured-carousel {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
}
.featured-carousel .tile {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--ink);
  transition: transform .4s var(--ease);
}
.featured-carousel .tile:nth-child(odd) { transform: translateY(20px); }
.featured-carousel .tile:hover { transform: translateY(-8px); }
.featured-carousel .tile:nth-child(odd):hover { transform: translateY(10px); }
.featured-carousel .tile img {
  width: 100%; height: 100%; object-fit: cover;
}

/* ==========================================================
   ABOUT PAGE
========================================================== */
.about-intro {
  padding: 7rem 0 3rem;
  background: var(--cream);
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.about-visual-stack {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 1rem;
}
.about-visual-stack .v-1 {
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 5px solid var(--gold);
}
.about-visual-stack .v-1 img { width: 100%; height: 100%; object-fit: cover; }
.about-visual-stack .v-2 {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-left: 3rem;
  margin-top: -2rem;
  background: var(--ultramarine);
  position: relative;
}
.about-visual-stack .v-2 img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; opacity: 0.85; }

.about-intro-content p {
  margin-bottom: 1.6rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2a2a35;
}
.about-intro-content p:first-of-type {
  font-size: 1.35rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.55;
}
.about-intro-content p:first-of-type::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 4.8rem;
  font-weight: 800;
  float: left;
  line-height: 0.85;
  margin: 0.35rem 0.8rem -0.2rem 0;
  color: var(--scarlet);
}

/* VALUES section */
.values {
  padding: 6rem 0;
  background: var(--white);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.value-card {
  padding: 2.5rem;
  background: var(--cream);
  border-top: 5px solid var(--ultramarine);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.value-card:nth-child(2) { border-top-color: var(--scarlet); }
.value-card:nth-child(3) { border-top-color: var(--gold); }
.value-card:nth-child(4) { border-top-color: var(--scarlet); }
.value-card:nth-child(5) { border-top-color: var(--gold); }
.value-card:nth-child(6) { border-top-color: var(--ultramarine); }
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}
.value-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2.75rem;
  color: var(--ultramarine);
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
  font-weight: 700;
}
.value-card:nth-child(2) .value-num { color: var(--scarlet); }
.value-card:nth-child(3) .value-num { color: var(--gold-deep); }
.value-card:nth-child(4) .value-num { color: var(--scarlet); }
.value-card:nth-child(5) .value-num { color: var(--gold-deep); }
.value-card:nth-child(6) .value-num { color: var(--ultramarine); }
.value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.value-card p {
  font-size: 0.98rem;
  color: #2a2a35;
  line-height: 1.7;
}

/* Timeline */
.timeline {
  padding: 6rem 0;
  background: var(--cream);
}
.timeline-list {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  padding-left: 3rem;
}
.timeline-list::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--ink);
}
.timeline-item {
  position: relative;
  padding-bottom: 3rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -3rem;
  top: 8px;
  width: 16px;
  height: 16px;
  background: var(--scarlet);
  border: 3px solid var(--cream);
  outline: 2px solid var(--ink);
  border-radius: 50%;
}
.timeline-item:nth-child(2)::before { background: var(--ultramarine); }
.timeline-item:nth-child(3)::before { background: var(--gold); }
.timeline-item:nth-child(4)::before { background: var(--scarlet); }
.timeline-year {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--scarlet);
  letter-spacing: 0.04em;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}
.timeline-item:nth-child(2) .timeline-year { color: var(--ultramarine); }
.timeline-item:nth-child(3) .timeline-year { color: var(--gold-deep); }
.timeline-item h3 { margin-bottom: 0.75rem; }
.timeline-item p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #333;
}

/* ==========================================================
   SERVICES PAGE
========================================================== */
.services-intro {
  padding: 6rem 0 3rem;
  background: var(--cream);
}
.services-intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.services-intro-content p {
  font-size: 1.22rem;
  line-height: 1.7;
  color: #2a2a35;
}

.services-list {
  padding: 4rem 0 7rem;
  background: var(--cream);
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
  padding: 3rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.service-row:last-child { margin-bottom: 0; }
.service-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--ultramarine);
}
.service-row:nth-child(2)::before { background: var(--scarlet); }
.service-row:nth-child(3)::before { background: var(--gold); }
.service-row:nth-child(4)::before { background: var(--scarlet); }
.service-row:nth-child(5)::before { background: var(--gold); }
.service-row:nth-child(6)::before { background: var(--ultramarine); }

.service-row.reverse { grid-template-columns: 1.2fr 1fr; }
.service-row.reverse .service-visual { order: 2; }
.service-row.reverse .service-copy { order: 1; }

.service-visual {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.service-visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.service-visual-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--ink);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2rem;
  font-weight: 700;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-copy .eyebrow { color: var(--ultramarine); }
.service-copy .eyebrow::before { background: var(--ultramarine); }
.service-row:nth-child(2) .service-copy .eyebrow { color: var(--scarlet); }
.service-row:nth-child(2) .service-copy .eyebrow::before { background: var(--scarlet); }
.service-row:nth-child(3) .service-copy .eyebrow { color: var(--gold-deep); }
.service-row:nth-child(3) .service-copy .eyebrow::before { background: var(--gold-deep); }
.service-row:nth-child(4) .service-copy .eyebrow { color: var(--scarlet); }
.service-row:nth-child(4) .service-copy .eyebrow::before { background: var(--scarlet); }
.service-row:nth-child(5) .service-copy .eyebrow { color: var(--gold-deep); }
.service-row:nth-child(5) .service-copy .eyebrow::before { background: var(--gold-deep); }

.service-copy h2 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); margin-bottom: 1.25rem; }
.service-copy p { margin-bottom: 1.25rem; line-height: 1.75; font-size: 1.04rem; color: #2a2a35; }
.service-copy ul {
  margin-top: 1.5rem;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1.5rem;
}
.service-copy ul li {
  font-size: 0.92rem;
  padding-left: 1.2rem;
  position: relative;
  color: #333;
  line-height: 1.5;
}
.service-copy ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--scarlet);
  font-weight: 700;
}

/* ==========================================================
   COLLECTIONS PAGE
========================================================== */
.collections-intro {
  padding: 6rem 0 3rem;
  background: var(--cream);
}
.collections-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}
.collections-intro-grid h2 { margin-bottom: 1.5rem; }
.collections-intro-grid p {
  margin-bottom: 1.25rem;
  font-size: 1.08rem;
  line-height: 1.75;
  color: #2a2a35;
}
.collections-intro-visual {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.collections-intro-visual img { width: 100%; height: 100%; object-fit: cover; }

.filter-bar {
  padding: 3rem 0 2rem;
  background: var(--cream);
  position: sticky;
  top: 73px;
  z-index: 50;
  border-bottom: 1px solid var(--border);
}
.filter-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-btn {
  padding: 0.75rem 1.4rem;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
  transition: all .25s var(--ease);
}
.filter-btn:hover { background: var(--ink); color: var(--white); }
.filter-btn.active { background: var(--scarlet); color: var(--white); border-color: var(--scarlet); }

.gallery-section {
  padding: 3rem 0 7rem;
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 11, 18, 0.9) 0%, transparent 55%);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay .artist {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-weight: 700;
}
.gallery-overlay .title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.25rem;
}
.gallery-overlay .year {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 11, 18, 0.96);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox-image {
  max-width: 85vw;
  max-height: 80vh;
  object-fit: contain;
}
.lightbox-caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  text-align: center;
}
.lightbox-caption strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.lightbox-caption span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: transparent;
  color: var(--white);
  width: 50px; height: 50px;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all .2s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--scarlet);
  border-color: var(--scarlet);
}
.lightbox-close { top: 2rem; right: 2rem; }
.lightbox-prev { left: 2rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 2rem; top: 50%; transform: translateY(-50%); }

/* ==========================================================
   NEURO-ART PRODUCTS PAGE
========================================================== */
.products-page {
  padding: 6rem 0;
  background: var(--cream);
}
.product-block {
  margin-bottom: 8rem;
  padding-bottom: 8rem;
  border-bottom: 1px solid var(--border);
}
.product-block:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

.product-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 4rem;
}
.product-label {
  display: inline-block;
  padding: 0.45rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.product-label.one { background: var(--ultramarine); color: var(--white); }
.product-label.two { background: var(--scarlet); color: var(--white); }
.product-label.three { background: var(--gold); color: var(--ink); }

.product-intro h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}
.product-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ultramarine);
  margin-top: 1rem;
  line-height: 1.4;
}
.product-block:nth-child(2) .product-tagline { color: var(--scarlet); }
.product-block:nth-child(3) .product-tagline { color: var(--gold-deep); }

.product-hero-visual {
  aspect-ratio: 16/7;
  overflow: hidden;
  position: relative;
  margin-bottom: 5rem;
  background: var(--ink);
}
.product-hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.8;
  filter: saturate(1.1);
}
.product-hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 47, 212, 0.35) 0%, transparent 50%, rgba(230, 50, 38, 0.3) 100%);
}
.product-block:nth-child(2) .product-hero-visual::after {
  background: linear-gradient(135deg, rgba(230, 50, 38, 0.35) 0%, transparent 50%, rgba(245, 183, 0, 0.35) 100%);
}
.product-block:nth-child(3) .product-hero-visual::after {
  background: linear-gradient(135deg, rgba(245, 183, 0, 0.4) 0%, transparent 50%, rgba(27, 47, 212, 0.3) 100%);
}

.product-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.product-body p {
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #2a2a35;
}
.product-body p:first-child::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 800;
  float: left;
  line-height: 0.9;
  margin: 0.3rem 0.75rem -0.2rem 0;
  color: var(--ultramarine);
}
.product-block:nth-child(2) .product-body p:first-child::first-letter { color: var(--scarlet); }
.product-block:nth-child(3) .product-body p:first-child::first-letter { color: var(--gold-deep); }

.product-highlight {
  padding: 2.5rem;
  background: var(--ink);
  color: var(--white);
}
.product-highlight h4 {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-family: 'Inter', sans-serif;
}
.product-highlight p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0;
}

.product-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.feature-card {
  padding: 2rem;
  background: var(--white);
  border-left: 4px solid var(--ultramarine);
}
.product-block:nth-child(2) .feature-card { border-left-color: var(--scarlet); }
.product-block:nth-child(3) .feature-card { border-left-color: var(--gold); }
.feature-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
}
.feature-card p {
  font-size: 0.96rem;
  color: #333;
  line-height: 1.7;
}

/* ==========================================================
   PARTNERS PAGE
========================================================== */
.partners-intro {
  padding: 6rem 0;
  background: var(--cream);
}
.partners-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
}
.partners-intro h2 { margin-bottom: 1.5rem; }
.partners-intro-grid p {
  margin-bottom: 1.25rem;
  font-size: 1.08rem;
  line-height: 1.75;
  color: #2a2a35;
}

.partners-models {
  padding: 5rem 0;
  background: var(--white);
}
.models-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.model-card {
  background: var(--cream);
  padding: 2.5rem 1.75rem;
  text-align: left;
  transition: all .4s var(--ease);
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.model-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 5px;
  background: var(--ultramarine);
  transition: height .35s var(--ease);
}
.model-card:nth-child(2)::before { background: var(--scarlet); }
.model-card:nth-child(3)::before { background: var(--gold); }
.model-card:nth-child(4)::before { background: var(--scarlet); }
.model-card:nth-child(5)::before { background: var(--ultramarine); }
.model-card:hover::before { height: 100%; opacity: 0.1; }
.model-card:hover { transform: translateY(-6px); }
.model-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2.5rem;
  color: var(--ultramarine);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.model-card:nth-child(2) .model-num { color: var(--scarlet); }
.model-card:nth-child(3) .model-num { color: var(--gold-deep); }
.model-card:nth-child(4) .model-num { color: var(--scarlet); }
.model-card:nth-child(5) .model-num { color: var(--ultramarine); }
.model-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
  line-height: 1.25;
}
.model-card p {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.6;
}

.partners-audience {
  padding: 6rem 0;
  background: var(--cream);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.audience-card {
  padding: 2.25rem 1.75rem;
  background: var(--ink);
  color: var(--white);
  transition: background .35s;
}
.audience-card:hover { background: var(--ultramarine); }
.audience-card:nth-child(even):hover { background: var(--scarlet); }
.audience-card h4 {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}
.audience-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.audience-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ==========================================================
   CONTACT PAGE
========================================================== */
.contact-page {
  padding: 6rem 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
}
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info > p {
  font-size: 1.14rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 3rem;
}
.contact-details {
  list-style: none;
  margin-bottom: 3rem;
}
.contact-details li {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  align-items: center;
}
.contact-details li:last-child { border-bottom: 1px solid var(--border); }
.contact-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--scarlet);
}
.contact-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--ink);
}
.contact-value a { transition: color .2s; color: var(--ultramarine); }
.contact-value a:hover { color: var(--scarlet); }

.contact-card {
  background: var(--ink);
  color: var(--white);
  padding: 2rem;
  margin-top: 3rem;
}
.contact-card h4 {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}
.contact-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-form {
  background: var(--white);
  padding: 3.5rem 3rem;
  border-top: 6px solid var(--scarlet);
}
.contact-form h3 {
  margin-bottom: 2rem;
  font-size: 1.8rem;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1.25rem;
}
.form-group { position: relative; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 0;
  border: none;
  border-bottom: 2px solid rgba(11, 11, 18, 0.2);
  background: transparent;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color .25s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-bottom-color: var(--scarlet);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { margin-top: 2.5rem; }
.form-submit .btn { width: 100%; justify-content: center; }

/* ==========================================================
   RESPONSIVE
========================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .hero-visual { margin: 0 auto; max-width: 460px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .about-intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual-stack { position: static; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .service-row, .service-row.reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2rem;
  }
  .service-row.reverse .service-visual { order: 0; }
  .service-row.reverse .service-copy { order: 0; }
  .collections-intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .product-body { grid-template-columns: 1fr; gap: 2.5rem; }
  .partners-intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .models-grid { grid-template-columns: repeat(3, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .intro-strip-grid { grid-template-columns: 1fr; }
  .intro-tile { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .intro-tile:last-child { border-bottom: none; }
  .featured-carousel { grid-template-columns: repeat(3, 1fr); }
  .featured-carousel .tile:nth-child(4),
  .featured-carousel .tile:nth-child(5) { display: none; }
}

@media (max-width: 820px) {
  .hero { min-height: auto; padding-top: 7rem; padding-bottom: 4rem; }
  .hero-sub { font-size: 1.05rem; margin-bottom: 2rem; }
  .hero-stats { padding-top: 2rem; margin-top: 3rem; gap: 1.5rem; }
  .values-grid { grid-template-columns: 1fr; }
  .service-copy ul { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .product-features-grid { grid-template-columns: 1fr; }
  .models-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: 1fr; }
  .contact-details li { grid-template-columns: 1fr; gap: 0.4rem; }
  .contact-form { padding: 2.25rem 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .filter-buttons { gap: 0.4rem; }
  .filter-btn { padding: 0.6rem 1rem; font-size: 0.72rem; }
  .featured-carousel { grid-template-columns: repeat(2, 1fr); }
  .featured-carousel .tile:nth-child(3) { display: none; }
  .timeline-list { padding-left: 2.5rem; }
  .timeline-item::before { left: -2.5rem; }
  .lightbox-close { top: 1rem; right: 1rem; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}
