/* PRAT būve V7 Luxury Modern */
:root {
  --lux-black: #050505;
  --lux-ink: #0d0d0d;
  --lux-white: #ffffff;
  --lux-soft: #f3f1ec;
  --lux-muted: #aaa39a;
  --lux-gold: #ffffff;
  --lux-gold-soft: rgba(255, 255, 255, .12);
  --lux-line: rgba(255,255,255,.12);
  --lux-dark-line: rgba(0,0,0,.12);
  --lux-radius: 28px;
}

body.luxury-site {
  margin: 0;
  color: var(--lux-white);
  background: var(--lux-black);
  font-family: "Manrope", Inter, system-ui, sans-serif;
  overflow-x: hidden;
}

body.luxury-site::selection {
  color: #000;
  background: var(--lux-gold);
}

.lux-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(5,5,5,.72);
  backdrop-filter: blur(18px);
}

.lux-header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.lux-brand img {
  width: 98px;
  height: auto;
}

.lux-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  font-weight: 800;
}

.lux-nav a {
  transition: color .2s ease;
}

.lux-nav a:hover {
  color: #fff;
}

.lux-nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 999px;
  color: #fff !important;
}

.lux-nav-cta:hover {
  background: var(--lux-gold);
  color: #050505 !important;
}

.lux-toggle {
  display: none;
}

.lux-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 78px;
  background:
    radial-gradient(circle at 72% 40%, rgba(255,255,255,.12), transparent 28%),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.08), transparent 20%),
    linear-gradient(135deg, #030303, #111 58%, #050505);
}

.lux-noise {
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, #000, transparent 82%);
}

.lux-orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  pointer-events: none;
}

.lux-orbit-one {
  width: 720px;
  height: 720px;
  right: -180px;
  top: 110px;
}

.lux-orbit-two {
  width: 420px;
  height: 420px;
  left: -120px;
  bottom: 80px;
}

.lux-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100vh - 158px);
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 76px;
  padding: 74px 0 54px;
}

.lux-eyebrow {
  margin: 0 0 18px;
  color: var(--lux-gold);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.lux-eyebrow.dark {
  color: #1f1f1f;
}

.lux-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3.5rem, 7.4vw, 7.4rem);
  line-height: .9;
  letter-spacing: -.08em;
}

.lux-hero-copy > p:not(.lux-eyebrow) {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 1.08rem;
  line-height: 1.7;
}

.lux-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.lux-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid var(--lux-gold);
  border-radius: 999px;
  color: #080808;
  background: var(--lux-gold);
  font-size: .86rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.lux-button:hover {
  transform: translateY(-2px);
  background: #fff;
  color: #050505;
}

.lux-button-ghost {
  color: #fff;
  background: transparent;
  border-color: rgba(255,255,255,.24);
}

.lux-button-ghost:hover {
  color: #050505;
  background: #fff;
}

.lux-button-full {
  width: 100%;
}

.lux-hero-panel {
  position: relative;
  min-height: 560px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.035));
  box-shadow: 0 34px 100px rgba(0,0,0,.45);
  backdrop-filter: blur(16px);
  transform-style: preserve-3d;
}

.lux-hero-panel::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 26px;
  content: "";
}

.lux-panel-top,
.lux-panel-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.62);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.lux-logo-stage {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 370px;
  place-items: center;
}

.lux-logo-stage img {
  width: min(72%, 340px);
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.55));
}

.lux-panel-bottom div {
  display: grid;
  gap: 4px;
}

.lux-panel-bottom strong {
  color: #fff;
  font-size: .95rem;
  letter-spacing: normal;
  text-transform: none;
}

.lux-panel-bottom span {
  letter-spacing: normal;
  text-transform: none;
  font-weight: 600;
}

.lux-hero-footer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 32px;
  color: rgba(255,255,255,.44);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.lux-section {
  padding: 112px 0;
}

.lux-intro,
.lux-services,
.lux-projects,
.lux-contact {
  color: var(--lux-ink);
  background: var(--lux-soft);
}

.lux-split,
.lux-about-grid,
.lux-contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 78px;
  align-items: start;
}

.lux-sticky {
  position: sticky;
  top: 110px;
}

.lux-sticky h2,
.lux-section-head h2,
.lux-about-copy h2,
.lux-contact-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.4vw, 4.7rem);
  line-height: 1;
  letter-spacing: -.06em;
}

.lux-section-head {
  max-width: 900px;
  margin-bottom: 46px;
}

.lux-section-head p:not(.lux-eyebrow),
.lux-about-copy p,
.lux-contact-copy p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #68635b;
  line-height: 1.65;
}

.lux-feature-stack {
  display: grid;
  gap: 16px;
}

.lux-feature,
.lux-service-card,
.lux-project-card {
  border: 1px solid rgba(0,0,0,.12);
  border-radius: var(--lux-radius);
  background: rgba(255,255,255,.72);
  box-shadow: 0 26px 80px rgba(0,0,0,.08);
  transition: transform .22s ease, box-shadow .22s ease;
}

.lux-feature {
  padding: 28px;
}

.lux-feature:hover,
.lux-service-card:hover,
.lux-project-card:hover {
  box-shadow: 0 34px 100px rgba(0,0,0,.13);
}

.lux-feature span,
.lux-service-card span,
.lux-process-line span {
  color: #3a3a3a;
  font-family: "Courier New", monospace;
  font-size: .78rem;
  font-weight: 900;
}

.lux-feature h3,
.lux-service-card h3,
.lux-project-card h3 {
  margin: 42px 0 8px;
  font-size: 1.28rem;
}

