/* Homepage-only layout (load after kartika-content.css). Tokens & base chrome: kartika-content.css */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
/* Homepage: body typography/background from kartika-content.css */
body { overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(82px,10vw,132px) 0; }
.section--cream { background: var(--cream); }
.section--white { background: #fbfbf9; }
.section--dark { background: var(--onyx); }
.section--stripe { background: #f3f6f1; }

.s-head { text-align: center; max-width: 740px; margin: 0 auto clamp(44px,6vw,80px); }
.s-head--left { text-align: left; margin-left: 0; }
.s-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.s-eyebrow::before, .s-eyebrow::after {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold);
}
.s-eyebrow--light { color: var(--gold-light); }
.s-eyebrow--light::before, .s-eyebrow--light::after { background: var(--gold-light); }
.s-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem,5vw,3.6rem);
  font-weight: 600; line-height: 1.16;
  color: var(--onyx);
}
.s-title--light { color: var(--white); }
.s-title em { font-style: italic; color: var(--gold); }
.s-sub { margin-top: 16px; font-size: 1.02rem; color: var(--text-muted); line-height: 1.9; }
.s-sub--light { color: rgba(255,255,255,0.6); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.06em; border-radius: var(--r-sm);
  border: 2px solid transparent; cursor: pointer;
  transition: all 0.3s var(--ease); white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--onyx); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-gold { background: transparent; color: var(--gold-dark); border-color: var(--gold-dark); padding: 12px 28px; font-size: 0.8125rem; }
.btn-outline-gold:hover { background: var(--gold); color: var(--onyx); border-color: var(--gold); }
.btn-lg { padding: 18px 54px; font-size: 0.9375rem; }
.btn-text {
  font-size: 0.8125rem; font-weight: 600; color: var(--gold-dark);
  letter-spacing: 0.08em; display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.25s, color 0.25s; background: none; border: none; padding: 0;
}
.btn-text:hover { color: var(--onyx); gap: 12px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }

.logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.logo__img { display: block; height: 48px; width: 48px; object-fit: cover; object-position: center 18%; flex-shrink: 0; border-radius: 4px; }
.footer .logo__img { height: 52px; width: 52px; }
.logo__svg { width: 48px; height: 48px; flex-shrink: 0; }
.logo__text { display: flex; flex-direction: column; gap: 0; }
.logo__name {
  font-family: var(--font-display);
  font-size: 1.45rem; font-weight: 700;
  color: var(--onyx); line-height: 1; letter-spacing: -0.01em;
}
.logo__tagline {
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); line-height: 1; margin-top: 3px;
}
.logo--light .logo__name { color: var(--white); }
.logo--light .logo__tagline { color: var(--gold-light); }

.topbar {
  background: var(--onyx); color: rgba(255,255,255,0.58);
  font-size: 0.72rem; letter-spacing: 0.04em; padding: 9px 0;
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar__left { display: flex; gap: 24px; }
.topbar__right { display: flex; gap: 20px; align-items: center; }
.topbar a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.topbar a:hover { color: var(--gold-light); }
.topbar__cert {
  background: rgba(200,147,60,0.22); color: var(--gold-light);
  padding: 3px 12px; border-radius: 100px;
  font-weight: 600; font-size: 0.67rem; letter-spacing: 0.1em;
}

.header {
  position: sticky; top: 0; z-index: var(--z-sticky-header);
  background-color: var(--surface);
  background: linear-gradient(to bottom, #fdfcfa 0%, var(--surface) 100%);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-dark);
  transition: box-shadow 0.3s var(--ease);
  isolation: isolate;
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header__inner { display: flex; align-items: center; height: 84px; gap: 32px; }

.nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav__item { position: relative; padding-bottom: 12px; margin-bottom: -12px; }
.nav__item::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 12px;
}
.nav__link {
  display: flex; align-items: center; gap: 4px;
  padding: 9px 14px;
  font-size: 0.84rem; font-weight: 500;
  color: var(--charcoal); border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s; cursor: pointer;
}
.nav__link:hover { color: var(--onyx); background: var(--cream-mid); }
.nav__caret { font-size: 0.5rem; transition: transform 0.25s; opacity: 0.55; }
.nav__item:hover .nav__caret { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: 100%; left: 0;
  min-width: 230px; background: var(--white);
  border: 1px solid var(--cream-dark); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); padding: 5px 0;
  opacity: 0; visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s var(--ease); z-index: var(--z-dropdown);
}
.nav__item:hover .dropdown,
.nav__item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 7px 16px;
  font-size: 0.81rem; line-height: 1.25; color: var(--charcoal);
  transition: background 0.15s, color 0.15s, padding-left 0.2s;
}
.dropdown a:hover { background: var(--cream); color: var(--onyx); padding-left: 22px; }
.dropdown__divider { display: none; }

