/* ==============================================
   KUBIQ STUDIO — Global Styles
   Premium Outdoor Wellness
   ============================================== */

/* --- Variables --- */
:root {
  --bg: #0b0b0b;
  --bg2: #121212;
  --bg-card: #151515;
  --text: #e8e4de;
  --muted: #8a8580;
  --gold: #c9a84c;
  --gold2: #dabb60;
  --gold-dim: rgba(201,168,76,0.15);
  --border: #222;
  --font: 'Montserrat', sans-serif;
  --max-w: 1200px;
  --ease: cubic-bezier(.25,.46,.45,.94);
}

/* --- Reset --- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font); background: var(--bg); color: var(--text);
  line-height: 1.7; font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
html, body { overflow-x: clip; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--gold2); }

/* --- Layout --- */
.w { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(24px, 5vw, 48px); }
.s { padding: clamp(72px, 10vw, 140px) 0; }
.s-alt { background: var(--bg2); }

/* --- Typography --- */
.eyebrow {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; display: block; margin-bottom: 20px;
}
.h1 { font-size: clamp(28px, 4.5vw, 52px); font-weight: 600; line-height: 1.15; }
.h2 { font-size: clamp(26px, 3.8vw, 44px); font-weight: 600; line-height: 1.2; }
.h3 { font-size: clamp(22px, 3vw, 32px); font-weight: 600; line-height: 1.3; }
.h4 { font-size: 17px; font-weight: 600; line-height: 1.4; }
.body-lg { font-size: clamp(15px, 1.6vw, 18px); color: var(--muted); line-height: 1.8; font-weight: 300; }
.body { color: var(--muted); font-size: 15px; line-height: 1.8; font-weight: 300; }
.gold-line { width: 48px; height: 2px; background: var(--gold); }
.gold-line-c { width: 48px; height: 2px; background: var(--gold); margin: 0 auto; }
.text-center { text-align: center; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* --- Section Headers --- */
.sh { text-align: center; margin-bottom: clamp(48px, 7vw, 80px); }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 32px; background: var(--gold); color: var(--bg);
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; border: none; cursor: pointer;
  font-family: var(--font); transition: all .3s var(--ease);
}
.btn:hover {
  background: var(--gold2); color: var(--bg);
  transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,.2);
}
.btn svg { width: 16px; height: 16px; fill: currentColor; transition: transform .3s; }
.btn:hover svg { transform: translateX(4px); }
.btn-o { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.btn-o:hover { background: var(--gold); color: var(--bg); }
.btn-fw { width: 100%; justify-content: center; }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }
.arrow-svg { width: 16px; height: 16px; fill: currentColor; }

/* --- Header --- */
.hd {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11,11,11,.96); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: transform .3s ease, background .4s;
  will-change: transform;
}
.hd .w { height: 80px; display: flex; align-items: center; }
.hd.sk {
  background: rgba(11,11,11,.96);
  backdrop-filter: blur(24px);
}
.hd-i { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.hd-l { display: flex; align-items: center; gap: 16px; }
.hd-logo { height: 48px; width: auto; }
.hd-t {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.hd-right { display: flex; align-items: center; gap: 28px; }
.hd-nav { display: flex; align-items: center; gap: 32px; }
.hd-cta {
  padding: 9px 22px; border: 1px solid var(--gold); color: var(--gold);
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  transition: all .3s var(--ease); white-space: nowrap;
}
.hd-cta:hover { background: var(--gold); color: var(--bg); }
.hd-nav { display: flex; align-items: center; gap: 32px; }
.hd-nav a {
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); font-weight: 500; transition: color .3s;
  position: relative;
}
.hd-nav a:hover, .hd-nav a.active { color: var(--text); }
.hd-nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0;
  height: 1px; background: var(--gold); transition: width .3s var(--ease);
}
.hd-nav a:hover::after, .hd-nav a.active::after { width: 100%; }

