/* =============================================
   Verified Company Profile Pages
   Production Process, Our Approach, Sustainability & Compliance
   ============================================= */
.process-page,
.approach-page,
.sustainability-page {
  background:
    radial-gradient(circle at 10% 8%, rgba(166, 138, 100, 0.12), transparent 28vw),
    linear-gradient(180deg, var(--white) 0%, var(--site-paper) 100%);
}

.profile-hero .parallax-bg {
  object-fit: cover;
}

.profile-hero .site-hero-card {
  width: min(100%, 380px);
}

.profile-hero .site-hero-metric {
  min-height: 92px;
  padding: 16px;
}

.profile-hero .site-hero-metric strong {
  font-size: clamp(1.45rem, 2.7vw, 2.25rem);
}

.profile-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.48fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.profile-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.profile-eyebrow::after {
  content: "";
  width: 46px;
  height: 1px;
  background: currentColor;
  opacity: 0.72;
}

.profile-lead {
  max-width: 880px;
  color: var(--text-light);
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  line-height: 1.78;
  margin-top: 24px;
}

.dark .profile-lead {
  color: rgba(255, 255, 255, 0.74);
}

.profile-source-card {
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: var(--site-radius-lg);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--site-shadow);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.profile-source-card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -60px;
  top: -70px;
  border-radius: 50%;
  background: rgba(166, 138, 100, 0.2);
  filter: blur(8px);
}

.profile-source-card strong {
  position: relative;
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 14px;
}

.profile-source-card p {
  position: relative;
  color: var(--text-light);
  line-height: 1.72;
  margin: 0;
}

.profile-timeline {
  display: grid;
  grid-template-columns: repeat(7, minmax(170px, 1fr));
  gap: 16px;
  position: relative;
}

.profile-step-card,
.profile-feature-card,
.profile-standard-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.55s var(--ease-premium), border-color 0.55s var(--ease-premium), background 0.55s var(--ease-premium);
}

.profile-step-card:hover,
.profile-feature-card:hover,
.profile-standard-card:hover {
  transform: translateY(-8px);
  border-color: rgba(166, 138, 100, 0.52);
}

.profile-step-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--primary-color);
  font-weight: 900;
  margin-bottom: 22px;
}

.profile-step-card h3,
.profile-feature-card h3,
.profile-standard-card h3 {
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.profile-step-card p,
.profile-feature-card p,
.profile-standard-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.68;
  margin: 0;
}

.profile-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.profile-card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile-light-card {
  min-height: 100%;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 70px -48px rgba(0, 0, 0, 0.58);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.55s var(--ease-premium), border-color 0.55s var(--ease-premium), box-shadow 0.55s var(--ease-premium);
}

.profile-light-card:hover {
  transform: translateY(-8px);
  border-color: rgba(166, 138, 100, 0.38);
  box-shadow: var(--site-shadow);
}

.profile-light-card i,
.profile-feature-card i,
.profile-standard-card i {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 22px;
  background: rgba(166, 138, 100, 0.14);
  color: var(--accent-color);
  font-size: 22px;
}

.profile-light-card h3 {
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  margin-bottom: 13px;
  color: var(--primary-color);
}

.profile-light-card p {
  color: var(--text-light);
  line-height: 1.72;
  margin: 0;
}

.profile-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.profile-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: inherit;
  line-height: 1.6;
}

.profile-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--accent-color);
  margin-top: 9px;
}

.profile-feature-card .profile-list li,
.profile-standard-card .profile-list li {
  color: rgba(255, 255, 255, 0.74);
}

