/* =========================================================
   LEO PLATTEN GMBH — Redesign 2026
   Brand: #FF6B00 (orange) · #00E5E5 (cyan) · Montserrat
   ========================================================= */

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #ff6b00;
  --orange-dark: #e85f00;
  --orange-soft: #fff2e8;
  --cyan: #00e5e5;
  --cyan-dark: #00c4c4;
  --cyan-soft: #e6fcfc;
  --ink: #0a0a0a;
  --ink-2: #1a1a1a;
  --grey-900: #222;
  --grey-700: #4a4a4a;
  --grey-500: #7a7a7a;
  --grey-300: #d6d6d6;
  --grey-200: #ececec;
  --grey-100: #f6f6f6;
  --white: #ffffff;
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, .06);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, .10);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, .16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(64px, 9vw, 120px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5 { font-family: 'Montserrat', sans-serif; line-height: 1.15; color: var(--ink); letter-spacing: -.01em; }
h1 { font-weight: 800; font-size: clamp(2.4rem, 6vw, 4.6rem); letter-spacing: -.03em; }
h2 { font-weight: 800; font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -.02em; }
h3 { font-weight: 700; font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-weight: 700; font-size: 1.05rem; }

p { color: var(--grey-700); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--dark { background: var(--ink); color: var(--white); }
.section--dark p { color: rgba(255,255,255,.7); }
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--white); }
.section--soft { background: var(--grey-100); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ''; width: 28px; height: 2px; background: var(--orange);
}
.eyebrow--cyan { color: var(--cyan-dark); }
.eyebrow--cyan::before { background: var(--cyan-dark); }
.eyebrow--light { color: var(--cyan); }
.eyebrow--light::before { background: var(--cyan); }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 16px; font-size: 1.05rem; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  font-weight: 700; font-size: .92rem;
  letter-spacing: .04em; text-transform: uppercase;
  border-radius: 999px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: var(--orange); color: var(--white);
  box-shadow: 0 12px 30px rgba(255,107,0,.35);
}
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 16px 36px rgba(255,107,0,.45); }

.btn--ghost {
  background: transparent; color: var(--ink);
  border: 2px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--white); }

.btn--light {
  background: var(--white); color: var(--ink);
}
.btn--light:hover { background: var(--cyan); color: var(--ink); transform: translateY(-2px); }

