/* KaiserOmnia — Industrial Luxury Architectural Site */
/* Design: Dark Concrete + Gold | Cormorant Garamond + Jost */

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

/* ─── Variables ──────────────────────────────────────────── */
:root {
  --black:    #060606;
  --dark:     #0e0e0e;
  --surface:  #151515;
  --card:     #1b1b1b;
  --border:   #262626;
  --gold:     #C9A84C;
  --gold-dim: rgba(201,168,76,0.10);
  --gold-glow:rgba(201,168,76,0.25);
  --white:    #F4F2EC;
  --muted:    #777;
  --light:    #aaa;
  --nav-h:    80px;
  --ease:     cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ─── Typography ──────────────────────────────────────────── */
h1,h2,h3,h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
}
p { color: var(--light); margin-bottom: 1.2rem; }
a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--white); }
img { max-width: 100%; display: block; }

/* ─── Layout ──────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.section { padding: 110px 0; }
.section-alt { background: var(--surface); }

/* ─── Section label ───────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-label span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.5s, border-color 0.5s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6,6,6,0.97);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}
.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links > li > a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--light);
  position: relative;
  padding-bottom: 4px;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--white); }
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { width: 100%; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 24px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.25s;
  white-space: nowrap;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown li { list-style: none; }
.dropdown a {
  display: block;
  padding: 11px 20px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light);
}
.dropdown a:hover { color: var(--gold); background: var(--gold-dim); }

/* Lang toggle */
.nav-right { display: flex; align-items: center; gap: 24px; }
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 4px 2px;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.75);
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  transition: color 0.2s, background 0.2s;
}
.lang-btn:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.lang-btn.active { color: var(--black); background: var(--gold); }
.nav.scrolled .lang-toggle { border-color: var(--border); }
.nav.scrolled .lang-btn { color: var(--light); }

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s;
}

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/carousel/slide1.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 10s cubic-bezier(0.2,0,0.1,1);
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,6,6,0.90) 0%,
    rgba(6,6,6,0.60) 50%,
    rgba(6,6,6,0.85) 100%
  );
}
/* Diagonal gold accent */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 40px;
}
.hero-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s 0.2s var(--ease) forwards;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s var(--ease) forwards;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 300;
  letter-spacing: 0.04em;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 28px 0;
  opacity: 0;
  animation: fadeUp 0.9s 0.55s var(--ease) forwards;
}
.hero-divider::before, .hero-divider::after {
  content: ''; width: 50px; height: 1px; background: var(--gold);
}
.hero-divider-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
}
.hero-sub {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 0.9s 0.65s var(--ease) forwards;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s var(--ease) forwards;
}
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 0.9s 1.1s var(--ease) forwards;
  cursor: pointer;
}
.scroll-hint span {
  font-size: 8px;
  letter-spacing: 0.35em;
  color: var(--muted);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
  animation: pulseDown 1.8s ease infinite;
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.35s var(--ease);
  text-decoration: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: #dbbe60;
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--gold-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(244,242,236,0.3);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

/* ─── About section ───────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 520px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 82%;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%;
  height: 52%;
  object-fit: cover;
  outline: 5px solid var(--dark);
}
.about-img-number {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%,-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 9rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.about-content { }
.about-content h2 { margin-bottom: 20px; }
.about-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: #ccc;
  margin-bottom: 24px;
  line-height: 1.65;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 44px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.about-stat { padding-right: 20px; }
.about-stat + .about-stat {
  padding-left: 20px;
  padding-right: 20px;
  border-left: 1px solid var(--border);
}
.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-l {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* ─── Products cards ──────────────────────────────────────── */
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.product-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9/13;
  cursor: pointer;
}
.product-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  filter: brightness(0.75) saturate(0.7);
}
.product-card:hover .product-card-img {
  transform: scale(1.06);
  filter: brightness(0.85) saturate(0.9);
}
.product-card-body {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6,6,6,0.96) 0%,
    rgba(6,6,6,0.4)  55%,
    rgba(6,6,6,0.05) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: background 0.3s;
}
.product-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 4px;
  transition: color 0.3s;
}
.product-card:hover .product-num { color: rgba(201,168,76,0.3); }
.product-card h3 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 8px;
}
.product-card p {
  font-size: 0.8rem;
  color: var(--light);
  margin: 0;
  line-height: 1.5;
}
.product-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 5px 10px;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.3s;
}
.product-card:hover .product-badge { opacity: 1; transform: translateY(0); }

/* ─── Projects preview grid ───────────────────────────────── */
.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.projects-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 4px;
}
.mosaic-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.mosaic-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.mosaic-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.mosaic-item:hover img { transform: scale(1.05); }
.mosaic-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,6,6,0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.mosaic-item:hover .mosaic-overlay { opacity: 1; }
.mosaic-overlay h4 { color: var(--white); margin-bottom: 6px; font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 600; letter-spacing: 0.1em; text-transform: none; }
.mosaic-overlay span { color: var(--gold); font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; }