.lux-feature p,
.lux-service-card p,
.lux-project-card p,
.lux-process-line p {
  margin: 0;
  color: #68635b;
  line-height: 1.55;
}

.lux-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.lux-service-card {
  min-height: 290px;
  padding: 28px;
}

.lux-process {
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(255,255,255,.10), transparent 25%),
    #060606;
}

.lux-process .lux-section-head p,
.lux-process .lux-eyebrow {
  color: var(--lux-gold);
}

.lux-process-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.lux-process-line article {
  min-height: 245px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.04);
}

.lux-process-line h3 {
  margin: 74px 0 8px;
  color: #fff;
  font-size: 1.08rem;
}

.lux-process-line p {
  color: rgba(255,255,255,.58);
  font-size: .9rem;
}

.lux-project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.lux-project-card {
  overflow: hidden;
  background: #fff;
}

.lux-project-visual {
  display: grid;
  min-height: 280px;
  place-items: center;
  color: rgba(255,255,255,.76);
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(135deg, #161616, #050505);
  background-size: 32px 32px;
}

.lux-project-visual span {
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
}

.lux-project-card > div:last-child {
  padding: 24px;
}

.lux-project-card h3 {
  margin-top: 0;
}

.lux-about {
  color: #fff;
  background: #050505;
}

.lux-about-card {
  display: grid;
  min-height: 450px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.08), transparent 42%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  box-shadow: 0 34px 100px rgba(0,0,0,.45);
}

.lux-about-card img {
  width: min(72%, 320px);
}

.lux-about-copy p {
  color: rgba(255,255,255,.62);
}

.lux-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 32px;
}

.lux-facts div {
  padding: 18px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
}

.lux-facts strong,
.lux-facts span {
  display: block;
}

.lux-facts strong {
  color: #fff;
}

.lux-facts span {
  margin-top: 4px;
  color: rgba(255,255,255,.5);
  font-size: .78rem;
  line-height: 1.35;
}

.lux-contact-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.lux-contact-list a {
  width: fit-content;
  color: var(--lux-ink);
  font-size: 1.1rem;
  font-weight: 900;
}

.lux-contact-list p {
  margin: 0;
  color: #68635b;
}

.lux-form {
  display: grid;
  gap: 16px;
  padding: 32px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 28px;
  background: rgba(255,255,255,.75);
  box-shadow: 0 26px 80px rgba(0,0,0,.10);
}

.lux-form label {
  display: grid;
  gap: 7px;
  color: #111;
  font-size: .82rem;
  font-weight: 900;
}

.lux-form input,
.lux-form textarea,
.lux-form select {
  border-radius: 14px;
  background: #fff;
}

.lux-form .consent {
  display: flex;
  color: #68635b;
  font-weight: 500;
}

.lux-footer {
  padding: 28px 0;
  background: #050505;
  border-top: 1px solid rgba(255,255,255,.1);
}

.lux-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255,255,255,.58);
  font-size: .82rem;
}

.lux-footer img {
  width: 84px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

[data-tilt] {
  will-change: transform;
}

@media (max-width: 1080px) {
  .lux-nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 16px 20px 24px;
    border-top: 1px solid rgba(255,255,255,.1);
    background: rgba(5,5,5,.98);
    transform: translateY(-130%);
    transition: transform .25s ease;
  }

  .lux-nav.open {
    transform: translateY(0);
  }

  .lux-toggle {
    display: block;
  }

  .lux-hero-grid,
  .lux-split,
  .lux-about-grid,
  .lux-contact-grid {
    grid-template-columns: 1fr;
  }

  .lux-sticky {
    position: static;
  }

  .lux-service-grid,
  .lux-project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lux-process-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .lux-facts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .lux-header-inner {
    min-height: 70px;
  }

  .lux-brand img {
    width: 82px;
  }

  .lux-nav {
    top: 70px;
  }

  .lux-hero {
    min-height: auto;
    padding-top: 70px;
  }

  .lux-hero-grid {
    min-height: auto;
    padding: 58px 0 38px;
    gap: 34px;
  }

  .lux-hero h1 {
    font-size: clamp(2.7rem, 13.5vw, 4.5rem);
  }

  .lux-hero-panel {
    min-height: 360px;
    padding: 22px;
  }

  .lux-logo-stage {
    min-height: 230px;
  }

  .lux-hero-footer {
    justify-content: flex-start;
  }

  .lux-section {
    padding: 68px 0;
  }

  .lux-service-grid,
  .lux-project-grid,
  .lux-process-line {
    grid-template-columns: 1fr;
  }

  .lux-section-head h2,
  .lux-sticky h2,
  .lux-about-copy h2,
  .lux-contact-copy h2 {
    font-size: clamp(2.1rem, 10vw, 3.3rem);
  }

  .lux-about-card {
    min-height: 300px;
  }

  .lux-form {
    padding: 22px 16px;
  }

  .lux-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-tilt] {
    transform: none !important;
  }
}


/* PRAT būve V8 - no gold accents, luxury monochrome */
:root {
  --lux-gold: #ffffff;
  --lux-gold-soft: rgba(255,255,255,.12);
  --lux-platinum: #d9d9d9;
  --lux-smoke: #8f8f8f;
}

.lux-eyebrow {
  color: #d9d9d9 !important;
}

.lux-eyebrow.dark {
  color: #1f1f1f !important;
}

.lux-nav-cta {
  border-color: rgba(255,255,255,.42);
}

.lux-nav-cta:hover {
  color: #050505 !important;
  background: #ffffff;
}

.lux-button {
  color: #050505;
  background: #ffffff;
  border-color: #ffffff;
}

.lux-button:hover {
  color: #ffffff;
  background: #050505;
  border-color: #050505;
}

