:root {
  color-scheme: dark;
  --black: #0f0f0f;
  --deep: #080808;
  --gray: #b8b2ac;
  --muted: #7f7a75;
  --orange: #fe9140;
  --orange-dark: #d97324;
  --paper: #111111;
  --paper-2: #171717;
  --white: #ffffff;
  --line: rgba(255,255,255,.12);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--deep);
  color: var(--white);
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: linear-gradient(180deg, rgba(8,8,8,.72), rgba(8,8,8,0));
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; padding: 0; }
.brand img { display: block; width: min(340px, 44vw); height: auto; filter: drop-shadow(0 10px 24px rgba(0,0,0,.42)); }
.nav { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 12px 24px; color: rgba(255,255,255,.84); font-size: .86rem; font-weight: 900; text-shadow: 0 2px 14px rgba(0,0,0,.44); }
.nav a { transition: color .25s ease, background .25s ease, border-color .25s ease; }
.nav a:hover { color: var(--orange); }
.nav-cta { padding: 8px 12px; border: 1px solid rgba(255,255,255,.36); border-radius: 999px; background: rgba(255,255,255,.08); }

.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(560px, 78svh, 720px);
  display: grid;
  align-items: end;
  padding: clamp(128px, 12vw, 168px) clamp(20px, 5vw, 72px) clamp(54px, 6vw, 78px);
  overflow: hidden;
  background: var(--black);
}
.hero-media { position: absolute; inset: 0; z-index: -3; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 43%; filter: grayscale(100%) contrast(1.08) brightness(.74); transform: scale(1.03); animation: hero-zoom 18s ease-in-out infinite alternate; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 72% 42%, rgba(254,145,64,.22), transparent 30%),
    linear-gradient(90deg, rgba(8,8,8,.94) 0%, rgba(8,8,8,.78) 46%, rgba(8,8,8,.34) 100%),
    linear-gradient(0deg, rgba(8,8,8,.86) 0%, transparent 40%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(254,145,64,.72), transparent);
}
.hero-content { max-width: 1010px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 10px 14px;
  border: 1px solid rgba(254,145,64,.36);
  border-radius: 999px;
  background: rgba(15,15,15,.58);
  color: rgba(255,255,255,.84);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp .7s cubic-bezier(.22,1,.36,1) .2s forwards;
}
.hero-badge span { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(254,145,64,.7); animation: live-pulse 1.8s ease-out infinite; }
.eyebrow { margin: 0 0 14px; color: var(--orange); font-size: .76rem; font-weight: 950; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3, p, span, strong { overflow-wrap: break-word; }
h1 { margin: 0; max-width: 1120px; font-size: clamp(3.2rem, 8.4vw, 8.2rem); line-height: .9; letter-spacing: 0; opacity: 0; animation: fadeUp .8s cubic-bezier(.22,1,.36,1) .4s forwards; }
h2 { margin: 0; font-size: clamp(2.2rem, 4.8vw, 4.8rem); line-height: .98; letter-spacing: 0; }
h3 { margin: 16px 0 10px; font-size: 1.22rem; line-height: 1.18; }
.hero-content p:not(.eyebrow) { max-width: 760px; margin: 30px 0 0; color: rgba(255,255,255,.82); font-size: clamp(1.1rem, 1.7vw, 1.34rem); line-height: 1.65; opacity: 0; animation: fadeUp .8s cubic-bezier(.22,1,.36,1) .6s forwards; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; opacity: 0; animation: fadeUp .8s cubic-bezier(.22,1,.36,1) .8s forwards; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; opacity: 0; animation: fadeUp .8s cubic-bezier(.22,1,.36,1) 1s forwards; }
.hero-proof span { padding: 9px 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(255,255,255,.07); color: rgba(255,255,255,.78); font-size: .78rem; font-weight: 900; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border: 1px solid var(--orange); border-radius: 999px; font-weight: 950; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.button.primary { background: var(--orange); color: var(--black); box-shadow: 0 0 0 0 rgba(254,145,64,.55); animation: borderGlow 3s ease-in-out 1.4s infinite; }
.button.ghost { color: #fff; border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.04); }
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(0,0,0,.28); }
.hero-scroll { position: absolute; left: clamp(20px, 5vw, 72px); bottom: 24px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.58); font-size: .74rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; opacity: 0; animation: fadeIn 1s ease 1.8s forwards; }
.hero-scroll i { width: 1px; height: 42px; background: linear-gradient(180deg, var(--orange), transparent); animation: scroll-line 1.6s ease-in-out infinite; }

.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(254,145,64,.34); border-top: 1px solid rgba(254,145,64,.34); border-bottom: 1px solid rgba(254,145,64,.34); }
.metrics div { min-height: 132px; padding: 28px clamp(18px, 4vw, 44px); background: #101010; transition: transform .35s ease, background .35s ease; }
.metrics div:hover { transform: translateY(-4px); background: #171717; }
.metrics strong { display: block; margin-bottom: 8px; color: #fff; font-size: clamp(1.8rem, 4vw, 3.2rem); line-height: 1; }
.metrics span { color: rgba(255,255,255,.62); font-weight: 850; }

.section, .method-panel, .contact { padding: clamp(72px, 8vw, 124px) clamp(20px, 5vw, 72px); }
.split, .method-panel { display: grid; grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr); gap: clamp(30px, 6vw, 76px); align-items: start; }
.section-title { max-width: 1040px; margin-bottom: 38px; }
.split .section-title, .method-panel .section-title { margin-bottom: 0; }
.section-title.narrow { max-width: 900px; }
.section-title p, .service-list p, .experience-grid p, .academy-grid p, .brand-case p, .method-panel li span, .team-grid span { color: rgba(255,255,255,.62); line-height: 1.65; }
.section-title p { margin: 22px 0 0; font-size: 1.1rem; }
.service-list, .experience-grid, .team-grid, .academy-grid, .brand-cases { display: grid; gap: 16px; }
.service-list { grid-template-columns: repeat(2, 1fr); }
.service-list article, .experience-grid article, .team-grid article, .academy-grid article, .brand-case, .logo-wall article {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.032));
  box-shadow: 0 1px 0 rgba(255,255,255,.05) inset;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
}
.service-list article, .experience-grid article, .team-grid article, .academy-grid article { padding: 24px; }
.service-list article:hover, .experience-grid article:hover, .academy-grid article:hover, .brand-case:hover, .logo-wall article:hover { transform: translateY(-6px); border-color: rgba(254,145,64,.52); box-shadow: var(--shadow); background: linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.04)); }
.service-list article span { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--orange); color: var(--black); font-weight: 950; font-size: .84rem; }
.when-call { background: #0c0c0c; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trigger-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(254,145,64,.36); border: 1px solid rgba(254,145,64,.28); }
.trigger-list article { min-height: 190px; padding: 26px; background: #111; }
.trigger-list strong { display: block; margin-bottom: 12px; color: #fff; font-size: 1.12rem; line-height: 1.15; }
.trigger-list span { color: rgba(255,255,255,.64); line-height: 1.55; font-weight: 750; }
.case-grid { grid-template-columns: repeat(3, 1fr); }
.case-grid article { position: relative; overflow: hidden; }
.case-grid article::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: var(--orange); opacity: .8; }
.case-grid span { color: var(--orange); font-size: .72rem; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }

.method-panel { background: #0b0b0b; color: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.method-panel .eyebrow { color: var(--orange); }
.method-panel ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.method-panel li { display: grid; grid-template-columns: 150px 1fr; gap: 16px; padding: 20px; border: 1px solid rgba(254,145,64,.28); border-radius: 8px; background: rgba(255,255,255,.055); }
.method-panel li strong { color: #fff; }
.method-panel li span { color: rgba(255,255,255,.68); }

.brands { background: #0f0f0f; border-bottom: 1px solid var(--line); }
.brand-cases { grid-template-columns: repeat(3, minmax(0,1fr)); margin-top: 34px; }
.brand-case { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; padding: 24px; }
.brand-logo-box { min-height: 220px; display: grid; place-items: center; padding: 18px; background: rgba(255,255,255,.92); border-radius: 6px; }
.brand-logo-box.dark { background: #000; }
.brand-logo-box.parigo-box { background: #f8f6f2; }
.brand-logo-box img { display: block; max-width: 100%; max-height: 190px; object-fit: contain; }
.bauhaus-card { background: linear-gradient(180deg, rgba(254,145,64,.13), rgba(255,255,255,.04)); }
.bocus-box { position: relative; isolation: isolate; overflow: hidden; min-height: 280px; background: #eedacf; }
.bocus-box img { position: relative; z-index: 2; width: min(78%,260px); max-height: none; border: 10px solid #3f3833; background: #eedacf; }
.bauhaus-pattern { position: absolute; inset: 0; z-index: 1; display: grid; grid-template-columns: repeat(4,1fr); grid-template-rows: repeat(3,1fr); opacity: .82; }
.bauhaus-pattern span:nth-child(1) { background: #728158; grid-column: 1 / 2; grid-row: 1 / 3; }
.bauhaus-pattern span:nth-child(2) { background: #e96a2b; grid-column: 2 / 3; grid-row: 1 / 2; }
.bauhaus-pattern span:nth-child(3) { background: #3f3833; grid-column: 4 / 5; grid-row: 1 / 3; }
.bauhaus-pattern span:nth-child(4) { background: #c8a693; grid-column: 2 / 4; grid-row: 2 / 3; }
.bauhaus-pattern span:nth-child(5) { background: #e9d2c0; grid-column: 1 / 3; grid-row: 3 / 4; }
.bauhaus-pattern span:nth-child(6) { background: #728158; grid-column: 3 / 5; grid-row: 3 / 4; }
.brand-case span, .academy-grid span { color: var(--orange); font-size: .76rem; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }
.brand-case a { display: inline-flex; margin-top: 14px; color: var(--orange); font-weight: 900; }
.brand-story { margin: 18px 0 0; }
.brand-story img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 6px; filter: grayscale(100%) contrast(1.04); }
.brand-story figcaption { margin-top: 8px; color: rgba(255,255,255,.58); font-size: .86rem; line-height: 1.4; }

.experience { background: #0b0b0b; border-bottom: 1px solid var(--line); }
.experience-grid { grid-template-columns: repeat(4, 1fr); }
.experience-grid.case-grid { grid-template-columns: repeat(3, 1fr); }
.logo-wall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 28px; }
.logo-wall article { min-height: 128px; display: grid; align-content: center; padding: 18px; background: rgba(255,255,255,.94); }
.logo-wall img { display: block; width: 100%; height: 82px; object-fit: contain; }
.logo-wall span { color: var(--muted); font-size: .78rem; font-weight: 900; text-align: center; }
.logo-wall .logo-text { place-items: center; text-align: center; background: var(--black); color: #fff; }
.logo-wall .logo-text strong { font-size: 1.14rem; }
.logo-wall .logo-text span { color: #ffc08c; }


.team { background: #101010; color: #fff; }
.team .eyebrow { color: var(--orange); }
.team-grid { grid-template-columns: repeat(2, minmax(0,1fr)); margin-top: 34px; }
.team-grid article { background: rgba(255,255,255,.055); border-color: rgba(254,145,64,.24); }
.team-card { display: grid; grid-template-columns: minmax(180px,.8fr) minmax(0,1fr); padding: 0 !important; overflow: hidden; }
.team-card img { display: block; width: 100%; height: 100%; min-height: 330px; object-fit: cover; filter: grayscale(100%); }
.team-card div { padding: 28px; align-self: end; }
.team-grid strong { display: block; margin-bottom: 8px; font-size: 1.16rem; }
.team-grid span { display: block; color: rgba(255,255,255,.7); font-weight: 900; line-height: 1.35; }
.team-grid p { margin: 18px 0 0; color: rgba(255,255,255,.6); line-height: 1.6; }

.academy { background: #0f0f0f; }
.academy-grid { grid-template-columns: 1.2fr 1fr 1fr; }
.academy-grid article:first-child { background: linear-gradient(180deg, rgba(254,145,64,.18), rgba(255,255,255,.04)); border-color: rgba(254,145,64,.34); }
.academy-grid article:first-child span { color: #ffc08c; }
.academy-grid article:first-child p { color: rgba(255,255,255,.7); }

.contact { display: flex; align-items: center; justify-content: space-between; gap: 30px; background: #090909; color: #fff; border-top: 1px solid rgba(254,145,64,.24); }
.contact-actions { display: grid; gap: 12px; max-width: 390px; }
.contact-actions span { color: rgba(255,255,255,.62); line-height: 1.5; font-weight: 850; }
.contact .eyebrow { color: var(--orange); }
.contact h2 { max-width: 900px; }
.contact p:not(.eyebrow) { max-width: 720px; margin: 22px 0 0; color: rgba(255,255,255,.68); font-size: 1.05rem; line-height: 1.65; }
footer { padding: 28px clamp(20px,5vw,72px); color: rgba(255,255,255,.48); background: #070707; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes live-pulse { 0% { box-shadow: 0 0 0 0 rgba(254,145,64,.72); } 80%,100% { box-shadow: 0 0 0 12px rgba(254,145,64,0); } }
@keyframes borderGlow { 0%,100% { box-shadow: 0 0 0 0 rgba(254,145,64,0); } 50% { box-shadow: 0 0 0 8px rgba(254,145,64,.12); } }
@keyframes scroll-line { 0%,100% { transform: scaleY(.45); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } }
@keyframes hero-zoom { from { transform: scale(1.03); } to { transform: scale(1.09); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1040px) {
  .split, .method-panel, .hero-layout { grid-template-columns: 1fr; }
  .hero { min-height: clamp(620px, 82svh, 760px); }
  .hero-system { max-width: 720px; }
  .metrics, .experience-grid, .case-grid, .team-grid, .logo-wall, .brand-cases, .service-list, .trigger-list { grid-template-columns: repeat(2, 1fr); }
  .experience-grid.case-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-case { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 12px 14px 10px;
    background: linear-gradient(180deg, rgba(8,8,8,.86), rgba(8,8,8,0));
  }
  .brand { max-width: 100%; }
  .brand img { width: min(228px, 74vw); }
  .nav {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 3px;
    font-size: .72rem;
    scrollbar-width: none;
  }
  .nav::-webkit-scrollbar { display: none; }
  h1 { font-size: clamp(2.25rem, 11.7vw, 3.35rem); line-height: .96; }
  h2 { font-size: clamp(1.85rem, 8.8vw, 2.65rem); }
  .metrics, .service-list, .brand-cases, .experience-grid, .experience-grid.case-grid, .team-grid, .academy-grid, .trigger-list { grid-template-columns: 1fr; }
  .logo-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero {
    min-height: 570px;
    padding: 126px 16px 38px;
    align-items: end;
  }
  .hero-media img {
    object-position: 70% 42%;
    filter: grayscale(100%) contrast(1.1) brightness(.58);
  }
  .hero-overlay {
    background:
      radial-gradient(circle at 64% 30%, rgba(254,145,64,.18), transparent 34%),
      linear-gradient(90deg, rgba(8,8,8,.95) 0%, rgba(8,8,8,.78) 58%, rgba(8,8,8,.42) 100%),
      linear-gradient(0deg, rgba(8,8,8,.94) 0%, rgba(8,8,8,.2) 62%);
  }
  .hero-badge { display: none; }
  .hero-content p:not(.eyebrow) {
    margin-top: 18px;
    font-size: .96rem;
    line-height: 1.5;
  }
  .hero-actions { margin-top: 22px; gap: 10px; }
  .hero-proof { gap: 7px; margin-top: 16px; }
  .hero-proof span { padding: 7px 9px; font-size: .68rem; }
  .button { width: 100%; min-height: 48px; }
  .hero-scroll { display: none; }
  .metrics div { min-height: auto; padding: 20px 16px; }
  .section, .method-panel, .contact { padding: 52px 16px; }
  .section-title { margin-bottom: 28px; }
  .service-list article, .experience-grid article, .team-grid article, .academy-grid article, .brand-case { padding: 18px; }
  .trigger-list article { min-height: auto; padding: 20px; }
  .brand-logo-box { min-height: 158px; }
  .bocus-box { min-height: 210px; }
  .logo-wall { gap: 10px; }
  .logo-wall article { min-height: 92px; padding: 12px; }
  .logo-wall img { height: 58px; }
  .team-card { grid-template-columns: 1fr; }
  .team-card img { height: auto; min-height: 0; aspect-ratio: 1 / .86; }
  .team-card div { padding: 20px; }
  .system-topline { align-items: flex-start; flex-direction: column; }
  .system-topline img { width: min(240px, 84%); }
  .system-note { grid-template-columns: 1fr; }
  .method-panel li { grid-template-columns: 1fr; }
  .contact { align-items: flex-start; flex-direction: column; }
  .contact-actions { width: 100%; max-width: none; }
  .contact .button.ghost { color: #fff; }
}

@media (max-width: 390px) {
  .brand img { width: min(218px, 82vw); }
  .nav { font-size: .68rem; gap: 12px; }
  .hero { min-height: 540px; padding-top: 118px; }
  h1 { font-size: clamp(2.05rem, 11vw, 2.85rem); }
  .hero-content p:not(.eyebrow) { font-size: .92rem; }
  .hero-proof span { font-size: .64rem; }
}