/* ─── CTA band ────────────────────────────────────────────── */
.cta-band {
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/images/row_background2.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 16px; }
.cta-band h2 em { font-style: italic; color: var(--gold); }
.cta-band p { color: var(--light); margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ─── Team ────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.team-card { text-align: center; }
.team-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  margin-bottom: 20px;
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(40%);
  transition: filter 0.4s, transform 0.5s;
}
.team-card:hover .team-photo img { filter: grayscale(0); transform: scale(1.03); }
.team-photo-frame {
  position: absolute;
  inset: 10px;
  border: 1px solid var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.team-card:hover .team-photo-frame { opacity: 0.35; }
.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
}
.team-role {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 5px;
}
.team-bio { font-size: 0.8rem; color: var(--muted); margin-top: 10px; }

/* ─── Company history timeline ────────────────────────────── */
.timeline {
  position: relative;
  max-width: 760px;
  margin: 60px auto 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
}
.timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
  padding-left: 60px;
  position: relative;
}
.timeline-dot {
  position: absolute;
  left: 12px;
  top: 6px;
  width: 17px; height: 17px;
  border: 1px solid var(--gold);
  background: var(--dark);
  border-radius: 50%;
}
.timeline-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  min-width: 80px;
  line-height: 1.2;
}
.timeline-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: none;
  margin-bottom: 6px;
}
.timeline-text p { font-size: 0.875rem; margin: 0; }

/* ─── Product detail pages ────────────────────────────────── */
.product-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.product-section:last-of-type { border-bottom: none; }
.product-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.product-section-grid.flip { direction: rtl; }
.product-section-grid.flip > * { direction: ltr; }
.product-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.product-german-name {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.product-section h2 { margin-bottom: 24px; }
.download-list { margin-top: 32px; }
.download-list-title {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.dl-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  margin-bottom: 6px;
  color: var(--light);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  transition: all 0.25s;
}
.dl-item:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  color: var(--white);
}
.dl-icon {
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.dl-item svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

/* ─── Portfolio grid ──────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 60px;
}
.port-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.port-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s;
  filter: brightness(0.9);
}
.port-item:hover img { transform: scale(1.06); filter: brightness(1); }
.port-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px 20px;
  background: linear-gradient(to top, rgba(6,6,6,0.92), transparent);
  transform: translateY(4px);
  opacity: 0;
  transition: all 0.3s;
}
.port-item:hover .port-caption { opacity: 1; transform: translateY(0); }
.port-caption h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: none;
  margin-bottom: 4px;
}
.port-caption span { color: var(--gold); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; }

/* ─── Page header ─────────────────────────────────────────── */
.page-header {
  height: 48vh;
  min-height: 380px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6,6,6,0.55), rgba(6,6,6,0.9));
}
.page-header-content {
  position: relative;
  z-index: 2;
  padding: 0 0 56px;
  width: 100%;
}
.page-header-content .container { padding-bottom: 0; }
.breadcrumb {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.page-header h1 { color: var(--white); font-weight: 300; }

/* ─── Contact ─────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
.contact-info-block {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.contact-info-block:last-child { border-bottom: none; }
.contact-info-block .label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-info-block .value { color: var(--light); font-size: 0.9rem; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 14px 16px;
  outline: none;
  border-radius: 0;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { height: 140px; resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }

/* ─── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--white);
}
.footer-logo-text span { color: var(--gold); }
.footer-brand p { color: var(--muted); font-size: 0.825rem; max-width: 260px; line-height: 1.7; }
.footer-col h4 {
  color: var(--gold);
  margin-bottom: 20px;
  font-family: 'Jost', sans-serif;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--muted); font-size: 0.825rem; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 11px;
  color: var(--muted);
}

/* ─── Reveal animations ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.18s; }
.reveal-d3 { transition-delay: 0.28s; }
.reveal-d4 { transition-delay: 0.38s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes pulseDown {
  0%,100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40%      { opacity: 1; transform: scaleY(1); transform-origin: top; }
  60%      { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
  100%     { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 380px; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card { aspect-ratio: 16/7; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .product-section-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-section-grid.flip { direction: ltr; }
  .projects-mosaic { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .mosaic-item:nth-child(1) { grid-column: span 2; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 72px 0; }
  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(6,6,6,0.98);
    padding: 32px 24px;
    gap: 20px;
    border-top: 1px solid var(--border);
    z-index: 999;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-links.open .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: all;
    background: var(--surface);
    min-width: unset;
    margin-top: 6px;
    border-top-color: var(--gold);
  }
  .menu-toggle { display: flex; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .projects-mosaic { grid-template-columns: 1fr; }
  .mosaic-item:nth-child(1) { grid-column: span 1; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .products-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .projects-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  .about-stats { grid-template-columns: 1fr; gap: 20px; }
  .about-stat + .about-stat { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 20px; }
  .team-grid { grid-template-columns: 1fr; }
}
