/* ═══════════════════════════════════════════════════════════
   PHOMI-MN — Main Stylesheet
   phomi-mn luxury architecture surfaces site
═══════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:         #0f0f0f;
  --off-black:     #1a1a1a;
  --charcoal:      #2d2d2d;
  --gray-dark:     #444444;
  --gray-mid:      #777777;
  --gray-light:    #aaaaaa;
  --gray-100:      #f5f5f3;
  --gray-200:      #ededed;
  --white:         #ffffff;
  --off-white:     #faf9f7;
  --accent:        rgb(119,199,209);
  --accent-dark:   rgb(85,168,179);

  --font-heading:  'Cormorant Garamond', 'Georgia', serif;
  --font-body:     'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-height:    72px;
  --nav-height-sm: 60px;
  --container:     1280px;
  --section-pad:   100px;
  --section-pad-sm: 60px;

  --ease-out:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);
  --spring:        cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.section-padded {
  padding: var(--section-pad) 0;
}

/* ─── NAVIGATION ───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s var(--ease-out);
}

.nav-wrapper {
  height: var(--nav-height);
  transition: height 0.4s var(--ease-out);
}

.site-header.scrolled .nav-wrapper {
  background: var(--accent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
}

.site-header.at-top .nav-wrapper {
  background: transparent;
}

.site-header.scrolled .nav-link,
.site-header.scrolled .logo-text,
.site-header.scrolled .nav-action-link,
.site-header.scrolled .nav-lang {
  color: var(--white);
}

.site-header.scrolled .nav-hamburger span {
  background: var(--white);
}

.nav-container {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  gap: 24px;
}

/* Logo */
.nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--white);
  transition: color 0.3s;
  text-transform: uppercase;
}
.logo-img { height: 48px; width: auto; }

/* Desktop menu */
.nav-menu {
  display: flex;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.nav-item { position: relative; }

.nav-link {
  display: block;
  padding: 0 18px;
  line-height: var(--nav-height);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-link:hover { color: var(--accent); }

.site-header.scrolled .nav-link:hover { color: rgba(255,255,255,0.7); }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-action-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
}
.nav-action-link:hover { color: var(--accent); }

.nav-action-btn {
  padding: 9px 20px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s;
}
.nav-action-btn:hover { background: var(--accent-dark); transform: translateY(-1px); }
.site-header.scrolled .nav-action-btn { background: var(--white); color: var(--accent); }
.site-header.scrolled .nav-action-btn:hover { background: rgba(255,255,255,0.85); }
.site-header.scrolled .nav-action-link:hover { color: rgba(255,255,255,0.7); }

.nav-lang {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.75);
  padding: 4px 0;
  transition: color 0.3s;
}
.nav-lang:hover { color: var(--accent); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu-list {
  text-align: center;
  width: 100%;
  padding: 0 40px;
}
.mobile-menu-list li { overflow: hidden; }
.mobile-menu-link {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--white);
  padding: 12px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s, color 0.3s;
}
.mobile-menu.open .mobile-menu-link {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.open .mobile-menu-list li:nth-child(1) .mobile-menu-link { transition-delay: 0.05s; }
.mobile-menu.open .mobile-menu-list li:nth-child(2) .mobile-menu-link { transition-delay: 0.10s; }
.mobile-menu.open .mobile-menu-list li:nth-child(3) .mobile-menu-link { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu-list li:nth-child(4) .mobile-menu-link { transition-delay: 0.20s; }
.mobile-menu.open .mobile-menu-list li:nth-child(5) .mobile-menu-link { transition-delay: 0.25s; }
.mobile-menu.open .mobile-menu-list li:nth-child(6) .mobile-menu-link { transition-delay: 0.30s; }
.mobile-menu.open .mobile-menu-list li:nth-child(7) .mobile-menu-link { transition-delay: 0.35s; }
.mobile-menu.open .mobile-menu-list li:nth-child(8) .mobile-menu-link { transition-delay: 0.40s; }
.mobile-menu.open .mobile-menu-list li:nth-child(9) .mobile-menu-link { transition-delay: 0.45s; }
.mobile-menu-link:hover { color: var(--accent); }
.mobile-menu-link--highlight { color: var(--accent); }
.mobile-menu-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 16px 0; }

/* ─── HERO SECTION ─────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s var(--ease-in-out);
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: all;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg--image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s var(--ease-out);
}
.hero-slide.active .hero-bg--image {
  transform: scale(1);
}
.hero-bg--video {
  object-fit: cover;
}
.hero-bg--gradient {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d3e 50%, #1a1a2e 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,var(--slide-opacity, 0.3));
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 40px;
  padding-top: var(--nav-height);
}

.hero-content-inner {
  max-width: 680px;
  margin-left: calc((100vw - var(--container)) / 2);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: inherit;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: inherit;
  opacity: 0.88;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.7);
  color: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out);
}
.hero-cta:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  gap: 16px;
}
.hero-cta-arrow { transition: transform 0.3s; }
.hero-cta:hover .hero-cta-arrow { transform: translateX(4px); }

/* Reveal animations */
.reveal-text {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.hero-slide.active .reveal-text { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.hero-slide.active .reveal-text--delay { transition-delay: 0.5s; }
.hero-slide.active .reveal-text--delay2 { transition-delay: 0.7s; }

/* Hero indicators */
.hero-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.hero-indicator {
  width: 32px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  padding: 0;
  transition: width 0.3s;
}
.hero-indicator.active { width: 48px; }
.indicator-progress {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  background: var(--white);
  width: 0%;
}
.hero-indicator.active .indicator-progress {
  animation: progress-fill var(--slide-duration, 5000ms) linear forwards;
}
@keyframes progress-fill { from { width: 0% } to { width: 100% } }

/* Hero arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  transition: all 0.3s;
}
.hero-arrow:hover {
  color: var(--white);
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.hero-arrow--prev { left: 40px; }
.hero-arrow--next { right: 40px; }

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  z-index: 10;
}

/* Hero social icons — bottom-right corner */
.hero-social {
  position: absolute;
  bottom: 32px;
  right: 32px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  z-index: 10;
}
.hero-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: color 0.25s, border-color 0.25s, background 0.25s, transform 0.25s;
  text-decoration: none;
}
.hero-social-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.4);
  animation: scroll-pulse 2s ease-in-out infinite;
}
.scroll-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(0.7); opacity: 0.8; }
}

/* ─── SECTION HEADERS ──────────────────────────────────── */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--black);
}

.section-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-dark);
  border-bottom: 1px solid var(--gray-dark);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color 0.3s, border-color 0.3s;
}
.section-link:hover { color: var(--accent); border-color: var(--accent); }

/* ─── CATEGORIES ───────────────────────────────────────── */
.categories-section {
  padding: 0;
  background: var(--off-white);
}

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

.category-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9/10;
  display: block;
}
.category-card-inner { position: relative; width: 100%; height: 100%; overflow: hidden; }

.category-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-out);
}
.category-card:hover .category-img { transform: scale(1.05); }

/* Placeholder category gradients */
.category-img--kitchens    { background: linear-gradient(160deg, #e8ddd4, #c5b8ab); }
.category-img--bathrooms   { background: linear-gradient(160deg, #d4dde8, #a8b8c8); }
.category-img--facades     { background: linear-gradient(160deg, #d8e4d8, #a8c0a8); }
.category-img--commercial  { background: linear-gradient(160deg, #e4e0d8, #c0bab0); }

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  transition: background 0.4s;
}
.category-card:hover .category-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.category-content {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}
.category-name {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.03em;
}
.category-arrow {
  font-size: 1.2rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s var(--ease-out);
}
.category-card:hover .category-arrow { opacity: 1; transform: translateX(0); }

/* ─── OUR TECHNOLOGIES ──────────────────────────────────── */
.technologies-section {
  background: var(--off-black);
  color: var(--white);
  padding: 120px 0;
}

.tech-header {
  max-width: 720px;
  margin-bottom: 72px;
}

.tech-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.tech-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 24px;
}

.tech-intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 560px;
}

.technologies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.tech-card {
  display: flex;
  flex-direction: column;
  padding: 52px 36px 48px;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
  transition: background 0.35s;
}
.tech-card:last-child { border-right: none; }
.tech-card:hover { background: rgba(255,255,255,0.04); }

.tech-icon {
  color: var(--accent);
  margin-bottom: 36px;
  transition: transform 0.4s var(--ease-out);
}
.tech-card:hover .tech-icon { transform: translateY(-4px); }

.tech-number {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.22);
  margin-bottom: 14px;
}

.tech-name {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.2vw, 2.4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}
.tech-name em {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.52em;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 6px;
}

.tech-desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 32px;
}

.tech-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: border-color 0.3s, color 0.3s;
}
.tech-link:hover { border-color: var(--white); color: var(--white); }

/* ─── COLLECTIONS ──────────────────────────────────────── */
.collections-section { background: var(--off-white); }

.collections-showcase {
  display: flex;
  flex-direction: row;
  gap: 0;
  margin-top: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.collections-showcase::-webkit-scrollbar { display: none; }

.collection-panel {
  flex: 1 0 25%;
  min-width: 220px;
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  scroll-snap-align: start;
}

.collection-panel-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.collection-panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--charcoal);
  transition: transform 0.8s var(--ease-out);
}
.collection-panel:hover .collection-panel-bg { transform: scale(1.04); }

.collection-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
  transition: opacity 0.4s;
}
.collection-panel:hover .collection-panel-overlay { opacity: 0.9; }

