:root {
  --bg: #f7f3ee;
  --bg-deep: #f0e8df;
  --surface: rgba(255, 252, 248, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --surface-dark: #16181b;
  --text: #191613;
  --muted: #6d6359;
  --line: rgba(63, 50, 39, 0.09);
  --line-strong: rgba(63, 50, 39, 0.16);
  --accent: #b98b55;
  --accent-deep: #8c6539;
  --accent-soft: rgba(185, 139, 85, 0.1);
  --heading: "Sora", "Trebuchet MS", sans-serif;
  --body: "Sora", "Trebuchet MS", sans-serif;
  --shadow: 0 24px 70px rgba(20, 18, 15, 0.06);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1240px, calc(100% - 56px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(185, 139, 85, 0.11), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.8), transparent 22%),
    linear-gradient(180deg, #faf7f2 0%, var(--bg) 46%, var(--bg-deep) 100%);
  line-height: 1.72;
  letter-spacing: -0.01em;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.28), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 28%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s ease;
  z-index: 1;
}

body.page-loaded::after {
  opacity: 1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
ul,
ol {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(185, 139, 85, 0.06), transparent 18%),
    radial-gradient(circle at 92% 72%, rgba(22, 24, 27, 0.05), transparent 16%);
  pointer-events: none;
  opacity: 1;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(247, 243, 238, 0.7);
  border-bottom: 1px solid rgba(63, 50, 39, 0.06);
  transition: transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.75s ease, background 0.35s ease;
  will-change: transform, opacity;
}

body.motion-ready .site-header {
  opacity: 0;
  transform: translateY(-18px);
}

body.page-loaded .site-header {
  opacity: 1;
  transform: translateY(0);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.brand-mark {
  font-family: var(--heading);
  font-size: 1.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-copy {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a.current {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a.current::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid rgba(22, 24, 27, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.nav-language-menu {
  position: relative;
}

.nav-language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(22, 24, 27, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  cursor: pointer;
  list-style: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav-language-toggle::-webkit-details-marker {
  display: none;
}

.nav-language-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.nav-language-menu[open] .nav-language-toggle::after {
  transform: rotate(-135deg) translateY(-1px);
}

.nav-language-toggle:hover,
.nav-language-toggle:focus-visible,
.nav-language-menu[open] .nav-language-toggle {
  transform: translateY(-1px);
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

.nav-language-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 25;
  display: grid;
  min-width: 190px;
  padding: 10px;
  border: 1px solid rgba(22, 24, 27, 0.12);
  border-radius: 20px;
  background: rgba(255, 252, 248, 0.98);
  box-shadow: 0 24px 48px rgba(20, 18, 15, 0.12);
  backdrop-filter: blur(18px);
}

.nav-language-item {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--text);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-language-item:hover,
.nav-language-item:focus-visible,
.nav-language-item.current {
  background: rgba(185, 139, 85, 0.12);
  color: var(--accent-deep);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.nav-cta.current {
  transform: translateY(-1px);
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.9);
}

.hero {
  padding: 92px 0 72px;
}

.hero-cinematic {
  padding: 18px 0 72px;
}

.hero-banner {
  padding: 0 0 64px;
}

.hero-banner-stage {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #111315;
}

.hero-banner-stage[data-hero-slider] .hero-slide {
  position: absolute;
  inset: 0;
}

.hero-banner-stage[data-hero-slider] .hero-slide img {
  height: 720px;
}

.hero-banner-stage[data-hero-slider] .hero-slide-content {
  min-height: 720px;
  align-items: center;
}

.hero-banner-image {
  width: 100%;
  height: 720px;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 13, 15, 0.84) 0%, rgba(11, 13, 15, 0.44) 40%, rgba(11, 13, 15, 0.08) 66%, rgba(11, 13, 15, 0.28) 100%),
    linear-gradient(180deg, rgba(11, 13, 15, 0.08) 0%, rgba(11, 13, 15, 0.56) 100%);
}

.hero-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

body.page-loaded .hero-banner-image {
  animation: heroDrift 14s cubic-bezier(0.3, 0.1, 0.25, 1) both;
}

.cinematic-stage {
  position: relative;
  min-height: 820px;
  border-radius: 40px;
  overflow: hidden;
  background: #0f1113;
  box-shadow: 0 36px 90px rgba(16, 14, 12, 0.16);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 13, 15, 0.88) 0%, rgba(11, 13, 15, 0.54) 42%, rgba(11, 13, 15, 0.16) 68%, rgba(11, 13, 15, 0.42) 100%),
    linear-gradient(180deg, rgba(11, 13, 15, 0.06) 0%, rgba(11, 13, 15, 0.5) 100%);
}

.hero-slide-content {
  position: relative;
  z-index: 1;
  min-height: 820px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.46fr);
  align-items: end;
  gap: 34px;
  padding: 58px;
}

.hero-panel {
  max-width: 720px;
  padding: 40px 40px 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(18, 19, 22, 0.56), rgba(18, 19, 22, 0.2));
  backdrop-filter: blur(14px);
  color: #f7f1e8;
}