.btn--outline-light {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn--outline-light:hover { border-color: var(--white); background: var(--white); color: var(--ink); }

/* ---------- HEADER ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 80;
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: padding .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
  padding-block: 18px;
}
.header.is-scrolled {
  padding-block: 10px;
  border-bottom-color: rgba(0,0,0,.08);
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.header__logo img { height: 48px; width: auto; transition: height .3s var(--ease); }
.header.is-scrolled .header__logo img { height: 40px; }

.nav {
  display: flex; align-items: center; gap: 8px;
}
.nav a {
  position: relative;
  display: inline-block;
  padding: 10px 18px;
  font-weight: 600; font-size: .92rem;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--ink-2);
}
.nav a::after {
  content: ''; position: absolute;
  left: 18px; right: 18px; bottom: 4px;
  height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover::after,
.nav a.is-active::after { transform: scaleX(1); }
.nav a:hover { color: var(--orange); }
.nav a.is-active { color: var(--ink); }

.header__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: var(--ink); color: var(--white);
  border-radius: 999px;
  font-weight: 700; font-size: .82rem;
  letter-spacing: .08em; text-transform: uppercase;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.header__cta:hover { background: var(--orange); }
.header__cta svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 12px; background: var(--ink); color: var(--white);
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: ''; display: block;
  width: 20px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; left: 0; }
.nav-toggle span::after  { position: absolute; top:  6px; left: 0; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 960px) {
  .header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .header__cta { display: none; }
  .nav-toggle { display: inline-flex; position: relative; z-index: 130; }
  .nav {
    position: fixed;
    inset: 0 0 auto auto;
    height: 100vh;
    min-height: 100dvh;
    width: min(86%, 380px);
    z-index: 120;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    padding: 104px 28px 32px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav.is-open { transform: translateX(0); }
  .nav > a {
    display: block;
    width: 100%;
    padding: 18px 4px;
    border-bottom: 1px solid var(--grey-200);
    font-size: 1rem;
    color: var(--ink);
  }
  .nav > a::after { display: none; }
  .nav > a:hover,
  .nav > a.is-active { color: var(--orange); }
  .nav__contact {
    display: block;
    margin-top: 32px;
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--grey-100);
  }
  .nav__contact h5 { color: var(--orange); font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 12px; }
  .nav__contact a {
    display: inline;
    width: auto;
    padding: 4px 0;
    border: none;
    color: var(--ink);
    font-size: .95rem;
  }
  .nav__contact a::after { display: none; }
  .nav__contact p { color: var(--ink); font-size: .95rem; line-height: 1.5; margin-bottom: 8px; }
}
@media (min-width: 961px) {
  .nav__contact { display: none; }
}
@media (max-width: 480px) {
  .nav { width: 100%; }
}

body.nav-locked { overflow: hidden; touch-action: none; }

.nav-backdrop {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(0,0,0,.5);
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease);
}
.nav-backdrop.is-visible { opacity: 1; pointer-events: auto; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  display: flex; align-items: center;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 90% 30%, rgba(255,107,0,.22), transparent 60%),
    radial-gradient(900px 500px at 10% 80%, rgba(0,229,229,.18), transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #131313 100%);
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
}
@media (max-width: 900px) {
  .hero { min-height: 0; padding-top: 130px; padding-bottom: 60px; }
  .hero__grid { grid-template-columns: 1fr; gap: 50px; }
}
.hero__content { max-width: 640px; }
.hero h1 { color: var(--white); margin-bottom: 28px; }
.hero h1 .accent { color: var(--orange); }
.hero h1 .accent-cyan { color: var(--cyan); }
.hero__lead { font-size: clamp(1rem, 1.4vw, 1.15rem); color: rgba(255,255,255,.8); margin-bottom: 36px; max-width: 540px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__meta {
  display: flex; flex-wrap: wrap;
  gap: 32px 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero__meta-item h3 { color: var(--cyan); font-size: 2.2rem; font-weight: 800; letter-spacing: -.02em; }
.hero__meta-item p { color: rgba(255,255,255,.65); font-size: .82rem; text-transform: uppercase; letter-spacing: .18em; margin-top: 4px; }

.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 640px;
}
.hero__visual .img-a,
.hero__visual .img-b {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero__visual .img-a {
  inset: 0 22% 18% 0;
  border-top-right-radius: 6px;
}
.hero__visual .img-b {
  inset: 28% 0 0 26%;
  border-bottom-left-radius: 6px;
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute;
  left: -20px; top: 18%;
  width: 110px; height: 110px;
  background: var(--orange); color: var(--white);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; font-weight: 800;
  box-shadow: 0 18px 40px rgba(255,107,0,.45);
  z-index: 3;
  animation: spinBadge 18s linear infinite;
}
.hero__badge::before {
  content: ''; position: absolute; inset: -8px;
  border: 1px dashed rgba(255,255,255,.5); border-radius: 50%;
}
.hero__badge span { font-size: 1.9rem; line-height: 1; }
.hero__badge small { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
@keyframes spinBadge {
  to { transform: rotate(360deg); }
}
@media (max-width: 600px) {
  .hero__badge { width: 90px; height: 90px; left: -8px; }
  .hero__badge span { font-size: 1.5rem; }
}

.hero__shape {
  position: absolute; pointer-events: none;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
}
.hero__shape--1 { right: 6%; top: 12%; width: 240px; height: 320px; transform: rotate(-8deg); }
.hero__shape--2 { left: -6%; bottom: 10%; width: 320px; height: 220px; transform: rotate(10deg); }

/* ---------- SERVICES ---------- */
/* Smart grid: 5 → 3 (last 2 centered) → 2 (last 1 centered) → 1.
   Avoids the awkward 4 + 1 orphan layout at every viewport width. */
.services {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 540px) {
  .services { grid-template-columns: repeat(4, 1fr); }
  .services > .service { grid-column: span 2; }
  .services > .service:nth-child(5) { grid-column: 2 / span 2; }
}
@media (min-width: 820px) {
  .services { grid-template-columns: repeat(6, 1fr); }
  .services > .service { grid-column: span 2; }
  .services > .service:nth-child(4) { grid-column: 2 / span 2; }
  .services > .service:nth-child(5) { grid-column: 4 / span 2; }
}
@media (min-width: 1180px) {
  .services { grid-template-columns: repeat(5, 1fr); }
  .services > .service,
  .services > .service:nth-child(4),
  .services > .service:nth-child(5) { grid-column: auto; }
}
.service {
  position: relative;
  padding: 36px 28px 32px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  overflow: hidden;
}
.service::before {
  content: ''; position: absolute; inset: auto 0 0 0; height: 3px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.service:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}
.service:hover::before { transform: scaleX(1); }
.service__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px;
  margin-bottom: 22px;
  background: var(--orange-soft); color: var(--orange);
  border-radius: 16px;
  transition: background .35s var(--ease), color .35s var(--ease), transform .5s var(--ease);
}
.service:nth-child(even) .service__icon { background: var(--cyan-soft); color: var(--cyan-dark); }
.service:hover .service__icon { background: var(--orange); color: var(--white); transform: scale(1.06) rotate(-6deg); }
.service:nth-child(even):hover .service__icon { background: var(--cyan-dark); color: var(--white); }
.service__icon svg { width: 30px; height: 30px; }
.service h3 { margin-bottom: 10px; }
.service p { font-size: .92rem; color: var(--grey-700); }