.collection-panel-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
  color: var(--white);
  transform: translateY(0);
  transition: transform 0.4s var(--ease-out);
}
.collection-panel:hover .collection-panel-content { transform: translateY(-4px); }

.collection-logo { height: 32px; width: auto; margin-bottom: 10px; object-fit: contain; }
.collection-name {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.4vw, 1.8rem);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.15;
  margin-bottom: 8px;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}
.collection-tagline {
  font-size: clamp(0.72rem, 1.2vw, 0.85rem);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.5;
  opacity: 0.85;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.collection-cta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 1;
  transition: opacity 0.3s, transform 0.3s;
}
@media (hover: hover) {
  .collection-cta { opacity: 0; transform: translateY(4px); }
  .collection-panel:hover .collection-cta { opacity: 1; transform: translateY(0); }
}

/* ─── PRODUCTS ─────────────────────────────────────────── */
.products-section { background: var(--white); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--gray-100);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }

.product-card-image {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--gray-200);
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.product-card:hover .product-img { transform: scale(1.06); }
.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gray-200), var(--gray-100));
  color: var(--gray-light);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover .product-card-overlay { opacity: 1; }
.product-card-view {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.7);
}

.product-card-info { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.product-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.product-brand {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 5px 9px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.availability-badge--stock {
  background: rgba(119,199,209,0.16);
  color: var(--accent-dark);
}

.availability-badge--factory {
  background: rgba(15,15,15,0.08);
  color: var(--gray-dark);
}

.availability-badge--detail {
  margin-top: 22px;
}
.product-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 4px;
  line-height: 1.3;
}
.product-color {
  display: block;
  font-size: 0.72rem;
  color: var(--gray-mid);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.product-desc {
  font-size: 0.8rem;
  color: var(--gray-dark);
  line-height: 1.5;
  margin-bottom: 12px;
}
.product-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 1px;
  transition: color 0.3s, border-color 0.3s;
  margin-top: auto;
  align-self: flex-start;
}
.product-card:hover .product-link { color: var(--accent); border-color: var(--accent); }

/* Product catalog pages */
.catalog-page,
.product-detail-page {
  background: var(--white);
}

/* ── Page Hero (Products, About Us) — full-height slider ── */
.page-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--black);
}

.page-hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  padding-top: var(--nav-height);
  pointer-events: none;
  color: #fff;
}

.page-hero-content .eyebrow { color: var(--accent); }

.page-hero-content h1 {
  max-width: 820px;
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  color: #fff;
}

.page-hero-content p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.8;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-detail-copy h1 {
  max-width: 820px;
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
}

.catalog-shell {
  background: var(--off-white);
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 26px;
}

.catalog-count,
.catalog-reset,
.catalog-chip,
.catalog-family small {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-count {
  color: var(--accent-dark);
}

.catalog-toolbar h2 {
  margin-top: 8px;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1;
}

.catalog-reset,
.catalog-chip {
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--black);
  transition: border-color 0.3s, background 0.3s, color 0.3s;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
}

.catalog-reset {
  padding: 12px 18px;
}

.catalog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}

.catalog-chip {
  padding: 10px 14px;
}

.catalog-reset.is-active,
.catalog-chip.is-active,
.catalog-reset:hover,
.catalog-chip:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

.catalog-filter--sub {
  margin-top: -26px;
  margin-bottom: 28px;
  padding-left: 14px;
  border-left: 2px solid var(--accent);
}

.catalog-filter--sub:not([hidden]) {
  animation: subRowIn 0.2s ease;
}

@keyframes subRowIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.catalog-chip--sub {
  padding: 7px 12px;
  font-size: 0.72rem;
  opacity: 0.75;
}

.catalog-chip--sub.is-active,
.catalog-chip--sub:hover { opacity: 1; }

