* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Inter, Arial, sans-serif;
  background: #f7f4ef;
  color: #171717;
  line-height: 1.6;
}
.container {
  width: min(1280px, 94%);
  margin: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 239, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}
.navbar {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.logo img {
  display: block;
  width: auto;
  height: 70px;
  max-width: 280px;
  object-fit: contain;
}
.logo span,
.gold {
  color: #b48956;
}
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav-links a {
  font-weight: 700;
  font-size: 14px;
  color: #343434;
  position: relative;
  transition: 0.25s;
}
.nav-links a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: #fbb03b;
  transition: 0.25s;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fbb03b;
}
.nav-links a:hover:after,
.nav-links a.active:after {
  width: 100%;
}
.lang-switcher {
  display: flex;
  gap: 6px;
}
.lang-switcher button {
  border: 1px solid #ddd;
  background: #fff;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}
.lang-switcher button.active,
.lang-switcher button:hover {
  background: #fbb03b;
  color: #fff;
}
.menu-btn {
  display: none;
  border: 0;
  background: none;
  font-size: 30px;
  cursor: pointer;
}
.hero {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #b48956;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 14px;
}
.hero h1,
.page-hero h1 {
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}
.hero p,
.page-hero p {
  font-size: 19px;
  color: #555;
  max-width: 660px;
}
.hero-actions,
.actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: 0.25s;
  position: relative;
  overflow: hidden;
}
.primary {
  background: #fbb03b;
  color: #fff;
}
.secondary {
  background: #fff;
  color: #171717;
  border-color: #ddd;
}
.btn:hover {
  transform: translateY(-2px);
}
.primary:after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.28),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.7s ease;
}
.primary:hover:after {
  left: 130%;
}
.hero-card {
  min-height: 520px;
  border-radius: 36px;
  background: #d8d2c8;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  position: relative;
  overflow: hidden;
  animation: floatCard 5.5s ease-in-out infinite;
}
.hero-card:before {
  display: none;
}
.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}
.kitchen-visual {
  position: relative;
  height: 100%;
  min-height: 470px;
}
.cabinet {
  position: absolute;
  background: #eee7dc;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  animation: visualIn 0.9s ease both;
}
.tall {
  width: 34%;
  height: 74%;
  right: 4%;
  top: 7%;
}
.middle {
  width: 50%;
  height: 32%;
  left: 4%;
  top: 18%;
  animation-delay: 0.15s;
}
.small {
  width: 50%;
  height: 23%;
  left: 4%;
  top: 56%;
  background: #2d2b29;
  animation-delay: 0.3s;
}
.counter {
  position: absolute;
  width: 88%;
  height: 18px;
  left: 4%;
  top: 52%;
  border-radius: 999px;
  background: #b48956;
  animation: visualIn 0.9s 0.45s both;
}
.light {
  position: absolute;
  width: 54%;
  height: 5px;
  left: 7%;
  top: 54%;
  background: #fff0c2;
  box-shadow: 0 0 22px #fff0c2;
  animation:
    visualIn 0.9s 0.65s both,
    ledPulse 2.4s 1.2s infinite;
}
.section {
  padding: 96px 0;
}
.soft {
  background: #fff;
}
.dark {
  background: #171717;
  color: #fff;
}
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.section h2 {
  font-size: clamp(31px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.large-text {
  font-size: 20px;
  color: #555;
}
.dark .large-text,
.dark p {
  color: #ddd;
}
.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}
.cards {
  display: grid;
  gap: 22px;
}
.three {
  grid-template-columns: repeat(3, 1fr);
}
.four {
  grid-template-columns: repeat(4, 1fr);
}
.five {
  grid-template-columns: repeat(5, 1fr);
}
.card,
.material,
.contact-card,
.process-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 28px;
  padding: 28px;
  transition: 0.35s;
}
.card:hover,
.material:hover,
.contact-card:hover,
.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.1);
  border-color: rgba(180, 137, 86, 0.35);
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: #f3eadf;
  display: grid;
  place-items: center;
  font-size: 25px;
  margin-bottom: 18px;
}
.card h3,
.material h3 {
  font-size: 23px;
  margin-bottom: 10px;
}
.card p,
.material p {
  color: #666;
}
.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.material span {
  font-size: 13px;
  font-weight: 900;
  color: #b48956;
}
.page-hero {
  padding: 86px 0 70px;
  background: linear-gradient(135deg, #f7f4ef, #fff);
}
.breadcrumb {
  font-weight: 900;
  color: #b48956;
  margin-bottom: 18px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: 0.35s;
}
.product-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}
.product-img,
.project-img {
  height: 210px;
  background: linear-gradient(135deg, #2c2a28, #6d6255);
  position: relative;
  overflow: hidden;
}
.product-img:before,
.project-img:before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8),
    rgba(180, 137, 86, 0.25)
  );
  opacity: 0.85;
}
.product-img:after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 42px;
  height: 12px;
  border-radius: 99px;
  background: #b48956;
  box-shadow: 0 0 22px rgba(180, 137, 86, 0.6);
}
.product-body {
  padding: 26px;
}
.product-body ul {
  margin-top: 12px;
  padding-left: 18px;
  color: #666;
}
.product-tabs {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  margin-bottom: 42px;
  overflow-x: auto;
  white-space: nowrap;
}
.warranty-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  width: 100vw;
  margin: -10px calc(50% - 50vw) 28px;
  padding: 22px max(24px, calc((100vw - min(1280px, 94vw)) / 2));
  background: #111;
  border: 0;
  border-radius: 0;
}
.warranty-strip span {
  color: #fff;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.warranty-strip p {
  max-width: 620px;
  color: #fff;
  font-size: 15px;
  text-align: right;
}
.product-tabs button {
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #555;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 0 0 7px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.product-tabs button.active,
.product-tabs button:hover {
  color: #fbb03b;
  border-color: #fbb03b;
}
.product-category-panel {
  display: none;
}
.product-category-panel.active {
  display: block;
}
.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px 22px;
}
.product-showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  transition: transform 0.35s ease;
}
.product-showcase-card:hover {
  transform: translateY(-6px);
}
.product-showcase-card img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.product-showcase-card:hover img {
  filter: brightness(1.04);
  transform: scale(1.015);
}
.product-showcase-card h3 {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 10px 12px;
  background: #fbb03b;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: background 0.35s ease;
}
.product-showcase-card:hover h3 {
  background: #fbb03b;
}
.product-showcase-card a {
  display: none;
}
.product-showcase-card a:after {
  content: none;
}
.door-intro {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 56px;
}
.door-intro img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}
.door-intro h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  margin-bottom: 22px;
}
.door-intro p,
.door-intro li {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}
.door-intro strong {
  color: #4a4a4a;
  font-weight: 800;
}
.door-intro ul {
  margin-top: 18px;
  padding-left: 20px;
}
.door-intro-closing {
  margin-top: 18px;
}
.door-brand {
  margin-top: 24px;
  color: #4a4a4a !important;
  font-weight: 800;
}
.door-products {
  grid-template-columns: repeat(4, 1fr);
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card {
  background: #242424;
  border-radius: 30px;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: 0.35s;
}
.project-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
}
.project-body {
  padding: 24px;
}
.project-img {
  background: linear-gradient(135deg, #121212, #4b4036);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.stat {
  background: #171717;
  color: #fff;
  padding: 26px;
  border-radius: 26px;
}
.stat strong {
  font-size: 38px;
  display: block;
  color: #b48956;
}
.category-section {
  background: transparent;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.category-card {
  display: block;
  background: transparent;
  border: 0;
  border-radius: 8px;
  padding: 42px 0 0;
  transition: transform 0.35s ease;
}
.category-card:hover {
  transform: translateY(-6px);
}
.category-card img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.category-card:hover img {
  filter: brightness(1.04);
  transform: scale(1.015);
}
.category-card span {
  display: block;
  margin-top: -42px;
  padding: 10px 12px;
  background: rgba(251, 176, 59, 0.9);
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  text-align: center;
  position: relative;
  transition: background 0.35s ease;
}
.category-card:hover span {
  background: rgba(251, 176, 59, 0.96);
  color: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 34px;
  align-items: stretch;
}
.contact-section-head {
  margin-bottom: 34px;
}
.contact-section-head h2 {
  max-width: 760px;
}
.contact-section-head .large-text {
  max-width: 720px;
}
.contact-card {
  height: 100%;
}
.contact-link {
  display: grid;
  gap: 3px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}
.contact-link span {
  color: #8a6a44;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-link strong {
  color: #222;
  font-size: 16px;
  font-weight: 800;
}
.footer-col span {
  color: #fbb03b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-map {
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid #eee3d6;
  border-radius: 18px;
  background: #f7f4ef;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 250px;
  border: 0;
  filter: saturate(0.92) contrast(0.96);
}
.full {
  width: 100%;
  margin-top: 22px;
}
.form-box {
  background: #fff;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.form-box input,
.form-box textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #ddd;
  border-radius: 16px;
  margin-bottom: 14px;
  font: inherit;
}
.form-box textarea {
  min-height: 130px;
  flex: 1;
  resize: vertical;
}
.form-error {
  margin: -6px 0 12px;
  color: #b3261e;
  font-size: 14px;
  font-weight: 700;
}
.form-status {
  min-height: 22px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
}
.form-status.success {
  color: #1f7a3f;
}
.form-status.error {
  color: #b3261e;
}
.honeypot {
  display: none !important;
}
.input-error {
  border-color: #b3261e !important;
}
.footer {
  background: #111;
  color: #fff;
  padding: 44px 0;
}
.footer-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: start;
  color: #ddd;
}
.footer-main p:not(.footer-brand) {
  max-width: 360px;
}
.footer-brand {
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 6px;
}
.footer-columns {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 0.8fr;
  gap: 26px;
}
.footer-col {
  display: grid;
  align-content: start;
  gap: 8px;
}
.footer-col a,
.footer-col p {
  color: #ddd;
  font-size: 14px;
  line-height: 1.5;
}
.footer-col a:hover {
  color: #fbb03b;
}
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes visualIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes ledPulse {
  0%,
  100% {
    box-shadow: 0 0 16px #fff0c2;
  }
  50% {
    box-shadow: 0 0 38px #fff0c2;
  }
}
@media (max-width: 980px) {
  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .contact-card,
  .form-box {
    height: auto;
  }
  .form-box textarea {
    flex: none;
  }
  .three,
  .four,
  .five,
  .materials-grid,
  .product-grid,
  .project-grid,
  .category-grid,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-card img {
    aspect-ratio: 16 / 10;
  }
  .product-tabs {
    justify-content: flex-start;
    gap: 24px;
  }
  .warranty-strip {
    align-items: flex-start;
    flex-direction: column;
  }
  .warranty-strip p {
    text-align: left;
  }
  .product-showcase-grid,
  .door-products {
    grid-template-columns: repeat(2, 1fr);
  }
  .door-intro {
    grid-template-columns: 1fr;
  }
  .hero-card {
    min-height: 420px;
  }
  .hero-image {
    min-height: 420px;
  }
  .nav-links {
    position: fixed;
    top: 82px;
    left: 4%;
    right: 4%;
    background: #fff;
    border-radius: 24px;
    padding: 18px;
    display: none;
    flex-direction: column;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
  }
  .nav-links.show {
    display: flex;
  }
  .nav-links .lang-switcher {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid #eee;
  }
  .menu-btn {
    display: block;
  }
  .navbar {
    gap: 10px;
  }
  .lang-switcher button {
    padding: 7px 8px;
  }
}
@media (max-width: 640px) {
  .hero,
  .section,
  .page-hero {
    padding: 62px 0;
  }
  .three,
  .four,
  .five,
  .materials-grid,
  .product-grid,
  .project-grid,
  .stats {
    grid-template-columns: 1fr;
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-photo-card {
    height: 260px;
    border-radius: 18px;
  }
  .product-tabs {
    margin-bottom: 30px;
  }
  .warranty-strip {
    margin-top: -20px;
    padding: 18px;
  }
  .hero h1,
  .page-hero h1 {
    font-size: 43px;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .logo {
    font-size: 24px;
  }
  .hero-actions .btn,
  .actions .btn {
    width: 100%;
  }
  .navbar {
    height: 76px;
  }
  .nav-links {
    top: 76px;
  }
  .lang-switcher {
    gap: 3px;
  }
  .lang-switcher button {
    font-size: 12px;
  }
  .product-img,
  .project-img {
    height: 180px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Active navigation + new premium sections */
.nav-links a.active {
  color: #fbb03b;
}
.nav-links a.active:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fbb03b;
  box-shadow: 0 0 0 5px rgba(251, 176, 59, 0.18);
}
.feature-card {
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.1);
}
.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #171717;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.feature-card h3,
.mission-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}
.feature-card p,
.mission-card p,
.timeline-card p {
  color: #606060;
}
.cta-banner {
  border-radius: 36px;
  padding: 54px;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  overflow: hidden;
  position: relative;
}
.cta-banner:before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(180, 137, 86, 0.35);
  filter: blur(3px);
}
.cta-banner h2 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 14px;
  position: relative;
}
.cta-banner p {
  color: #d8d8d8;
  max-width: 620px;
  position: relative;
}
.cta-banner .btn {
  position: relative;
  white-space: nowrap;
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.mission-card {
  padding: 34px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  min-height: 220px;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
  margin-top: 34px;
}
.timeline-card {
  position: relative;
  padding: 28px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.timeline-card:before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #b48956;
  color: #fff;
  font-weight: 900;
  margin-bottom: 18px;
}
.about-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.about-media-row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.about-media-reverse > img {
  order: -1;
}
.about-media-row .large-text {
  margin-top: 22px;
}
.about-text-stack {
  display: grid;
  gap: 46px;
}
.about-photo-card {
  width: 100%;
  height: 430px;
  display: block;
  object-fit: cover;
  border-radius: 26px;
  background: #d8d2c8;
}
.about-panel {
  border-radius: 34px;
  background: #171717;
  color: #fff;
  padding: 42px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.about-panel:before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
}
.about-panel h3 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.05em;
  position: relative;
}
@media (max-width: 900px) {
  .cta-banner,
  .about-highlight,
  .about-media-row {
    grid-template-columns: 1fr;
    display: grid;
  }
  .about-media-reverse > img {
    order: 0;
  }
  .mission-grid,
  .timeline {
    grid-template-columns: 1fr;
  }
  .cta-banner {
    padding: 34px;
  }
  .nav-links a.active:before {
    display: none;
  }
}