.nav__cta { margin-left: 12px; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px; margin-left: auto;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--onyx); border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  z-index: 0;
  min-height: max(600px, 92vh);
  overflow: visible;
  display: flex;
  align-items: center;
  padding: clamp(48px, 8vh, 96px) 0 clamp(72px, 10vh, 112px);
}
.hero__bg,
.hero__img-bg,
.hero__texture {
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(160deg, rgba(20,18,14,0.64) 0%, rgba(20,18,14,0.42) 54%, rgba(20,18,14,0.24) 100%);
}
.hero__img-bg {
  position: absolute; inset: 0; z-index: -1;
  background: url('../images/Rough-blocks.webp') center/cover no-repeat;
}
.hero__texture {
  position: absolute; inset: 0; z-index: 1; opacity: 0.2;
  background-image:
    repeating-linear-gradient(45deg, rgba(200,147,60,0.05) 0, rgba(200,147,60,0.05) 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(-45deg, rgba(200,147,60,0.04) 0, rgba(200,147,60,0.04) 1px, transparent 0, transparent 50%);
  background-size: 28px 28px;
}
.hero__content {
  position: relative; z-index: 5;
  max-width: 780px;
  background: rgba(26, 23, 18, 0.22);
  border: 1px solid rgba(230, 211, 174, 0.22);
  border-radius: 16px;
  padding: clamp(18px, 3vw, 30px);
  backdrop-filter: blur(4px);
  animation: heroIn 1.1s var(--ease-out) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 24px;
  animation: heroIn 1.1s 0.1s var(--ease-out) both;
}
.hero__label-line { display: block; width: 38px; height: 1px; background: var(--gold-light); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7.5vw, 6.2rem);
  font-weight: 600; line-height: 1.04;
  color: var(--white); margin-bottom: 24px;
  animation: heroIn 1.1s 0.2s var(--ease-out) both;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero__sub {
  font-size: clamp(1rem,2vw,1.2rem);
  color: rgba(255,255,255,0.82); max-width: 560px;
  margin-bottom: clamp(24px, 4vw, 46px); line-height: 1.8;
  animation: heroIn 1.1s 0.35s var(--ease-out) both;
}
.hero__cta {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: heroIn 1.1s 0.5s var(--ease-out) both;
}
.hero__cta .btn { flex-shrink: 0; }
.hero__scroll {
  position: absolute; bottom: 38px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 5; cursor: pointer;
}
.hero__scroll span {
  font-size: 0.61rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.hero__scroll-bar {
  width: 1px; height: 54px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:1; transform: scaleY(1); }
  50% { opacity:0.4; transform: scaleY(0.6); }
}
.hero__badges {
  position: absolute; right: var(--pad); top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 12px; z-index: 5;
}
.hero__badge-pill {
  background: rgba(28, 24, 18, 0.56);
  border: 1px solid rgba(213,180,125,0.45);
  backdrop-filter: blur(10px);
  padding: 14px 20px; border-radius: var(--r-md);
  text-align: center;
}
.hero__badge-pill strong {
  display: block; font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 700; color: var(--gold-light); line-height: 1;
}
.hero__badge-pill span {
  display: block; font-size: 0.61rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-top: 4px;
}

.stats { background: var(--white); }
.stats__bar { display: grid; grid-template-columns: repeat(4,1fr); border-top: 3px solid var(--gold); }
.stats__cell { padding: 32px 24px; text-align: center; border-right: 1px solid var(--cream-dark); }
.stats__cell:last-child { border-right: none; }
.stats__num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--onyx); line-height: 1; margin-bottom: 4px; }
.stats__lbl { font-size: 0.71rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark); }