/* ---------- ABOUT BLOCK ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
}
.about__visual { position: relative; aspect-ratio: 1/1; max-height: 600px; }
.about__visual .a-1,
.about__visual .a-2 { position: absolute; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about__visual .a-1 { inset: 0 30% 22% 0; }
.about__visual .a-2 { inset: 26% 0 0 32%; border: 6px solid var(--white); }
.about__visual img { width: 100%; height: 100%; object-fit: cover; }
.about__stat {
  position: absolute;
  right: -10px; top: 0;
  z-index: 3;
  background: var(--orange); color: var(--white);
  padding: 22px 26px;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(255,107,0,.4);
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.about__stat strong { font-size: 2.4rem; font-weight: 900; line-height: 1; }
.about__stat span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; margin-top: 4px; }

.about__content h2 { margin-bottom: 22px; }
.about__content .lead { font-size: 1.1rem; color: var(--ink); font-weight: 500; margin-bottom: 20px; }
.about__content p { margin-bottom: 18px; }
.about__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-block: 22px 30px;
}
@media (max-width: 480px) { .about__list { grid-template-columns: 1fr; } }
.about__list li {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: .95rem; color: var(--ink);
}
.about__list li::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
  flex-shrink: 0;
}
.about__list li:nth-child(even)::before { background: var(--cyan); }

/* ---------- STATS BAR ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 20px;
}
.stat {
  padding: 32px 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.stat:hover { transform: translateY(-4px); background: rgba(255,107,0,.1); }
.stat strong { display: block; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--orange); letter-spacing: -.02em; }
.stat span { display: block; margin-top: 8px; font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.75); }

/* ---------- GALLERY GRID ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius-md);
  cursor: zoom-in;
  background: var(--grey-100);
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.55) 100%);
  opacity: 0; transition: opacity .35s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item__icon {
  position: absolute; right: 18px; bottom: 18px;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  z-index: 2;
}
.gallery-item:hover .gallery-item__icon { opacity: 1; transform: translateY(0); }
.gallery-item__icon svg { width: 20px; height: 20px; }

/* Preview layout — 6 items on desktop */
.gallery-grid.preview .gallery-item:nth-child(1) { grid-column: span 8; aspect-ratio: 16/9; }
.gallery-grid.preview .gallery-item:nth-child(2) { grid-column: span 4; aspect-ratio: 16/9; }
.gallery-grid.preview .gallery-item:nth-child(3),
.gallery-grid.preview .gallery-item:nth-child(4),
.gallery-grid.preview .gallery-item:nth-child(5) { grid-column: span 4; }
.gallery-grid.preview .gallery-item:nth-child(6) { grid-column: span 12; aspect-ratio: 21/9; }