.lux-button-ghost {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255,255,255,.30);
}

.lux-button-ghost:hover {
  color: #050505;
  background: #ffffff;
  border-color: #ffffff;
}

.lux-contact .lux-button,
.lux-form .lux-button {
  color: #ffffff;
  background: #050505;
  border-color: #050505;
}

.lux-contact .lux-button:hover,
.lux-form .lux-button:hover {
  color: #050505;
  background: #ffffff;
}

.lux-hero {
  background:
    radial-gradient(circle at 72% 40%, rgba(255,255,255,.10), transparent 28%),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.07), transparent 20%),
    linear-gradient(135deg, #030303, #111 58%, #050505);
}

.lux-hero-panel::before,
.lux-about-card {
  border-color: rgba(255,255,255,.13);
}

.lux-orbit {
  border-color: rgba(255,255,255,.11);
}

.lux-feature span,
.lux-service-card span,
.lux-process-line span {
  color: #3a3a3a;
}

.lux-process .lux-section-head p,
.lux-process .lux-eyebrow {
  color: #d9d9d9 !important;
}

.lux-about-card {
  background:
    radial-gradient(circle at center, rgba(255,255,255,.09), transparent 42%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
}

.lux-project-visual {
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(135deg, #181818, #030303);
}

.lux-service-card,
.lux-feature,
.lux-project-card,
.lux-form {
  box-shadow: 0 26px 80px rgba(0,0,0,.10);
}

.lux-service-card:hover,
.lux-feature:hover,
.lux-project-card:hover {
  box-shadow: 0 34px 100px rgba(0,0,0,.16);
}

/* Remove any remaining warm/brown tones */
[style*="#c8a968"],
[style*="#745f31"],
[style*="#8a713b"] {
  color: inherit !important;
}


/* PRAT būve V10 - layout based on provided reference */
body.luxury-site {
  color: #111;
  background: #f4f4f2;
}

.lux-header,
.lux-header-inner,
.lux-toggle,
.lux-hero,
.lux-hero-grid,
.lux-hero-footer {
  display: none !important;
}

.prat-kg-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(234, 238, 242, .96);
  border-bottom: 1px solid rgba(0,0,0,.06);
  backdrop-filter: blur(10px);
}

.prat-kg-header-inner {
  padding-top: 10px;
  padding-bottom: 10px;
}

.prat-kg-desktop-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
}

.prat-kg-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.prat-kg-nav-left {
  justify-content: flex-end;
}

.prat-kg-nav-right {
  justify-content: flex-start;
}

.prat-kg-nav a {
  color: rgba(17,17,17,.74);
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.prat-kg-nav a:hover,
.prat-kg-nav a:first-child {
  color: #111;
}

.prat-kg-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.prat-kg-logo img {
  width: 116px;
  height: auto;
}

.prat-kg-lang-switch {
  display: flex;
  gap: 10px;
  margin-left: 6px;
}

.prat-kg-lang-switch button {
  min-width: 34px;
  min-height: 24px;
  border: 1px solid rgba(0,0,0,.12);
  color: #333;
  background: rgba(255,255,255,.55);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .08em;
  cursor: default;
}

.prat-kg-lang-switch button.active {
  background: #111;
  color: #fff;
}

.prat-kg-mobile-top,
.prat-kg-mobile-nav {
  display: none;
}

.prat-kg-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 88px;
  background: linear-gradient(180deg, #d9d5cf 0%, #d2cdc5 38%, #efefed 100%);
}

.prat-kg-hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.24), rgba(255,255,255,.08));
  content: "";
}

.prat-kg-hero-scene {
  position: absolute;
  inset: 88px 0 0;
  overflow: hidden;
}

.prat-kg-house {
  position: absolute;
  bottom: 110px;
  display: block;
  background: rgba(242,239,233,.92);
  clip-path: polygon(14% 34%, 50% 0%, 86% 34%, 86% 100%, 14% 100%);
  filter: blur(4px);
  box-shadow: 0 18px 60px rgba(0,0,0,.08);
}

.prat-kg-house::before,
.prat-kg-house::after {
  position: absolute;
  bottom: 16%;
  width: 12%;
  height: 10%;
  background: rgba(60,45,35,.55);
  content: "";
}

.prat-kg-house::before { left: 24%; }
.prat-kg-house::after { right: 24%; }

.house-left {
  left: -1%;
  width: 220px;
  height: 270px;
  opacity: .86;
}

.house-mid-left {
  left: 19%;
  width: 240px;
  height: 300px;
  bottom: 150px;
}

.house-center {
  left: 39%;
  width: 300px;
  height: 360px;
  bottom: 102px;
  opacity: .95;
}

.house-right {
  right: -1%;
  width: 230px;
  height: 285px;
  bottom: 145px;
}

.prat-kg-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100vh - 88px);
  place-content: center;
  justify-items: center;
  text-align: center;
}

.prat-kg-hero-inner h1 {
  max-width: 960px;
  margin: 0;
  color: #ffffff;
  text-shadow: 0 8px 20px rgba(0,0,0,.15);
  font-size: clamp(2.3rem, 4.4vw, 4.3rem);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: .02em;
}

.prat-kg-dots {
  display: flex;
  gap: 14px;
  margin: 30px 0 24px;
}

.prat-kg-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.64);
}

.prat-kg-dots span.active {
  background: #fff;
}

.prat-kg-cta-stack {
  display: grid;
  width: min(720px, 92vw);
  gap: 16px;
}

.prat-kg-cta-button {
  display: inline-flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.95);
  background: rgba(78, 90, 100, .82);
  box-shadow: 0 16px 40px rgba(0,0,0,.16);
  font-size: .96rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}