.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,7vw,100px); align-items: center; }
.about__mosaic {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 290px 200px; gap: 12px;
  border-radius: var(--r-lg); overflow: hidden;
}
.about__mosaic-cell { overflow: hidden; border-radius: var(--r-md); }
.about__mosaic-cell:first-child { grid-row: span 2; }
.about__mosaic img { width: 100%; height: 100%; object-fit: cover; }
.about__stamp {
  position: absolute; bottom: -20px; right: -20px;
  width: 126px; height: 126px;
  background: var(--gold); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white); z-index: 2;
}
.about__stamp strong { font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; color: var(--onyx); line-height: 1; }
.about__stamp span { font-size: 0.57rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--onyx-warm); text-align: center; margin-top: 3px; }
.about__visual { position: relative; }
.about__intro { font-family: var(--font-display); font-size: 1.4rem; font-style: italic; color: var(--charcoal); line-height: 1.5; margin-bottom: 20px; }
.about__body { color: var(--text-muted); margin-bottom: 30px; line-height: 1.85; }
.about__pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 38px; }
.pillar { display: flex; align-items: flex-start; gap: 12px; background: var(--cream-mid); border-radius: var(--r-md); padding: 16px; }
.pillar__icon { width: 38px; height: 38px; border-radius: var(--r-sm); background: var(--gold); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.pillar__text strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--onyx); margin-bottom: 2px; }
.pillar__text span { font-size: 0.78rem; color: var(--text-muted); }

.products__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.pcard {
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  box-shadow: 0 10px 26px rgba(19,16,10,0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.pcard:hover { transform: translateY(-7px); box-shadow: 0 20px 40px rgba(19,16,10,0.14); }
.pcard__img { height: 208px; overflow: hidden; position: relative; }
.pcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--ease); }
.pcard:hover .pcard__img img { transform: scale(1.07); }
.pcard__body { padding: 20px 22px 26px; }
.pcard__num { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; color: var(--cream-dark); margin-bottom: 6px; }
.pcard__title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--onyx); margin-bottom: 8px; line-height: 1.3; }
.pcard__desc { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; }
.pcard__arrow { font-size: 0.75rem; font-weight: 600; color: var(--gold-dark); letter-spacing: 0.08em; display: flex; align-items: center; gap: 6px; }