/* Full gallery — masonry-ish */
.gallery-grid.full .gallery-item { grid-column: span 4; }
.gallery-grid.full .gallery-item.tall { grid-column: span 4; aspect-ratio: 3/4; }
.gallery-grid.full .gallery-item.wide { grid-column: span 8; aspect-ratio: 16/9; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .gallery-item,
  .gallery-grid.preview .gallery-item:nth-child(n),
  .gallery-grid.full .gallery-item,
  .gallery-grid.full .gallery-item.tall,
  .gallery-grid.full .gallery-item.wide { grid-column: auto; aspect-ratio: 4/3; }
}
@media (max-width: 540px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-item,
  .gallery-grid.preview .gallery-item:nth-child(n),
  .gallery-grid.full .gallery-item:nth-child(n) { grid-column: auto; }
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  position: relative;
  padding: clamp(60px, 8vw, 100px) clamp(28px, 6vw, 80px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--white);
  display: grid; grid-template-columns: 1.4fr .6fr; gap: 40px; align-items: center;
  background: linear-gradient(120deg, #0a0a0a 0%, #1d1d1d 100%);
  isolation: isolate;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background-image: var(--bg, none);
  background-size: cover; background-position: center;
  opacity: .25; filter: grayscale(.4);
}
.cta-banner::after {
  content: ''; position: absolute; right: -120px; bottom: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,.35), transparent 70%);
  z-index: -1;
}
.cta-banner h2 { color: var(--white); margin-bottom: 18px; }
.cta-banner p { color: rgba(255,255,255,.78); max-width: 540px; }
.cta-banner__actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
@media (max-width: 800px) {
  .cta-banner { grid-template-columns: 1fr; }
  .cta-banner__actions { flex-direction: row; flex-wrap: wrap; }
}

/* ---------- BRAND PARTNERS ---------- */
.partners {
  background: var(--grey-100);
  padding-block: clamp(48px, 6vw, 80px);
}
.partners__head { text-align: center; max-width: 720px; margin: 0 auto clamp(32px, 5vw, 48px); }
.partners__head h2 { margin-bottom: 14px; }
.partner-strip {
  display: flex; flex-wrap: wrap;
  gap: clamp(24px, 4vw, 56px);
  justify-content: center; align-items: center;
}
.partner-strip img {
  height: clamp(36px, 5vw, 56px); width: auto;
  filter: grayscale(1); opacity: .55;
  transition: opacity .3s var(--ease), filter .3s var(--ease);
}
.partner-strip img:hover { filter: grayscale(0); opacity: 1; }