/* Product card filter fade */
.product-card {
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.product-card.cat-hidden {
  opacity: 0;
  transform: scale(0.97);
  pointer-events: none;
}

.catalog-collections {
  display: flex;
  flex-direction: row;
  gap: 2px;
  margin-bottom: 44px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.catalog-collections::-webkit-scrollbar { display: none; }

.catalog-family {
  flex: 0 0 clamp(200px, 28vw, 320px);
  min-height: 148px;
  padding: 28px;
  background: linear-gradient(135deg, var(--family-color), #202020);
  color: var(--white);
  scroll-snap-align: start;
}

.catalog-family span {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.05;
}

.catalog-family small {
  color: rgba(255,255,255,0.72);
}

.catalog-grid {
  gap: 14px;
}

.catalog-product-card {
  border: 1px solid rgba(0,0,0,0.06);
}

.catalog-swatch {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #d6d0c4, #70675e);
}

.catalog-swatch::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(35deg, transparent 0 34%, rgba(255,255,255,0.28) 35% 36%, transparent 37% 100%),
    linear-gradient(145deg, rgba(0,0,0,0.18), transparent 52%);
  transform: rotate(6deg);
}

.catalog-swatch span {
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catalog-swatch--nature-stone { background: linear-gradient(135deg, #d8d1c7, #6e6a64 58%, #272522); }
.catalog-swatch--travertine { background: linear-gradient(135deg, #eadcc6, #b99b73 52%, #6d553a); }
.catalog-swatch--art-stone { background: linear-gradient(135deg, #c8c4bd, #918b80 45%, #363533); }
.catalog-swatch--wood { background: linear-gradient(135deg, #d1a46c, #7a4c2d 55%, #2a1710); }
.catalog-swatch--brick { background: linear-gradient(135deg, #b66b54, #7f342b 56%, #2e1714); }
.catalog-swatch--weaving { background: linear-gradient(135deg, #d6c6a7, #9a8060 52%, #463522); }
.catalog-swatch--leather { background: linear-gradient(135deg, #8c5c3c, #4b2c21 58%, #1b1210); }
.catalog-swatch--esolarfacade-ebipv { background: linear-gradient(135deg, #e8f5f4, #77c7d1 48%, #1b444b); }
.catalog-swatch--edisplay-curtain { background: linear-gradient(135deg, #151515, #273434 42%, #77c7d1); }

.catalog-empty {
  padding: 64px;
  background: var(--white);
  text-align: center;
}

.catalog-empty h3 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 300;
}

.product-detail-hero {
  padding: calc(var(--nav-height) + 72px) 0 84px;
  background: var(--black);
  color: var(--white);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.84fr);
  gap: 72px;
  align-items: center;
}

.product-detail-media {
  min-height: 520px;
  background: var(--off-black);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-detail-media > img,
.product-detail-media > .catalog-swatch {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  flex: 1;
}

/* gallery fills the media box; the thumb strip sits flush at the bottom */
.product-detail-media > .color-gallery {
  flex: 1;
  min-height: 0;
}

.back-link {
  display: inline-block;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.7);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-lede {
  margin: 28px 0 34px;
  color: rgba(255,255,255,0.76);
  font-size: 1.04rem;
  line-height: 1.82;
}

.product-meta-list {
  display: grid;
  gap: 1px;
  margin-bottom: 36px;
}

.product-meta-list div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.product-meta-list span {
  color: rgba(255,255,255,0.54);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-meta-list strong {
  font-weight: 400;
  text-align: right;
}

.detail-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-detail-body {
  padding: 72px 0;
  background: var(--off-white);
}

.product-detail-body-inner {
  max-width: 880px;
}

.product-detail-body h2 {
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
}

.product-detail-body p {
  color: var(--gray-dark);
  font-size: 1.02rem;
  line-height: 1.84;
}

.product-inquiry-section {
  padding: 88px 0;
  background: var(--white);
}

.product-inquiry-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: start;
}

.product-inquiry-grid h2 {
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 0.98;
}

.product-inquiry-grid p:not(.eyebrow) {
  max-width: 420px;
  color: var(--gray-dark);
  line-height: 1.8;
}

.product-inquiry-form {
  padding: 34px;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
}

.inquiry-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.product-inquiry-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-inquiry-form span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-dark);
}

.product-inquiry-form input,
.product-inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--gray-200);
  background: var(--white);
  padding: 13px 14px;
  font: inherit;
  color: var(--black);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.product-inquiry-form input:focus,
.product-inquiry-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(119,199,209,0.16);
}

.inquiry-field-full {
  grid-column: 1 / -1;
}

.inquiry-alert {
  margin-bottom: 18px;
  padding: 13px 14px;
  font-size: 0.86rem;
  font-weight: 500;
}

.inquiry-alert--success {
  background: rgba(119,199,209,0.15);
  color: var(--accent-dark);
}

.inquiry-alert--error {
  background: #fff1f2;
  color: #9f1239;
}

/* ─── PROMO BANNER ─────────────────────────────────────── */
.promo-banner {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.promo-banner-bg {
  position: absolute;
  inset: 0;
  background: url('/images/promo-bg.jpg') center/cover no-repeat;
  background-color: #2a2a35;
}
.promo-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 20, 0.65);
}
.promo-banner-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  color: var(--white);
}
.promo-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.promo-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 600px;
}
.promo-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.8;
  max-width: 520px;
  margin-bottom: 40px;
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.7);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

/* ─── INSPIRATION ──────────────────────────────────────── */
.inspiration-section { background: var(--off-white); }

.inspiration-filters {
  display: flex;
  gap: 4px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 9px 22px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-dark);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: all 0.25s;
  cursor: pointer;
  border-radius: 2px;
}
.filter-btn:hover { border-color: var(--charcoal); color: var(--black); }
.filter-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }

.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.inspiration-card.hidden { display: none; }

.inspiration-card {
  display: block;
  overflow: hidden;
  background: var(--gray-100);
}
.inspiration-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.inspiration-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.inspiration-card:hover .inspiration-img { transform: scale(1.06); }

/* Placeholder inspiration gradients */
.inspiration-img-placeholder { width: 100%; height: 100%; }
.inspiration-img-placeholder--0 { background: linear-gradient(135deg, #e8d5c4, #d4b8a0); }
.inspiration-img-placeholder--1 { background: linear-gradient(135deg, #c4d8e8, #a0b8d4); }
.inspiration-img-placeholder--2 { background: linear-gradient(135deg, #d4e8c4, #b0d0a0); }
.inspiration-img-placeholder--3 { background: linear-gradient(135deg, #e8e4c4, #d0c8a0); }
.inspiration-img-placeholder--4 { background: linear-gradient(135deg, #e4c4e8, #c8a0d0); }
.inspiration-img-placeholder--5 { background: linear-gradient(135deg, #c4e4e8, #a0c8d0); }

.inspiration-card-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.inspiration-card:hover .inspiration-card-hover { opacity: 1; }
.inspiration-view {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.7);
}

.inspiration-card-info { padding: 20px; }
.inspiration-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.inspiration-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 8px;
}
.inspiration-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--gray-mid);
}

/* ─── EVENTS ───────────────────────────────────────────── */
.events-section { background: var(--white); }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.event-card {
  display: flex;
  flex-direction: column;
  background: var(--off-white);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.event-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }

.event-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-200);
}
.event-image--placeholder {
  background: linear-gradient(135deg, #e8d8c8, #d0c0b0);
}
.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.event-card:hover .event-image img { transform: scale(1.05); }

.event-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.event-date {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.event-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.3;
}
.event-location {
  font-size: 0.78rem;
  color: var(--gray-mid);
  margin-bottom: 12px;
}
.event-description {
  font-size: 0.82rem;
  color: var(--gray-dark);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}
.event-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 1px;
  align-self: flex-start;
  transition: color 0.3s, border-color 0.3s;
}
.event-card:hover .event-link { color: var(--accent); border-color: var(--accent); }

/* ─── NEWSLETTER ───────────────────────────────────────── */
.newsletter-section {
  background: var(--black);
  padding: 80px 0;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.newsletter-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}
.newsletter-subtitle {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.newsletter-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.newsletter-tab {
  padding: 10px 24px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: color 0.3s;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.newsletter-tab.active { color: var(--white); border-bottom-color: var(--accent); }
.newsletter-tab:hover { color: rgba(255,255,255,0.85); }

.newsletter-input-group {
  display: flex;
  gap: 0;
  margin-bottom: 12px;
}
.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-right: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color: rgba(255,255,255,0.5); }

.newsletter-submit {
  padding: 14px 28px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
  border: 1px solid var(--accent);
}
.newsletter-submit:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

.newsletter-privacy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}
.newsletter-privacy a { color: rgba(255,255,255,0.6); text-decoration: underline; }
.newsletter-privacy a:hover { color: var(--accent); }

.newsletter-message {
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 500;
  min-height: 20px;
}
.newsletter-message.success { color: #7ccc82; }
.newsletter-message.error { color: #f07070; }

/* ─── FOOTER ───────────────────────────────────────────── */
.site-footer { background: var(--off-black); color: var(--white); }

.footer-top { padding: 80px 0 60px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  margin-bottom: 16px;
}
.footer-logo { height: 38px; width: auto; margin-bottom: 16px; }

.footer-tagline {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 280px;
}
.footer-address {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social { display: flex; gap: 16px; }
.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s;
}
.social-link:hover { border-color: var(--accent); color: var(--accent); }

.footer-heading {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
  line-height: 1.5;
}
.footer-links a:hover { color: var(--white); }

.footer-contact-link {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  transition: color 0.3s;
}
.footer-contact-link:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ─── COOKIE BANNER ────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--black);
  color: var(--white);
  padding: 20px 40px;
  z-index: 1100;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-content {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cookie-content p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.cookie-content a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
  padding: 9px 22px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 2px;
  font-family: var(--font-body);
}
.cookie-btn--reject { border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.7); background: transparent; }
.cookie-btn--reject:hover { border-color: var(--white); color: var(--white); }
.cookie-btn--accept { background: var(--accent); color: var(--white); border: 1px solid var(--accent); }
.cookie-btn--accept:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

/* ─── BACK TO TOP ──────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 44px;
  height: 44px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }

/* ─── SCROLL REVEAL ────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-up.in-view { opacity: 1; transform: translateY(0); }

/* ─── PARALLAX ─────────────────────────────────────────── */
.parallax-bg { will-change: transform; }

/* ─── 404 / 500 ────────────────────────────────────────── */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}
.error-page h1 {
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 300;
  color: var(--gray-200);
  line-height: 1;
}
.error-page h2 { font-size: 1.5rem; margin-bottom: 16px; }
.error-page p { color: var(--gray-mid); margin-bottom: 32px; }
.error-page a { color: var(--accent); text-decoration: underline; }

/* About Page */
.nav-link.active { color: var(--accent); }
.about-page { background: var(--white); }
.about-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}
.about-hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.74) 0%, rgba(0,0,0,0.48) 42%, rgba(0,0,0,0.18) 100%),
    linear-gradient(0deg, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.08) 58%);
}
.about-hero-content {
  position: relative;
  z-index: 1;
  width: min(880px, calc(100% - 80px));
  margin: 0 auto;
  padding: 0 0 96px;
}
.about-kicker,
.section-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.about-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 0.95;
  margin-bottom: 24px;
}
.about-hero p {
  max-width: 720px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 300;
  color: rgba(255,255,255,0.86);
}
.about-intro-grid,
.about-band-grid,
.about-app-grid,
.about-sustain-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 72px;
  align-items: start;
}
.about-lede {
  display: grid;
  gap: 20px;
  color: var(--gray-dark);
  font-size: 1.05rem;
}
.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--gray-200);
  border-left: 1px solid var(--gray-200);
}
.about-stat {
  min-height: 150px;
  padding: 28px 22px;
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: var(--off-white);
}
.about-stat strong {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1;
}
.about-stat span {
  display: block;
  color: var(--gray-dark);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-band {
  padding: 110px 0;
  background: var(--off-black);
  color: var(--white);
}
.about-band-copy h2,
.about-app-grid h2,
.about-sustain h2,
.about-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.05;
}
.about-band-copy p,
.about-app-grid p,
.about-sustain p {
  margin-top: 24px;
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
}
.about-team-list {
  display: grid;
  gap: 18px;
}
.about-person {
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.045);
}
.about-person h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
}
.about-person span {
  display: block;
  margin: 6px 0 16px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.about-person p {
  color: rgba(255,255,255,0.72);
  font-size: 0.96rem;
}
.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}
.about-proof-card {
  min-height: 320px;
  padding: 34px 28px;
  background: var(--white);
}
.about-proof-card span {
  display: block;
  margin-bottom: 24px;
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.about-proof-card h3 {
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.1;
}
.about-proof-card p {
  color: var(--gray-dark);
  font-size: 0.95rem;
}
.about-applications {
  padding: 110px 0;
  background: var(--gray-100);
}
.about-app-grid p,
.about-sustain p {
  color: var(--gray-dark);
}
.about-app-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.about-app-list li {
  min-height: 86px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  background: var(--white);
  color: var(--charcoal);
  font-size: 0.95rem;
  border-left: 3px solid var(--accent);
}
.about-sustain { background: var(--white); }
.about-sustain-grid article {
  padding: 44px;
  background: var(--off-white);
}
.about-check-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.about-check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--charcoal);
}
.about-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  background: var(--accent);
}
.about-cta {
  padding: 120px 0;
  background: var(--black);
  color: var(--white);
  text-align: center;
}
.about-cta-inner {
  max-width: 860px;
  margin: 0 auto;
}
.about-cta .hero-cta {
  margin-top: 34px;
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
  :root { --container: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-col--brand { grid-column: 1 / -1; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  /* collections-showcase is a scroll row — no grid override needed */
  /* catalog-collections is a scroll row — no grid override needed */
  .about-stat-grid { grid-template-columns: repeat(3, 1fr); }
  .about-proof-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  :root { --section-pad: 72px; }
  .nav-menu { display: none; }
  .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .nav-container { gap: 0; }

  .hero-content { padding: 0 24px; }
  .hero-content-inner { margin-left: 0; }
  .hero-arrow--prev { left: 16px; }
  .hero-arrow--next { right: 16px; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  /* collections-showcase scroll row — no override needed */
  /* catalog-collections scroll row — no override needed */
  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-inquiry-grid { grid-template-columns: 1fr; gap: 36px; }
  .product-detail-media,
  .product-detail-media img,
  .product-detail-media .catalog-swatch { min-height: 420px; }
  .technologies-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-card { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .tech-card:nth-child(2n) { border-right: none; }
  .inspiration-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-intro-grid,
  .about-band-grid,
  .about-app-grid,
  .about-sustain-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 56px;
    --nav-height: var(--nav-height-sm);
  }
  .container { padding: 0 24px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 40px; }
  .catalog-toolbar { flex-direction: column; align-items: flex-start; }
  .page-hero-content { padding-bottom: 60px; }
  .page-hero-content h1,
  .product-detail-copy h1 { font-size: 3.2rem; }

  .hero-title { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .hero-scroll-indicator { display: none; }
  .hero-indicators { bottom: 24px; }
  .hero-social { bottom: 20px; right: 16px; gap: 6px; }
  .hero-social-link { width: 30px; height: 30px; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card { aspect-ratio: 3/4; }

  .technologies-section { padding: 72px 0; }
  .technologies-grid { grid-template-columns: 1fr; }
  .tech-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 40px 24px; }
  .tech-card:last-child { border-bottom: none; }

  /* collections-showcase scroll row — no override needed */
  .collection-panel { aspect-ratio: 4/3; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-col--brand { grid-column: 1 / -1; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 16px; }
  .footer-legal { justify-content: center; }
  .about-hero { min-height: 68vh; }
  .about-hero-content {
    width: calc(100% - 48px);
    padding-bottom: 72px;
  }
  .about-stat-grid,
  .about-proof-grid,
  .about-app-list {
    grid-template-columns: 1fr;
  }
  .about-band,
  .about-applications,
  .about-cta {
    padding: 76px 0;
  }
  .about-sustain-grid article { padding: 28px; }

  .newsletter-input-group { flex-direction: column; }
  .newsletter-input { border-right: 1px solid rgba(255,255,255,0.2); border-bottom: none; }
  .newsletter-submit { padding: 14px 24px; }

  .promo-banner-content { padding: 0 24px; }
  .cookie-content { flex-direction: column; align-items: flex-start; gap: 16px; }
  .back-to-top { bottom: 24px; right: 24px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .catalog-filter { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; }
  .catalog-chip { white-space: nowrap; }
  .catalog-family { min-height: 124px; }
  .inquiry-form-grid { grid-template-columns: 1fr; }
  .product-inquiry-form { padding: 24px; }
  .product-meta-list div { flex-direction: column; gap: 6px; }
  .product-meta-list strong { text-align: left; }
  .inspiration-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-arrow { display: none; }
  .cookie-banner { padding: 16px 24px; }
}

/* ═══════════════════════════════════════════════════════
   ABOUT PAGE — PHOMI HOLDING REDESIGN
═══════════════════════════════════════════════════════ */

:root {
  --teal:      #5BC8C8;
  --teal-dark: #3da8a8;
}

.eyebrow-teal {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.ab-img-box {
  overflow: hidden;
  background: var(--gray-200);
  position: relative;
}
.ab-img-box img,
.ab-img-box .ab-img-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}
.ab-img-box .ab-img-fill {
  position: absolute;
  inset: 0;
}
.ab-img-box:hover img,
.ab-img-box:hover .ab-img-fill { transform: scale(1.06); }

/* ── 1. HERO ── (replaced by .page-hero, kept for reference) */
.ab-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--off-black);
  color: var(--white);
}
.ab-hero-slash {
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.page-hero--about h1 {
  font-family: var(--font-heading);
  font-size: clamp(3.8rem, 10vw, 10rem);
  font-weight: 300;
  line-height: 0.92;
  margin-bottom: 36px;
  color: #fff;
}
.page-hero--about h1 em { font-style: italic; color: var(--teal); }
.page-hero--about p:not(.eyebrow) {
  max-width: 620px;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.76);
  line-height: 1.72;
  margin-top: 0;
}
.ab-hero-tagline {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
}

/* ── 2. WHO WE ARE ── */
.ab-who {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.ab-who-grid {
  display: grid;
  grid-template-columns: minmax(0,0.9fr) minmax(0,1.1fr);
  gap: 80px;
  align-items: start;
  margin-bottom: 72px;
}
.ab-who-grid h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.05;
}
.ab-who-body { display: grid; gap: 20px; }
.ab-who-body p {
  font-size: 1.04rem;
  color: var(--charcoal);
  line-height: 1.8;
}
.ab-who-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.ab-who-photo-wrap .ab-img-box { aspect-ratio: 3/4; }
.ab-photo-label {
  margin-top: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  text-align: center;
}

/* ── 3. MISSION / VALUES / VISION ── */
.ab-mvv {
  padding: var(--section-pad) 0;
  background: var(--off-black);
  color: var(--white);
}
.ab-mvv-header { text-align: center; margin-bottom: 72px; }
.ab-mvv-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 6.5rem);
  font-weight: 300;
  line-height: 0.95;
  margin-top: 14px;
}
.ab-mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}
.ab-mvv-card {
  background: var(--off-black);
  padding: 56px 40px;
}
.ab-mvv-card h3 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 24px;
}
.ab-mvv-card h3 span { color: var(--teal); }
.ab-mvv-card p {
  color: rgba(255,255,255,0.64);
  line-height: 1.8;
  font-size: 0.96rem;
}
.ab-mvv-enlighten {
  padding: 44px 40px;
  background: rgba(91,200,200,0.07);
  border-top: 1px solid rgba(91,200,200,0.22);
  grid-column: 1 / -1;
  margin-top: 1px;
}
.ab-mvv-enlighten h4 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--teal);
  margin-bottom: 24px;
}
.ab-enlighten-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ab-enlighten-list li {
  font-size: 0.94rem;
  color: rgba(255,255,255,0.68);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.ab-enlighten-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--teal);
}