.pdpage { display: none; }
.pdpage.active { display: block; }
.pdpage__hero {
  background: var(--onyx-mid);
  padding: clamp(80px,12vw,140px) 0 clamp(60px,8vw,100px);
  position: relative; overflow: hidden;
}
.pdpage__hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('') center/cover no-repeat;
  opacity: 0.15;
}
.pdpage__breadcrumb { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.pdpage__breadcrumb a { color: var(--gold-light); }
.pdpage__breadcrumb span { margin: 0 8px; }
.pdpage__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem,6vw,5rem);
  font-weight: 600; color: var(--white); line-height: 1.1;
}
.pdpage__title em { font-style: italic; color: var(--gold-light); }
.pdpage__sub { font-size: 1.05rem; color: rgba(255,255,255,0.6); margin-top: 14px; max-width: 600px; line-height: 1.8; }
.pdpage__content { padding: clamp(64px,9vw,112px) 0; }
.pdpage__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: start; }
.pdpage__gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pdpage__gallery-main { grid-column: span 2; border-radius: var(--r-lg); overflow: hidden; height: 380px; }
.pdpage__gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.pdpage__gallery-thumb { border-radius: var(--r-md); overflow: hidden; height: 180px; }
.pdpage__gallery-thumb img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: transform 0.3s; }
.pdpage__gallery-thumb img:hover { transform: scale(1.04); }
.pdpage__info h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.5rem); font-weight: 600; color: var(--onyx); margin-bottom: 16px; }
.pdpage__info p { color: var(--text-muted); line-height: 1.85; margin-bottom: 18px; }
.pdpage__specs { background: var(--cream-mid); border-radius: var(--r-md); padding: 24px; margin: 28px 0; }
.pdpage__specs h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--onyx); margin-bottom: 16px; }
.pdpage__spec-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--cream-dark); font-size: 0.875rem; }
.pdpage__spec-row:last-child { border-bottom: none; }
.pdpage__spec-row strong { color: var(--onyx); font-weight: 600; }
.pdpage__spec-row span { color: var(--text-muted); text-align: right; }
.pdpage__actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.pdpage__back { background: none; border: none; cursor: pointer; color: var(--gold-dark); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; display: flex; align-items: center; gap: 6px; margin-bottom: 28px; padding: 0; font-family: var(--font-body); transition: gap 0.2s, color 0.2s; }
.pdpage__back:hover { gap: 10px; color: var(--onyx); }
.pdpage__finishes { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.pdpage__finish-tag { padding: 6px 14px; border: 1px solid var(--cream-dark); border-radius: 100px; font-size: 0.78rem; color: var(--charcoal); background: var(--white); }
.pdpage__colors-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 14px; }
.pdpage__color-swatch { border-radius: var(--r-md); overflow: hidden; aspect-ratio: 4/3; position: relative; cursor: pointer; }
.pdpage__color-swatch img { width: 100%; height: 100%; object-fit: cover; }
.pdpage__color-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(14,14,12,0.8), transparent); color: white; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 8px 10px; }

.colors__intro { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.colors__scroll {
  container-type: inline-size;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--cream-dark);
  padding-bottom: 10px;
}
.colors__scroll::-webkit-scrollbar { height: 6px; }
.colors__scroll::-webkit-scrollbar-track { background: var(--cream-dark); border-radius: 999px; }
.colors__scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 999px; }
.colors__grid {
  display: flex;
  gap: 12px;
  width: max-content;
  min-width: 100%;
}
.colors__grid .ccolor {
  flex: 0 0 calc((100cqi - 7 * 12px) / 8);
  width: calc((100cqi - 7 * 12px) / 8);
}
.ccolor { border-radius: var(--r-md); overflow: hidden; aspect-ratio: 1; cursor: pointer; box-shadow: var(--shadow-sm); transition: transform 0.3s, box-shadow 0.3s; position: relative; }
.ccolor:hover { transform: scale(1.08); box-shadow: var(--shadow-md); z-index: 2; }
.ccolor img { width: 100%; height: 100%; object-fit: cover; }
.ccolor__label { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,14,12,0.75), transparent 60%); display: flex; align-items: flex-end; justify-content: center; padding: 8px; }
.ccolor__label span { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.75); text-align: center; }

.projects__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; }
.prjcard { border-radius: var(--r-lg); overflow: hidden; position: relative; cursor: pointer; }
.prjcard__img { width: 100%; height: 340px; overflow: hidden; }
.prjcard--tall .prjcard__img { height: 510px; }
.prjcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.prjcard:hover .prjcard__img img { transform: scale(1.07); }
.prjcard__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,14,12,0.85) 0%, rgba(14,14,12,0) 60%); padding: 26px; display: flex; flex-direction: column; justify-content: flex-end; gap: 6px; }
.prjcard__country { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--white); }
.prjcard__meta { font-size: 0.78rem; color: rgba(255,255,255,0.65); }
.prjcard__flag { font-size: 1.5rem; }