/* Nav dropdown */
.hd-drop { position: relative; }
.hd-drop-menu {
  position: absolute; top: 100%; left: -16px; padding-top: 12px;
  opacity: 0; visibility: hidden; transition: all .2s;
}
.hd-drop:hover .hd-drop-menu { opacity: 1; visibility: visible; }
.hd-drop-inner {
  background: rgba(18,18,18,.96); backdrop-filter: blur(20px);
  border: 1px solid var(--border); padding: 12px 0; min-width: 180px;
}
.hd-drop-inner a {
  display: block; padding: 8px 20px; font-size: 12px;
  letter-spacing: 1px; white-space: nowrap;
}
.hd-drop-inner a::after { display: none; }
.hd-drop-sep { height: 1px; background: var(--border); margin: 8px 20px; }
.mob-sub-el { padding-top: 8px; margin-top: 8px; border-top: 1px solid var(--border); }

/* Promo block (homepage) */
.promo-block { padding: 24px 0; background: rgba(201,168,76,.04); border-bottom: 1px solid var(--border); }
.promo-inner { display: flex; align-items: center; gap: 20px; padding: 16px 24px; border: 1px solid rgba(201,168,76,.2); transition: border-color .3s; }
.promo-inner:hover { border-color: var(--gold); }
.promo-badge { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--bg); background: var(--gold); padding: 4px 10px; font-weight: 600; white-space: nowrap; }
.promo-text { flex: 1; }
.promo-title { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.promo-desc { font-size: 13px; color: var(--muted); font-weight: 300; }
.promo-link { font-size: 13px; color: var(--gold); font-weight: 500; white-space: nowrap; }
@media (max-width: 700px) {
  .promo-inner { flex-direction: column; text-align: center; gap: 12px; }
}

/* Mobile menu toggle */
.hd-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--text);
}
.hd-toggle svg { width: 24px; height: 24px; fill: currentColor; }

/* Mobile menu overlay */
.mob-menu {
  position: fixed; inset: 0; background: rgba(11,11,11,.98);
  z-index: 150; display: flex; flex-direction: column;
  justify-content: center; align-items: center; gap: 24px;
  opacity: 0; visibility: hidden; transition: all .3s;
}
.mob-menu.on { opacity: 1; visibility: visible; }
.mob-menu a {
  font-size: 18px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text); font-weight: 500;
}
.mob-menu .mob-sub { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.mob-menu .mob-sub a { font-size: 14px; color: var(--muted); }
.mob-close {
  position: absolute; top: 20px; right: 24px; background: none;
  border: none; color: var(--text); font-size: 32px; cursor: pointer;
}

/* --- Footer --- */
.ft { padding: 60px 0 36px; border-top: 1px solid var(--border); }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.ft-brand { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300; }
.ft-col-title {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text); font-weight: 600; margin-bottom: 16px;
}
.ft-col a { display: block; font-size: 14px; color: var(--muted); margin-bottom: 8px; transition: color .3s; }
.ft-col a:hover { color: var(--gold); }
.ft-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--border);
}
.ft-copy { font-size: 12px; color: var(--muted); }

/* --- Process Steps --- */
.pr-g { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.pr-s {
  padding: 40px 28px; border-left: 1px solid var(--border);
  transition: all .4s var(--ease); position: relative;
}
.pr-s:first-child { border-left: none; }
.pr-s::after {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.pr-s:hover::after { transform: scaleX(1); }
.pr-s:hover { background: rgba(21,21,21,.8); }
.pr-n {
  font-size: 52px; font-weight: 700; color: var(--gold); opacity: .6;
  line-height: 1; margin-bottom: 20px; transition: opacity .4s;
}
.pr-s:hover .pr-n { opacity: 1; }
.pr-s h3 { font-size: 17px; font-weight: 600; margin-bottom: 12px; }
.pr-s p { color: var(--muted); font-size: 14px; line-height: 1.7; font-weight: 300; }

/* --- Concept Cards (homepage 2x2 grid) --- */
.cc-g { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cc {
  min-height: 50vh; background-size: cover; background-position: center;
  display: flex; flex-direction: column; align-items: flex-end; justify-content: flex-end;
  padding: clamp(24px, 3vw, 40px); cursor: pointer; position: relative;
  transition: transform .4s var(--ease); overflow: hidden; text-decoration: none;
}
.cc::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,11,11,.8) 0%, rgba(11,11,11,.2) 50%, transparent 100%);
  transition: background .4s;
}
.cc:hover { transform: scale(1.01); }
.cc:hover::before {
  background: linear-gradient(to top, rgba(11,11,11,.9) 0%, rgba(11,11,11,.35) 50%, rgba(11,11,11,.1) 100%);
}
.cc h3 { font-size: clamp(24px, 3vw, 32px); font-weight: 600; position: relative; text-align: right; color: var(--text); }
.cc .cd { color: var(--muted); font-size: 15px; position: relative; text-align: right; margin-top: 8px; font-weight: 300; }

