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

:root {
  --color-gold: #8A641F;
  --color-gold-dark: #6E4D15;
  --color-gold-light: #D7B56D;
  --color-white: #ffffff;
  --color-cream: #fcfbf9;
  --color-text-dark: #1A1A1A;
  --color-text-light: #4F4F4F;
  --color-border: #dedbd4;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --header-height: 110px;

  /* Layout — modern page width & responsive gutters */
  --page-max: 1440px;
  --page-gutter: clamp(1.25rem, 4vw, 3rem);
  --content-wide: min(1240px, 100%);
  --content-medium: min(1120px, 100%);
  --content-narrow: min(760px, 100%);
  
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--color-text-dark);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 3px solid rgba(138, 100, 31, 0.35);
  outline-offset: 4px;
}

ul {
  list-style: none;
}

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

/* Utilities */
.container {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.py-4 { padding: 4rem 0; }
.py-5 { padding: 6rem 0; }
.p-4 { padding: 2rem; }

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--color-gold);
  background: transparent;
  color: var(--color-gold);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.btn:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98), rgba(252,251,249,0.95) 52%, rgba(255,255,255,0.98)),
    rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  z-index: 1000;
  border-top: none;
  border-bottom: 1px solid rgba(138, 100, 31, 0.18);
  transition: var(--transition);
  box-shadow: none;
}

header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(138, 100, 31, 0.34), transparent);
  pointer-events: none;
}

header.scrolled {
  box-shadow: none;
}

/* Home hero: fully transparent header + light nav on video */
body.page-home {
  --hero-align-offset: 0px;
}

body.page-home header:not(.scrolled) {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}

body.page-home header:not(.scrolled)::after {
  opacity: 0;
}

body.page-home header:not(.scrolled) .nav-links {
  background: transparent;
  backdrop-filter: none;
  border-color: transparent;
  box-shadow: none;
  padding: 0.5rem 0;
  gap: clamp(1.25rem, 2.4vw, 2.75rem);
}

body.page-home header:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

body.page-home header:not(.scrolled) .nav-links a::after {
  background: var(--color-gold-light);
}

body.page-home header:not(.scrolled) .nav-links a:hover,
body.page-home header:not(.scrolled) .nav-links a.active {
  color: var(--color-gold-light);
}

body.page-home header:not(.scrolled) .nav-dropdown-menu a {
  color: var(--color-text-dark);
}

body.page-home header:not(.scrolled) .nav-dropdown-menu a:hover,
body.page-home header:not(.scrolled) .nav-dropdown-menu a.active {
  color: var(--color-gold);
}

body.page-home header:not(.scrolled) .nav-links a.active {
  font-weight: 700;
}

body.page-home header:not(.scrolled) .nav-toggle {
  color: var(--color-white);
}

body.page-home header:not(.scrolled) .logo img {
  filter: none;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--header-height);
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
  padding-block: 0.4rem;
}

.logo img {
  display: block;
  height: auto;
  width: auto;
  max-height: calc(var(--header-height) - 1.75rem);
  object-fit: contain;
  object-position: left center;
}

.logo span {
  color: var(--color-gold);
}

.nav-links {
  display: flex;
  gap: clamp(1rem, 2vw, 2.25rem);
  align-items: center;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(138, 100, 31, 0.08);
}

.nav-links a,
.nav-dropdown-trigger {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  position: relative;
  font-weight: 700;
  color: #202020;
  padding: 0.45rem 0;
}

.nav-links a::after,
.nav-dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after,
.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after,
.nav-dropdown-trigger.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active,
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger,
.nav-dropdown-trigger.active {
  color: var(--color-gold);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -0.75rem;
  right: -0.75rem;
  height: 1rem;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown-trigger::before {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  order: 2;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 50%;
  min-width: 245px;
  padding: 0.6rem;
  border: 1px solid rgba(138, 100, 31, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.13);
  transform: translate(-50%, 8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
  z-index: 10;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.8rem 0.9rem;
  border-radius: 6px;
  color: var(--color-text-dark);
  font-size: 0.8rem;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: var(--color-cream);
  color: var(--color-gold);
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  margin-left: auto;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-text-dark);
  cursor: pointer;
}

/* Hero — immersive showcase layout (left copy + bottom trust row) */
.hero {
  min-height: 100vh;
  position: relative;
  background-color: #f5f3ef;
  overflow: hidden;
}

.hero-showcase {
  --hero-trust-zone: clamp(9.5rem, 21vh, 12.5rem);
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slider {
  z-index: 1;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.hero-slider.dragging {
  cursor: grabbing;
}

.hero-slide {
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  z-index: 1;
  filter: contrast(1.04) saturate(1.06) brightness(1.02);
}

.hero-slide-split {
  background: #020202;
}

.hero-slide-split .hero-bg {
  left: 57%;
  width: 43%;
  object-position: center center;
  filter: contrast(1.08) saturate(1.03) brightness(0.94);
}

.hero-slide-split .hero-bg-natural {
  object-position: 54% center;
}

.hero-bg-lab,
.hero-slide-split .hero-bg-lab {
  object-position: 68% center;
}

.hero-slide-split .hero-bg-jewellery {
  object-position: 50% center;
}

video.hero-bg {
  display: block;
}

.hero-slide .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* Top & bottom bands for nav + trust; left band for hero copy; right stays clearer */
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.5) 14%,
      rgba(0, 0, 0, 0.18) 30%,
      transparent 42%,
      transparent 58%,
      rgba(0, 0, 0, 0.22) 72%,
      rgba(0, 0, 0, 0.48) 86%,
      rgba(0, 0, 0, 0.68) 100%
    ),
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0.45) 30%,
      rgba(0, 0, 0, 0.2) 50%,
      transparent 68%
  );
}

.hero-slide-split .hero-overlay {
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.86) 0%,
      rgba(0, 0, 0, 0.62) 16%,
      rgba(0, 0, 0, 0.18) 34%,
      transparent 52%,
      rgba(0, 0, 0, 0.18) 76%,
      rgba(0, 0, 0, 0.72) 100%
    ),
    linear-gradient(
      to right,
      #020202 0%,
      #020202 55%,
      rgba(2, 2, 2, 0.86) 58%,
      rgba(2, 2, 2, 0.18) 66%,
      transparent 74%
    );
}

/* Slide copy: vertically centered between header and trust bar */
.hero-slide .hero-shell {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: var(--header-height);
  padding-bottom: var(--hero-trust-zone);
  box-sizing: border-box;
  pointer-events: none;
}

.hero-slide .hero-shell .hero-column,
.hero-slide .hero-shell .hero-copy,
.hero-slide .hero-shell .hero-actions,
.hero-slide .hero-shell .hero-actions a,
.hero-slide .hero-shell .btn {
  pointer-events: auto;
}