.process__tabs { display: flex; justify-content: center; gap: 0; margin-bottom: 56px; border: 1px solid rgba(255,255,255,0.15); border-radius: var(--r-md); overflow: hidden; width: fit-content; margin-left: auto; margin-right: auto; }
.ptab { padding: 13px 32px; background: transparent; border: none; border-right: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.55); font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.04em; cursor: pointer; transition: all 0.25s var(--ease); }
.ptab:last-child { border-right: none; }
.ptab:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.ptab.active { background: var(--gold); color: var(--onyx); font-weight: 700; }
.ppanels { position: relative; min-height: 360px; }
.ppanel { display: none; grid-template-columns: 1fr 1fr; gap: clamp(32px,6vw,82px); align-items: center; animation: panelIn 0.45s var(--ease-out) both; }
.ppanel.active { display: grid; }
@keyframes panelIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.ppanel__img { height: 430px; border-radius: var(--r-lg); overflow: hidden; }
.ppanel__img img { width: 100%; height: 100%; object-fit: cover; }
.ppanel__num { font-family: var(--font-display); font-size: 5.5rem; font-weight: 700; color: rgba(200,147,60,0.2); line-height: 1; margin-bottom: 8px; }
.ppanel__title { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; color: var(--white); margin-bottom: 14px; }
.ppanel__text { color: rgba(255,255,255,0.62); line-height: 1.85; margin-bottom: 24px; }
.ppanel__link { font-size: 0.8rem; font-weight: 600; color: var(--gold-light); letter-spacing: 0.08em; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: gap 0.2s; }
.ppanel__link:hover { gap: 14px; }

.testi__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.tcard { background: var(--white); border: 1px solid var(--cream-dark); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-sm); transition: box-shadow 0.3s; }
.tcard:hover { box-shadow: var(--shadow-md); }
.tcard__stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 14px; }
.tcard__text { font-size: 0.925rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.tcard__author { display: flex; align-items: center; gap: 14px; }
.tcard__flag { font-size: 1.5rem; }
.tcard__name { font-weight: 600; font-size: 0.875rem; color: var(--onyx); }
.tcard__country { font-size: 0.75rem; color: var(--text-muted); }

.certs__grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center; }
.cert-badge { background: var(--white); border: 1px solid var(--cream-dark); border-radius: var(--r-md); padding: 18px 28px; text-align: center; font-size: 0.78rem; font-weight: 600; color: var(--charcoal); letter-spacing: 0.06em; box-shadow: var(--shadow-sm); transition: box-shadow 0.25s, transform 0.25s; }
.cert-badge:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.cert-badge img { height: 54px; margin: 0 auto 8px; object-fit: contain; }

.contact__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px,6vw,96px); }
.contact__info h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 600; color: var(--white); margin-bottom: 18px; }
.contact__info p { color: rgba(255,255,255,0.62); line-height: 1.85; margin-bottom: 30px; }
.contact__details { display: flex; flex-direction: column; gap: 18px; }
.contact__item { display: flex; align-items: flex-start; gap: 14px; }
.contact__icon { width: 40px; height: 40px; border-radius: var(--r-md); background: var(--gold-glow); border: 1px solid rgba(200,147,60,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.contact__item-body strong { display: block; font-size: 0.8rem; font-weight: 600; color: var(--gold-light); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.contact__item-body span { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.65; }
.contact__form { background: var(--white); border-radius: var(--r-xl); padding: clamp(28px,4vw,52px); box-shadow: var(--shadow-lg); }
.contact__form h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--onyx); margin-bottom: 6px; }
.contact__form p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--charcoal); letter-spacing: 0.04em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px; border: 1.5px solid var(--cream-dark);
  border-radius: var(--r-md); font-family: var(--font-body); font-size: 0.9rem;
  color: var(--text); background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--brand-green); box-shadow: 0 0 0 3px var(--focus-ring); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.76rem; color: var(--text-muted); margin-top: 12px; }