.prat-kg-cta-button:hover {
  transform: translateY(-2px);
  background: rgba(58, 70, 80, .9);
}

.prat-kg-cta-secondary {
  background: rgba(94, 104, 114, .80);
}

/* content sections below hero stay premium and readable */
.lux-section {
  color: #111;
  background: #f4f4f2;
}

.lux-process,
.lux-about,
.lux-footer {
  color: #fff;
}

@media (max-width: 1080px) {
  .prat-kg-desktop-bar {
    display: none;
  }

  .prat-kg-mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .prat-kg-mobile-nav {
    position: fixed;
    top: 78px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 14px 18px 20px;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(234,238,242,.98);
    box-shadow: 0 18px 50px rgba(0,0,0,.1);
    transform: translateY(-130%);
    transition: transform .25s ease;
  }

  .prat-kg-mobile-nav.open {
    transform: translateY(0);
  }

  .prat-kg-mobile-nav a {
    padding: 10px 0;
    color: #222;
    font-size: .86rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .prat-kg-toggle {
    display: block;
  }

  .prat-kg-hero {
    padding-top: 78px;
  }

  .prat-kg-hero-scene {
    inset: 78px 0 0;
  }

  .prat-kg-hero-inner {
    min-height: calc(100vh - 78px);
  }
}

@media (max-width: 760px) {
  .prat-kg-header-inner {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .prat-kg-logo img {
    width: 96px;
  }

  .prat-kg-hero {
    min-height: 86vh;
  }

  .prat-kg-hero-inner h1 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .prat-kg-cta-stack {
    width: min(92vw, 520px);
    gap: 12px;
  }

  .prat-kg-cta-button {
    min-height: 62px;
    font-size: .82rem;
    letter-spacing: .12em;
  }

  .house-left { width: 150px; height: 190px; }
  .house-mid-left { left: 16%; width: 165px; height: 210px; }
  .house-center { left: 40%; width: 205px; height: 255px; }
  .house-right { width: 155px; height: 190px; }
}


/* PRAT būve V11 - language switch removed */
.prat-kg-lang-switch {
  display: none !important;
}

.prat-kg-nav-right {
  gap: 30px;
}


/* PRAT būve V12 - separate pages, no section scrolling */
html {
  scroll-behavior: auto !important;
}

body.page-mode {
  min-height: 100vh;
  color: #111;
  background: #f4f4f2;
}

.page-mode .lux-header,
.page-mode .lux-header-inner,
.page-mode .lux-toggle,
.page-mode .lux-nav {
  display: none !important;
}

.prat-kg-hero-single {
  height: 100vh;
  min-height: 720px;
}

.prat-kg-hero-single .prat-kg-hero-inner {
  min-height: calc(100vh - 88px);
}

.single-page-main {
  min-height: 100vh;
  padding-top: 88px;
  color: #111;
  background:
    linear-gradient(rgba(0,0,0,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.025) 1px, transparent 1px),
    #f4f4f2;
  background-size: 42px 42px;
}

.single-page-hero {
  min-height: calc(100vh - 88px);
  display: grid;
  align-items: center;
  padding: 54px 0;
}

.single-page-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.single-page-kicker {
  margin: 0 0 16px;
  color: #555;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.single-page-heading h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2.8rem, 5.4vw, 5.5rem);
  line-height: .96;
  letter-spacing: -.065em;
}

.single-page-content p {
  color: #555;
  line-height: 1.65;
}

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

.single-card-grid article {
  padding: 22px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.58);
  box-shadow: 0 18px 60px rgba(0,0,0,.07);
}

.single-card-grid span {
  color: #555;
  font-family: "Courier New", monospace;
  font-size: .78rem;
  font-weight: 900;
}

.single-card-grid h2 {
  margin: 28px 0 8px;
  font-size: 1.15rem;
}

.single-card-grid p {
  margin: 0;
  color: #606060;
  line-height: 1.55;
}

.single-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 24px 0;
}

.single-facts div {
  padding: 16px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
}

.single-facts strong,
.single-facts span {
  display: block;
}

.single-facts span {
  margin-top: 4px;
  color: #666;
  font-size: .78rem;
}

.single-logo-card {
  display: grid;
  min-height: 220px;
  place-items: center;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
}

.single-logo-card img {
  width: min(70%, 260px);
}

.single-photo-slot {
  display: grid;
  min-height: 180px;
  place-items: center;
  margin-bottom: 18px;
  color: rgba(255,255,255,.65);
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    #111;
  background-size: 28px 28px;
  font-weight: 900;
  letter-spacing: .14em;
}

.single-contact-list {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.single-contact-list a {
  width: fit-content;
  color: #111;
  font-size: 1.1rem;
  font-weight: 900;
}

.single-contact-list p {
  margin: 0;
  color: #555;
}

.single-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.68);
  box-shadow: 0 18px 60px rgba(0,0,0,.08);
}

.single-form label {
  display: grid;
  gap: 7px;
  font-size: .82rem;
  font-weight: 900;
}

.single-form .consent {
  display: flex;
  font-weight: 500;
}

.single-button {
  min-height: 54px;
  border: 1px solid #111;
  color: #fff;
  background: #111;
  font-weight: 900;
  cursor: pointer;
}

.single-button:hover {
  color: #111;
  background: #fff;
}

@media (max-width: 1020px) {
  .single-page-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .single-page-hero {
    align-items: start;
  }

  .single-card-grid {
    grid-template-columns: 1fr;
  }

  .single-facts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .single-page-main {
    padding-top: 76px;
  }

  .single-page-hero {
    min-height: calc(100vh - 76px);
    padding: 40px 0;
  }

  .single-page-heading h1 {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }

  .single-form {
    padding: 20px 16px;
  }

  .single-facts {
    grid-template-columns: 1fr;
  }
}