.hero-slide.active .hero-actions a {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.hero-slide .hero-column {
  display: block;
  width: 100%;
  min-height: 0;
  margin-left: calc(-1 * var(--hero-align-offset, 0px));
  padding-right: 28%;
}

.hero-copy {
  width: 100%;
  max-width: 800px;
  padding-left: clamp(3.5rem, 5vw, 5rem);
}

/* Trust row pinned to bottom of hero */
.hero-showcase > .hero-shell {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 clamp(2rem, 5vh, 3.5rem);
  box-sizing: border-box;
  pointer-events: none;
}

.hero-showcase > .hero-shell .hero-trust {
  pointer-events: auto;
}

.hero-showcase > .hero-shell .hero-column {
  display: block;
  width: 100%;
  min-height: 0;
  margin-left: calc(-1 * var(--hero-align-offset, 0px));
  padding-right: 28%;
}

.hero-slide:not(.active) .hero-title,
.hero-slide:not(.active) .hero-lead,
.hero-slide:not(.active) .hero-eyebrow,
.hero-slide:not(.active) .hero-actions {
  animation: none;
  opacity: 0;
}

.hero-trust {
  margin-top: 0;
}

.hero-slider-controls {
  position: absolute;
  z-index: 5;
  right: clamp(2rem, 5vw, 4.5rem);
  bottom: clamp(2rem, 5vh, 3.5rem);
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.hero-slider-controls button {
  width: 34px;
  height: 3px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-slider-controls button.active,
.hero-slider-controls button:hover,
.hero-slider-controls button:focus-visible {
  width: 54px;
  background: var(--color-gold-light);
}

.hero-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  background: rgba(138, 100, 31, 0.7);
  border-color: rgba(215, 181, 109, 0.8);
  transform: translateY(-50%) scale(1.04);
}

.hero-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--color-white);
  border-left: 2px solid var(--color-white);
}

.hero-arrow-prev {
  left: clamp(1rem, 3vw, 2.5rem);
}

.hero-arrow-prev::before {
  transform: translateX(3px) rotate(-45deg);
}

.hero-arrow-next {
  right: clamp(1rem, 3vw, 2.5rem);
}

.hero-arrow-next::before {
  transform: translateX(-3px) rotate(135deg);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.85rem, 4.8vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  max-width: 100%;
  color: var(--color-white);
  margin-bottom: 1.65rem;
  letter-spacing: -0.01em;
  animation: fadeUp 0.85s ease forwards;
  opacity: 0;
}

.hero-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 1.75rem;
  max-width: 30rem;
  animation: fadeUp 0.85s ease 0.15s forwards;
  opacity: 0;
}

.hero-showcase .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: fadeUp 0.85s ease 0.3s forwards;
  opacity: 0;
}

.hero-showcase .hero-actions .btn {
  padding: 0.9rem 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 1.1px;
  animation: none;
  opacity: 1;
}

.hero-showcase .btn-ghost {
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--color-white);
}

.hero-showcase .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-white);
  color: var(--color-white);
}

.hero-trust-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.1rem;
  font-weight: 500;
}

.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  list-style: none;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--color-white);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.trust-text strong {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.25;
}

.trust-text > span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
}

/* Non-showcase heroes only */
.hero:not(.hero-showcase) .btn {
  animation: fadeUp 1s ease 0.6s forwards;
  opacity: 0;
}

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

@media (prefers-reduced-motion: reduce) {
  .hero-title,
  .hero-lead,
  .hero-showcase .hero-actions,
  .hero .btn {
    animation: none;
    opacity: 1;
  }
}

/* Featured Collections */
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 3rem;
  max-width: var(--content-narrow);
  margin-inline: auto;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.product-card {
  group: product;
  position: relative;
  overflow: hidden;
  background: var(--color-cream);
  padding-bottom: 1.5rem;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-img-wrapper {
  overflow: hidden;
  aspect-ratio: 4/5;
  margin-bottom: 1.5rem;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-info {
  text-align: center;
  padding: 0 1rem;
}

.product-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.product-price {
  color: var(--color-gold);
  font-weight: 600;
}

/* About Section */
.about-section {
  background-color: var(--color-cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.media-card {
  background: var(--color-cream);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.media-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--color-white);
}

.media-card-body {
  padding: 1.5rem;
}

.media-card-body h3 {
  color: var(--color-gold);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.media-card-body p {
  color: var(--color-text-light);
}

.contact-panel {
  position: relative;
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-cream);
}

.contact-panel-img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.contact-card {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  background: rgba(255,255,255,0.96);
  padding: 2rem;
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.contact-card p {
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

.contact-main .about-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: stretch;
}

.contact-main .about-content,
.contact-main .contact-panel {
  min-width: 0;
}

.contact-main .contact-panel {
  align-self: start;
  height: min(640px, 100%);
  min-height: 560px;
}

.contact-main .contact-panel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
}

.contact-main .contact-card {
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  max-width: calc(100% - 3rem);
}

/* Footer */
footer {
  background-color: #141210;
  color: rgba(255, 255, 255, 0.78);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  overflow: visible;
}

.footer-logo img {
  display: block;
  height: auto;
  width: auto;
  max-height: 118px;
  object-fit: contain;
  object-position: left center;
}

.footer-logo span {
  color: var(--color-gold-light);
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 1rem;
  max-width: 250px;
  line-height: 1.65;
}

.footer-col h4 {
  color: var(--color-gold-light);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 1.35rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.25s ease, text-decoration-color 0.25s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--color-gold-light);
  text-decoration: underline;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(215, 181, 109, 0.85);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(215, 181, 109, 0.14);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.875rem;
}

/* Inner Page Header */
.page-header {
  padding: 11rem 0 5rem;
  background-color: var(--color-cream);
  text-align: center;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.premium-page-header {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  background-color: var(--color-text-dark);
  isolation: isolate;
}

.premium-page-header::before,
.premium-page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.premium-page-header::before {
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
}

.premium-page-header::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.78), rgba(0,0,0,0.58)),
    radial-gradient(ellipse at 76% 50%, rgba(138,100,31,0.28), transparent 56%);
}

.about-page-header::before {
  background-image: url("assets/ref-pld-mission.png");
  background-position: center 42%;
}

.natural-product-header::before {
  background-image: url("assets/product-natural-diamonds.jpg");
  background-position: center 48%;
}

.lab-product-header::before {
  background-image: url("assets/lb-1.jpeg");
  background-position: 72% center;
}

.jewellery-product-header::before {
  background-image: url("assets/product-diamond-jewellery-display.jpg");
  background-position: center 50%;
}

.ethics-page-header::before {
  background-image: url("assets/ref-bhagwati-ee2.png");
}

.education-page-header::before {
  background-image: url("assets/ref-pld-shape-banner.jpg");
  background-position: center bottom;
}

.premium-page-header .page-title,
.premium-page-header .section-subtitle {
  color: var(--color-white);
}

