/* ULISS — Page-specific styles */

/* HOME — HERO (compact for MacBook 13/14/16") */
.hero {
  /* Goal: full hero fits in ~700-760px viewport on MacBook (after 73px header) */
  display: flex; align-items: center;
  position: relative;
  padding: 6rem 0 3.5rem;
  overflow: hidden;
  background: var(--cream);
}
.hero::before {
  content: ''; position: absolute; top: 10%; right: -80px;
  width: 280px; height: 280px; background: var(--ultramarine);
  border-radius: 50%; opacity: 0.08; z-index: 0;
}
.hero::after {
  content: ''; position: absolute; bottom: 10%; left: -80px;
  width: 200px; height: 200px; 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.15fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-content { max-width: 640px; }
.hero-label {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--scarlet); margin-bottom: 1.4rem;
}
.hero-label::before { content: ''; width: 36px; height: 2px; background: var(--scarlet); }
.hero h1 {
  margin-bottom: 1.5rem;
  line-height: 1.05;
  font-size: clamp(2.2rem, 5vw, 4rem);
}
.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.1rem; color: #333;
  margin-bottom: 1.8rem; max-width: 540px; line-height: 1.55;
}
.hero-ctas { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.hero-ctas .btn { padding: 0.95rem 1.7rem; font-size: 0.78rem; }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 4.6;
  max-width: 460px; margin-left: auto;
}
.hero-frame-1, .hero-frame-2 {
  position: absolute; overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
}
.hero-frame-1 { top: 0; left: 10%; right: 0; bottom: 18%; 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: 5px solid var(--gold);
}
.hero-frame-2 img { width: 100%; height: 100%; object-fit: cover; }
.hero-sticker {
  position: absolute; top: -15px; right: -15px;
  background: var(--scarlet); color: var(--white);
  padding: 0.85rem 1.05rem;
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 0.92rem; line-height: 1.2; font-weight: 600;
  z-index: 3;
  box-shadow: 0 8px 25px rgba(230, 50, 38, 0.35);
  transform: rotate(6deg);
}
.hero-dot {
  position: absolute; width: 65px; height: 65px;
  background: var(--ultramarine); border-radius: 50%;
  bottom: 22%; right: 8%; z-index: 3;
}

/* Compact stats bar — inline below hero on desktop */
.hero-stats-compact {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  margin-top: 1.8rem; padding-top: 1.4rem;
  border-top: 1px solid var(--border);
}
.hero-stats-compact .stat {
  display: flex; align-items: baseline; gap: 0.55rem;
}
.hero-stats-compact .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem; font-weight: 800;
  line-height: 1;
}
.hero-stats-compact .stat:nth-child(1) .stat-num { color: var(--ultramarine); }
.hero-stats-compact .stat:nth-child(2) .stat-num { color: var(--scarlet); }
.hero-stats-compact .stat:nth-child(3) .stat-num { color: var(--gold-deep); }
.hero-stats-compact .stat:nth-child(4) .stat-num { color: var(--ink); }
.hero-stats-compact .stat-label {
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}

/* HOMEPAGE — INTRO STRIP */
.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.6rem 2.2rem; 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.45rem; }
.intro-tile p { color: rgba(255, 255, 255, 0.7); font-size: 0.96rem; margin-bottom: 1.4rem; line-height: 1.6; }
.intro-tile a {
  color: var(--gold); font-size: 0.8rem; 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: 5.5rem 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: 6rem 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.5rem; font-size: 1.08rem; line-height: 1.75; color: #2a2a35; }
.about-intro-content p:first-of-type { font-size: 1.3rem; 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.6rem; font-weight: 800;
  float: left; line-height: 0.85;
  margin: 0.35rem 0.8rem -0.2rem 0;
  color: var(--scarlet);
}

/* VALUES */
.values { padding: 6rem 0; background: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-card {
  padding: 2.4rem; 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.6rem; 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.3rem; margin-bottom: 1rem; }
.value-card p { font-size: 0.97rem; 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: 2.8rem; }
.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);
  font-weight: 700; margin-bottom: 0.4rem; 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.6rem; }