/* --- Partners Grid --- */
.pa-g {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px; align-items: center; justify-items: center;
}
.pa-g img { height: 44px; width: auto; opacity: .45; transition: opacity .4s; }
.pa-g img:hover { opacity: .9; }

/* --- USP Grid --- */
.usp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 7vw, 100px); align-items: center; }
.usp-item { padding: 24px 0; border-top: 1px solid var(--border); }
.usp-label {
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; font-weight: 600;
}
.usp-item p { color: var(--muted); font-size: 15px; font-weight: 300; }

/* --- About Grid --- */
.ab-g { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 7vw, 100px); align-items: center; }
.ab-im { position: relative; }
.ab-im img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.ab-im::before {
  content: ''; position: absolute; top: -12px; left: -12px;
  width: 72px; height: 72px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold);
  pointer-events: none; z-index: 1;
}
.ab-im::after {
  content: ''; position: absolute; bottom: -12px; right: -12px;
  width: 72px; height: 72px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold);
  pointer-events: none; z-index: 1;
}

/* --- CTA Banner --- */
.cta-banner { text-align: center; position: relative; overflow: hidden; }
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, var(--gold-dim) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2, .cta-banner p, .cta-banner .btn { position: relative; }

/* --- Contact Form --- */
.fg { margin-bottom: 24px; }
.fg label {
  display: block; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px; font-weight: 500;
}
.fg input, .fg textarea, .fg select {
  width: 100%; padding: 14px 0; background: transparent;
  border: none; border-bottom: 1px solid var(--border);
  color: var(--text); font-family: var(--font); font-size: 15px;
  outline: none; transition: border-color .3s; font-weight: 300;
  -webkit-appearance: none; border-radius: 0;
}
.fg select { cursor: pointer; }
.fg select option { background: var(--bg2); color: var(--text); }
.fg input::placeholder, .fg textarea::placeholder { color: var(--muted); }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-bottom-color: var(--gold); }
.fg textarea { resize: vertical; min-height: 100px; }
.fst { margin-top: 16px; font-size: 14px; display: none; }
.fst.ok { display: block; color: #6cbf6c; }
.fst.er { display: block; color: #e06060; }

/* --- Page Hero (inner pages) --- */
.page-hero { padding: clamp(140px, 18vw, 200px) 0 clamp(60px, 8vw, 100px); }
.page-hero .eyebrow { margin-bottom: 24px; }
.page-hero .h1 { margin-bottom: 20px; }
.page-hero .body-lg { max-width: 640px; }
.page-hero .btn-group { margin-top: 32px; }

/* --- FAQ --- */
.faq-item {
  border-top: 1px solid var(--border); padding: 24px 0; cursor: pointer;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 16px; font-weight: 500; transition: color .3s;
}
.faq-q:hover { color: var(--gold); }
.faq-q svg {
  width: 16px; height: 16px; fill: var(--muted); flex-shrink: 0;
  transition: transform .3s; margin-left: 16px;
}
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .4s var(--ease);
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding-top: 16px; color: var(--muted); font-size: 15px; font-weight: 300; line-height: 1.8; }

/* --- Founder Block --- */
.founder-grid { display: grid; grid-template-columns: auto 1fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
.founder-img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); }

/* --- Concept Page Template --- */
.concept-hero {
  min-height: 70vh; display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
  position: relative; padding-bottom: clamp(48px, 6vw, 80px);
}
.concept-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,11,11,.9) 0%, rgba(11,11,11,.4) 50%, rgba(11,11,11,.2) 100%);
}
.concept-hero .w { position: relative; }
.concept-detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 7vw, 100px); }
.concept-features li {
  padding: 12px 0 12px 24px; position: relative;
  color: var(--text); font-size: 15px; list-style: none;
}
.concept-features li::before {
  content: ''; position: absolute; left: 0; top: 20px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
}
.concept-invest {
  padding: 32px; background: var(--bg-card); border: 1px solid var(--border);
}
.concept-invest .price {
  font-size: clamp(24px, 3vw, 32px); font-weight: 600; color: var(--gold); margin-bottom: 8px;
}
.concept-nav { display: flex; gap: 16px; flex-wrap: wrap; }
.concept-nav a {
  padding: 12px 24px; border: 1px solid var(--border); font-size: 13px;
  letter-spacing: 1px; text-transform: uppercase; color: var(--muted);
  font-weight: 500; transition: all .3s;
}
.concept-nav a:hover, .concept-nav a.active { border-color: var(--gold); color: var(--gold); }