.hero-panel-flat {
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  padding-left: 0;
  padding-right: 0;
  max-width: 640px;
}

body.motion-ready .hero-panel-flat > * {
  opacity: 0;
  transform: translateY(22px);
}

body.page-loaded .hero-panel-flat > * {
  opacity: 1;
  transform: translateY(0);
}

body.page-loaded .hero-panel-flat > *:nth-child(1) {
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0.08s, opacity 0.7s ease 0.08s;
}

body.page-loaded .hero-panel-flat > *:nth-child(2) {
  transition: transform 0.82s cubic-bezier(0.2, 0.7, 0.2, 1) 0.16s, opacity 0.82s ease 0.16s;
}

body.page-loaded .hero-panel-flat > *:nth-child(3) {
  transition: transform 0.92s cubic-bezier(0.2, 0.7, 0.2, 1) 0.26s, opacity 0.92s ease 0.26s;
}

body.page-loaded .hero-panel-flat > *:nth-child(4) {
  transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1) 0.36s, opacity 1s ease 0.36s;
}

.hero-panel .eyebrow {
  color: rgba(247, 241, 232, 0.72);
}

.hero-panel .eyebrow::before {
  background: rgba(247, 241, 232, 0.56);
}

.hero-panel h1 {
  max-width: 8.6ch;
  font-size: clamp(3rem, 5.6vw, 5.2rem);
  line-height: 1;
  color: #fff9f1;
}

.hero-panel p {
  max-width: 34ch;
  margin-top: 18px;
  color: rgba(247, 241, 232, 0.8);
  font-size: 0.98rem;
}

.hero-panel .button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #f7f1e8;
}

.hero-facts {
  display: grid;
  gap: 12px;
  align-self: end;
}

.hero-fact {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(14px);
  color: #f7f1e8;
}

.hero-fact strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-fact span {
  color: rgba(247, 241, 232, 0.76);
  font-size: 0.94rem;
}

.hero-controls {
  position: absolute;
  left: 58px;
  right: 58px;
  bottom: 26px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.hero-trigger {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(13, 15, 17, 0.3);
  color: rgba(247, 241, 232, 0.74);
  padding: 16px 18px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero-trigger span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 241, 232, 0.52);
}

.hero-trigger strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 600;
}

.hero-trigger.is-active,
.hero-trigger:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff9f1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 42px;
  align-items: center;
}

.hero-copy,
.hero-media,
.feature-card,
.stat-card,
.content-card,
.product-card,
.process-card,
.faq-card,
.contact-card,
.quote-card,
.spec-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  padding: 18px 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 110px;
  height: 1px;
  border-radius: 0;
  background: var(--accent);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.eyebrow::before {
  content: "";
  width: 56px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--heading);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.7rem, 5vw, 5.1rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

h3 {
  font-size: 1.35rem;
}

h1,
h2 {
  text-wrap: balance;
}

.hero-copy p {
  max-width: 50ch;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.06rem;
}

