/* ===================================================
   Studio LWCP — style.css?v=1
   Dark teal primary #0f1f2e | Accent teal #14b8a6
=================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:   #0f1f2e;
  --primary-light: #162d41;
  --accent:    #14b8a6;
  --accent-dark: #0d9488;
  --text:      #e2e8f0;
  --text-muted:#94a3b8;
  --white:     #ffffff;
  --card-bg:   #111f2d;
  --border:    #1e3448;
  --radius:    8px;
  --shadow:    0 4px 24px rgba(0,0,0,.45);
  --font:      'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--primary);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--white); }

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

h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
}

ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section--sm { padding: 60px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: all .25s;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--accent);
  color: var(--primary);
}
.btn--primary:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20,184,166,.3);
}

.btn--outline {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}
.btn--outline:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn--ghost {
  color: var(--text);
  border-color: var(--border);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---------- Tags / Badges ---------- */
.tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(20,184,166,.15);
  color: var(--accent);
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ---------- Section Labels ---------- */
.section-label {
  display: inline-block;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(15,31,46,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo img { height: 40px; width: auto; }

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

.site-nav a {
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: color .2s;
  position: relative;
  padding-bottom: 2px;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .25s;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 22px;
  background: var(--accent);
  color: var(--primary) !important;
  border-radius: var(--radius);
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--accent-dark); color: var(--white) !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('/images/hero-studio.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,31,46,.93) 0%,
    rgba(15,31,46,.87) 50%,
    rgba(20,184,166,.12) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero h1 span { color: var(--accent); }

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: absolute;
  bottom: 48px;
  right: 0;
  z-index: 2;
  display: flex;
  gap: 40px;
}

.stat-item { text-align: right; }
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}
.stat-label {
  font-size: .78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ---------- About / 2-col ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

.two-col-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.two-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.two-col-img:hover img { transform: scale(1.04); }

.two-col-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(20,184,166,.2);
  border-radius: 12px;
  pointer-events: none;
}

.two-col-body { }
.two-col-body .section-title { font-size: clamp(1.6rem, 2.8vw, 2.2rem); }

.checklist { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: .95rem;
}
.checklist li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: rgba(20,184,166,.15);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  margin-top: 3px;
}

/* ---------- Cards Grid ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}

.card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.card:hover .card-img img { transform: scale(1.05); }

.card-body { padding: 24px; }
.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: .8rem;
  color: var(--text-muted);
}
.card-title {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.35;
}
.card-excerpt {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.card-link:hover { gap: 10px; color: var(--accent); }
.card-link::after { content: '→'; }

/* ---------- Services Icon Cards ---------- */
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  transition: all .25s;
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.service-icon {
  width: 52px; height: 52px;
  background: rgba(20,184,166,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--accent);
}
.service-card h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---------- Banner / Projection Section ---------- */
.banner-section {
  position: relative;
  padding: 100px 0;
  background-image: url('/images/projection.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,31,46,.88);
  z-index: 1;
}
.banner-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.banner-inner .section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--white); }
.banner-inner p { color: var(--text-muted); margin: 16px 0 36px; font-size: 1.05rem; }

/* ---------- Job Offers ---------- */
.job-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  transition: all .25s;
  margin-bottom: 16px;
}
.job-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
}
.job-card-left { flex: 1; }
.job-card h3 { font-size: 1.15rem; color: var(--white); margin-bottom: 8px; }
.job-card-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.job-card-right { flex-shrink: 0; }

/* ---------- Blog Hero ---------- */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(180deg, rgba(20,184,166,.06) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero .section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); }
.page-hero p { color: var(--text-muted); margin-top: 12px; font-size: 1.05rem; }

/* ---------- Article Hero ---------- */
.article-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  margin-top: 72px;
}
.article-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.article-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,31,46,1) 0%, rgba(15,31,46,.4) 100%);
}

.article-header {
  padding: 48px 0 24px;
}

.article-header .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin: 16px 0 12px;
}

.article-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: .85rem;
}