/* ── 4. STATS BAND ── */
.ab-stats { background: var(--teal); color: var(--white); }
.ab-stats-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.ab-stats-item {
  padding: 52px 28px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.ab-stats-item:last-child { border-right: none; }
.ab-stats-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4vw, 5rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 10px;
}
.ab-stats-item span {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.88;
}

/* ── 5. CUTTING EDGE PRODUCTS ── */
.ab-products {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}
.ab-products-header { text-align: center; margin-bottom: 72px; }
.ab-products-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 7rem);
  font-weight: 300;
  line-height: 1;
  margin-top: 14px;
}
.ab-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.ab-ec-card { background: var(--white); overflow: hidden; }
.ab-ec-img { aspect-ratio: 4/3; }
.ab-ec-body { padding: 26px 28px 32px; }
.ab-ec-series {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.ab-ec-body h3 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 12px;
}
.ab-ec-body p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.65;
}

/* ── 6. CRADLE TO CRADLE ── */
.ab-c2c {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.ab-c2c-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}
.ab-c2c-intro h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  font-weight: 300;
  line-height: 1.05;
}
.ab-c2c-intro p {
  color: var(--charcoal);
  line-height: 1.8;
  font-size: 1rem;
  margin-top: 20px;
}
.ab-c2c-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 11px 20px;
  border: 1px solid var(--teal);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}
.ab-pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.ab-pillar {
  padding: 36px 22px;
  background: var(--off-white);
  border-top: 3px solid var(--teal);
}
.ab-pillar-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 14px;
}
.ab-pillar h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  color: var(--off-black);
}
.ab-pillar p {
  font-size: 0.85rem;
  color: var(--gray-dark);
  line-height: 1.65;
}

/* ── 7. FULL LIFE CYCLE ── */
.ab-lifecycle {
  padding: var(--section-pad) 0;
  background: var(--off-black);
  color: var(--white);
}
.ab-lifecycle-header { text-align: center; margin-bottom: 72px; }
.ab-lifecycle-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  margin-top: 14px;
}
.ab-lifecycle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}
.ab-lc-item {
  background: var(--off-black);
  padding: 48px 32px;
}
.ab-lc-item h4 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--teal);
  margin-bottom: 16px;
  line-height: 1.1;
}
.ab-lc-stat {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
}
.ab-lc-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ── 8. CARBON CREDENTIALS ── */
.ab-carbon {
  padding: 88px 0;
  background: var(--black);
  color: var(--white);
}
.ab-carbon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.ab-carbon-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 24px;
}
.ab-carbon-copy p {
  color: rgba(255,255,255,0.64);
  line-height: 1.8;
  font-size: 0.97rem;
}
.ab-carbon-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.ab-carbon-stat {
  background: rgba(255,255,255,0.05);
  padding: 34px 28px;
  border-top: 3px solid var(--teal);
}
.ab-carbon-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 10px;
}
.ab-carbon-stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.56);
  letter-spacing: 0.04em;
  line-height: 1.55;
  display: block;
}