.cta-row,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button-primary,
.button-secondary,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button-primary {
  color: #fdf9f3;
  background: linear-gradient(135deg, #23262a 0%, #111316 100%);
  box-shadow: 0 16px 36px rgba(17, 19, 22, 0.16);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
}

.text-link {
  padding-left: 0;
  color: var(--accent-deep);
  min-height: auto;
}

.button-primary:hover,
.button-secondary:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.button-primary:hover {
  box-shadow: 0 24px 44px rgba(17, 19, 22, 0.2);
}

.button-secondary:hover {
  box-shadow: 0 16px 30px rgba(22, 24, 27, 0.08);
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 40px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-badge {
  position: absolute;
  left: 32px;
  bottom: 32px;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 24px;
  max-width: 290px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(18, 19, 21, 0.66), rgba(18, 19, 21, 0.38));
  color: #f9f4ee;
  backdrop-filter: blur(18px);
}

.hero-badge strong {
  font-size: 1.1rem;
}

.section {
  padding: 54px 0 110px;
}

.section-tight {
  padding-top: 18px;
}

.section-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.section-head p {
  max-width: 56ch;
  color: var(--muted);
}

.two-col,
.three-col,
.four-col,
.stats-grid,
.products-grid,
.faq-grid,
.spec-grid,
.steps-grid {
  display: grid;
  gap: 24px;
}

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

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

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

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

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

.catalog-stack {
  display: grid;
  gap: 56px;
}

.library-browser {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.library-sidebar {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.library-sidebar-title {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.library-nav {
  display: grid;
  gap: 12px;
}

.library-nav-button {
  display: grid;
  gap: 6px;
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(185, 139, 85, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  text-align: left;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.library-nav-button strong {
  font-size: 1rem;
}

.library-nav-button span {
  font-size: 0.82rem;
  color: var(--muted);
}

.library-nav-button:hover,
.library-nav-button.is-active {
  transform: translateY(-2px);
  border-color: rgba(185, 139, 85, 0.26);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 244, 236, 0.94));
  box-shadow: 0 20px 36px rgba(20, 18, 15, 0.08);
}

.library-panel {
  min-width: 0;
}

.library-group {
  display: grid;
  gap: 22px;
}

.library-actions {
  display: flex;
  justify-content: center;
}

.library-more-button {
  min-width: 180px;
}

.library-group-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.library-group-head p {
  color: var(--muted);
}

.library-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.library-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.library-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(20, 18, 15, 0.1);
  border-color: rgba(185, 139, 85, 0.22);
}

.library-card-link {
  display: block;
  color: inherit;
}

.library-card img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
}

.library-card-body {
  display: grid;
  gap: 8px;
  padding: 14px 16px 16px;
}

.library-card-meta {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.library-card-title {
  font-size: 0.98rem;
  line-height: 1.3;
}

.project-hero-section {
  padding-top: 0;
  padding-bottom: 18px;
}

.project-gallery-section {
  padding-top: 0;
}

.page-banner-section {
  padding-top: 0;
  padding-bottom: 18px;
}

.page-banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 300px;
  background: #141618;
  box-shadow: 0 24px 70px rgba(20, 18, 15, 0.08);
}

.page-banner img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.project-hero-banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 300px;
  background: #141618;
  box-shadow: 0 24px 70px rgba(20, 18, 15, 0.08);
}

.project-hero-banner img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

.project-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.project-filter-button {
  padding: 12px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.24s ease, color 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.project-filter-button:hover {
  transform: translateY(-1px);
  border-color: rgba(185, 139, 85, 0.28);
}

.project-filter-button.is-active {
  background: linear-gradient(135deg, rgba(185, 139, 85, 0.96), rgba(151, 113, 67, 0.96));
  border-color: transparent;
  color: #fff9f1;
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.project-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.project-card-link {
  color: inherit;
}

.project-card[hidden] {
  display: none;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(20, 18, 15, 0.1);
  border-color: rgba(185, 139, 85, 0.24);
}

.project-card-media {
  overflow: hidden;
  background: #141618;
}

.project-card-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.project-card:hover .project-card-media img {
  transform: scale(1.04);
}

.project-card-body {
  display: grid;
  gap: 10px;
  padding: 18px 18px 20px;
}

.project-card-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.project-card-body h3 {
  font-size: 1.08rem;
  line-height: 1.28;
}

.project-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.project-card-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: var(--accent-deep);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-cta-row {
  margin-top: 28px;
}

.products-page .products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.products-page .product-card img {
  aspect-ratio: 4 / 3.5;
}

.products-page .product-card-body {
  padding: 22px 22px 24px;
}

.home-page .featured-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.home-page .featured-card {
  min-height: 0;
  border-radius: 28px;
}

.home-page .featured-card-body {
  padding: 22px 20px;
}

.home-page .featured-card-body h3 {
  max-width: none;
  font-size: 1.35rem;
}

.home-page .featured-card-body p {
  margin-top: 10px;
  font-size: 0.92rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.featured-card {
  display: grid;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(185, 139, 85, 0.12);
  box-shadow: var(--shadow);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.35s ease;
}

.featured-card-media {
  aspect-ratio: 1.08 / 0.92;
  overflow: hidden;
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.featured-card-body {
  padding: 30px;
  color: var(--ink);
}

.featured-card-body .product-tag {
  color: var(--accent-deep);
  background: rgba(185, 139, 85, 0.08);
  border-color: rgba(185, 139, 85, 0.16);
}

.featured-card-body h3 {
  margin-top: 14px;
  max-width: 14ch;
  font-size: 2rem;
  line-height: 1.02;
}

.featured-card-body p {
  max-width: 38ch;
  margin-top: 12px;
  color: var(--muted);
}

.featured-card-body .text-link {
  color: var(--ink);
}

.featured-card-body .text-link::after {
  content: " /";
  margin-left: 8px;
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 74px rgba(20, 18, 15, 0.14);
}

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

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 30px;
  align-items: stretch;
}

.editorial-copy {
  padding: 42px;
}

.editorial-copy h2 {
  max-width: 13ch;
}

.contact-aside {
  display: grid;
  gap: 18px;
}

.contact-highlight,
.contact-mini-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.contact-highlight {
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(250, 244, 236, 0.82)),
    linear-gradient(135deg, rgba(185, 139, 85, 0.08), transparent);
}

.contact-highlight h3,
.contact-mini-card h3 {
  margin-top: 4px;
}

.contact-highlight p,
.contact-mini-card p {
  margin-top: 12px;
  color: var(--muted);
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-points li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.contact-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-mini-card {
  padding: 28px;
}

.contact-highlight:hover,
.contact-mini-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(20, 18, 15, 0.1);
  border-color: rgba(185, 139, 85, 0.18);
}

.process-minimal {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-minimal .process-card {
  min-height: 220px;
}

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

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

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

.feature-card,
.content-card,
.stat-card,
.process-card,
.faq-card,
.contact-card,
.quote-card,
.spec-card {
  padding: 34px;
}

.feature-card p,
.content-card p,
.process-card p,
.faq-card p,
.contact-card p,
.quote-card p,
.spec-card p,
.product-card p {
  margin-top: 12px;
  color: var(--muted);
}

.feature-card ul,
.content-card ul,
.quote-card ul,
.spec-card ul {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.feature-card li,
.content-card li,
.quote-card li,
.spec-card li,
.detail-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.feature-card li::before,
.content-card li::before,
.quote-card li::before,
.spec-card li::before,
.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.stat-card strong {
  display: block;
  font-family: var(--heading);
  font-size: 2rem;
  color: var(--text);
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.image-panel,
.gallery-panel {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.56);
}

.image-panel img,
.image-panel video,
.gallery-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.factory-video-panel {
  align-self: start;
  aspect-ratio: 16 / 9;
  background: #0f1012;
}

.factory-video-panel video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0f1012;
}

.product-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.62);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(20, 18, 15, 0.1);
  border-color: rgba(185, 139, 85, 0.22);
}

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

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-card-body {
  padding: 28px 28px 30px;
}

.product-tag,
.meta-pill {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(185, 139, 85, 0.14);
  color: var(--accent-deep);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.split-showcase {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: start;
}

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

.quote-strip {
  position: relative;
  padding: 52px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(185, 139, 85, 0.24), transparent 22%),
    linear-gradient(135deg, rgba(24, 26, 29, 0.98), rgba(24, 26, 29, 0.9));
  color: #f8f1e8;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quote-strip::after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255, 250, 244, 0.1);
  border-radius: calc(var(--radius-xl) - 10px);
  pointer-events: none;
}

.quote-strip p {
  margin-top: 14px;
  max-width: 56ch;
  color: rgba(248, 241, 232, 0.82);
}

.reveal-element {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-element.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal-element.reveal-soft {
  transform: translate3d(0, 20px, 0);
}

@keyframes heroDrift {
  0% {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  body::after,
  .reveal-element,
  body.motion-ready .site-header,
  body.motion-ready .hero-panel-flat > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

.quote-strip .button-row {
  margin-top: 24px;
}

.quote-strip .button-secondary {
  background: transparent;
  color: #f8f1e8;
  border-color: rgba(248, 241, 232, 0.28);
}

.page-intro {
  padding: 94px 0 34px;
}

.page-intro-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: end;
}

.page-intro p {
  max-width: 64ch;
  margin-top: 18px;
  color: var(--muted);
}

.breadcrumbs {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumbs span {
  color: var(--accent-deep);
}

.site-footer {
  padding: 44px 0 56px;
  border-top: 1px solid rgba(63, 50, 39, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 24px;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
  color: var(--muted);
}

.footer-grid h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.footer-grid ul {
  display: grid;
  gap: 8px;
}

.fine-print {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.inquiry-form {
  display: grid;
  gap: 16px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--muted);
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
  color: var(--text);
}

.inquiry-form textarea {
  min-height: 160px;
  resize: vertical;
}

.helper {
  font-size: 0.84rem;
  color: var(--muted);
}

.form-feedback {
  margin: 16px 0;
  padding: 14px 16px;
  border-radius: 16px;
}

.form-feedback-success {
  background: rgba(78, 177, 112, 0.12);
  color: #2b6a3d;
}

.form-feedback-error {
  background: rgba(189, 74, 74, 0.12);
  color: #8f2f2f;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1024px) {
  .project-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-banner,
  .page-banner img,
  .project-hero-banner,
  .project-hero-banner img {
    min-height: 300px;
  }

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

  .library-browser {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .hero-slide-content,
  .hero-grid,
  .split-showcase,
  .footer-grid,
  .page-intro-grid,
  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .products-grid,
  .library-grid,
  .spec-grid,
  .steps-grid,
  .three-col,
  .featured-grid,
  .process-minimal,
  .contact-note-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .hero-copy {
    padding: 0;
  }

  .hero-media {
    min-height: 560px;
  }

  .hero-cinematic {
    padding-top: 8px;
  }

  .hero-banner-stage {
    min-height: 620px;
  }

  .hero-banner-image {
    height: 620px;
  }

  .hero-banner-stage[data-hero-slider] .hero-slide img,
  .hero-banner-stage[data-hero-slider] .hero-slide-content {
    min-height: 620px;
    height: 620px;
  }

  .cinematic-stage,
  .hero-slide-content {
    min-height: 720px;
  }

  .hero-slide-content {
    padding: 40px;
  }

  .hero-controls {
    left: 40px;
    right: 40px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .project-gallery-grid {
    grid-template-columns: 1fr;
  }

  .page-banner,
  .page-banner img,
  .project-hero-banner,
  .project-hero-banner img {
    min-height: 220px;
  }

  .project-filter-row {
    gap: 10px;
  }

  .project-filter-button {
    flex: 1 1 calc(50% - 5px);
    text-align: center;
  }

  .home-page .featured-grid {
    grid-template-columns: 1fr;
  }

  .container {
    width: min(100% - 28px, 100%);
  }

  .nav-wrap {
    flex-wrap: wrap;
    min-height: 70px;
    padding: 10px 0;
  }

  .nav-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .site-nav {
    display: none;
    width: 100%;
    padding-bottom: 12px;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-cta {
    width: 100%;
  }

  .nav-language-menu {
    width: 100%;
  }

  .nav-language-toggle {
    width: 100%;
  }

  .nav-language-dropdown {
    position: static;
    margin-top: 8px;
    min-width: 0;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-cinematic {
    padding-top: 0;
  }

  .hero-banner {
    padding-bottom: 44px;
  }

  .hero-banner-stage {
    min-height: 540px;
  }

  .hero-banner-image {
    height: 540px;
  }

  .hero-banner-stage[data-hero-slider] .hero-slide img,
  .hero-banner-stage[data-hero-slider] .hero-slide-content {
    min-height: 540px;
    height: 540px;
  }

  .hero-banner-content {
    align-items: end;
  }

  .hero-copy,
  .feature-card,
  .content-card,
  .stat-card,
  .process-card,
  .faq-card,
  .contact-card,
  .quote-card,
  .spec-card {
    padding: 24px;
  }

  .quote-strip {
    padding: 30px 24px;
  }

  .hero-media {
    min-height: 420px;
    border-radius: 28px;
  }

  .section {
    padding: 26px 0 58px;
  }

  .section-head,
  .library-group-head,
  .field-grid,
  .two-col,
  .three-col,
  .four-col,
  .stats-grid,
  .products-grid,
  .library-grid,
  .faq-grid,
  .spec-grid,
  .steps-grid,
  .featured-grid,
  .process-minimal,
  .contact-note-grid {
    grid-template-columns: 1fr;
  }

  .library-browser {
    grid-template-columns: 1fr;
  }

  .library-sidebar {
    position: static;
    top: auto;
    padding: 18px;
  }

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

  .library-group-head {
    display: grid;
    align-items: start;
  }

  .products-page .products-grid {
    grid-template-columns: 1fr;
  }

  .cinematic-stage,
  .hero-slide-content {
    min-height: 640px;
  }

  .cinematic-stage {
    border-radius: 28px;
  }

  .hero-slide-content {
    align-items: end;
    padding: 24px;
  }

  .hero-panel {
    padding: 24px;
  }

  .hero-panel-flat {
    padding: 0 0 28px;
  }

  .hero-panel h1 {
    max-width: none;
    font-size: clamp(2.5rem, 11vw, 4rem);
  }

  .hero-facts {
    display: none;
  }

  .hero-controls {
    left: 18px;
    right: 18px;
    bottom: 18px;
    grid-template-columns: 1fr 1fr;
  }

  .hero-trigger {
    padding: 13px 14px;
  }

  .featured-card {
    min-height: 0;
    border-radius: 28px;
  }

  .featured-card-body {
    padding: 22px;
  }

  h1 {
    font-size: clamp(2.3rem, 12vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.5rem);
  }

  .hero-badge {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
  }
}