.premium-page-header .section-subtitle {
  color: #eeeeee;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--color-border);
  font-family: var(--font-body);
  background: var(--color-white);
  transition: var(--transition);
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Responsive */
@media (max-width: 768px) {
  :root {
    --header-height: 76px;
  }

  body.nav-open {
    overflow: hidden;
  }

  header.nav-open,
  body.page-home header.nav-open:not(.scrolled) {
    background: #ffffff;
    backdrop-filter: none;
    border-bottom-color: rgba(138, 100, 31, 0.18);
  }

  .nav-container {
    min-height: var(--header-height);
  }

  .logo img {
    max-width: 168px;
    max-height: 60px;
  }

  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    top: var(--header-height);
    background: rgba(0, 0, 0, 0.28);
    z-index: 10051;
  }

  body.nav-open .nav-backdrop {
    display: block;
  }

  header.nav-open {
    z-index: 10050;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    height: calc(100dvh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
    background: #ffffff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 1.25rem 1.25rem 2.5rem;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 10052;
    transform: translateY(-108%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
    box-sizing: border-box;
  }

  .nav-links.active,
  body.nav-open .nav-links,
  body.page-home header.nav-open:not(.scrolled) .nav-links,
  body.page-home header:not(.scrolled) .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: #ffffff;
    backdrop-filter: none;
  }

  body.page-home header.nav-open:not(.scrolled) .nav-links a,
  body.page-home header.nav-open:not(.scrolled) .nav-dropdown-trigger,
  body.page-home header:not(.scrolled) .nav-links.active a,
  body.page-home header:not(.scrolled) .nav-links.active .nav-dropdown-trigger {
    color: var(--color-text-dark);
    font-weight: 700;
  }

  body.page-home header.nav-open:not(.scrolled) .nav-links a:hover,
  body.page-home header.nav-open:not(.scrolled) .nav-links a.active,
  body.page-home header.nav-open:not(.scrolled) .nav-dropdown-trigger.active,
  body.page-home header:not(.scrolled) .nav-links.active a:hover,
  body.page-home header:not(.scrolled) .nav-links.active a.active,
  body.page-home header:not(.scrolled) .nav-links.active .nav-dropdown-trigger.active {
    color: var(--color-gold);
  }

  .nav-links > a,
  .nav-dropdown {
    width: 100%;
    max-width: none;
  }

  .nav-links a,
  .nav-dropdown-trigger {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 100%;
    text-align: left;
    padding: 0.85rem 0;
    font-size: 0.84rem;
    line-height: 1.3;
    letter-spacing: 1.2px;
    overflow: visible;
    box-sizing: border-box;
  }

  .nav-links a::after,
  .nav-dropdown-trigger::after {
    display: none;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: none;
  }

  .nav-dropdown-trigger {
    justify-content: space-between;
    gap: 0.75rem;
  }

  .nav-dropdown-trigger::before {
    order: 2;
    margin-left: auto;
    margin-right: 0;
    flex-shrink: 0;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.3s ease;
  }

  .nav-dropdown.is-open .nav-dropdown-trigger::before {
    transform: rotate(225deg) translateY(1px);
  }

  .nav-dropdown-menu {
    position: static;
    left: auto;
    top: auto;
    display: block;
    width: 100%;
    min-width: 0;
    max-height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: none;
    translate: none;
    visibility: hidden;
    background: var(--color-white);
    transition:
      max-height 0.35s ease,
      opacity 0.3s ease,
      padding 0.35s ease,
      visibility 0.35s ease;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding: 0;
    transform: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    max-height: 16rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin-top: 0.2rem;
    padding: 0.35rem 0.75rem 0.5rem;
    background: #f6f3ec;
    border-radius: 8px;
  }

  .nav-dropdown-menu a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    text-align: left;
    white-space: normal;
    border-radius: 6px;
    padding: 0.65rem 0.5rem;
    font-size: 0.78rem;
    letter-spacing: 1.1px;
    color: var(--color-text-light);
    font-weight: 600;
    transform: none;
  }

  .nav-dropdown-menu a:hover,
  .nav-dropdown-menu a.active {
    background: rgba(255, 255, 255, 0.72);
    color: var(--color-gold);
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--color-text-dark);
    z-index: 10053;
  }

  body.page-home header:not(.scrolled) .nav-toggle {
    color: var(--color-white);
  }

  body.page-home header.nav-open:not(.scrolled) .nav-toggle {
    color: var(--color-text-dark);
  }

  body.page-home header:not(.scrolled) .nav-links.active {
    background: #ffffff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 1.25rem 1.25rem 2.5rem;
    gap: 0;
  }

  .logo {
    padding-block: 0.25rem;
    z-index: 10053;
  }

  .logo img {
    max-height: 60px;
  }

  h2 {
    line-height: 1.12;
  }

  .hero-title {
    font-size: 2.15rem;
    line-height: 1.08;
  }

  .hero-title br {
    display: none;
  }

  .product-showcase h2,
  .product-intro-copy h2,
  .about-content h2,
  .split-feature h2,
  .cta-content h2 {
    font-size: 1.85rem;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .section-title {
    font-size: 2rem;
    line-height: 1.12;
  }

  .page-title {
    font-size: clamp(1.85rem, 8vw, 2.15rem);
    line-height: 1.1;
    max-width: calc(100vw - (var(--page-gutter) * 2));
    margin-inline: auto;
    overflow-wrap: normal;
  }

  .premium-page-header .section-subtitle {
    max-width: calc(100vw - (var(--page-gutter) * 2));
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .contact-panel,
  .contact-panel-img {
    min-height: 420px;
  }

  .contact-main .contact-panel {
    height: auto;
    min-height: 420px;
  }

  .contact-card {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1.5rem;
  }

  .contact-main .contact-card {
    max-width: calc(100% - 2rem);
  }
  
}

@media (max-width: 480px) {
  .nav-links,
  body.page-home header:not(.scrolled) .nav-links,
  body.page-home header:not(.scrolled) .nav-links.active {
    width: 100vw;
    max-width: 100vw;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    padding-inline: 1.15rem;
  }
}

/* Trust Badges */
.trust-badges {
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 3rem 0;
}
.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.trust-icon {
  font-size: 2rem;
  color: var(--color-gold);
}

/* Testimonials */
.testimonial-card {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  text-align: center;
}
.testimonial-stars {
  color: var(--color-gold);
  margin-bottom: 1rem;
}
.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Product Hover Actions */
.product-action {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem;
  text-align: center;
  transition: var(--transition);
  opacity: 0;
}
.product-card:hover .product-action {
  bottom: 0;
  opacity: 1;
}

/* Filter Buttons */
.filter-btn {
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--color-gold);
  background: transparent;
  color: var(--color-text-dark);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

/* Team Profile */
.team-img-wrapper {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 4px;
}
.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ring Sizing Guide */
.sizing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}
.sizing-table th, .sizing-table td {
  padding: 1rem;
  border: 1px solid var(--color-border);
  text-align: center;
}
.sizing-table th {
  background-color: var(--color-cream);
  font-weight: 600;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  color: var(--color-white);
  transition: var(--transition);
}
.social-icons a:hover {
  background-color: var(--color-gold);
}