.timeline-item p { font-size: 1rem; line-height: 1.7; color: #333; }

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

.services-list { padding: 4rem 0 6rem; background: var(--cream); }
.service-row {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 4rem; align-items: center;
  margin-bottom: 5rem; 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: 1.85rem; font-weight: 700;
  width: 65px; height: 65px;
  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,
.service-row:nth-child(4) .service-copy .eyebrow { color: var(--scarlet); }
.service-row:nth-child(2) .service-copy .eyebrow::before,
.service-row:nth-child(4) .service-copy .eyebrow::before { background: var(--scarlet); }
.service-row:nth-child(3) .service-copy .eyebrow,
.service-row:nth-child(5) .service-copy .eyebrow { color: var(--gold-deep); }
.service-row:nth-child(3) .service-copy .eyebrow::before,
.service-row:nth-child(5) .service-copy .eyebrow::before { background: var(--gold-deep); }

.service-copy h2 { font-size: clamp(1.7rem, 2.7vw, 2.3rem); margin-bottom: 1.2rem; }
.service-copy p { margin-bottom: 1.2rem; line-height: 1.7; font-size: 1.02rem; color: #2a2a35; }
.service-copy ul {
  margin-top: 1.4rem; list-style: none;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem 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 */
.collections-intro { padding: 5rem 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.4rem; }
.collections-intro-grid p { margin-bottom: 1.2rem; font-size: 1.05rem; 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: 2.5rem 0 1.8rem; background: var(--cream);
  position: sticky; top: 73px; z-index: 50;
  border-bottom: 1px solid var(--border);
}
.filter-buttons { display: flex; gap: 0.7rem; flex-wrap: wrap; justify-content: center; }
.filter-btn {
  padding: 0.7rem 1.3rem; font-family: inherit;
  font-size: 0.8rem; 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: 2.5rem 0 6rem; 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.4rem 1.2rem;
  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.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.35rem; font-weight: 700;
}
.gallery-overlay .title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; color: var(--white);
  line-height: 1.3; margin-bottom: 0.2rem;
}
.gallery-overlay .year { font-size: 0.78rem; 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.2rem; 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.7rem;
  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%); }

/* NEUROART (rebuilt — compact) */
.products-page { padding: 5rem 0; background: var(--cream); }
.product-block {
  margin-bottom: 6rem; padding-bottom: 6rem;
  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: 800px; margin: 0 auto 3rem; }
.product-label {
  display: inline-block; padding: 0.4rem 1rem;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.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(2rem, 3.6vw, 2.9rem); margin-bottom: 0.8rem; }
.product-tagline {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.3rem; color: var(--ultramarine);
  margin-top: 0.8rem; 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/6; overflow: hidden; position: relative;
  margin-bottom: 3.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: 3.5rem; margin-bottom: 2.5rem;
}
.product-body p { font-size: 1.06rem; line-height: 1.75; margin-bottom: 1.2rem; color: #2a2a35; }

.product-highlight {
  padding: 2.2rem; 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.1rem; font-family: 'Inter', sans-serif;
}
.product-highlight p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem; line-height: 1.7; margin: 0;
}
.product-highlight p + p { margin-top: 1rem; }

.product-features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 2.5rem;
}
.feature-card {
  padding: 1.7rem; 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.15rem; margin-bottom: 0.6rem; color: var(--ink);
}
.feature-card p { font-size: 0.92rem; color: #333; line-height: 1.65; }

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

.investors-thesis { padding: 5rem 0; background: var(--white); }
.thesis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.thesis-card {
  padding: 2.4rem; background: var(--cream);
  border-top: 5px solid var(--ultramarine);
}
.thesis-card:nth-child(2) { border-top-color: var(--scarlet); }
.thesis-card:nth-child(3) { border-top-color: var(--gold); }
.thesis-num {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 2.5rem; color: var(--ultramarine);
  font-weight: 700; line-height: 1; margin-bottom: 1rem;
}
.thesis-card:nth-child(2) .thesis-num { color: var(--scarlet); }
.thesis-card:nth-child(3) .thesis-num { color: var(--gold-deep); }
.thesis-card h3 { font-size: 1.25rem; margin-bottom: 0.85rem; }
.thesis-card p { font-size: 0.97rem; color: #2a2a35; line-height: 1.7; }

.investors-process { padding: 5rem 0; background: var(--cream); }
.process-list {
  max-width: 880px; margin: 0 auto;
  display: grid; gap: 1.5rem;
}
.process-item {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 2rem; padding: 1.8rem 2rem;
  background: var(--white); align-items: center;
  border-left: 4px solid var(--ultramarine);
}
.process-item:nth-child(2) { border-left-color: var(--scarlet); }
.process-item:nth-child(3) { border-left-color: var(--gold); }
.process-item:nth-child(4) { border-left-color: var(--ultramarine); }
.process-num {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 2.2rem; font-weight: 800; color: var(--ultramarine);
  line-height: 1;
}
.process-item:nth-child(2) .process-num { color: var(--scarlet); }
.process-item:nth-child(3) .process-num { color: var(--gold-deep); }
.process-item:nth-child(4) .process-num { color: var(--ultramarine); }
.process-item h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.process-item p { font-size: 0.96rem; line-height: 1.6; color: #444; margin: 0; }

/* CONTACT */
.contact-page { padding: 5rem 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; }
.contact-info h2 { margin-bottom: 1.4rem; }
.contact-info > p { font-size: 1.1rem; line-height: 1.7; color: #333; margin-bottom: 2.5rem; }
.contact-details { list-style: none; margin-bottom: 2.5rem; }
.contact-details li {
  padding: 1.4rem 0; border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 120px 1fr;
  gap: 1.4rem; 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.04rem; 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: 2.5rem;
}
.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: 3rem 2.8rem;
  border-top: 6px solid var(--scarlet);
}
.contact-form h3 { margin-bottom: 1.8rem; font-size: 1.7rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1.2rem; }
.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.55rem;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.85rem 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.3rem; }
.form-submit .btn { width: 100%; justify-content: center; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { margin: 0 auto; max-width: 420px; }
  .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; }
  .product-features-grid { grid-template-columns: repeat(2, 1fr); }
  .investors-intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .thesis-grid { grid-template-columns: 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 { padding: 6.5rem 0 3rem; }
  .hero-sub { font-size: 1rem; margin-bottom: 1.5rem; }
  .hero-stats-compact { gap: 1.4rem; padding-top: 1.2rem; margin-top: 1.4rem; }
  .hero-stats-compact .stat-num { font-size: 1.3rem; }
  .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; }
  .process-item { grid-template-columns: 60px 1fr; gap: 1.2rem; padding: 1.4rem; }
  .contact-details li { grid-template-columns: 1fr; gap: 0.4rem; }
  .contact-form { padding: 2rem 1.4rem; }
  .form-grid { grid-template-columns: 1fr; }
  .filter-buttons { gap: 0.4rem; }
  .filter-btn { padding: 0.55rem 0.95rem; 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; }
  .process-num { font-size: 1.6rem; }
}