.kns-form-response { display: none; border-radius: var(--r-md); padding: 14px 16px; font-size: 0.88rem; margin-top: 14px; text-align: center; }
.kns-form-response.success { display: block; background: #e8f5e9; border: 1px solid #a5d6a7; color: #2e7d32; }
.kns-form-response.error { display: block; background: #fdecea; border: 1px solid #f5c2c0; color: #b42318; }

.cta-strip { padding: clamp(64px,9vw,112px) 0; }
.cta-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.cta-strip h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 600; color: var(--white); margin-bottom: 8px; }
.cta-strip p { color: rgba(255,255,255,0.62); font-size: 1rem; margin-bottom: 4px; }
.cta-strip__note { font-size: 0.78rem; color: rgba(255,255,255,0.4); letter-spacing: 0.04em; }

.footer { background: var(--onyx-mid); color: rgba(255,255,255,0.55); }
.footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 52px; padding: clamp(56px,8vw,96px) 0 clamp(40px,6vw,72px); }
.footer__brand p { font-size: 0.875rem; line-height: 1.8; margin-top: 18px; color: rgba(255,255,255,0.45); max-width: 300px; }
.footer__social { display: flex; gap: 10px; margin-top: 22px; }
.fsoc { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.45); transition: border-color 0.2s, color 0.2s, background 0.2s; }
.fsoc:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,147,60,0.1); }
.footer__col h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 18px; letter-spacing: 0.02em; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a { font-size: 0.865rem; color: rgba(255,255,255,0.45); transition: color 0.2s, padding-left 0.2s; display: block; }
.footer__col ul a:hover { color: var(--gold-light); padding-left: 6px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-size: 0.78rem; flex-wrap: wrap; gap: 12px; }
.fbot-links { display: flex; gap: 24px; }
.fbot-links a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.fbot-links a:hover { color: var(--gold-light); }

.directors { padding: clamp(72px,10vw,120px) 0; }
.directors__grid { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(48px,7vw,96px); align-items: start; }
.directors__portrait { border-radius: var(--r-xl); overflow: hidden; background: var(--cream-mid); aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; }
.directors__portrait img { width: 100%; height: 100%; object-fit: cover; }
.directors__portrait-placeholder { font-size: 5rem; }
.directors__name { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--onyx); margin-bottom: 4px; }
.directors__role { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.directors__quote { font-family: var(--font-display); font-size: 1.5rem; font-style: italic; color: var(--charcoal); line-height: 1.55; margin-bottom: 24px; border-left: 3px solid var(--gold); padding-left: 24px; }
.directors__body { color: var(--text-muted); line-height: 1.85; }
.directors__body p { margin-bottom: 16px; }
.directors__sig { font-family: var(--font-display); font-size: 1.4rem; font-style: italic; color: var(--onyx); margin-top: 24px; }

@media (max-width: 1100px) {
  .products__grid { grid-template-columns: repeat(3,1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .testi__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .about__grid, .contact__grid, .directors__grid, .pdpage__grid { grid-template-columns: 1fr; }
  .projects__grid { grid-template-columns: 1fr 1fr; }
  .prjcard--tall .prjcard__img { height: 340px; }
  .products__grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .hero__badges { display: none; }
  .stats__bar { grid-template-columns: 1fr 1fr; }
  .stats__cell { border-right: none; border-bottom: 1px solid var(--cream-dark); }
  .about__mosaic { grid-template-rows: 240px 160px; }
  .testi__grid, .projects__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .topbar__left { display: none; }
  .cta-strip__inner { flex-direction: column; text-align: center; }
  .nav.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: fixed; top: 84px; left: 0; right: 0; bottom: 0;
    background: var(--white); padding: var(--pad); gap: 4px;
    overflow-y: auto; z-index: var(--z-overlay);
  }
  .nav.open .nav__item { width: 100%; }
  .nav.open .nav__link { padding: 13px 16px; width: 100%; border-radius: var(--r-md); }
  .nav.open .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 20px; display: none; }
  .nav.open .nav__item.open .dropdown { display: block; }
  .nav__cta { display: none; }
  .nav.open .nav__cta {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    margin-left: 0;
  }
  .nav.open .nav__cta .btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
}