/* Header CTA */
.header-cta {
  background: var(--color-gold);
  color: var(--color-white) !important;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
}
.header-cta::after {
  display: none !important;
}
.header-cta:hover {
  background: var(--color-gold-dark) !important;
  color: var(--color-white) !important;
}

/* Production content system */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.82rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero-actions .btn {
  padding: 0.95rem 1.65rem;
  font-size: 0.8rem;
  letter-spacing: 1.2px;
}

.left-actions {
  justify-content: flex-start;
}

/* Legacy stats band (other pages if needed) */
.stats-band {
  background: var(--color-text-dark);
  color: var(--color-white);
  padding: 2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stats-grid div {
  border-left: 1px solid rgba(255,255,255,0.18);
  padding-left: 1.25rem;
}

.stats-grid strong {
  display: block;
  color: var(--color-gold-light);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.1;
}

.stats-grid span {
  display: block;
  color: #d8d8d8;
  font-size: 0.86rem;
  margin-top: 0.35rem;
}

.framed-image {
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-cream);
}

.framed-image img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.framed-image img.portrait-safe-image {
  height: min(640px, 72vh);
  min-height: 0;
  object-fit: contain;
  background: var(--color-cream);
}

.feature-card,
.statement-card {
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
}

.feature-card h3,
.statement-card h3 {
  color: var(--color-gold);
  font-size: 1.45rem;
  margin-bottom: 0.8rem;
}

.card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 1.1rem;
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-img-icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 1.1rem;
}

.feature-card p,
.statement-card p {
  color: var(--color-text-light);
}

.white-card {
  background: var(--color-white);
}

.dark-section {
  background: var(--color-text-dark);
  color: var(--color-white);
}

.dark-section .eyebrow,
.dark-section .card-icon,
.dark-section .mini-card h4,
.dark-section .dark-card h3 {
  color: var(--color-gold-light);
  stroke: var(--color-gold-light);
}

.light-title {
  color: var(--color-white);
}

.left-title {
  text-align: left;
}

.shape-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.shape-showcase {
  background:
    radial-gradient(ellipse at 50% 58%, rgba(138, 100, 31, 0.06), transparent 44%),
    linear-gradient(180deg, rgba(252, 251, 249, 0.9), rgba(255, 255, 255, 1) 45%),
    var(--color-white);
  overflow: hidden;
  padding: 4.75rem 0 4.5rem;
}

.shape-title-rule {
  display: block;
  width: min(280px, 52vw);
  height: 3px;
  margin: 0 auto 1.2rem;
  background: var(--color-text-dark);
}

.shape-carousel-visual {
  display: grid;
  grid-template-columns: 0.75fr 0.9fr 1.35fr 0.9fr 0.75fr;
  align-items: end;
  gap: clamp(1rem, 4vw, 4rem);
  max-width: var(--content-wide);
  margin: 4.2rem auto 0;
}

.shape-carousel-visual img {
  object-fit: contain;
  margin-inline: auto;
}

.shape-side {
  width: 94px;
  height: 112px;
  opacity: 0.82;
}

.shape-side-far {
  width: 82px;
  height: 96px;
}

.shape-feature {
  text-align: center;
  min-height: 315px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.shape-feature img {
  width: 150px;
  height: 178px;
}

.shape-feature h3 {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 1.1rem 0 0.45rem;
  min-height: 1.7em;
}

.shape-feature p {
  max-width: 380px;
  margin: 0 auto;
  color: var(--color-text-dark);
  font-weight: 500;
  min-height: 4.9em;
}

.shape-swiper {
  max-width: var(--content-medium);
  margin: 2.4rem auto 0;
  padding: 0.25rem 0;
  overflow: visible;
}

.shape-slide {
  min-height: 270px;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  opacity: 0.22;
  transform: scale(0.52);
  transition: opacity 0.4s ease, transform 0.4s ease, filter 0.4s ease;
  filter: grayscale(0.12);
}

.shape-slide.swiper-slide-prev,
.shape-slide.swiper-slide-next {
  opacity: 0.52;
  transform: scale(0.66);
}

.shape-slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  filter: none;
}

.shape-slide img {
  width: 76px;
  height: 90px;
  object-fit: contain;
  margin: 0 auto;
}

.shape-slide.swiper-slide-active img {
  width: 150px;
  height: 176px;
}

.shape-slide h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0.9rem 0 0.35rem;
  min-height: 1.45em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.shape-slide p {
  max-width: 300px;
  color: var(--color-text-dark);
  font-weight: 600;
  min-height: 4.4em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.shape-slide.swiper-slide-active h3,
.shape-slide.swiper-slide-active p {
  opacity: 1;
  transform: translateY(0);
}

.shape-nav-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 12vw, 10rem);
  max-width: 720px;
  margin: 0.7rem auto 2rem;
  align-items: center;
}

.shape-arrow {
  position: relative;
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-text-dark);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.shape-arrow:hover,
.shape-arrow:focus-visible {
  background: var(--color-gold);
  transform: translateY(-1px);
}

.shape-arrow::before,
.shape-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  color: var(--color-text-dark);
  transition: color 0.2s ease;
}

.shape-arrow:hover::before,
.shape-arrow:hover::after,
.shape-arrow:focus-visible::before,
.shape-arrow:focus-visible::after {
  color: var(--color-gold);
}

.shape-arrow-prev::before {
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
}

.shape-arrow-prev::after {
  display: none;
}

.shape-arrow-next::before {
  display: none;
}

.shape-arrow-next::after {
  right: 0;
  transform: translateY(-50%) rotate(135deg);
}

.shape-chip-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  max-width: var(--content-medium);
  margin: 0 auto;
}

.shape-chip-grid button {
  min-height: 74px;
  border: 1px solid rgba(138, 100, 31, 0.22);
  border-radius: 8px;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--color-text-dark);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.shape-chip-grid button:hover,
.shape-chip-grid button:focus-visible,
.shape-chip-grid button.active {
  border-color: rgba(138, 100, 31, 0.55);
  background: #fff8e8;
  color: var(--color-gold-dark);
}

.shape-chip-grid button.active {
  border-width: 2px;
}

.shape-chip-grid img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.shape-image {
  width: min(640px, 100%);
  margin: 2rem auto 0;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
}

.product-showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.product-showcase h2 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.product-showcase p:not(.eyebrow) {
  color: var(--color-text-light);
}

.product-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.product-visual-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
}

.product-visual-card img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.68), rgba(0,0,0,0.05) 58%);
}