/* PRAT būve V13 - polished header interaction and footer */
.prat-kg-header {
  transition: background .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.prat-kg-header:hover {
  background: rgba(241, 244, 247, .985);
  box-shadow: 0 18px 70px rgba(0,0,0,.08);
}

.prat-kg-nav a,
.prat-kg-mobile-nav a {
  position: relative;
  isolation: isolate;
  padding: 9px 2px;
  transition: color .18s ease, transform .18s ease, letter-spacing .18s ease;
  cursor: pointer;
}

.prat-kg-nav a::before,
.prat-kg-mobile-nav a::before {
  position: absolute;
  inset: 0 -10px;
  z-index: -1;
  border-radius: 999px;
  background: rgba(0,0,0,.055);
  opacity: 0;
  transform: scale(.86);
  transition: opacity .18s ease, transform .18s ease;
  content: "";
}

.prat-kg-nav a::after,
.prat-kg-mobile-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: #111;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity .18s ease, transform .18s ease;
  content: "";
}

.prat-kg-nav a:hover,
.prat-kg-mobile-nav a:hover {
  color: #111;
  letter-spacing: .17em;
  transform: translateY(-1px);
}

.prat-kg-nav a:hover::before,
.prat-kg-mobile-nav a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.prat-kg-nav a:hover::after,
.prat-kg-mobile-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.prat-kg-logo {
  transition: transform .22s ease, filter .22s ease;
  cursor: pointer;
}

.prat-kg-logo:hover {
  transform: translateY(-2px) scale(1.025);
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.10));
}

.prat-kg-toggle {
  cursor: pointer;
}

/* Footer restored on all pages */
.prat-footer {
  padding: 20px 0;
  color: rgba(17,17,17,.62);
  background: rgba(241,244,247,.96);
  border-top: 1px solid rgba(0,0,0,.08);
}

.prat-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: .82rem;
}

.prat-footer p {
  margin: 0;
}

.prat-footer a {
  color: #111;
  font-weight: 800;
}

.prat-footer a:hover {
  text-decoration: underline;
}

.prat-kg-hero-single {
  min-height: calc(100vh - 57px);
}

.single-page-main {
  min-height: calc(100vh - 57px);
}

.privacy-page {
  min-height: calc(100vh - 57px);
}

@media (max-width: 1080px) {
  .prat-kg-nav a,
  .prat-kg-logo {
    cursor: pointer;
  }
.prat-kg-mobile-nav a {
    cursor: pointer;
  }
}

@media (max-width: 760px) {
  .prat-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* PRAT būve V14 - fixed vacancies page */
.prat-kg-nav a[aria-current="page"],
.prat-kg-mobile-nav a[aria-current="page"] {
  color: #111;
}

.prat-kg-nav a[aria-current="page"]::before,
.prat-kg-mobile-nav a[aria-current="page"]::before {
  opacity: 1;
  transform: scale(1);
}

.vacancies-fixed-page {
  background:
    linear-gradient(rgba(0,0,0,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.022) 1px, transparent 1px),
    #f4f4f2;
  background-size: 42px 42px;
}

.vacancies-fixed-hero {
  align-items: start;
  padding-top: 78px;
}

.vacancies-intro {
  max-width: 600px;
  margin-top: 22px;
  color: #555;
  line-height: 1.65;
}

.vacancies-intro a {
  color: #111;
  font-weight: 900;
}

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

.vacancy-page-grid article {
  position: relative;
  overflow: hidden;
}

.vacancy-page-grid article::after {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 50%;
  content: "";
}

.vacancy-clean-list {
  display: grid;
  gap: 6px;
  margin: 18px 0 0;
  padding: 0;
  color: #555;
  list-style: none;
  line-height: 1.48;
}

.vacancy-clean-list strong {
  color: #111;
}

.vacancy-apply-link {
  display: inline-flex;
  margin-top: 20px;
  color: #111;
  font-weight: 900;
}

.vacancy-form-section {
  padding: 72px 0 92px;
  color: #111;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.09);
}

.vacancy-form-section .single-page-heading h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: .98;
  letter-spacing: -.06em;
}

@media (max-width: 760px) {
  .vacancies-fixed-hero {
    padding-top: 44px;
  }

  .vacancy-form-section {
    padding: 54px 0 70px;
  }
}


/* PRAT būve V15 - readable content pages like reference */
.readable-page-body {
  background: #cbd4db !important;
  color: #2f3138;
}

.readable-main {
  min-height: calc(100vh - 57px);
  padding-top: 92px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,.34), transparent 26%),
    linear-gradient(180deg, #d1dae1 0%, #aebbc5 100%);
}

.readable-shell {
  min-height: calc(100vh - 149px);
  display: grid;
  align-items: center;
  padding: 34px 0 44px;
}

.readable-card {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 38px 42px 46px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 24px 80px rgba(36, 50, 60, .14);
}

.readable-card-header {
  border-bottom: 1px solid #dde0e4;
  text-align: center;
}

.readable-card-header h1 {
  margin: 0 0 18px;
  color: #2f3138;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.readable-card-body {
  padding-top: 34px;
}

.readable-card-body.has-side {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 54px;
  align-items: start;
}

.readable-text {
  color: #3c3f48;
  font-size: 1.03rem;
  line-height: 1.56;
}

.readable-text p {
  margin: 0 0 21px;
}

.readable-text p:last-child {
  margin-bottom: 0;
}