/* ── 9. ADVANTAGES ── */
.ab-advantages {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.ab-advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 64px;
}
.ab-adv-card {
  padding: 40px 28px;
  border: 1px solid var(--gray-200);
}
.ab-adv-card h4 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--teal);
  margin-bottom: 14px;
}
.ab-adv-card p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.7;
}

/* ── 10. eBIPV ── */
.ab-ebipv {
  padding: var(--section-pad) 0;
  background: var(--off-black);
  color: var(--white);
}
.ab-ebipv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ab-ebipv-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 24px;
}
.ab-ebipv-copy h2 span { color: var(--teal); }
.ab-ebipv-copy > p {
  color: rgba(255,255,255,0.66);
  line-height: 1.8;
  font-size: 0.97rem;
  margin-bottom: 16px;
}
.ab-ebipv-features {
  margin-top: 36px;
  border: 1px solid rgba(255,255,255,0.1);
}
.ab-ebipv-feat {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ab-ebipv-feat:last-child { border-bottom: none; }
.ab-ebipv-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 7px;
  flex-shrink: 0;
}
.ab-ebipv-feat strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
  letter-spacing: 0.04em;
}
.ab-ebipv-feat span {
  font-size: 0.81rem;
  color: rgba(255,255,255,0.52);
}
.ab-ebipv-img { aspect-ratio: 1; }
.ab-ebipv-callout {
  margin-top: 48px;
  padding: 32px;
  background: rgba(91,200,200,0.07);
  border: 1px solid rgba(91,200,200,0.2);
}
.ab-ebipv-callout h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--teal);
  margin-bottom: 12px;
}
.ab-ebipv-callout p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
}

/* ── 11. eDISPLAY ── */
.ab-edisplay {
  padding: var(--section-pad) 0;
  background: var(--gray-100);
}
.ab-edisplay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ab-edisplay-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 24px;
}
.ab-edisplay-copy h2 span { color: var(--teal); }
.ab-edisplay-copy p {
  color: var(--charcoal);
  line-height: 1.8;
  font-size: 0.97rem;
  margin-bottom: 16px;
}
.ab-edisplay-img { aspect-ratio: 16/10; }

/* ── 12. ADVANCED TECHNOLOGY ── */
.ab-tech {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.ab-tech-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.3fr);
  gap: 80px;
  align-items: start;
}
.ab-tech-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 28px;
}
.ab-tech-copy p {
  font-size: 0.97rem;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 18px;
}
.ab-waste-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.ab-waste-item {
  padding: 22px 18px;
  background: var(--off-white);
  border-top: 2px solid var(--teal);
  font-size: 0.85rem;
  color: var(--charcoal);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ── 13. INDUSTRY 4.0 FACTORY ── */
.ab-factory {
  padding: var(--section-pad) 0;
  background: var(--off-black);
  color: var(--white);
}
.ab-factory-header { margin-bottom: 60px; }
.ab-factory-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 6rem);
  font-weight: 300;
  line-height: 1;
  margin-top: 14px;
}
.ab-factory-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.ab-factory-mosaic .ab-img-box:first-child {
  grid-column: span 2;
  aspect-ratio: 16/8;
}
.ab-factory-mosaic .ab-img-box:nth-child(2) { aspect-ratio: 3/4; }
.ab-factory-mosaic .ab-img-box:nth-child(3),
.ab-factory-mosaic .ab-img-box:nth-child(4),
.ab-factory-mosaic .ab-img-box:nth-child(5) { aspect-ratio: 4/3; }

/* ── 14. INTELLECTUAL PROPERTY ── */
.ab-ip {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.ab-ip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 64px;
}
.ab-ip-big {
  padding: 60px 48px;
  background: var(--off-white);
}
.ab-ip-big strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 300;
  color: var(--teal);
  line-height: 0.9;
  margin-bottom: 16px;
}
.ab-ip-big h4 {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.ab-ip-big p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.7;
}
.ab-standards-section {
  margin-top: 64px;
  display: grid;
  grid-template-columns: minmax(0,0.9fr) minmax(0,1.1fr);
  gap: 80px;
  align-items: start;
}
.ab-standards-section h3 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 18px;
}
.ab-standards-section p {
  font-size: 0.96rem;
  color: var(--charcoal);
  line-height: 1.75;
}
.ab-standards-list { display: grid; gap: 10px; }
.ab-standards-list li {
  padding: 16px 20px;
  background: var(--off-white);
  border-left: 3px solid var(--teal);
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.5;
}

/* ── 15. BUSINESS MODEL ── */
.ab-biz {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}
.ab-biz-header { margin-bottom: 64px; }
.ab-biz-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  margin-top: 14px;
}
.ab-biz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.ab-biz-card {
  background: var(--white);
  padding: 48px 36px;
}
.ab-biz-num {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 300;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 16px;
}
.ab-biz-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 14px;
}
.ab-biz-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.ab-biz-card > p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.72;
  margin-bottom: 20px;
}
.ab-biz-list { display: grid; gap: 10px; }
.ab-biz-list li {
  font-size: 0.87rem;
  color: var(--charcoal);
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
}
.ab-biz-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--teal);
}

/* ── ABOUT RESPONSIVE ── */
@media (max-width: 1200px) {
  .ab-products-grid { grid-template-columns: repeat(2, 1fr); }
  .ab-pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .ab-lifecycle-grid { grid-template-columns: repeat(2, 1fr); }
  .ab-advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .ab-factory-mosaic .ab-img-box:first-child { grid-column: span 1; aspect-ratio: 4/3; }
  .ab-factory-mosaic { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .ab-who-grid, .ab-c2c-intro, .ab-carbon-grid,
  .ab-ebipv-grid, .ab-edisplay-grid, .ab-tech-grid,
  .ab-standards-section { grid-template-columns: 1fr; gap: 44px; }
  .ab-mvv-grid, .ab-biz-grid { grid-template-columns: 1fr; }
  .ab-stats-inner { grid-template-columns: repeat(3, 1fr); }
  .ab-stats-item:nth-child(3) { border-right: none; }
  .ab-ip-grid { grid-template-columns: 1fr; }
  .ab-enlighten-list { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .page-hero--about .page-hero-content { padding-bottom: 60px; }
  .ab-who-photos { grid-template-columns: 1fr; }
  .ab-products-grid { grid-template-columns: 1fr; }
  .ab-pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .ab-lifecycle-grid { grid-template-columns: 1fr; }
  .ab-advantages-grid { grid-template-columns: 1fr; }
  .ab-carbon-stats { grid-template-columns: 1fr; }
  .ab-waste-grid { grid-template-columns: repeat(2, 1fr); }
  .ab-factory-mosaic { grid-template-columns: 1fr; }
  .ab-stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ab-pillars-grid, .ab-carbon-stats,
  .ab-waste-grid, .ab-stats-inner { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════
   NEWS / NEWSROOM
═══════════════════════════════════════════════════════ */

.news-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  background: var(--off-black);
  overflow: hidden;
  color: var(--white);
  padding-top: var(--nav-height);
}
.news-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,#0f1c1e 0%,#1a3a40 50%,#2d6470 100%);
  opacity: 0.9;
  transform: scale(1.04);
}
.news-hero-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.news-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
  width: 100%;
}
.news-hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.news-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(4rem,10vw,9rem);
  font-weight: 300;
  line-height: 0.92;
  margin-bottom: 28px;
}
.news-hero p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
}

.news-filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
}
.news-filter-inner {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.news-filter-inner::-webkit-scrollbar { display: none; }
.news-filter-btn {
  flex-shrink: 0;
  padding: 18px 26px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  border-bottom: 2px solid transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  transition: color 0.25s, border-color 0.25s;
  white-space: nowrap;
  cursor: pointer;
  background: none;
  font-family: var(--font-body);
}
.news-filter-btn:hover { color: var(--black); }
.news-filter-btn.active { color: var(--black); border-bottom-color: var(--accent); }

.news-section { background: var(--off-white); }

.news-featured { margin-bottom: 80px; }
.news-featured-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 24px;
}
.news-featured-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.4s var(--ease-out);
}
.news-featured-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.10); }
.news-featured-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.news-featured-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.news-featured-card:hover .news-featured-image img { transform: scale(1.04); }
.news-featured-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg,#0f1c1e 0%,#1a3a40 40%,#2d6470 100%);
}
.news-feat-badge {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 16px;
}
.news-featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
}
.news-featured-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.news-cat-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.news-date { font-size: 0.75rem; color: var(--gray-mid); }
.news-featured-body h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem,2.8vw,2.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 20px;
}
.news-featured-body p {
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.78;
  margin-bottom: 36px;
}
.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  transition: color 0.3s, gap 0.3s;
}
.news-read-more:hover { color: var(--accent); gap: 18px; }
.news-read-more::after { content: '\2192'; font-size: 1rem; font-weight: 300; }