.product-visual-card h3 {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1rem;
  z-index: 1;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.product-visual-card:hover img {
  transform: scale(1.04);
}

.product-row-list {
  display: grid;
  gap: 0;
  border: 1px solid rgba(138, 100, 31, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-white);
}

.product-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  height: 380px;
  border: 0;
  border-bottom: 1px solid rgba(138, 100, 31, 0.18);
  background: var(--color-white);
}

.product-row:last-child {
  border-bottom: 0;
}

.product-row:nth-child(even) .product-row-media {
  order: 2;
}

.product-row-lab-grown .product-row-media {
  order: 2;
}

.product-row-media {
  position: relative;
  height: 380px;
  background: #111;
  overflow: hidden;
}

.product-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.04) saturate(1.04);
  transition: transform 0.45s ease;
}

.product-row-lab-grown .product-row-media img {
  object-position: right center;
}

.product-row:hover .product-row-media img {
  transform: scale(1.04);
}

.product-row-content {
  height: 380px;
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-row-content span {
  font-family: var(--font-heading);
  color: var(--color-gold);
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.product-row-content h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.product-row-content p {
  color: var(--color-text-light);
  max-width: 620px;
  margin-bottom: 1.1rem;
}

.product-row-content ul {
  display: grid;
  gap: 0.45rem;
}

.product-row-content li {
  color: var(--color-text-dark);
  padding-left: 1.2rem;
  position: relative;
  font-weight: 500;
}

.product-row-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

.product-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.product-intro-copy p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.product-spec-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(138, 100, 31, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-white);
}

.product-spec-panel div {
  min-height: 132px;
  padding: 1.35rem;
  border-right: 1px solid rgba(138, 100, 31, 0.12);
  border-bottom: 1px solid rgba(138, 100, 31, 0.12);
}

.product-spec-panel div:nth-child(2n) {
  border-right: 0;
}

.product-spec-panel div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.product-spec-panel strong {
  display: block;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 1.7rem;
  line-height: 1.1;
  margin-bottom: 0.45rem;
}

.product-spec-panel span {
  color: var(--color-text-light);
  font-size: 0.92rem;
}

.product-detail-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.product-detail-image {
  min-height: 390px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-cream);
  border: 1px solid rgba(138, 100, 31, 0.12);
  box-shadow: 0 24px 60px rgba(26, 26, 26, 0.08);
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center;
}

.content-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.content-list li {
  position: relative;
  padding: 0.95rem 1rem 0.95rem 2.65rem;
  border: 1px solid rgba(138, 100, 31, 0.13);
  border-radius: 8px;
  background: rgba(252, 251, 249, 0.72);
  color: var(--color-text-light);
}

.content-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.25rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 5px rgba(138, 100, 31, 0.1);
}

.product-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-link-card {
  position: relative;
  display: block;
  height: clamp(360px, 34vw, 520px);
  min-height: 290px;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
}

.product-link-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.product-link-card div {
  position: absolute;
  inset: auto 0 0;
  padding: 1.35rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.82));
}

.product-link-card h3 {
  color: var(--color-white);
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
}

.product-link-card p {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
}

.product-link-card:hover img {
  transform: scale(1.04);
  opacity: 0.88;
}

.product-editorial {
  background:
    linear-gradient(180deg, var(--color-cream), var(--color-white) 32%, var(--color-white));
}

.product-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1.14fr);
  gap: clamp(2.4rem, 6vw, 6rem);
  align-items: center;
  overflow: hidden;
}

.product-editorial-copy {
  position: relative;
  min-width: 0;
  padding: clamp(1.2rem, 2vw, 2rem) 0;
}

.product-editorial-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  line-height: 0.98;
  margin-bottom: 1.35rem;
  max-width: 11ch;
}

.product-editorial-copy p:not(.eyebrow) {
  color: var(--color-text-light);
  max-width: 620px;
  margin-bottom: 1rem;
}

.product-proof-list {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
  display: grid;
  gap: 1.1rem;
}

.product-proof-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.875rem;
  align-items: start;
  color: var(--color-text-dark);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.55;
  min-width: 0;
  overflow-wrap: anywhere;
}

.product-proof-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.5em;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 5px rgba(138, 100, 31, 0.09);
  flex-shrink: 0;
  align-self: start;
}

.product-visual-stack {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  grid-template-rows: 180px minmax(320px, 460px);
  gap: 1rem;
  align-items: stretch;
  width: 100%;
  max-width: 720px;
  justify-self: end;
  min-width: 0;
}

.product-visual-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(138, 100, 31, 0.14);
  box-shadow: 0 24px 60px rgba(26, 26, 26, 0.1);
}

.product-visual-stack img:first-child {
  grid-column: 1 / 3;
}

.product-visual-stack img:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.product-visual-stack img:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.product-spec-rail {
  padding: 0 0 5.5rem;
  background: var(--color-white);
}

.product-spec-rail-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid rgba(138, 100, 31, 0.16);
}

.product-spec-rail-inner div {
  min-height: 132px;
  padding: 1.35rem;
  border-right: 1px solid rgba(138, 100, 31, 0.16);
}

.product-spec-rail-inner div:last-child {
  border-right: 0;
}

.product-spec-rail-inner strong {
  display: block;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.product-spec-rail-inner span {
  color: var(--color-text-light);
  font-size: 0.92rem;
}

.product-dark-feature {
  background: #161512;
  color: var(--color-white);
  padding: 6rem 0;
  overflow: hidden;
}

.product-dark-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.product-dark-grid h2,
.product-dark-grid h3 {
  color: var(--color-white);
}

.product-dark-grid p {
  color: #d7d2c8;
}

.product-use-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  overflow: hidden;
}

.product-use-tile {
  min-height: 185px;
  padding: 1.5rem;
  background: #1f1d19;
}

.product-use-tile span {
  display: inline-block;
  color: var(--color-gold-light);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.product-use-tile h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.6rem;
}

.product-use-tile p {
  font-size: 0.92rem;
}

.product-next-band {
  background: var(--color-cream);
  padding: 5rem 0;
}

.product-info-panel {
  background: var(--color-white);
  padding: 5rem 0;
}

.product-info-head {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: 2.5rem;
}

.product-info-head h2 {
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1;
  max-width: 11ch;
}

.product-info-head p:not(.eyebrow) {
  color: var(--color-text-light);
  max-width: 700px;
}

.product-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(138, 100, 31, 0.16);
  border-radius: 8px;
  overflow: hidden;
}

.product-media-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-media-grid .product-info-card:nth-child(3n) {
  border-right: 1px solid rgba(138, 100, 31, 0.13);
}

.product-media-grid .product-info-card:nth-child(4n) {
  border-right: 0;
}

.product-media-grid .product-info-card:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.product-info-card {
  min-height: 230px;
  padding: 1.55rem;
  background:
    linear-gradient(180deg, rgba(252,251,249,0.85), rgba(255,255,255,0.98)),
    var(--color-white);
  border-right: 1px solid rgba(138, 100, 31, 0.13);
  border-bottom: 1px solid rgba(138, 100, 31, 0.13);
}