.readable-text strong {
  color: #30323a;
  font-weight: 900;
}

.readable-text h2 {
  margin: 28px 0 7px;
  color: #30323a;
  font-size: 1.08rem;
  line-height: 1.35;
  font-weight: 900;
}

.readable-text ul {
  margin: 8px 0 22px;
  padding-left: 20px;
}

.readable-text li {
  margin-bottom: 6px;
}

.readable-muted {
  color: #69717b !important;
}

.readable-side {
  display: grid;
  gap: 18px;
  align-content: start;
}

.readable-logo-block {
  display: grid;
  min-height: 230px;
  place-items: center;
  padding: 24px;
}

.readable-logo-block.small {
  min-height: 190px;
}

.readable-logo-block img {
  width: min(100%, 340px);
  height: auto;
}

.readable-facts-mini {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.readable-facts-mini div {
  padding: 14px 16px;
  border: 1px solid #dde0e4;
  background: #f7f8f9;
}

.readable-facts-mini strong,
.readable-facts-mini span {
  display: block;
}

.readable-facts-mini strong {
  color: #30323a;
}

.readable-facts-mini span {
  margin-top: 3px;
  color: #69717b;
  font-size: .82rem;
}

.readable-number-list {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid #dde0e4;
  background: #f7f8f9;
}

.readable-number-list span {
  padding: 10px 0;
  border-bottom: 1px solid #dde0e4;
  color: #30323a;
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.readable-number-list span:last-child {
  border-bottom: 0;
}

.readable-note {
  padding: 20px;
  border: 1px solid #dde0e4;
  background: #f7f8f9;
}

.readable-note p {
  margin: 8px 0 0;
  color: #69717b;
  line-height: 1.55;
}

.readable-photo-placeholder {
  display: grid;
  min-height: 180px;
  place-items: center;
  border: 1px solid #dde0e4;
  color: #6c747e;
  background:
    linear-gradient(rgba(0,0,0,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.035) 1px, transparent 1px),
    #f7f8f9;
  background-size: 28px 28px;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.readable-contact-lines {
  display: grid;
  gap: 4px;
  margin-top: 20px;
}

.readable-contact-lines p {
  margin: 0 0 10px;
}

.readable-contact-lines a {
  color: #30323a;
  font-weight: 900;
}

.readable-form {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid #dde0e4;
  background: #f7f8f9;
}

.readable-form label {
  display: grid;
  gap: 6px;
  color: #30323a;
  font-size: .84rem;
  font-weight: 900;
}

.readable-form input,
.readable-form textarea,
.readable-form select {
  min-height: 44px;
  border: 1px solid #d2d6da;
  border-radius: 0;
  background: #fff;
}

.readable-form textarea {
  padding-top: 10px;
}

.readable-form .consent {
  display: flex;
  align-items: flex-start;
  color: #69717b;
  font-weight: 500;
  line-height: 1.4;
}

.readable-form .consent input {
  min-height: auto;
  margin-top: 4px;
}

.readable-form button {
  min-height: 48px;
  border: 0;
  color: #fff;
  background: #53616c;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.readable-form button:hover {
  background: #303a42;
}

.prat-footer {
  background: rgba(235, 240, 244, .96);
}

@media (max-width: 1040px) {
  .readable-card-body.has-side {
    grid-template-columns: 1fr;
  }

  .readable-side {
    max-width: 520px;
  }
}

@media (max-width: 760px) {
  .readable-main {
    padding-top: 76px;
  }

  .readable-shell {
    align-items: start;
    min-height: auto;
    padding: 20px 0 34px;
  }

  .readable-card {
    padding: 26px 18px 32px;
  }

  .readable-card-body {
    padding-top: 24px;
  }

  .readable-text {
    font-size: .98rem;
  }

  .readable-logo-block {
    min-height: 170px;
  }
}


/* PRAT būve V17 - service page cleanup and contact overview */
.contact-overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
}

.contact-overview-grid div {
  padding: 16px 18px;
  border: 1px solid #dde0e4;
  background: #f7f8f9;
}

.contact-overview-grid span {
  display: block;
  margin-bottom: 6px;
  color: #69717b;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-overview-grid a {
  color: #30323a;
  font-size: 1.06rem;
  font-weight: 900;
}

.contact-overview-grid p {
  margin: 0;
  color: #3c3f48;
  line-height: 1.45;
}

@media (min-width: 900px) {
  .contact-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* PRAT būve V20 - real project photos */
.project-photo-feature {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items: stretch;
  margin: 26px 0 26px;
  border: 1px solid #dde0e4;
  background: #f7f8f9;
}

.project-photo-feature img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}

.project-photo-feature > div {
  display: grid;
  align-content: center;
  padding: 28px;
}

.project-photo-feature span {
  color: #69717b;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.project-photo-feature h2 {
  margin: 14px 0 10px;
  color: #30323a;
  font-size: clamp(1.6rem, 2.4vw, 2.6rem);
  line-height: 1.05;
}

.project-photo-feature p {
  margin: 0;
  color: #69717b;
}

.project-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.project-photo-grid figure {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  margin: 0;
  border: 1px solid #dde0e4;
  background: #f7f8f9;
}

.project-photo-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease, filter .35s ease;
}

.project-photo-grid figure:hover img {
  transform: scale(1.045);
  filter: contrast(1.04);
}

.project-photo-grid figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(35, 42, 48, .72);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.project-review-note {
  border-left: 4px solid #30323a;
}

@media (max-width: 1040px) {
  .project-photo-feature {
    grid-template-columns: 1fr;
  }

  .project-photo-feature img {
    min-height: 280px;
  }

  .project-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .project-photo-grid img {
    height: 240px;
  }
}


.project-section-divider {
  width: 100%;
  height: 1px;
  margin: 44px 0 32px;
  background: linear-gradient(90deg, transparent, #c8ccd2, transparent);
}


/* PRAT būve V26 - remove custom cursor, keep normal website cursor */
.prat-kg-nav a,
.prat-kg-mobile-nav a,
.prat-kg-logo,
.prat-kg-toggle,
.prat-kg-cta-button,
.project-photo-grid figure,
.project-photo-feature,
.readable-form button,
.prat-footer a {
  cursor: pointer;
}


/* PRAT būve V27 — homepage hero uses strongest project photo */
.prat-kg-hero-photo {
  background-image:
    linear-gradient(120deg, rgba(12, 16, 18, 0.78) 0%, rgba(12, 16, 18, 0.64) 38%, rgba(12, 16, 18, 0.52) 100%),
    url('../img/projects/project-5-hero.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #1d2428;
}

.prat-kg-hero-photo::before {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.12));
}

.prat-kg-hero-photo .prat-kg-hero-scene {
  display: none;
}

.prat-kg-hero-photo .prat-kg-hero-inner {
  min-height: calc(100vh - 88px);
}

.prat-kg-hero-photo .prat-kg-hero-inner h1 {
  max-width: 920px;
  text-shadow: 0 14px 32px rgba(0,0,0,.38);
}

.prat-kg-hero-photo .prat-kg-dots span {
  background: rgba(255,255,255,.55);
}

.prat-kg-hero-photo .prat-kg-dots span.active {
  background: #ffffff;
}

@media (max-width: 900px) {
  .prat-kg-hero-photo {
    background-position: 58% center;
  }
}


/* PRAT būve V30 - floating WhatsApp button */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1500;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 18px 0 15px;
  border-radius: 999px;
  color: #ffffff;
  background: #25D366;
  box-shadow: 0 18px 40px rgba(37, 211, 102, .34), 0 8px 18px rgba(0, 0, 0, .16);
  font-size: .92rem;
  font-weight: 900;
  letter-spacing: .01em;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex: 0 0 auto;
}