.news-grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}
.news-grid-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-dark);
}
.news-count { font-size: 0.75rem; color: var(--gray-mid); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
}
.news-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.news-card:hover { transform: translateY(-5px); box-shadow: 0 14px 44px rgba(0,0,0,0.09); }
.news-card[data-hidden="true"] { display: none; }
.news-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.news-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.news-card:hover .news-card-image img { transform: scale(1.06); }
.news-card-placeholder { width: 100%; height: 100%; }
.news-card-placeholder--0 { background: linear-gradient(135deg,#14303a,#206070); }
.news-card-placeholder--1 { background: linear-gradient(135deg,#1a1a38,#2a2a66); }
.news-card-placeholder--2 { background: linear-gradient(135deg,#1c341c,#2e5a2e); }
.news-card-placeholder--3 { background: linear-gradient(135deg,#381414,#662020); }
.news-card-placeholder--4 { background: linear-gradient(135deg,#281436,#462060); }
.news-card-placeholder--5 { background: linear-gradient(135deg,#143424,#205a38); }
.news-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.news-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.news-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.32;
  color: var(--black);
  margin-bottom: 12px;
}
.news-card p {
  font-size: 0.85rem;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}
.news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.3s;
  margin-top: auto;
}
.news-card-link:hover { gap: 16px; }
.news-card-link::after { content: '\2192'; }
.news-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 80px 0;
  color: var(--gray-mid);
  font-size: 0.9rem;
}

/* Article detail */
.article-breadcrumb-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 0;
  margin-top: var(--nav-height);
}
.article-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--gray-mid);
}
.article-breadcrumb a { color: var(--gray-dark); transition: color 0.25s; }
.article-breadcrumb a:hover { color: var(--accent); }
.article-breadcrumb-sep { color: var(--gray-light); }
.article-breadcrumb-current { color: var(--black); }
.article-hero {
  position: relative;
  height: 60vh;
  min-height: 380px;
  overflow: hidden;
  background: var(--off-black);
}
.article-hero img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }
.article-hero-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg,#0d1c20 0%,#163238 40%,#265868 100%);
}
.article-header-section { padding: 64px 0 52px; background: var(--white); }
.article-header-inner { max-width: 860px; margin: 0 auto; }
.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.article-cat-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 5px 14px;
  border: 1px solid var(--accent);
}
.article-date, .article-author { font-size: 0.78rem; color: var(--gray-mid); }
.article-header-inner h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem,5vw,4rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--black);
  margin-bottom: 28px;
}
.article-excerpt-lead {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gray-dark);
  line-height: 1.72;
  margin-bottom: 36px;
  border-left: 3px solid var(--accent);
  padding-left: 24px;
}
.article-share {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--gray-200);
}
.article-share-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-right: 4px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--gray-200);
  color: var(--gray-dark);
  transition: border-color 0.25s, color 0.25s;
  cursor: pointer;
  background: none;
}
.share-btn:hover { border-color: var(--accent); color: var(--accent); }
.article-body-section { padding: 72px 0 96px; background: var(--off-white); }
.article-body { max-width: 820px; margin: 0 auto; }
.article-body p {
  font-size: 1.05rem;
  line-height: 1.88;
  color: var(--charcoal);
  margin-bottom: 28px;
}

/* ============================================================
   TECHNOLOGY PAGES  (.tpage-*)
   ============================================================ */

/* ── Hero ── */
.tpage-hero {
  position: relative;
  min-height: 84vh;
  background: #050505;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.tpage-hero-inner {
  padding: var(--nav-height) 0 100px;
  width: 100%;
}
.tpage-eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.tpage-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 14vw, 14rem);
  font-weight: 300;
  line-height: 0.9;
  color: #fff;
  margin: 0 0 48px;
  letter-spacing: -0.02em;
}
.tpage-hero-tagline {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.62);
  max-width: 620px;
  margin: 0;
}
.tpage-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 52px;
  padding: 12px 22px;
  border: 1px solid rgba(201,169,110,0.35);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.tpage-hero-badge svg { flex-shrink: 0; }

/* ── Section utilities ── */
.tpage-section { padding: 120px 0; }
.tpage-section--dark { background: var(--off-black); }
.tpage-section--deep { background: #071212; }
.tpage-section--light { background: var(--off-white); }
.tpage-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.tpage-h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.08;
  margin: 0 0 24px;
}
.tpage-h2--light { color: #fff; }
.tpage-lead {
  font-size: 1.08rem;
  line-height: 1.82;
  color: var(--charcoal);
  max-width: 640px;
}
.tpage-lead--light { color: rgba(255,255,255,0.68); }

/* ── Intro grid ── */
.tpage-intro-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 100px;
  align-items: start;
}
.tpage-pull {
  position: sticky;
  top: 120px;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: var(--off-black);
  padding-left: 28px;
  border-left: 3px solid var(--accent);
  margin: 0;
}
.tpage-intro-body p {
  font-size: 1.05rem;
  line-height: 1.88;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.tpage-intro-body p:last-child { margin-bottom: 0; }

/* ── Metrics strip ── */
.tpage-metrics {
  background: var(--off-black);
  padding: 80px 0;
}
.tpage-metrics-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-left: 1px solid rgba(255,255,255,0.1);
}
.tpage-metric {
  padding: 44px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.tpage-metric-num {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
}
.tpage-metric-num sup {
  font-size: 0.5em;
  vertical-align: super;
}
.tpage-metric-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.tpage-metric-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
}

/* ── Process steps ── */
.tpage-steps-header { margin-bottom: 72px; }
.tpage-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.tpage-steps-grid::after {
  content: '';
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(201,169,110,0.15));
  z-index: 0;
}
.tpage-step {
  position: relative;
  z-index: 1;
  padding: 0 24px 0 0;
}
.tpage-step-num {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 0;
}
.tpage-step-num::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 12px;
  flex-shrink: 0;
}
.tpage-step-name {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  font-weight: 300;
  color: var(--off-black);
  margin-bottom: 14px;
  line-height: 1.2;
}
.tpage-step-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--charcoal);
}

/* ── Cradle to Cradle pillars ── */
.tpage-c2c-header { margin-bottom: 72px; }
.tpage-c2c-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-left: 1px solid rgba(255,255,255,0.12);
}
.tpage-c2c-pillar {
  padding: 44px 28px;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.tpage-c2c-icon {
  color: var(--accent);
  margin-bottom: 24px;
}
.tpage-c2c-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.25;
}
.tpage-c2c-desc {
  font-size: 0.85rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.5);
}

/* ── Applications grid ── */
.tpage-apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}
.tpage-app-card {
  position: relative;
  background: var(--off-black);
  padding: 44px 36px;
  overflow: hidden;
  transition: background 0.3s;
}
.tpage-app-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--accent);
  transition: height 0.4s;
}
.tpage-app-card:hover::before { height: 100%; }
.tpage-app-card:hover { background: #1a1a1a; }
.tpage-app-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: 20px;
}
.tpage-app-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
}
.tpage-app-desc {
  font-size: 0.85rem;
  line-height: 1.68;
  color: rgba(255,255,255,0.5);
}

/* ── Awards ── */
.tpage-awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.tpage-award-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.1);
}
.tpage-award-icon {
  color: var(--accent);
  flex-shrink: 0;
}
.tpage-award-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
}
.tpage-award-sub {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.48);
}