.product-info-card:nth-child(3n) {
  border-right: 0;
}

.product-info-card:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.product-info-card span {
  display: inline-block;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 1.55rem;
  margin-bottom: 1rem;
}

.product-info-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.product-info-card p {
  color: var(--color-text-light);
  font-size: 0.94rem;
}

.product-media-card {
  min-height: 420px;
}

.product-info-media {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(138, 100, 31, 0.14);
  margin-bottom: 1.25rem;
  background: #161512;
}

.product-info-media img,
.product-info-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.visual-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.story-image-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
}

.story-image-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.story-image-card img.portrait-safe-image {
  object-fit: contain;
  background: var(--color-cream);
}

.story-image-card div {
  padding: 1.5rem;
}

.story-image-card h3 {
  color: var(--color-gold);
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}

.story-image-card p {
  color: var(--color-text-light);
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.report-grid article {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
  overflow: hidden;
}

.report-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.report-grid h3 {
  padding: 1rem 1.25rem 1.2rem;
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.education-shape-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.education-shape-grid article {
  min-height: 190px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-cream);
  padding: 1.35rem 1rem;
  text-align: center;
}

.education-shape-grid img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin: 0 auto 1rem;
}

.education-shape-grid h3 {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.education-shape-grid p {
  color: var(--color-text-light);
  font-size: 0.86rem;
  line-height: 1.5;
}

.image-band {
  background: var(--color-white);
  padding: 0 0 5rem;
}

.image-band img {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  height: clamp(220px, 34vw, 430px);
  object-fit: cover;
  object-position: center bottom;
  margin: 0 auto;
  border-radius: 8px;
  border: 1px solid var(--color-border);
}

.image-band-portrait {
  padding-top: 1rem;
}

.image-band-portrait img.portrait-safe-image {
  width: min(560px, calc(100% - (var(--page-gutter) * 2)));
  height: auto;
  max-height: 720px;
  object-fit: contain;
  background: var(--color-cream);
}

.why-lab-section {
  background: var(--color-white);
}

.why-lab-grid {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  grid-template-areas:
    "copy image"
    "cards image";
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
  max-width: var(--content-medium);
  margin-inline: auto;
}

.why-lab-grid > div:first-child {
  grid-area: copy;
}

.why-lab-grid .mini-grid {
  grid-area: cards;
  gap: 1.1rem;
}

.why-lab-grid .mini-card {
  padding: 1.1rem;
  min-height: 136px;
}

.why-lab-grid .mini-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 0.75rem;
}

.why-lab-grid .mini-card h4 {
  margin-bottom: 0.35rem;
}

.why-lab-grid .mini-card p {
  font-size: 0.86rem;
  line-height: 1.45;
}

.why-lab-image {
  grid-area: image;
  margin: 0;
  border: 1px solid rgba(138, 100, 31, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-cream);
  box-shadow: 0 18px 42px rgba(26, 26, 26, 0.08);
}

.why-lab-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.shape-grid span {
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--color-white);
  padding: 1.1rem 1rem;
  text-align: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.split-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.split-feature h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.split-feature p {
  color: var(--color-text-light);
}

.legacy-panel {
  border: 1px solid rgba(138, 100, 31, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(252, 251, 249, 0.9)),
    var(--color-white);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  gap: 1rem;
}

.legacy-panel div {
  padding: 1.25rem;
  border-left: 3px solid var(--color-gold);
  background: rgba(138, 100, 31, 0.045);
}

.legacy-panel strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--color-gold);
  font-weight: 400;
  margin-bottom: 0.45rem;
}

.legacy-panel span {
  display: block;
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.dark-section .split-feature p {
  color: #d8d8d8;
}

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

.mini-card {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.5rem;
  background: var(--color-white);
}

.mini-icon,
.step-icon,
.statement-icon,
.dark-card-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-card h4 {
  color: var(--color-gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.mini-card p {
  color: var(--color-text-light);
  font-size: 0.92rem;
}

.dark-mini {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
}

.dark-mini .mini-icon,
.dark-card-icon {
  stroke: var(--color-gold-light);
}

.dark-mini p {
  color: #d8d8d8;
}

/* Process flow — SVG shapes + aligned connectors */
.process-section {
  --process-marker-size: 7rem;
  --process-line-gap: 0.5rem;
  --process-gap-col: 2rem;
  --process-gap-row: 2rem;
  --process-gap-icon-text: 1.75rem;
  --process-gap-title-body: 0.75rem;
  --process-body-max: 15.5rem;
  --process-stroke: rgba(138, 100, 31, 0.48);
}

.process-section > .container > .eyebrow {
  margin-bottom: 0.75rem;
}

.process-section .section-title {
  margin-bottom: 3rem;
}

.process-section .section-subtitle {
  margin-bottom: 3rem;
}

.process-flow {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--process-gap-row) var(--process-gap-col);
  position: relative;
  margin: 0;
  padding: 0;
  align-items: start;
}

.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

/* Connector spans full grid column + gap to next step */
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(var(--process-marker-size) / 2);
  left: calc(50% + (var(--process-marker-size) / 2) + var(--process-line-gap));
  width: calc(100% + var(--process-gap-col) - var(--process-marker-size) - (var(--process-line-gap) * 2));
  height: 2px;
  transform: translateY(-50%);
  background: repeating-linear-gradient(
    90deg,
    rgba(138, 100, 31, 0.45) 0,
    rgba(138, 100, 31, 0.45) 5px,
    transparent 5px,
    transparent 11px
  );
  pointer-events: none;
  z-index: 0;
}

.process-marker-wrap {
  position: relative;
  width: var(--process-marker-size);
  height: var(--process-marker-size);
  margin-bottom: var(--process-gap-icon-text);
  flex-shrink: 0;
}

.process-shape {
  position: relative;
  width: 100%;
  height: 100%;
}

.process-shape__frame {
  display: block;
  width: 100%;
  height: 100%;
}

.process-shape__stroke {
  fill: var(--color-white);
  stroke: var(--process-stroke);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  transition: stroke 0.3s ease, fill 0.3s ease;
}

.process-step:hover .process-shape__stroke {
  stroke: var(--color-gold);
  fill: #fffdf8;
}

.process-shape__icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2.2rem;
  height: 2.2rem;
  margin: 0;
  transform: translate(-50%, -50%);
}

.process-step--circle .process-shape__icon {
  transform: translate(-50%, -48%);
}

.process-step__num {
  position: absolute;
  top: 0.15rem;
  right: 0.15rem;
  z-index: 3;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--color-gold);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: grid;
  place-items: center;
  border: 2px solid var(--color-white);
  line-height: 1;
}

.process-step__body {
  width: 100%;
  max-width: var(--process-body-max);
}