/* --- Project Cards --- */
.proj-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.proj-card {
  background: var(--bg-card); border: 1px solid var(--border);
  overflow: hidden; transition: transform .3s, border-color .3s;
}
.proj-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.proj-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.proj-card-body { padding: 24px; }
.proj-card-tag {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 8px;
}
.proj-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.proj-card p { color: var(--muted); font-size: 14px; font-weight: 300; }

/* --- Modal --- */
.mo {
  position: fixed; inset: 0; background: rgba(0,0,0,.88);
  backdrop-filter: blur(12px); z-index: 200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all .35s;
}
.mo.on { opacity: 1; visibility: visible; }
.md {
  background: var(--bg2); border: 1px solid var(--border);
  max-width: 560px; width: 92%; max-height: 85vh; overflow-y: auto;
  padding: clamp(36px, 5vw, 52px); position: relative;
  transform: translateY(24px) scale(.98); transition: all .35s;
}
.mo.on .md { transform: translateY(0) scale(1); }
.mx {
  position: absolute; top: 16px; right: 20px; background: none;
  border: none; color: var(--muted); cursor: pointer;
  font-size: 28px; line-height: 1; transition: color .3s;
}
.mx:hover { color: var(--text); }

/* --- Animations --- */
@keyframes growLine { from { width: 0; } to { width: 48px; } }

.fi, .fi-l, .fi-r, .fi-s, .fi-f { opacity: 0; transition: opacity .6s ease; }
.fi.v, .fi-l.v, .fi-r.v, .fi-s.v, .fi-f.v { opacity: 1; }
.d1 { transition-delay: .15s; }
.d2 { transition-delay: .3s; }
.d3 { transition-delay: .45s; }
.gl-a { width: 0; overflow: hidden; }

.gl-a.v { opacity: 1; }
.gl-a.v { animation: growLine .6s var(--ease) forwards; }

.d1 { animation-delay: .1s !important; }
.d2 { animation-delay: .2s !important; }
.d3 { animation-delay: .3s !important; }
.d4 { animation-delay: .4s !important; }
.d5 { animation-delay: .5s !important; }
.d6 { animation-delay: .6s !important; }
.d7 { animation-delay: .7s !important; }