.profile-final-note {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.profile-final-note .site-title {
  margin-bottom: 24px;
}

.profile-final-note p {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.78;
  margin-bottom: 30px;
}

@media (max-width: 1180px) {
  .profile-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .profile-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .profile-intro-grid,
  .profile-card-grid,
  .profile-card-grid.two,
  .profile-timeline {
    grid-template-columns: 1fr;
  }
  .profile-hero .site-hero-card {
    justify-self: start;
  }
}

/* =============================================
   Profile Redesign v2
   Production Process, Our Approach, Sustainability & Compliance
   Uses the exact services/products hero language and premium alternating sections.
   ============================================= */
.profile-redesign {
  --profile-paper: #fbfaf7;
  --profile-muted: #f2f0ea;
  --profile-ink: #0a0a0a;
  --profile-line: rgba(17, 17, 17, 0.1);
  --profile-soft-line: rgba(255, 255, 255, 0.14);
  --profile-radius-xl: 30px;
  --profile-radius-lg: 22px;
  --profile-shadow: 0 34px 90px -42px rgba(0, 0, 0, 0.55);
  background:
    radial-gradient(circle at 8% 8%, rgba(166, 138, 100, 0.12), transparent 28vw),
    linear-gradient(180deg, var(--white) 0%, var(--profile-paper) 100%);
}

.profile-redesign .services-hero .parallax-bg {
  object-fit: cover;
}

.profile-redesign .services-hero-title {
  max-width: 910px;
}

.profile-redesign .services-hero-lead {
  max-width: 735px;
}

.profile-section {
  position: relative;
  padding: clamp(82px, 8vw, 126px) 0;
  overflow: hidden;
  background: var(--white);
}

.profile-section.light,
.profile-section:first-of-type {
  background:
    radial-gradient(circle at 90% 8%, rgba(166, 138, 100, 0.1), transparent 26vw),
    linear-gradient(180deg, #ffffff 0%, var(--profile-paper) 100%);
}

.profile-section.muted {
  background:
    radial-gradient(circle at 12% 14%, rgba(166, 138, 100, 0.11), transparent 24vw),
    linear-gradient(180deg, #f8f7f3 0%, var(--profile-muted) 100%);
}

.profile-section.dark {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(166, 138, 100, 0.36), transparent 30vw),
    linear-gradient(135deg, #080808 0%, #171717 54%, #0a0a0a 100%);
}

.profile-section::before {
  content: attr(data-section-label);
  position: absolute;
  top: 24px;
  right: clamp(20px, 5vw, 74px);
  font-weight: 800;
  font-size: clamp(4.5rem, 11vw, 10rem);
  line-height: 1;
  letter-spacing: -0.08em;
  color: rgba(17, 17, 17, 0.035);
  pointer-events: none;
}

.profile-section.dark::before {
  color: rgba(255, 255, 255, 0.055);
}

.profile-section .container {
  position: relative;
  z-index: 1;
}

.profile-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.profile-kicker::after {
  content: "";
  width: 54px;
  height: 1px;
  background: currentColor;
  opacity: 0.72;
}

.profile-heading {
  font-size: clamp(2.45rem, 5.3vw, 5.35rem);
  letter-spacing: -0.058em;
  line-height: 0.96;
  color: var(--primary-color);
  margin: 0;
}

.profile-section.dark .profile-heading {
  color: var(--white);
}

.profile-lede,
.profile-copy {
  color: var(--text-light);
  font-size: clamp(1rem, 1.22vw, 1.16rem);
  line-height: 1.76;
}

.profile-section.dark .profile-lede,
.profile-section.dark .profile-copy {
  color: rgba(255, 255, 255, 0.74);
}

.profile-hero-split,
.profile-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.56fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.profile-hero-split.reverse,
.profile-split.reverse {
  grid-template-columns: minmax(330px, 0.56fr) minmax(0, 0.9fr);
}

.profile-text-block .profile-lede {
  margin-top: 24px;
  max-width: 820px;
}

.profile-image-frame {
  min-height: clamp(340px, 42vw, 560px);
  border-radius: var(--profile-radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--profile-shadow);
  background: #111;
  isolation: isolate;
}

.profile-image-frame.compact {
  min-height: 340px;
}

.profile-image-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(0.92) contrast(1.06);
  transition: transform 1.2s var(--ease-premium), filter 1.2s var(--ease-premium);
}

.profile-image-frame:hover img {
  transform: scale(1.1) translateY(-6px);
  filter: saturate(1.02) contrast(1.1);
}

.profile-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.04) 58%),
    radial-gradient(circle at 72% 28%, rgba(166, 138, 100, 0.3), transparent 36%);
  z-index: 1;
}