/* ---------- PAGE HEAD ---------- */
.page-head {
  position: relative;
  padding: clamp(140px, 18vw, 220px) 0 clamp(60px, 8vw, 110px);
  color: var(--white);
  text-align: center;
  background: var(--ink);
  overflow: hidden;
}
.page-head::before {
  content: ''; position: absolute; inset: 0;
  background-image: var(--bg, none);
  background-size: cover; background-position: center;
  opacity: .35;
}
.page-head::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.4) 0%, rgba(10,10,10,.85) 100%);
}
.page-head > * { position: relative; z-index: 2; }
.page-head h1 { color: var(--white); margin-bottom: 16px; }
.crumbs {
  display: inline-flex; align-items: center; gap: 10px;
  list-style: none; padding: 8px 18px;
  border-radius: 999px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.crumbs a { color: var(--cyan); }
.crumbs li + li::before { content: '/'; margin-right: 10px; color: rgba(255,255,255,.4); }

/* ---------- EXPERIENCE / PROGRESS CARDS ---------- */
.experience {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
@media (max-width: 800px) { .experience { grid-template-columns: 1fr; } }
.exp-card {
  display: flex; gap: 24px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  align-items: flex-start;
}
.exp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.exp-ring {
  --val: 0.85;
  --size: 96px;
  width: var(--size); height: var(--size);
  flex-shrink: 0;
  border-radius: 50%;
  background:
    conic-gradient(var(--orange) calc(var(--val) * 360deg), var(--grey-200) 0);
  display: grid; place-items: center;
  position: relative;
}
.exp-ring::before {
  content: ''; position: absolute; inset: 8px;
  background: var(--white); border-radius: 50%;
}
.exp-ring span {
  position: relative;
  font-weight: 800; font-size: 1.05rem;
  color: var(--ink);
}
.exp-card h3 { margin-bottom: 10px; }

/* ---------- CONTACT ---------- */
.contact-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.contact-card:hover { transform: translateY(-4px); border-color: var(--orange); box-shadow: var(--shadow-md); }
.contact-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  margin-bottom: 18px;
  border-radius: 50%; background: var(--orange-soft); color: var(--orange);
}
.contact-card:nth-child(2) .contact-card__icon { background: var(--cyan-soft); color: var(--cyan-dark); }
.contact-card__icon svg { width: 26px; height: 26px; }
.contact-card h5 { margin-bottom: 8px; font-size: 1rem; text-transform: uppercase; letter-spacing: .12em; }
.contact-card p,
.contact-card a { font-size: 1rem; color: var(--grey-700); font-weight: 500; }
.contact-card a:hover { color: var(--orange); }

.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: start;
}
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; } }
.contact-form {
  background: var(--white);
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-200);
}
.contact-form h2 { margin-bottom: 12px; }
.contact-form p { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.full { grid-template-columns: 1fr; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-row label { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--grey-700); margin-bottom: 8px; }
.form-row input,
.form-row textarea {
  width: 100%; font-family: inherit; font-size: 1rem;
  padding: 14px 18px;
  background: var(--grey-100);
  border: 2px solid transparent;
  border-radius: 10px;
  color: var(--ink);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-row input:focus,
.form-row textarea:focus { outline: none; border-color: var(--orange); background: var(--white); }

.contact-map {
  height: 100%; min-height: 460px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--grey-200);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding-block: clamp(48px, 6vw, 80px) 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand img { height: 56px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer__brand p { color: rgba(255,255,255,.6); font-size: .92rem; }
.footer__col h5 { color: var(--white); font-size: 1rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 18px; }
.footer__col ul { list-style: none; }
.footer__col ul li { padding: 6px 0; }
.footer__col ul a,
.footer__col ul span { color: rgba(255,255,255,.7); font-size: .95rem; }
.footer__col ul a:hover { color: var(--orange); }
.footer__col ul li.with-icon { display: flex; gap: 12px; align-items: flex-start; }
.footer__col ul li.with-icon svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; margin-top: 4px; }
.footer__bottom {
  padding-block: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: .85rem;
}
.footer__bottom a { color: var(--cyan); }
.footer__bottom a:hover { color: var(--orange); }
.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.footer__socials a:hover { background: var(--orange); color: var(--white); }
.footer__socials svg { width: 16px; height: 16px; }

/* ---------- SCROLL TOP ---------- */
.scroll-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 60;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  box-shadow: 0 12px 28px rgba(255,107,0,.45);
}
.scroll-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--ink); }
.scroll-top svg { width: 18px; height: 18px; }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease);
  padding: 24px;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 92vw; max-height: 86vh; object-fit: contain; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lb-close,
.lb-prev,
.lb-next {
  position: absolute;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.12); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s var(--ease);
}
.lb-close:hover,
.lb-prev:hover,
.lb-next:hover { background: var(--orange); }
.lb-close { top: 24px; right: 24px; }
.lb-prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-close svg, .lb-prev svg, .lb-next svg { width: 22px; height: 22px; }
@media (max-width: 600px) {
  .lb-prev, .lb-next { width: 42px; height: 42px; }
}

/* ---------- REVEAL ANIMATIONS ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="100"].is-in { transition-delay: .1s; }
[data-reveal][data-delay="200"].is-in { transition-delay: .2s; }
[data-reveal][data-delay="300"].is-in { transition-delay: .3s; }
[data-reveal][data-delay="400"].is-in { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- UTILITIES ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