.floating-whatsapp:hover {
  transform: translateY(-4px);
  background: #1fb85a;
  box-shadow: 0 22px 48px rgba(37, 211, 102, .42), 0 10px 22px rgba(0, 0, 0, .18);
}

.floating-whatsapp:focus-visible {
  outline: 3px solid rgba(37, 211, 102, .38);
  outline-offset: 4px;
}

@media (max-width: 680px) {
  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 0 14px;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp svg {
    width: 26px;
    height: 26px;
  }
}


/* PRAT būve V31 - replace WhatsApp icon with PRAT logo */
.floating-whatsapp .prat-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

.floating-whatsapp img.prat-logo + span {
  line-height: 1;
}

@media (max-width: 680px) {
  .floating-whatsapp .prat-logo {
    width: 28px;
    height: 28px;
  }
}


/* PRAT būve V32 - mobile responsive fix */
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1180px, calc(100% - 32px));
}

/* Better tablet behavior */
@media (max-width: 1080px) {
  .prat-kg-header {
    min-height: 68px;
  }

  .prat-kg-header-inner {
    min-height: 68px;
    padding: 0 16px;
  }

  .prat-kg-nav {
    display: none !important;
  }

  .prat-kg-logo {
    left: 18px;
    transform: none;
    width: auto;
  }

  .prat-kg-logo img {
    max-width: 128px;
    height: auto;
  }

  .prat-kg-mobile-top {
    display: flex !important;
    margin-left: auto;
    align-items: center;
    gap: 12px;
  }

  .prat-kg-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 999px;
    background: rgba(255,255,255,.88);
  }

  .prat-kg-toggle span,
  .prat-kg-toggle span::before,
  .prat-kg-toggle span::after {
    background: #111;
  }

  .prat-kg-mobile-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 1200;
    display: none;
    padding: 14px 18px 18px;
    border-top: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.96);
    box-shadow: 0 18px 36px rgba(0,0,0,.12);
    backdrop-filter: blur(16px);
  }

  .prat-kg-mobile-nav.is-open,
  .prat-kg-mobile-nav.open,
  body.nav-open .prat-kg-mobile-nav {
    display: grid !important;
    gap: 8px;
  }

  .prat-kg-mobile-nav a {
    display: block;
    padding: 13px 10px;
    border-radius: 14px;
    color: #121212;
    font-weight: 800;
    text-decoration: none;
  }

  .prat-kg-mobile-nav a:hover {
    background: rgba(0,0,0,.06);
  }
}