.profile-image-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  max-width: calc(100% - 48px);
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.profile-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.profile-stat {
  border: 1px solid var(--profile-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  padding: 20px;
  box-shadow: 0 24px 70px -52px rgba(0, 0, 0, 0.5);
}

.profile-stat strong {
  display: block;
  color: var(--primary-color);
  font-size: clamp(1.45rem, 2.3vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.profile-stat span {
  display: block;
  margin-top: 8px;
  color: var(--text-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.profile-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.5fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  margin-bottom: 50px;
}

.profile-section-head .profile-copy {
  margin: 0;
}

.profile-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.profile-card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile-card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.profile-step-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(150px, 1fr));
  gap: 16px;
}

.profile-card,
.profile-step,
.profile-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.55s var(--ease-premium), border-color 0.55s var(--ease-premium), box-shadow 0.55s var(--ease-premium);
}

.profile-card,
.profile-step {
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 28px 70px -48px rgba(0, 0, 0, 0.58);
}

.profile-section.dark .profile-card,
.profile-section.dark .profile-step {
  border-color: var(--profile-soft-line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.035));
  box-shadow: none;
}

.profile-card:hover,
.profile-step:hover,
.profile-image-card:hover {
  transform: translateY(-8px);
  border-color: rgba(166, 138, 100, 0.42);
  box-shadow: var(--profile-shadow);
}

.profile-card i,
.profile-step-number {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 22px;
  background: rgba(166, 138, 100, 0.15);
  color: var(--accent-color);
  font-size: 22px;
}

.profile-step-number {
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 900;
}

.profile-card h3,
.profile-step h3,
.profile-image-card h3 {
  color: var(--primary-color);
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin-bottom: 13px;
}

.profile-section.dark .profile-card h3,
.profile-section.dark .profile-step h3,
.profile-section.dark .profile-image-card h3 {
  color: var(--white);
}

.profile-card p,
.profile-step p,
.profile-image-card p {
  color: var(--text-light);
  line-height: 1.68;
  margin: 0;
}

.profile-section.dark .profile-card p,
.profile-section.dark .profile-step p,
.profile-section.dark .profile-image-card p {
  color: rgba(255, 255, 255, 0.73);
}

.profile-image-card {
  min-height: 460px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #111;
  box-shadow: var(--profile-shadow);
}

.profile-image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08) brightness(0.78);
  transform: scale(1.04);
  transition: transform 1.2s var(--ease-premium);
}

.profile-image-card:hover img {
  transform: scale(1.1);
}

.profile-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent 62%);
}

.profile-image-card-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
}

.profile-image-card h3 {
  color: var(--white);
}

.profile-image-card p {
  color: rgba(255, 255, 255, 0.76);
}

.profile-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.profile-list li {
  display: flex;
  gap: 10px;
  color: var(--text-light);
  line-height: 1.58;
}

.profile-section.dark .profile-list li {
  color: rgba(255, 255, 255, 0.73);
}

.profile-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--accent-color);
  margin-top: 9px;
}

.profile-final-cta {
  text-align: center;
}

.profile-final-cta .profile-heading {
  max-width: 920px;
  margin: 0 auto;
}

.profile-final-cta .profile-copy {
  max-width: 760px;
  margin: 24px auto 34px;
}