/* ── Related technologies ── */
.tpage-related { padding: 100px 0; background: var(--off-black); }
.tpage-related-header { margin-bottom: 56px; }
.tpage-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-left: 1px solid rgba(255,255,255,0.1);
}
.tpage-rel-card {
  padding: 44px 36px 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
}
.tpage-rel-icon { color: var(--accent); margin-bottom: 28px; }
.tpage-rel-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 14px;
}
.tpage-rel-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  flex: 1;
  margin-bottom: 28px;
}
.tpage-rel-link {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid rgba(201,169,110,0.35);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: border-color 0.25s;
}
.tpage-rel-link:hover { border-color: var(--accent); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .tpage-intro-grid { grid-template-columns: 1fr; gap: 56px; }
  .tpage-pull { position: static; }
  .tpage-metrics-inner { grid-template-columns: repeat(3, 1fr); }
  .tpage-steps-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .tpage-steps-grid::after { display: none; }
  .tpage-c2c-grid { grid-template-columns: repeat(3, 1fr); }
  .tpage-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .tpage-hero h1 { font-size: clamp(3.8rem, 14vw, 7rem); }
  .tpage-metrics-inner { grid-template-columns: repeat(2, 1fr); }
  .tpage-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .tpage-c2c-grid { grid-template-columns: repeat(2, 1fr); }
  .tpage-apps-grid { grid-template-columns: repeat(2, 1fr); }
  .tpage-awards-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .tpage-hero { min-height: 100svh; }
  .tpage-hero h1 { font-size: clamp(3.2rem, 16vw, 5rem); }
  .tpage-metrics-inner { grid-template-columns: 1fr; }
  .tpage-steps-grid { grid-template-columns: 1fr; }
  .tpage-c2c-grid { grid-template-columns: 1fr; }
  .tpage-apps-grid { grid-template-columns: 1fr; }
  .tpage-related-grid { grid-template-columns: 1fr; }
  .tpage-section { padding: 80px 0; }
}
.article-body h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem,3vw,2.4rem);
  font-weight: 400;
  color: var(--black);
  margin: 56px 0 20px;
  line-height: 1.18;
}
.article-body h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem,2.5vw,1.85rem);
  font-weight: 400;
  color: var(--black);
  margin: 48px 0 16px;
  line-height: 1.25;
}
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 28px; }
.article-body ul li { list-style-type: disc; }
.article-body ol li { list-style-type: decimal; }
.article-body li { font-size: 1.05rem; line-height: 1.72; color: var(--charcoal); margin-bottom: 8px; }
.article-body blockquote {
  margin: 44px 0;
  padding: 28px 36px;
  border-left: 4px solid var(--accent);
  background: var(--white);
  font-family: var(--font-heading);
  font-size: 1.32rem;
  font-weight: 300;
  font-style: italic;
  color: var(--black);
  line-height: 1.52;
}
.article-body strong { font-weight: 600; color: var(--black); }
.article-body img { width: 100%; margin: 40px 0; display: block; }
.article-nav-section { background: var(--white); border-top: 1px solid var(--gray-200); }
.article-nav-inner { display: grid; grid-template-columns: 1fr 1fr; }
.article-nav-link {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.25s;
}
.article-nav-link:hover { background: var(--gray-100); }
.article-nav-link--next { border-left: 1px solid var(--gray-200); text-align: right; align-items: flex-end; }
.article-nav-dir {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
}
.article-nav-title {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1.32;
  transition: color 0.25s;
}
.article-nav-link:hover .article-nav-title { color: var(--accent); }
.article-related { background: var(--off-white); }
.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-top: 48px;
}

@media (max-width: 1024px) {
  .news-grid { grid-template-columns: repeat(2,1fr); }
  .news-featured-card { grid-template-columns: 1fr; }
  .news-featured-image { aspect-ratio: 16/9; }
  .news-featured-body { padding: 40px; }
  .article-related-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-hero h1 { font-size: clamp(2.8rem,12vw,4.5rem); }
  .news-featured-body { padding: 28px; }
  .article-nav-inner { grid-template-columns: 1fr; }
  .article-nav-link--next { border-left: none; border-top: 1px solid var(--gray-200); text-align: left; align-items: flex-start; }
  .article-related-grid { grid-template-columns: 1fr; }
  .article-header-inner h1 { font-size: clamp(1.9rem,8vw,2.8rem); }
  .article-hero { height: 45vh; }
}

/* ═══════════════════════════════════════════════════════
   MOBILE RESPONSIVE OVERHAUL — applies site-wide
═══════════════════════════════════════════════════════ */

/* Prevent any element from forcing horizontal scroll on mobile.
   img/video/iframe should never overflow their container. */
html, body { max-width: 100%; }
img, video, iframe { max-width: 100%; height: auto; }
.hero-bg img, .hero-bg video,
.sr2025-hero-bg img, .ec2025-hero-bg img,
.tpage-hero-bg img, .about-hero-media img {
  width: 100%; height: 100%; object-fit: cover;
}

/* Tablet ≤1024 — refine page hero heights, container padding */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .nav-container { padding: 0 24px; gap: 12px; }
  .page-hero, .hero { min-height: 560px; height: 88vh; height: 88svh; }
  .about-hero { min-height: 64vh; min-height: 64svh; }
  .sr2025-hero { min-height: 72vh; min-height: 72svh; }
  .ec2025-hero { min-height: 72vh; min-height: 72svh; }
  .product-detail-hero { padding: calc(var(--nav-height) + 56px) 0 64px; }

  .about-stat-grid { grid-template-columns: repeat(3, 1fr); }
  .about-proof-grid { grid-template-columns: repeat(2, 1fr); }
  .article-related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile ≤768 — main mobile breakpoint */