.article-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.article-body h2 {
  font-size: 1.45rem;
  color: var(--white);
  margin: 40px 0 16px;
}
.article-body h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin: 32px 0 12px;
}
.article-body p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1rem;
}
.article-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-body a:hover { color: var(--white); }

.article-body img {
  width: 100%;
  border-radius: 10px;
  margin: 32px 0;
  border: 1px solid var(--border);
}

.article-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 20px 28px;
  margin: 32px 0;
  background: rgba(20,184,166,.06);
  border-radius: 0 8px 8px 0;
  color: var(--text);
  font-style: italic;
}

.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
  color: var(--text-muted);
  line-height: 1.8;
}
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }

/* ---------- Contact Form ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .04em;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: .95rem;
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(20,184,166,.12);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group select option { background: var(--primary); }

/* ---------- Sitemap ---------- */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
}
.sitemap-group h3 {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.sitemap-group ul { display: flex; flex-direction: column; gap: 8px; }
.sitemap-group ul li a {
  color: var(--text-muted);
  font-size: .92rem;
  transition: color .2s, padding-left .2s;
  display: block;
}
.sitemap-group ul li a:hover { color: var(--accent); padding-left: 6px; }

/* ---------- 404 ---------- */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}
.page-404 .big-number {
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 900;
  color: var(--accent);
  opacity: .15;
  line-height: 1;
  display: block;
  margin-bottom: -24px;
}
.page-404 h1 { font-size: clamp(1.6rem, 4vw, 2.8rem); color: var(--white); margin-bottom: 16px; }
.page-404 p { color: var(--text-muted); margin-bottom: 36px; max-width: 440px; }

/* ---------- Divider ---------- */
.divider {
  width: 60px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 16px 0 24px;
}

/* ---------- Realizations ---------- */
.realisations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.realisation-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all .25s;
}
.realisation-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.realisation-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.realisation-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.realisation-card:hover .realisation-img img { transform: scale(1.05); }
.realisation-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,31,46,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.realisation-card:hover .realisation-overlay { opacity: 1; }
.realisation-overlay span {
  background: var(--accent);
  color: var(--primary);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .85rem;
}
.realisation-body { padding: 22px 24px; }
.realisation-body h3 { font-size: 1.05rem; color: var(--white); margin-bottom: 6px; }
.realisation-body p { font-size: .88rem; color: var(--text-muted); }
.realisation-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }

/* ---------- Highlight Box ---------- */
.highlight-box {
  background: linear-gradient(135deg, rgba(20,184,166,.1) 0%, rgba(20,184,166,.04) 100%);
  border: 1px solid rgba(20,184,166,.25);
  border-radius: 12px;
  padding: 36px;
}

/* ---------- Counter Strip ---------- */
.counter-strip {
  background: var(--primary-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.counter-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.counter-item .counter-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}
.counter-item .counter-label {
  font-size: .82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 4px;
}

/* ---------- Team section ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: all .25s;
}
.team-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.team-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 auto 14px;
}
.team-card h4 { font-size: 1rem; color: var(--white); margin-bottom: 4px; }
.team-card span { font-size: .82rem; color: var(--text-muted); }

/* ---------- Footer ---------- */
.site-footer {
  background: #0a1721;
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand img { height: 36px; margin-bottom: 16px; }
.footer-brand p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .88rem;
  color: var(--text-muted);
  transition: color .2s, padding-left .2s;
}
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .82rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .82rem; color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .counter-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col--reverse { direction: ltr; }
  .hero-stats { display: none; }
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }

  .site-nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(10,23,33,.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    transform: translateY(-120%);
    opacity: 0;
    transition: all .35s;
    pointer-events: none;
    border-bottom: 1px solid var(--border);
  }
  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .site-nav a { font-size: 1rem; }
  .hamburger { display: flex; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .job-card { flex-direction: column; }
  .cards-grid { grid-template-columns: 1fr; }
  .realisations-grid { grid-template-columns: 1fr; }
  .counter-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.6rem; }
  .hero h1 { font-size: 1.8rem; }
  .banner-section { background-attachment: scroll; }
  .hero { background-attachment: scroll; }
}