.process-step__body h3 {
  font-size: 1.3rem;
  margin: 0 0 var(--process-gap-title-body);
  line-height: 1.25;
}

.process-step__body p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  min-height: 4.5rem;
}

/* Legacy box grid (pages not yet on process-flow) */
.process-grid:not(.process-flow) {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.process-grid:not(.process-flow) .process-step {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2rem;
}

.process-grid:not(.process-flow) .process-step span {
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
}

.process-grid:not(.process-flow) .process-step h3 {
  font-size: 1.45rem;
  margin: 0.6rem 0 0.7rem;
}

.process-grid:not(.process-flow) .process-step p {
  color: var(--color-text-light);
}

.statement-card {
  text-align: center;
  padding: 3rem;
}

.statement-icon {
  width: 46px;
  height: 46px;
  margin-inline: auto;
}

.cta-band {
  background: var(--color-cream);
  padding: 4rem 0;
  border-top: 1px solid var(--color-border);
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.cta-content p:not(.eyebrow) {
  color: var(--color-text-light);
  max-width: var(--content-narrow);
}

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

.dark-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 1.75rem;
}

.dark-card h3 {
  color: var(--color-gold-light);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.dark-card p {
  color: #d8d8d8;
  font-size: 0.92rem;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.cert-grid span {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-transform: none;
}

.cert-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.cert-logo-card {
  min-height: 164px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 1.35rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.cert-logo-card:hover,
.cert-logo-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(215, 181, 109, 0.45);
  background: rgba(255, 255, 255, 0.075);
}

.cert-logo-card img {
  width: 100%;
  max-width: 250px;
  height: 112px;
  object-fit: contain;
  margin-inline: auto;
  border-radius: 8px;
  background: #fffdf8;
  border: 1px solid rgba(215, 181, 109, 0.28);
  padding: 1rem;
}

.cert-logo-card span {
  color: #e8e3d9;
  font-size: 0.82rem;
  line-height: 1.4;
  text-align: center;
}

.content-list {
  margin-top: 1.5rem;
  color: var(--color-text-light);
}

.content-list li {
  margin-bottom: 0;
}

.wide-chart {
  width: 100%;
  max-width: var(--content-medium);
  margin: 0 auto;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
}

.chart-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.chart-gallery img {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
}

.contact-details h2 {
  font-size: 2.3rem;
  margin-bottom: 2rem;
}

.contact-info-block {
  position: relative;
  padding-bottom: 1.25rem;
  padding-left: 3.2rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.contact-info-icon {
  position: absolute;
  top: 0.1rem;
  left: 0;
  width: 36px;
  height: 36px;
  padding: 0.45rem;
  border-radius: 8px;
  background: #fff8e8;
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-block h4 {
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.contact-info-block p {
  margin-bottom: 0;
  line-height: 1.65;
}

.contact-info-block a:not(.btn) {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
  font-weight: 500;
}

.contact-info-block a:not(.btn):hover {
  color: var(--color-gold-dark);
  text-decoration-thickness: 2px;
}

.contact-info-sub,
.contact-location.contact-info-sub {
  margin-top: 1.25rem;
}

.contact-location p:last-child {
  margin-bottom: 0;
}

.contact-country-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.45rem;
}

.contact-country-head strong {
  font-weight: 600;
  color: var(--color-text-dark);
}

.contact-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.25rem;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(138, 100, 31, 0.15);
}

.contact-flag img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-phone-line {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.5rem;
}

.contact-phone-line:last-child {
  margin-bottom: 0;
}

.contact-info-block p strong {
  font-weight: 600;
  color: var(--color-text-dark);
}

.footer-address {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  line-height: 1.55;
  max-width: 280px;
}

@media (min-width: 1280px) {
  .about-grid,
  .product-showcase,
  .split-feature {
    gap: 5rem;
  }

  .footer-grid {
    grid-template-columns: 1.15fr repeat(3, 1fr);
    gap: 4rem;
  }

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

  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 1024px) {
  .contact-main .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-main .contact-panel {
    width: 100%;
    min-height: 420px;
    height: 420px;
  }

  .stats-grid,
  .process-grid:not(.process-flow),
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-section {
    --process-marker-size: 6.5rem;
    --process-gap-col: 2rem;
    --process-gap-row: 2.5rem;
    --process-body-max: 18rem;
  }

  .process-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--process-gap-row) var(--process-gap-col);
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .process-step:nth-child(odd):not(:nth-last-child(1))::after {
    display: block;
    top: calc(var(--process-marker-size) / 2);
    left: calc(50% + (var(--process-marker-size) / 2) + var(--process-line-gap));
    width: calc(100% + var(--process-gap-col) - var(--process-marker-size) - (var(--process-line-gap) * 2));
    height: 2px;
    transform: translateY(-50%);
  }

  .process-step__body p {
    min-height: 0;
  }

  .hero-trust-list {
    gap: 1.75rem 2.5rem;
  }

  .shape-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .shape-chip-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .visual-story-grid,
  .education-shape-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-lab-grid {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 320px);
    align-items: start;
  }

  .why-lab-grid .mini-grid {
    grid-area: cards;
  }

  .product-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-intro-grid,
  .product-detail-band,
  .product-editorial-grid,
  .product-dark-grid,
  .product-info-head {
    grid-template-columns: 1fr;
  }

  .product-editorial-grid {
    gap: 2rem;
    overflow: visible;
  }

  .product-info-head {
    gap: 1rem;
    align-items: start;
  }

  .product-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-info-card:nth-child(3n) {
    border-right: 1px solid rgba(138, 100, 31, 0.13);
  }

  .product-info-card:nth-child(2n) {
    border-right: 0;
  }

  .product-info-card:nth-last-child(-n + 3) {
    border-bottom: 1px solid rgba(138, 100, 31, 0.13);
  }

  .product-info-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .product-visual-stack {
    grid-template-rows: 160px minmax(260px, 360px);
    max-width: 100%;
    justify-self: stretch;
  }

  .product-spec-rail-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-spec-rail-inner div:nth-child(2n) {
    border-right: 0;
  }

  .product-spec-rail-inner div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(138, 100, 31, 0.16);
  }

  .product-link-grid {
    grid-template-columns: 1fr;
  }

  .product-row {
    grid-template-columns: 1fr;
    height: auto;
  }

  .product-row:nth-child(even) .product-row-media {
    order: 0;
  }
}

@media (max-width: 768px) {
  .hero-bg {
    object-position: 50% center;
  }

  .hero-bg-lab {
    object-position: 88% center;
  }

  .lab-product-header::before {
    background-position: 86% center;
  }

  .hero-slide-split .hero-bg {
    left: 0;
    top: 0;
    width: 100%;
    height: 48%;
    object-position: center center;
  }

  .hero-slide .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.52) 16%,
        rgba(0, 0, 0, 0.22) 32%,
        transparent 44%,
        transparent 56%,
        rgba(0, 0, 0, 0.28) 74%,
        rgba(0, 0, 0, 0.55) 88%,
        rgba(0, 0, 0, 0.72) 100%
      ),
      linear-gradient(
        to right,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.35) 40%,
        rgba(0, 0, 0, 0.35) 60%,
        rgba(0, 0, 0, 0.55) 100%
      );
  }

  .hero-slide-split .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.18) 32%,
        #020202 48%,
        #020202 100%
      );
  }

  .hero-slide-split .hero-shell {
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 3.25rem;
  }

  .hero-slide-split .hero-copy {
    text-align: center;
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }

  .hero-showcase {
    --hero-trust-zone: clamp(5.75rem, 14vh, 7.25rem);
  }

  .hero-slide .hero-shell {
    padding-top: calc(var(--header-height) + 0.5rem);
    align-items: center;
    justify-content: center;
  }

  .hero-slide .hero-column,
  .hero-showcase > .hero-shell .hero-column {
    margin-left: 0;
    padding-right: 0;
    width: 100%;
  }

  .hero-copy {
    text-align: center;
    margin-inline: auto;
    width: 100%;
    max-width: 100%;
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
    box-sizing: border-box;
  }

  .hero-eyebrow,
  .hero-title,
  .hero-lead {
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
    max-width: 22rem;
  }

  .hero-showcase .hero-actions {
    justify-content: center;
    width: 100%;
    padding-inline: var(--page-gutter);
    box-sizing: border-box;
  }

  .hero-showcase .hero-actions .btn {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .hero-slider-controls {
    right: 50%;
    bottom: 1.35rem;
    left: auto;
    transform: translateX(50%);
    justify-content: center;
  }

  .hero-arrow {
    display: none;
  }

  .hero-trust {
    display: none;
  }

  .hero-trust-label {
    text-align: center;
  }

  .hero-trust-list {
    justify-content: center;
  }

  .hero-actions,
  .left-actions,
  .cta-content {
    align-items: stretch;
    flex-direction: column;
    justify-content: center;
  }

  .why-lab-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "image"
      "cards";
  }

  .why-lab-image {
    max-width: 360px;
    margin-inline: auto;
  }

  .stats-grid,
  .process-grid:not(.process-flow),
  .grid-4,
  .mini-grid,
  .cert-grid,
  .cert-logo-grid {
    grid-template-columns: 1fr;
  }

  .process-section {
    --process-marker-size: 5.5rem;
    --process-gap-icon-text: 0;
    --process-gap-col: 0;
    --process-gap-row: 2rem;
    --process-body-max: none;
    --process-line-gap: 0.35rem;
  }

  .process-section .section-title {
    margin-bottom: 2.25rem;
  }

  .process-flow {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 0 0.25rem;
    position: relative;
  }

  /* Single vertical timeline — reliable across uneven step heights */
  .process-flow::before {
    content: "";
    position: absolute;
    left: calc(var(--process-marker-size) / 2);
    top: calc(var(--process-marker-size) / 2);
    bottom: calc(var(--process-marker-size) / 2);
    width: 2px;
    transform: translateX(-50%);
    background: repeating-linear-gradient(
      180deg,
      rgba(138, 100, 31, 0.45) 0,
      rgba(138, 100, 31, 0.45) 5px,
      transparent 5px,
      transparent 11px
    );
    pointer-events: none;
    z-index: 0;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .process-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1.5rem;
    padding: 0 0 var(--process-gap-row);
    max-width: none;
  }

  .process-step:last-child {
    padding-bottom: 0;
  }

  .process-marker-wrap {
    margin-bottom: 0;
    z-index: 1;
    flex-shrink: 0;
  }

  .process-shape__icon {
    width: 2rem;
    height: 2rem;
  }

  .process-step__body {
    flex: 1;
    min-width: 0;
    max-width: none;
    padding-top: 0.2rem;
  }

  .process-step__body h3 {
    font-size: 1.2rem;
  }

  .process-step__body p {
    min-height: 0;
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .hero-trust-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .shape-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shape-nav-row {
    margin-top: 1.5rem;
    gap: 2rem;
  }

  .shape-swiper {
    margin-top: 3rem;
  }

  .shape-slide {
    min-height: 330px;
  }

  .shape-slide.swiper-slide-active img {
    width: 160px;
    height: 188px;
  }

  .shape-chip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shape-chip-grid button {
    min-height: 64px;
  }

  .product-visual-grid,
  .chart-gallery,
  .visual-story-grid,
  .report-grid,
  .education-shape-grid {
    grid-template-columns: 1fr;
  }

  .product-visual-card,
  .product-visual-card img {
    min-height: 260px;
  }

  .product-link-card {
    height: 320px;
  }

  .product-row,
  .product-row-media,
  .product-row-media img {
    height: auto;
    min-height: 260px;
  }

  .product-row-content {
    height: auto;
    min-height: auto;
    padding: 1.5rem;
  }

  .product-spec-panel {
    grid-template-columns: 1fr;
  }

  .product-spec-panel div,
  .product-spec-panel div:nth-child(2n),
  .product-spec-panel div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(138, 100, 31, 0.12);
  }

  .product-spec-panel div:last-child {
    border-bottom: 0;
  }

  .product-detail-image,
  .product-detail-image img {
    min-height: 300px;
  }

  .product-editorial-copy h2 {
    max-width: 100%;
  }

  .product-visual-stack,
  .product-use-grid,
  .product-info-grid,
  .product-spec-rail-inner {
    grid-template-columns: 1fr;
  }

  .product-info-panel {
    padding: 4rem 0;
  }

  .product-info-card,
  .product-info-card:nth-child(2n),
  .product-info-card:nth-child(3n),
  .product-info-card:nth-last-child(-n + 2),
  .product-info-card:nth-last-child(-n + 3) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(138, 100, 31, 0.13);
  }

  .product-info-card:last-child {
    border-bottom: 0;
  }

  .product-visual-stack {
    grid-template-rows: auto;
  }

  .product-visual-stack img:first-child,
  .product-visual-stack img:nth-child(2),
  .product-visual-stack img:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
    height: 260px;
  }

  .product-spec-rail-inner div,
  .product-spec-rail-inner div:nth-child(2n),
  .product-spec-rail-inner div:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(138, 100, 31, 0.16);
  }

  .product-spec-rail-inner div:last-child {
    border-bottom: 0;
  }

  .story-image-card img {
    height: 240px;
  }

  .image-band {
    padding-bottom: 4rem;
  }

  .image-band img {
    width: calc(100% - (var(--page-gutter) * 2));
    height: 260px;
  }

  .framed-image img {
    min-height: 300px;
  }

  .statement-card,
  .feature-card,
  .process-grid:not(.process-flow) .process-step {
    padding: 1.5rem;
  }

  .contact-details h2 {
    font-size: 1.85rem;
    line-height: 1.12;
  }
}