@media (max-width: 1200px) {
  .profile-step-grid,
  .profile-card-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .profile-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .profile-hero-split,
  .profile-hero-split.reverse,
  .profile-split,
  .profile-split.reverse,
  .profile-section-head {
    grid-template-columns: 1fr;
  }
  .profile-hero-split.reverse .profile-image-frame,
  .profile-split.reverse .profile-image-frame {
    order: 2;
  }
  .profile-stat-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .profile-section {
    padding: 72px 0;
  }
  .profile-card-grid,
  .profile-card-grid.two,
  .profile-card-grid.four,
  .profile-step-grid {
    grid-template-columns: 1fr;
  }
  .profile-card,
  .profile-step {
    padding: 24px;
  }
  .profile-image-card {
    min-height: 360px;
  }
  .profile-image-frame {
    min-height: 320px;
    border-radius: 22px;
  }
}

/* =============================================
   Distinct Profile Pages v3
   Creative, non-identical layouts for Production, Approach and Sustainability.
   ============================================= */
.profile-creative {
  background:
    radial-gradient(circle at 8% 8%, rgba(166, 138, 100, 0.12), transparent 28vw),
    linear-gradient(180deg, var(--white) 0%, #fbfaf7 100%);
}
.profile-creative .services-hero .parallax-bg { object-fit: cover; }
.profile-creative .services-hero-title { max-width: 940px; }
.profile-creative .services-hero-lead { max-width: 740px; }
.profile-section { position: relative; padding: clamp(82px, 8vw, 128px) 0; overflow: hidden; }
.profile-section.light { background: radial-gradient(circle at 92% 10%, rgba(166,138,100,.11), transparent 28vw), linear-gradient(180deg,#fff 0%,#fbfaf7 100%); color: var(--primary-color); }
.profile-section.muted { background: radial-gradient(circle at 10% 16%, rgba(166,138,100,.1), transparent 25vw), linear-gradient(180deg,#f7f5ef 0%,#eeeae0 100%); color: var(--primary-color); }
.profile-section.dark { color: var(--white); background: radial-gradient(circle at 76% 20%, rgba(166,138,100,.34), transparent 30vw), linear-gradient(135deg,#070707 0%,#171717 55%,#090909 100%); }
.profile-section::before { content: attr(data-section-label); position:absolute; top:22px; right:clamp(20px,5vw,74px); font-weight:800; font-size:clamp(4.6rem,11vw,10rem); line-height:1; letter-spacing:-.08em; color:rgba(17,17,17,.035); pointer-events:none; }
.profile-section.dark::before { color: rgba(255,255,255,.055); }
.profile-kicker { display:inline-flex; align-items:center; gap:12px; color:var(--accent-color); font-size:12px; font-weight:800; letter-spacing:.24em; text-transform:uppercase; margin-bottom:18px; }
.profile-kicker::after { content:""; width:54px; height:1px; background:currentColor; opacity:.72; }
.profile-heading { font-size:clamp(2.4rem,5.2vw,5.25rem); letter-spacing:-.058em; line-height:.96; color:var(--primary-color); margin:0; }
.profile-section.dark .profile-heading { color:var(--white); }
.profile-copy, .profile-lede { color:var(--text-light); font-size:clamp(1rem,1.2vw,1.16rem); line-height:1.76; }
.profile-section.dark .profile-copy, .profile-section.dark .profile-lede { color:rgba(255,255,255,.74); }
.profile-head { display:grid; grid-template-columns:minmax(0,.95fr) minmax(280px,.5fr); gap:clamp(28px,5vw,76px); align-items:end; margin-bottom:52px; position:relative; z-index:1; }
.profile-head .profile-copy { margin:0; }
.profile-split { display:grid; grid-template-columns:minmax(0,.92fr) minmax(330px,.55fr); gap:clamp(32px,6vw,88px); align-items:center; position:relative; z-index:1; }
.profile-split.reverse { grid-template-columns:minmax(330px,.55fr) minmax(0,.92fr); }
.profile-lede { margin-top:24px; max-width:820px; }
.profile-meta-row { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; margin-top:34px; }
.profile-meta { border:1px solid rgba(17,17,17,.1); border-radius:18px; background:rgba(255,255,255,.72); padding:20px; box-shadow:0 24px 70px -52px rgba(0,0,0,.5); }
.profile-meta strong { display:block; font-size:clamp(1.45rem,2.3vw,2.2rem); line-height:1; letter-spacing:-.05em; color:var(--primary-color); }
.profile-meta span { display:block; margin-top:8px; color:var(--text-light); font-size:11px; font-weight:800; letter-spacing:.14em; text-transform:uppercase; }
.profile-visual { min-height:clamp(340px,42vw,560px); border-radius:30px; overflow:hidden; position:relative; box-shadow:0 34px 90px -42px rgba(0,0,0,.55); background:#111; isolation:isolate; transform:translateZ(0); }
.profile-visual img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transform:scale(1.04); filter:saturate(.92) contrast(1.06); transition:transform 1.25s var(--ease-premium), filter 1.25s var(--ease-premium); }
.profile-visual:hover img { transform:scale(1.1) translateY(-7px); filter:saturate(1.04) contrast(1.1); }
.profile-visual::after { content:""; position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,.68),rgba(0,0,0,.05) 58%), radial-gradient(circle at 72% 28%,rgba(166,138,100,.32),transparent 38%); z-index:1; }
.profile-visual-caption { position:absolute; left:24px; bottom:24px; z-index:2; max-width:calc(100% - 48px); padding:12px 15px; border:1px solid rgba(255,255,255,.18); border-radius:999px; color:rgba(255,255,255,.9); background:rgba(0,0,0,.32); backdrop-filter:blur(14px); font-size:11px; font-weight:800; letter-spacing:.14em; text-transform:uppercase; }
.profile-btn-row { display:flex; flex-wrap:wrap; gap:14px; justify-content:center; margin-top:32px; }

/* ==========================================================================
   SHARED ANIMATED MEDIA CARDS
   Hover cards with custom cursor gradients and active lift effects.
   ========================================================================== */
.creative-card { position:relative; overflow:hidden; border-radius:26px; border:1px solid rgba(17,17,17,.1); background:rgba(255,255,255,.76); box-shadow:0 28px 80px -52px rgba(0,0,0,.58); transition:transform .65s var(--ease-premium), box-shadow .65s var(--ease-premium), border-color .65s var(--ease-premium); isolation:isolate; }
.dark .creative-card { border-color:rgba(255,255,255,.14); background:linear-gradient(145deg,rgba(255,255,255,.12),rgba(255,255,255,.035)); box-shadow:none; }
.creative-card::before { content:""; position:absolute; inset:0; background:radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(166,138,100,.2), transparent 34%); opacity:0; transition:opacity .5s var(--ease-premium); z-index:2; pointer-events:none; }
.creative-card:hover { transform:translateY(-10px); border-color:rgba(166,138,100,.45); box-shadow:0 34px 90px -42px rgba(0,0,0,.55); }
.creative-card:hover::before { opacity:1; }
.creative-card img { width:100%; height:100%; object-fit:cover; transition:transform 1.3s var(--ease-premium), filter 1.3s var(--ease-premium); }
.creative-card:hover img { transform:scale(1.09); filter:saturate(1.04) contrast(1.1); }
.creative-card-content { position:relative; z-index:3; }

/* ==========================================================================
   PRODUCTION PAGE: CINEMATIC PROCESS RUNWAY
   Step-by-step display of manufacturing path from patterns to packing.
   ========================================================================== */
.process-runway { position:relative; display:grid; grid-template-columns:minmax(280px,.72fr) minmax(0,1fr); gap:clamp(28px,5vw,72px); align-items:center; }
.process-runway::before { content:""; position:absolute; left:calc(36% + 18px); top:6%; bottom:6%; width:1px; background:linear-gradient(to bottom,transparent,var(--accent-color),transparent); opacity:.5; animation:profileLineFlow 4.8s linear infinite; }
.process-core-visual { min-height:640px; border-radius:34px; }
.process-stage-stack { display:grid; gap:16px; }
.process-stage { display:grid; grid-template-columns:64px minmax(0,1fr); gap:18px; align-items:start; padding:22px; transform-origin:left center; }
.process-stage-number { display:inline-grid; place-items:center; width:54px; height:54px; border-radius:18px; background:var(--accent-color); color:#0a0a0a; font-weight:900; box-shadow:0 0 0 8px rgba(166,138,100,.1); }
.process-stage h3, .approach-node h3, .sustain-tile h3, .cert-panel h3 { color:inherit; font-size:1rem; letter-spacing:.06em; margin-bottom:10px; }
.process-stage p, .approach-node p, .sustain-tile p, .cert-panel p { color:rgba(255,255,255,.72); line-height:1.66; margin:0; }
.process-gallery { display:grid; grid-template-columns:1.05fr .95fr; gap:22px; align-items:stretch; }
.process-gallery .creative-card { min-height:430px; }
.process-gallery .creative-card.small { min-height:204px; }
.process-gallery .stack { display:grid; gap:22px; }
.process-gallery .creative-card::after { content:""; position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,.78),transparent 62%); z-index:1; }
.process-gallery .creative-card-content { position:absolute; left:24px; right:24px; bottom:24px; color:#fff; }
.process-gallery p { color:rgba(255,255,255,.76); }

/* ==========================================================================
   APPROACH PAGE: EDITORIAL CAPABILITY CONSTELLATION
   Highlights strategic design, material development, and buying structures.
   ========================================================================== */
.approach-constellation { position:relative; min-height:720px; display:grid; grid-template-columns:repeat(12,1fr); grid-template-rows:repeat(6, minmax(88px,1fr)); gap:18px; }
.approach-constellation::before { content:""; position:absolute; inset:8% 10%; border:1px solid rgba(166,138,100,.22); border-radius:50%; animation:profileRotate 30s linear infinite; pointer-events:none; }
.approach-node { padding:26px; }
.approach-node i { display:inline-grid; place-items:center; width:48px; height:48px; border-radius:16px; background:rgba(166,138,100,.14); color:var(--accent-color); font-size:22px; margin-bottom:18px; }
.approach-node p { color:var(--text-light); }
.dark .approach-node p { color:rgba(255,255,255,.72); }
.approach-node.feature { grid-column:1 / span 5; grid-row:1 / span 3; }
.approach-node.design { grid-column:5 / span 4; grid-row:2 / span 3; }
.approach-node.source { grid-column:9 / span 4; grid-row:1 / span 2; }
.approach-node.quality { grid-column:8 / span 5; grid-row:4 / span 3; }
.approach-photo { grid-column:1 / span 4; grid-row:4 / span 3; min-height:320px; }
.approach-photo::after { content:""; position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,.72),transparent 58%); z-index:1; }
.approach-photo .creative-card-content { position:absolute; left:24px; right:24px; bottom:24px; color:#fff; }
.approach-lab { display:grid; grid-template-columns:.92fr 1.08fr; gap:clamp(28px,5vw,72px); align-items:center; }
.approach-lab-board { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.approach-lab-card { padding:26px; min-height:210px; }
.approach-lab-card strong { display:block; color:var(--accent-color); font-size:12px; letter-spacing:.2em; text-transform:uppercase; margin-bottom:14px; }
.approach-lab-card p { color:var(--text-light); line-height:1.68; margin:0; }

/* ==========================================================================
   SUSTAINABILITY PAGE: COMPLIANCE DASHBOARD
   Styled cards indicating green certifications, recycling, and audits.
   ========================================================================== */
.sustain-dashboard { display:grid; grid-template-columns:minmax(0,.9fr) minmax(310px,.55fr); gap:clamp(28px,5vw,70px); align-items:start; }
.sustain-map { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.sustain-tile { min-height:230px; padding:28px; }
.sustain-tile i { display:inline-grid; place-items:center; width:48px; height:48px; border-radius:16px; color:var(--accent-color); background:rgba(166,138,100,.14); font-size:22px; margin-bottom:18px; }
.sustain-meter { position:sticky; top:112px; border-radius:30px; padding:30px; border:1px solid rgba(255,255,255,.14); background:linear-gradient(145deg,rgba(255,255,255,.12),rgba(255,255,255,.04)); overflow:hidden; }
.sustain-meter::before { content:""; position:absolute; left:-20%; right:-20%; top:0; height:2px; background:linear-gradient(90deg,transparent,var(--accent-color),transparent); animation:complianceScan 3.2s ease-in-out infinite; }
.sustain-meter h3 { color:#fff; margin-bottom:22px; }
.sustain-meter-row { display:flex; justify-content:space-between; gap:18px; padding:16px 0; border-bottom:1px solid rgba(255,255,255,.11); color:rgba(255,255,255,.76); }
.sustain-meter-row strong { color:#fff; letter-spacing:.08em; }
.sustain-materials { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
.sustain-material-card { min-height:430px; }
.sustain-material-card::after { content:""; position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,.78),transparent 62%); z-index:1; }
.sustain-material-card .creative-card-content { position:absolute; left:24px; right:24px; bottom:24px; color:#fff; }
.cert-panels { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px; margin-top:32px; }
.cert-panel { padding:30px; }
.light .cert-panel p, .light .cert-panel li { color:var(--text-light); }
.cert-list { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px 16px; margin-top:18px; }
.cert-list li { display:flex; gap:10px; color:var(--text-light); line-height:1.5; }
.cert-list li::before { content:""; width:7px; height:7px; border-radius:50%; background:var(--accent-color); flex:0 0 7px; margin-top:8px; }

.profile-light-cta { text-align:center; background:radial-gradient(circle at 50% 0%,rgba(166,138,100,.12),transparent 34vw), linear-gradient(180deg,#fff 0%,#fbfaf7 100%); }
.profile-light-cta .profile-copy { max-width:760px; margin:24px auto 34px; }

@keyframes profileLineFlow { 0%{opacity:.25; transform:scaleY(.8)} 50%{opacity:.85; transform:scaleY(1)} 100%{opacity:.25; transform:scaleY(.8)} }
@keyframes profileRotate { to { transform:rotate(360deg); } }
@keyframes complianceScan { 0%,100%{ transform:translateX(-35%); opacity:.35 } 50%{ transform:translateX(35%); opacity:1 } }

@media (max-width:1180px){
  .process-runway, .sustain-dashboard, .approach-lab { grid-template-columns:1fr; }
  .process-runway::before { display:none; }
  .process-core-visual { min-height:440px; }
  .approach-constellation { min-height:auto; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); grid-template-rows:none; }
  .approach-node.feature, .approach-node.design, .approach-node.source, .approach-node.quality, .approach-photo { grid-column:auto; grid-row:auto; }
  .sustain-meter { position:relative; top:auto; }
}
@media (max-width:900px){
  .profile-head, .profile-split, .profile-split.reverse { grid-template-columns:1fr; }
  .profile-split.reverse .profile-visual { order:2; }
  .profile-meta-row, .process-gallery, .sustain-materials, .cert-panels { grid-template-columns:1fr; }
  .profile-visual { min-height:320px; border-radius:24px; }
}
@media (max-width:680px){
  .profile-section { padding:72px 0; }
  .approach-constellation, .approach-lab-board, .sustain-map, .cert-list { grid-template-columns:1fr; }
  .process-stage { grid-template-columns:52px 1fr; padding:20px; }
  .process-stage-number { width:46px; height:46px; }
  .sustain-material-card, .process-gallery .creative-card { min-height:340px; }
}
@media (prefers-reduced-motion: reduce){
  .approach-constellation::before, .sustain-meter::before, .process-runway::before { animation:none !important; }
}