@media (max-width: 768px) {
  :root {
    --section-pad: 56px;
    --container: 100%;
  }
  .container { padding: 0 20px; }
  .nav-container { padding: 0 18px; }
  .logo-img { height: 38px; }

  /* Hero — home page slider */
  .hero {
    min-height: 480px;
    height: 92vh;
    height: 92svh;
  }
  .hero-content {
    padding: 0 20px;
    align-items: flex-end;
    padding-bottom: 96px;
  }
  .hero-content-inner { margin-left: 0; max-width: 100%; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); margin-bottom: 18px; }
  .hero-subtitle { font-size: 0.92rem; margin-bottom: 28px; }
  .hero-cta { padding: 12px 24px; font-size: 0.72rem; }
  .hero-arrow {
    width: 38px; height: 38px;
    backdrop-filter: blur(6px);
    background: rgba(0,0,0,0.25);
    border-radius: 50%;
  }
  .hero-arrow--prev { left: 12px; }
  .hero-arrow--next { right: 12px; }
  .hero-indicators { bottom: 18px; gap: 8px; }
  .hero-indicator { width: 28px; }
  .hero-indicator.active { width: 36px; }
  .hero-scroll-indicator { display: none; }
  .hero-social { bottom: 14px; right: 12px; gap: 6px; }
  .hero-social-link { width: 30px; height: 30px; }
  .hero-social-link svg { width: 14px; height: 14px; }

  /* Generic page hero (Products, About, etc.) */
  .page-hero {
    min-height: 460px;
    height: 78vh;
    height: 78svh;
  }
  .page-hero-content {
    padding-bottom: 56px;
    padding-left: 0; padding-right: 0;
  }
  .page-hero-content h1,
  .product-detail-copy h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .page-hero-content p:not(.eyebrow) { font-size: 0.92rem; }

  /* About hero */
  .about-hero { min-height: 56vh; min-height: 56svh; }
  .about-hero-content {
    width: calc(100% - 40px);
    padding: 0 0 56px;
  }
  .about-hero h1 { font-size: clamp(2.4rem, 11vw, 4rem); }
  .about-hero p { font-size: 1rem; }

  /* Showroom hero (sr2025) */
  .sr2025-hero {
    min-height: 56vh;
    min-height: 56svh;
    max-height: 70vh;
  }

  /* Technology page hero (ec2025) */
  .ec2025-hero {
    min-height: 56vh;
    min-height: 56svh;
  }

  /* News hero */
  .news-hero { min-height: 42vh; min-height: 42svh; }
  .news-hero-content { padding-bottom: 48px; }
  .news-hero h1 { font-size: clamp(2.4rem,10vw,3.6rem); margin-bottom: 18px; }

  /* Section header */
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 32px; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* Section padding */
  .section-padded { padding: 56px 0; }
  .technologies-section,
  .promo-banner,
  .inspiration-section,
  .events-section,
  .newsletter-section { padding: 56px 0; }

  /* Tech grid */
  .technologies-grid { grid-template-columns: 1fr; }
  .tech-card { padding: 36px 24px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .tech-card:last-child { border-bottom: none; }
  .tech-header { margin-bottom: 40px; }
  .tech-title { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .tech-intro { font-size: 0.95rem; }

  /* Categories */
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .category-card { aspect-ratio: 4/5; }
  .category-content { left: 16px; right: 16px; bottom: 18px; }

  /* Collections showcase scroll */
  .collections-showcase { gap: 8px; padding: 0 20px; scroll-padding-left: 20px; }
  .collection-panel {
    flex: 0 0 78%;
    min-width: 240px;
    max-width: 320px;
    aspect-ratio: 3/4;
  }
  .collection-panel-content { padding: 18px 16px; }
  .collection-name { font-size: clamp(1.05rem, 5vw, 1.4rem); letter-spacing: 0.02em; }
  .collection-tagline {
    font-size: 0.78rem;
    margin-bottom: 12px;
    -webkit-line-clamp: 2;
  }
  .collection-cta { font-size: 0.68rem; letter-spacing: 0.1em; }
  .collection-panel-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 55%, rgba(0,0,0,0.05) 100%);
  }

  /* Products grid */
  .products-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .product-card-info { padding: 14px; }
  .product-name { font-size: 0.98rem; }
  .product-desc { font-size: 0.74rem; }

  /* Product detail */
  .product-detail-grid { grid-template-columns: 1fr; gap: 28px; }
  .product-detail-media,
  .product-detail-media > img,
  .product-detail-media > .catalog-swatch { min-height: 320px; }
  .product-detail-hero { padding: calc(var(--nav-height) + 36px) 0 48px; }
  .product-detail-body { padding: 48px 0; }
  .product-detail-body h2 { font-size: 2rem; }
  .product-inquiry-section { padding: 56px 0; }
  .product-inquiry-grid { grid-template-columns: 1fr; gap: 28px; }
  .product-inquiry-form { padding: 22px; }
  .inquiry-form-grid { grid-template-columns: 1fr; gap: 14px; }
  .product-meta-list div { flex-direction: column; gap: 4px; padding: 14px 0; }
  .product-meta-list strong { text-align: left; }

  /* Catalog */
  .catalog-toolbar { flex-direction: column; align-items: flex-start; gap: 14px; }
  .catalog-toolbar h2 { font-size: clamp(2rem, 7vw, 2.8rem); }
  .catalog-filter { gap: 6px; margin-bottom: 24px; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; }
  .catalog-filter::-webkit-scrollbar { display: none; }
  .catalog-chip { white-space: nowrap; flex: 0 0 auto; }
  .catalog-family { flex: 0 0 78%; min-width: 220px; min-height: 130px; }
  .catalog-family span { font-size: 1.5rem; }

  /* Inspiration */
  .inspiration-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .inspiration-card-info { padding: 14px; }
  .inspiration-filters { gap: 4px; margin-bottom: 28px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; }
  .inspiration-filters::-webkit-scrollbar { display: none; }
  .filter-btn { padding: 8px 16px; font-size: 0.7rem; white-space: nowrap; flex: 0 0 auto; }

  /* Events */
  .events-grid { grid-template-columns: 1fr; gap: 20px; }
  .event-body { padding: 20px; }
  .event-title { font-size: 1.15rem; }

  /* Newsletter */
  .newsletter-section { padding: 56px 0; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
  .newsletter-tabs { overflow-x: auto; flex-wrap: nowrap; }
  .newsletter-tabs::-webkit-scrollbar { display: none; }
  .newsletter-tab { flex: 0 0 auto; padding: 10px 18px; }
  .newsletter-input-group { flex-direction: column; gap: 8px; }
  .newsletter-input { border-right: 1px solid rgba(255,255,255,0.2); }
  .newsletter-submit { padding: 14px 22px; }

  /* Footer */
  .footer-top { padding: 56px 0 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-col--brand { grid-column: 1 / -1; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 12px; padding: 4px 0; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 16px; }

  /* About */
  .about-band, .about-applications, .about-sustain, .about-cta { padding: 64px 0; }
  .about-stat-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stat { padding: 22px 18px; min-height: 130px; }
  .about-proof-grid { grid-template-columns: 1fr; }
  .about-proof-card { min-height: auto; padding: 26px 22px; }
  .about-app-list { grid-template-columns: 1fr; }
  .about-intro-grid,
  .about-band-grid,
  .about-app-grid,
  .about-sustain-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-sustain-grid article { padding: 28px 22px; }
  .about-cta-inner { padding: 0 4px; }

  /* Showroom sections */
  .sr2025-lede,
  .sr2025-contact,
  .sr2025-social-inner,
  .sr2025-cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .sr2025-section { padding: 56px 0; }
  .sr2025-contact { margin-top: 48px; }
  .sr2025-contact-media { grid-template-columns: 1fr; gap: 14px; }
  .sr2025-contact-media .sr2025-img:first-child,
  .sr2025-contact-media .sr2025-img:last-child { aspect-ratio: 4/3; transform: none; }
  .sr2025-info-row { padding: 20px 22px; grid-template-columns: 44px 1fr; gap: 16px; }
  .sr2025-social { padding: 56px 0; }
  .sr2025-social-list { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .sr2025-social-link { padding: 20px 12px; }
  .sr2025-steps { grid-template-columns: 1fr; margin-top: 40px; }
  .sr2025-step { padding: 32px 24px; min-height: auto; }
  .sr2025-step-num { font-size: 2.4rem; margin-bottom: 14px; }
  .sr2025-step h3 { font-size: 1.3rem; }
  .sr2025-map { height: auto; }
  .sr2025-map iframe { height: 320px; }
  .sr2025-map-card { position: static; max-width: none; padding: 22px 24px; box-shadow: none; }
  .sr2025-cta { padding: 56px 0; }
  .sr2025-cta-btns { justify-content: flex-start; }
  .sr2025-btn { padding: 14px 22px; font-size: 0.72rem; flex: 1 1 auto; justify-content: center; }

  /* Technology / econiclay sections */
  .ec2025-section { padding: 56px 0; }
  .ec2025-hero-content { padding: calc(var(--nav-height) + 56px) 20px 56px; }

  /* News + article */
  .news-section { padding: 48px 0; }
  .news-featured-card { grid-template-columns: 1fr; }
  .news-featured-image { aspect-ratio: 16/10; }
  .news-featured-body { padding: 24px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-filter-btn { padding: 14px 18px; font-size: 0.68rem; }
  .article-body { font-size: 1rem; line-height: 1.78; }
  .article-body blockquote { padding: 22px 24px; font-size: 1.12rem; margin: 28px 0; }
  .article-nav-inner { grid-template-columns: 1fr; }
  .article-nav-link { padding: 28px 24px; }
  .article-nav-link--next { border-left: none; border-top: 1px solid var(--gray-200); text-align: left; align-items: flex-start; }
  .article-related-grid { grid-template-columns: 1fr; }
  .article-hero { height: 42vh; }

  /* Cookie banner */
  .cookie-banner { padding: 16px 20px; }
  .cookie-content { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; padding: 11px 14px; }
  .back-to-top { bottom: 18px; right: 18px; width: 40px; height: 40px; }

  /* Promo */
  .promo-banner { min-height: 320px; height: 50vh; }
  .promo-banner-content { padding: 0 20px; }
  .promo-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }
}

/* Small mobile ≤480 */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav-container { padding: 0 14px; }
  .logo-img { height: 34px; }
  .nav-hamburger { padding: 6px; }

  .hero { height: 88vh; height: 88svh; min-height: 440px; }
  .hero-title { font-size: clamp(1.8rem, 9vw, 2.4rem); }
  .hero-subtitle { font-size: 0.86rem; margin-bottom: 22px; }
  .hero-cta { padding: 11px 22px; font-size: 0.7rem; }
  .hero-arrow { display: none; }
  .hero-indicators { bottom: 14px; }
  .hero-social-link { width: 28px; height: 28px; }

  .page-hero { min-height: 400px; height: 72vh; height: 72svh; }
  .page-hero-content h1 { font-size: clamp(2rem, 11vw, 2.6rem); }
  .product-detail-copy h1 { font-size: clamp(1.8rem, 10vw, 2.4rem); }

  .about-hero h1 { font-size: clamp(2rem, 13vw, 3rem); }
  .about-hero p { font-size: 0.95rem; }
  .about-stat-grid { grid-template-columns: 1fr 1fr; }
  .about-stat strong { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  .sr2025-hero { min-height: 48vh; min-height: 48svh; max-height: 62vh; }
  .sr2025-social-list { grid-template-columns: 1fr; }
  .sr2025-cta-btns { flex-direction: column; }
  .sr2025-btn { width: 100%; }

  .ec2025-hero { min-height: 48vh; min-height: 48svh; }

  .news-hero h1 { font-size: clamp(2rem,11vw,3rem); }
  .article-header-inner h1 { font-size: clamp(1.6rem, 9vw, 2.4rem); }

  .categories-grid { grid-template-columns: 1fr; }
  .category-card { aspect-ratio: 16/10; }
  .products-grid { grid-template-columns: 1fr; }
  .inspiration-grid { grid-template-columns: 1fr; }

  /* Product Systems slider — narrower panels on tiny screens */
  .collections-showcase { padding: 0 16px; scroll-padding-left: 16px; }
  .collection-panel {
    flex: 0 0 82%;
    min-width: 220px;
    aspect-ratio: 4/5;
  }
  .collection-panel-content { padding: 16px 14px; }
  .collection-name { font-size: 1.15rem; line-height: 1.18; }
  .collection-tagline { font-size: 0.74rem; -webkit-line-clamp: 2; margin-bottom: 10px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-tagline { max-width: 100%; }
  .footer-legal { gap: 12px; }

  .product-inquiry-form { padding: 18px; }
  .catalog-empty { padding: 36px 22px; }
  .catalog-empty h3 { font-size: 1.7rem; }

  /* Larger touch targets */
  .nav-action-btn, .detail-cta, .hero-cta,
  .btn-outline-white, .sr2025-btn { min-height: 44px; }
}

/* Tiny mobile ≤360 — extra-safe overrides */
@media (max-width: 360px) {
  .container { padding: 0 14px; }
  .hero-title { font-size: 1.7rem; }
  .page-hero-content h1 { font-size: 1.9rem; }
  .about-hero h1 { font-size: 2rem; }
  .section-title { font-size: 1.5rem; }
}