/* Phone layout */
@media (max-width: 760px) {
  :root {
    --mobile-header-height: 64px;
  }

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

  .prat-kg-header,
  .prat-kg-header-inner {
    min-height: var(--mobile-header-height);
  }

  .prat-kg-logo img {
    max-width: 118px;
  }

  .prat-kg-mobile-nav {
    top: var(--mobile-header-height);
  }

  .prat-kg-hero,
  .prat-kg-hero-single,
  .prat-kg-hero-photo {
    min-height: 100svh;
    height: auto;
    padding-top: var(--mobile-header-height);
  }

  .prat-kg-hero-photo {
    background-position: 58% center;
  }

  .prat-kg-hero-photo::before {
    background:
      linear-gradient(180deg, rgba(0,0,0,.34), rgba(0,0,0,.18) 42%, rgba(0,0,0,.36));
  }

  .prat-kg-hero-inner,
  .prat-kg-hero-single .prat-kg-hero-inner,
  .prat-kg-hero-photo .prat-kg-hero-inner {
    min-height: calc(100svh - var(--mobile-header-height));
    padding: 70px 0 56px;
    place-content: center;
  }

  .prat-kg-hero-inner h1 {
    max-width: 94%;
    font-size: clamp(2.05rem, 11vw, 3.05rem);
    line-height: 1.04;
    letter-spacing: .005em;
  }

  .prat-kg-dots {
    margin: 22px 0 20px;
    gap: 10px;
  }

  .prat-kg-dots span {
    width: 9px;
    height: 9px;
  }

  .prat-kg-cta-stack {
    width: min(100%, 330px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .prat-kg-cta-button {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    padding: 14px 18px;
    text-align: center;
    font-size: .92rem;
  }

  .single-page-main,
  .privacy-page,
  .readable-page {
    padding-top: var(--mobile-header-height);
  }

  .readable-section,
  .privacy-section,
  .single-page-hero {
    padding: 34px 0;
  }

  .readable-card,
  .privacy-card,
  .single-page-card {
    padding: 26px 18px;
    border-radius: 22px;
  }

  .readable-card h1,
  .privacy-card h1,
  .single-page-card h1 {
    font-size: clamp(1.9rem, 8vw, 2.65rem);
    line-height: 1.08;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .readable-card h2,
  .privacy-card h2,
  .single-page-card h2 {
    font-size: clamp(1.25rem, 5.5vw, 1.65rem);
    line-height: 1.15;
  }

  .readable-card p,
  .privacy-card p,
  .single-page-card p,
  .readable-card li,
  .privacy-card li {
    font-size: .98rem;
    line-height: 1.7;
  }

  .readable-grid,
  .readable-two,
  .content-grid,
  .single-page-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 22px;
  }

  .readable-side,
  .single-page-side {
    order: 2;
  }

  .readable-note,
  .contact-card,
  .vacancy-card {
    padding: 18px;
    border-radius: 18px;
  }

  .contact-grid,
  .contact-options,
  .vacancy-grid,
  .services-grid,
  .why-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .readable-form,
  .contact-form,
  .vacancy-form {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  input,
  textarea,
  select,
  button {
    max-width: 100%;
    font-size: 16px;
  }

  textarea {
    min-height: 120px;
  }

  .project-photo-feature {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 0;
    border-radius: 22px;
    overflow: hidden;
  }

  .project-photo-feature img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .project-photo-feature > div {
    padding: 18px;
  }

  .project-photo-feature h2 {
    font-size: clamp(1.25rem, 6vw, 1.75rem);
    line-height: 1.12;
  }

  .project-photo-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .project-photo-grid figure {
    border-radius: 18px;
  }

  .project-photo-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .project-section-divider {
    margin: 34px 0;
  }

  .prat-footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
    justify-items: center;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-width: 54px;
    width: 54px;
    height: 54px;
    min-height: 54px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp .prat-logo {
    width: 30px;
    height: 30px;
  }
}

/* Very small phones */
@media (max-width: 420px) {
  .container {
    width: calc(100% - 22px);
  }

  .prat-kg-logo img {
    max-width: 106px;
  }

  .prat-kg-hero-inner h1 {
    font-size: clamp(1.82rem, 10.5vw, 2.45rem);
  }

  .readable-card,
  .privacy-card,
  .single-page-card {
    padding: 22px 14px;
    border-radius: 18px;
  }

  .project-photo-feature > div {
    padding: 16px;
  }
}


/* PRAT būve V33 — working mobile menu */
@media (max-width: 1080px) {
  .prat-kg-mobile-top {
    position: relative;
    z-index: 1402;
    width: 100%;
  }

  .prat-kg-toggle {
    position: relative;
    z-index: 1403;
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, .14);
    border-radius: 50%;
    background: rgba(255, 255, 255, .94);
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .prat-kg-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: #111;
    transform: none;
    opacity: 1;
    transition: transform .2s ease, opacity .2s ease;
  }

  .prat-kg-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .prat-kg-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .prat-kg-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .prat-kg-mobile-nav {
    position: fixed !important;
    top: 68px !important;
    right: 0 !important;
    left: 0 !important;
    z-index: 1401 !important;
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 6px;
    max-height: calc(100svh - 68px);
    padding: 14px 18px 22px;
    overflow-y: auto;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .08);
    background: rgba(255, 255, 255, .985);
    box-shadow: 0 24px 48px rgba(0, 0, 0, .16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-16px) !important;
    transition:
      opacity .2s ease,
      transform .2s ease,
      visibility 0s linear .2s;
  }

  .prat-kg-mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) !important;
    transition:
      opacity .2s ease,
      transform .2s ease,
      visibility 0s linear 0s;
  }

  .prat-kg-mobile-nav a {
    display: block;
    width: 100%;
    padding: 14px 12px;
    border-radius: 13px;
    color: #111;
    background: transparent;
    font-size: .88rem;
    font-weight: 900;
    letter-spacing: .09em;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
  }

  .prat-kg-mobile-nav a:active,
  .prat-kg-mobile-nav a:hover {
    background: rgba(0, 0, 0, .06);
    transform: none;
    letter-spacing: .09em;
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (max-width: 760px) {
  .prat-kg-mobile-nav {
    top: 64px !important;
    max-height: calc(100svh - 64px);
  }
}


/* PRAT būve V34 — successful form submission page */
.thank-you-card {
  max-width: 760px;
  margin-inline: auto;
}

.thank-you-content {
  padding: 48px 42px 54px;
  text-align: center;
}

.thank-you-lead {
  margin: 0 0 14px;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #111;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

@media (max-width: 680px) {
  .thank-you-content {
    padding: 34px 18px 40px;
  }

  .thank-you-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}