/* LESS PREMIUM VERSION - simpler design */
body {
  background: #f5f5f5;
  font-family: Arial, sans-serif;
  color: #222;
}

.site-header {
  background: #ffffff;
  backdrop-filter: none;
  border-bottom: 1px solid #ddd;
  box-shadow: none !important;
}

.navbar {
  height: 74px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.logo img {
  display: block;
  width: auto;
  height: 66px;
  max-width: 270px;
  object-fit: contain;
}

.logo span,
.gold,
.eyebrow,
.section-label,
.breadcrumb {
  color: #8a6a44;
}

.nav-links a {
  font-weight: 600;
  font-size: 14px;
}

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

.nav-links a.active {
  color: #fbb03b;
  border-bottom: 2px solid #fbb03b;
  padding-bottom: 5px;
}

.nav-links a.active:before {
  display: none !important;
}

.lang-switcher button {
  border-radius: 4px;
  padding: 7px 9px;
  font-weight: 600;
}

.hero {
  min-height: auto;
  padding: 55px 0;
}

.hero-grid {
  gap: 35px;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero p,
.page-hero p {
  font-size: 17px;
}

.btn {
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 700;
}

.btn:hover {
  transform: none;
}

.primary:after {
  display: none;
}

.hero-card {
  min-height: 360px;
  border-radius: 12px;
  box-shadow: none;
  animation: none;
  background: #d8d2c8;
  border: 1px solid #c8c1b6;
}
.hero-image {
  min-height: 360px;
}

.hero-card:before {
  display: none;
}

.cabinet {
  border-radius: 6px;
  animation: none;
}

.section {
  padding: 60px 0;
}

.page-hero {
  padding: 55px 0;
  background: #eeeeee;
}

.section h2 {
  font-size: clamp(26px, 4vw, 42px);
  letter-spacing: -0.02em;
}

.card,
.material,
.contact-card,
.process-card,
.product-card,
.project-card,
.feature-card,
.mission-card,
.timeline-card {
  border-radius: 10px;
  box-shadow: none !important;
  transition: none;
}

.card:hover,
.material:hover,
.contact-card:hover,
.process-card:hover,
.product-card:hover,
.project-card:hover,
.feature-card:hover {
  transform: none;
  box-shadow: none !important;
}

.card-icon,
.feature-icon {
  border-radius: 8px;
  background: #ececec;
  color: #222;
}

.product-img,
.project-img {
  height: 180px;
  background: #b8b1a8;
}

.product-img:before,
.project-img:before {
  inset: 18px;
  border-radius: 8px;
  opacity: 0.65;
  background: #e6e0d7;
}

.product-img:after {
  background: #8a6a44;
  box-shadow: none;
}

.project-card {
  background: #ffffff;
  color: #222;
  border: 1px solid #ddd;
}

.dark {
  background: #222;
}

.stat {
  border-radius: 10px;
  background: #333;
}

.stat strong {
  color: #fff;
}

.cta-banner {
  border-radius: 12px;
  padding: 34px;
  background: #2b2b2b;
}

.cta-banner:before {
  display: none;
}

.reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

* {
  animation: none !important;
}

.footer {
  background: #222;
}

@media (max-width: 980px) {
  .nav-links {
    border-radius: 8px;
    box-shadow: none;
    border: 1px solid #ddd;
  }
  .nav-links a,
  .nav-links a:visited,
  .nav-links a:focus,
  .nav-links a:active {
    color: #222;
    -webkit-tap-highlight-color: rgba(251, 176, 59, 0.18);
  }
  .nav-links a.active,
  .nav-links a:hover {
    color: #fbb03b;
  }
  .menu-btn,
  .menu-btn:focus,
  .menu-btn:active,
  .lang-switcher button,
  .lang-switcher button:focus,
  .lang-switcher button:active {
    color: #222;
    outline: none;
    -webkit-tap-highlight-color: rgba(251, 176, 59, 0.18);
  }
  .lang-switcher button.active {
    color: #fff;
  }
}