/* Partner logo stagger */
.pa-g img { opacity: 0; transform: translateY(16px); transition: all .5s ease; }
.pa-g.v img { opacity: .45; transform: translateY(0); }
.pa-g.v img:nth-child(1) { transition-delay: .05s; }
.pa-g.v img:nth-child(2) { transition-delay: .1s; }
.pa-g.v img:nth-child(3) { transition-delay: .15s; }
.pa-g.v img:nth-child(4) { transition-delay: .2s; }
.pa-g.v img:nth-child(5) { transition-delay: .25s; }
.pa-g.v img:nth-child(6) { transition-delay: .3s; }
.pa-g.v img:nth-child(7) { transition-delay: .35s; }
.pa-g.v img:nth-child(8) { transition-delay: .4s; }
.pa-g img:hover { opacity: .9 !important; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .ab-g, .usp-grid, .concept-detail, .founder-grid { grid-template-columns: 1fr; }
  .pr-g { grid-template-columns: 1fr 1fr; }
  .pr-s { border-left: none; border-top: 1px solid var(--border); }
  .ab-im { order: -1; }
  .ab-im::before, .ab-im::after { display: none; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .hd-nav, .hd-cta { display: none; }
  .hd-toggle { display: block; }
  .hd, .hd.sk {
    transition: none !important;
    background: rgba(11,11,11,.96) !important;
    backdrop-filter: blur(24px) !important;
    border-bottom: 1px solid var(--border) !important;
  }
  .hd .w, .hd.sk .w { height: 70px !important; }
  .hd-logo { height: 42px !important; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-img { width: 80px; height: 80px; }
}
@media (max-width: 600px) {
  .pr-g, .cc-g { grid-template-columns: 1fr; }
  .pa-g { grid-template-columns: repeat(2, 1fr); }
  .hd-t { font-size: 9px; letter-spacing: 2px; }
  .ft-grid { grid-template-columns: 1fr; }
  .ft-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cc { min-height: 40vh; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }
  .proj-grid { grid-template-columns: 1fr; }
}

/* --- Language selector --- */
.lang-sel { display: flex; align-items: center; gap: 2px; margin-left: 16px; }
.lang-sel a { font-size: 11px; letter-spacing: .5px; color: var(--muted); padding: 4px 6px; text-decoration: none; transition: color .2s; }
.lang-sel a:hover { color: var(--fg); }
.lang-sel a.lang-active { color: var(--gold); font-weight: 600; }

/* Mobile language in menu */
.mob-lang { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
.mob-lang-title { display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.mob-lang a { display: block; font-size: 15px; padding: 8px 0; color: var(--muted); text-decoration: none; }
.mob-lang a.lang-active { color: var(--gold); }

/* Language suggestion banner */
#lang-suggest { position: fixed; top: 0; left: 0; right: 0; z-index: 200; background: var(--gold); animation: lsSlide .4s ease; }
@keyframes lsSlide { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.ls-inner { max-width: 1200px; margin: 0 auto; padding: 12px 24px; display: flex; align-items: center; gap: 16px; }
#lang-suggest p { color: #0b0b0b; font-size: 14px; font-weight: 500; margin: 0; flex: 1; }
.ls-btn { background: #0b0b0b; color: #fff; padding: 8px 16px; font-size: 13px; font-weight: 500; text-decoration: none; white-space: nowrap; }
.ls-btn:hover { opacity: .85; }
.ls-close { background: none; border: none; color: #0b0b0b; font-size: 24px; cursor: pointer; padding: 0 4px; line-height: 1; }
@media (max-width: 900px) {
  .lang-sel { display: none; }
  .ls-inner { flex-wrap: wrap; gap: 12px; }
}
@media (max-width: 600px) {
  .ls-inner { flex-direction: column; text-align: center; }
}

/* Temporarily hide Projekti page link until content is ready */

/* Spacing after hero */
.field-err{display:block;color:#e74c3c;font-size:12px;margin-top:6px;font-weight:400}
.input-err{border-color:#e74c3c!important;box-shadow:0 0 0 1px #e74c3c}
/* Mobile menu fix - smaller gaps for all items to fit */
@media(max-height:700px){
  .mob-menu{gap:16px}
  .mob-menu a{font-size:16px;letter-spacing:1.5px}
  .mob-menu .mob-sub{gap:8px}
  .mob-menu .mob-sub a{font-size:13px}
}
@media(max-height:580px){
  .mob-menu{gap:12px;justify-content:flex-start;padding-top:72px;overflow-y:auto}
  .mob-menu a{font-size:15px}
  .mob-menu .mob-sub{gap:6px}
}
.mob-menu{gap:16px!important;justify-content:flex-start!important;padding-top:72px!important;overflow-y:auto!important}
.mob-menu a{font-size:16px!important}
.mob-menu .mob-sub{gap:8px!important}
.mob-menu .mob-sub a{font-size:13px!important}
.mob-menu{gap:14px!important;padding-top:64px!important}
.mob-menu>a{font-size:15px!important;letter-spacing:1px!important}
.mob-menu .mob-sub{gap:6px!important}
.mob-menu .mob-sub a{font-size:12px!important}
.mob-menu .lang-label{display:none!important}
.mob-menu .lang-menu{flex-direction:row!important;gap:16px!important;margin-top:4px!important}
.mob-menu .lang-menu a{font-size:13px!important;padding:0!important}
.mob-lang{display:flex!important;flex-wrap:wrap!important;justify-content:center!important;gap:0 20px!important;margin-top:16px!important;padding-top:16px!important}
.mob-lang .mob-lang-title{width:100%!important;text-align:center!important;font-size:10px!important;margin-bottom:8px!important}
.mob-lang a{display:inline-block!important;font-size:13px!important;padding:4px 0!important}
